Skip to content

Instantly share code, notes, and snippets.

@jgoad
Created February 5, 2015 19:28
Show Gist options
  • Save jgoad/18e90c23c44d4836c1ae to your computer and use it in GitHub Desktop.
Save jgoad/18e90c23c44d4836c1ae to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"import time, sys\n",
"from threading import Thread\n",
"import cfclient\n",
"import cflib\n",
"from cflib.crazyflie import Crazyflie\n",
"from cfclient.utils.logconfigreader import LogConfig\n",
"\n",
"import pandas as pd\n",
"import scipy.integrate as integrate\n",
"\n",
"import matplotlib as mpl\n",
"import matplotlib.pyplot as plt\n",
"from mpl_toolkits.mplot3d import Axes3D\n",
"%config InlineBackend.figure_format = 'svg' \n",
"%matplotlib inline"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
":0: FutureWarning: IPython widgets are experimental and may change in the future.\n"
]
}
],
"source": [
"from IPython.utils.traitlets import HasTraits, Int, Float, Bool, Unicode, link\n",
"from IPython.html.widgets import FloatSlider, IntSlider, Box, FloatText, HTML\n",
"from IPython.display import display"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"log_widget = HTML()\n",
"def log(*args):\n",
" for arg in args:\n",
" log_widget.value += str(arg) + '<br>\\n'\n",
" \n",
"class CFError(Exception):\n",
" pass\n",
"\n",
"def init_crazyflie():\n",
" cflib.crtp.init_drivers(enable_debug_driver=False)\n",
"\n",
"def list_crazyflies():\n",
" available = cflib.crtp.scan_interfaces()\n",
" return [item[0] for item in available]\n",
"\n",
"def compute_thrust(f):\n",
" ithrust = int(f*60000)\n",
" if ithrust < 0:\n",
" ithrust = 0\n",
" if ithrust > 60000:\n",
" ithrust = 60000\n",
" return ithrust\n",
"\n",
"class CFRunner(HasTraits):\n",
" \n",
" roll = Float(0.0) # deg\n",
" pitch = Float(0.0) # deg\n",
" yaw = Float(0.0) # deg/sec\n",
" thrust = Float(0.0)\n",
"\n",
" delay = Float(0.1)\n",
" running = Bool(False)\n",
" link_uri = Unicode()\n",
" \n",
" stabilizer_yaw = Float(0.0)\n",
" stabilizer_roll = Float(0.0)\n",
" stabilizer_pitch = Float(0.0)\n",
"\n",
" acc_x = Float(0.0)\n",
" acc_y = Float(0.0)\n",
" acc_z = Float(0.0)\n",
" \n",
" gyro_x = Float(0.0)\n",
" gyro_y = Float(0.0)\n",
" gyro_z = Float(0.0)\n",
" \n",
" \n",
" def __init__(self, link_uri):\n",
" super(CFRunner, self).__init__(link_uri=link_uri)\n",
"\n",
" def start(self):\n",
" self.data_log = []\n",
" if self.running:\n",
" self.running = False\n",
" time.sleep(self.delay)\n",
" \n",
" self._cf = Crazyflie(ro_cache='crazyflie_ro_cache', rw_cache='crazyflie_rw_cache')\n",
" self._cf.connected.add_callback(self._connected)\n",
" self._cf.disconnected.add_callback(self._disconnected)\n",
" self._cf.connection_failed.add_callback(self._connection_failed)\n",
" self._cf.connection_lost.add_callback(self._connection_lost)\n",
" self._cf.open_link(self.link_uri)\n",
"\n",
" print \"Connecting to %s\" % self.link_uri \n",
" \n",
" def stop(self):\n",
" self.running = False\n",
" \n",
" def _connected(self, link_uri):\n",
" print \"Connected to %s\" % link_uri\n",
"## \n",
" self._log_config = LogConfig(name='All', period_in_ms=100)\n",
" self._log_config.add_variable('stabilizer.yaw', 'float')\n",
" self._log_config.add_variable('stabilizer.roll', 'float')\n",
" self._log_config.add_variable('stabilizer.pitch', 'float')\n",
" self._log_config.add_variable('acc.x', 'float')\n",
" self._log_config.add_variable('acc.y', 'float')\n",
" self._log_config.add_variable('acc.z', 'float')\n",
"# self._log_config.add_variable('gyro.x', 'float')\n",
"# self._log_config.add_variable('gyro.y', 'float')\n",
"# self._log_config.add_variable('gyro.z', 'float')\n",
"\n",
" self._cf.log.add_config(self._log_config)\n",
"# log('callback init')\n",
" if self._log_config.valid:\n",
" self._log_config.data_received_cb.add_callback(self._log_data_received)\n",
" self._log_config.error_cb.add_callback(self._log_data_error)\n",
" self._log_config.start()\n",
"## \n",
" self.running = True\n",
" self.thread = Thread(target=self._run)\n",
" self.thread.start()\n",
"\n",
" def _log_data_received(self, timestamp, data, logconf):\n",
"# log(\"[%d][%s]: %s\" % (timestamp, logconf.name, data))\n",
" a = {}\n",
" a.update(data)\n",
" a['timestamp'] = timestamp\n",
" self.data_log.append(a)\n",
"\n",
" self.stabilizer_yaw = data['stabilizer.yaw']\n",
" self.stabilizer_roll = data['stabilizer.roll']\n",
" self.stabilizer_pitch = data['stabilizer.pitch']\n",
" self.acc_x = data['acc.x']\n",
" self.acc_y = data['acc.y']\n",
" self.acc_z = data['acc.z']\n",
"# self.gyro_x = data['gyro.x']\n",
"# self.gyro_y = data['gyro.y']\n",
"# self.gyro_z = data['gyro.z']\n",
" \n",
" def _log_data_error(self, logconf, msg):\n",
" print \"Logging error %s: %s\" % (logconf.name, msg)\n",
" \n",
" def _connection_failed(self, link_uri, msg):\n",
" print \"Connection to %s failed: %s\" % (link_uri, msg)\n",
"\n",
" def _connection_lost(self, link_uri, msg):\n",
" print \"Connection to %s lost: %s\" % (link_uri, msg)\n",
"\n",
" def _disconnected(self, link_uri):\n",
" print \"Disconnected from %s\" % link_uri\n",
"\n",
" def interact(self):\n",
" thrust_widget = FloatSlider(min=0.0, max=1.0, step=0.01, value=0.0, description='thrust')\n",
" yaw_widget = FloatSlider(min=-30.0, max=30.0, step=0.01, value=0.0, description='yaw')\n",
" roll_widget = FloatSlider(min=-30.0, max=30.0, step=0.01, value=0.0, description='roll')\n",
" pitch_widget = FloatSlider(min=-30.0, max=30.0, step=0.01, value=0.0, description='pitch')\n",
" acc_x_widget = FloatText(value=self.acc_x, description='acc_x')\n",
" acc_y_widget = FloatText(value=self.acc_y, description='acc_y')\n",
" acc_z_widget = FloatText(value=self.acc_z, description='acc_z')\n",
" stab_yaw_widget = FloatSlider(min =-180, max = 180, value=self.stabilizer_yaw, description='stabilizer_yaw')\n",
" stab_roll_widget = FloatSlider(min =-180, max = 180, value=self.stabilizer_roll, description='stabilizer_roll')\n",
" stab_pitch_widget = FloatSlider(min =-180, max = 180, value=self.stabilizer_pitch, description='stabilizer_pitch')\n",
" link((self, 'thrust'), (thrust_widget, 'value'))\n",
" link((self, 'yaw'), (yaw_widget, 'value'))\n",
" link((self, 'roll'), (roll_widget, 'value'))\n",
" link((self, 'pitch'), (pitch_widget, 'value'))\n",
" link((self, 'acc_x'), (acc_x_widget, 'value'))\n",
" link((self, 'acc_y'), (acc_y_widget, 'value'))\n",
" link((self, 'acc_z'), (acc_z_widget, 'value'))\n",
" link((self, 'stabilizer_yaw'), (stab_yaw_widget, 'value'))\n",
" link((self, 'stabilizer_roll'), (stab_roll_widget, 'value'))\n",
" link((self, 'stabilizer_pitch'), (stab_pitch_widget, 'value'))\n",
" \n",
" return Box([thrust_widget, yaw_widget, roll_widget, pitch_widget, \n",
" acc_x_widget, acc_y_widget, acc_z_widget,\n",
" stab_yaw_widget, stab_roll_widget, stab_pitch_widget])\n",
" \n",
" def _run(self):\n",
" while self.running:\n",
" self._cf.commander.send_setpoint(self.roll, self.pitch, self.yaw, compute_thrust(self.thrust))\n",
" time.sleep(self.delay)\n",
" time.sleep(self.delay)\n",
" self._cf.close_link()\n",
" del self._cf"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"init_crazyflie()"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"['radio://0/80/250K']"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"list_crazyflies()"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"collapsed": false,
"scrolled": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Connecting to radio://0/80/250K\n"
]
}
],
"source": [
"link_uri = 'radio://0/80/250K'\n",
"cfr = CFRunner(link_uri)\n",
"cfr.start()"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Connected to radio://0/80/250K\n"
]
}
],
"source": [
"display(log_widget)\n",
"cfr.interact()"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"cfr.stop()"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Disconnected from radio://0/80/250K\n"
]
}
],
"source": [
"data = pd.DataFrame(cfr.data_log)\n",
"data.index = data.timestamp.values\n",
"data['t'] = data.index.values-data.index.values[0]\n",
"data['ax'] = data['acc.x']-data['acc.x'].iloc[0]\n",
"data['ay'] = data['acc.y']-data['acc.y'].iloc[0]\n",
"data['az'] = data['acc.z']-data['acc.z'].iloc[0]"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {
"collapsed": false,
"scrolled": true
},
"outputs": [
{
"data": {
"text/html": [
"<div style=\"max-height:1000px;max-width:1500px;overflow:auto;\">\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>acc.x</th>\n",
" <th>acc.y</th>\n",
" <th>acc.z</th>\n",
" <th>stabilizer.pitch</th>\n",
" <th>stabilizer.roll</th>\n",
" <th>stabilizer.yaw</th>\n",
" <th>timestamp</th>\n",
" <th>t</th>\n",
" <th>ax</th>\n",
" <th>ay</th>\n",
" <th>az</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>22039</th>\n",
" <td> 0.005127</td>\n",
" <td> 0.001465</td>\n",
" <td> 0.944092</td>\n",
" <td> 0.347964</td>\n",
" <td> 0.148520</td>\n",
" <td> 2.766970</td>\n",
" <td> 22039</td>\n",
" <td> 0</td>\n",
" <td> 0.000000</td>\n",
" <td> 0.000000</td>\n",
" <td> 0.000000</td>\n",
" </tr>\n",
" <tr>\n",
" <th>22139</th>\n",
" <td> 0.004150</td>\n",
" <td> 0.000488</td>\n",
" <td> 0.942383</td>\n",
" <td> 0.351399</td>\n",
" <td> 0.146871</td>\n",
" <td> 2.769159</td>\n",
" <td> 22139</td>\n",
" <td> 100</td>\n",
" <td>-0.000977</td>\n",
" <td>-0.000977</td>\n",
" <td>-0.001709</td>\n",
" </tr>\n",
" <tr>\n",
" <th>22240</th>\n",
" <td> 0.003418</td>\n",
" <td> 0.000732</td>\n",
" <td> 0.942383</td>\n",
" <td> 0.352935</td>\n",
" <td> 0.146225</td>\n",
" <td> 2.769656</td>\n",
" <td> 22240</td>\n",
" <td> 201</td>\n",
" <td>-0.001709</td>\n",
" <td>-0.000732</td>\n",
" <td>-0.001709</td>\n",
" </tr>\n",
" <tr>\n",
" <th>22340</th>\n",
" <td> 0.005127</td>\n",
" <td>-0.001709</td>\n",
" <td> 0.942139</td>\n",
" <td> 0.352702</td>\n",
" <td> 0.138738</td>\n",
" <td> 2.771863</td>\n",
" <td> 22340</td>\n",
" <td> 301</td>\n",
" <td> 0.000000</td>\n",
" <td>-0.003174</td>\n",
" <td>-0.001953</td>\n",
" </tr>\n",
" <tr>\n",
" <th>22440</th>\n",
" <td> 0.003906</td>\n",
" <td> 0.003418</td>\n",
" <td> 0.941650</td>\n",
" <td> 0.358598</td>\n",
" <td> 0.132611</td>\n",
" <td> 2.774046</td>\n",
" <td> 22440</td>\n",
" <td> 401</td>\n",
" <td>-0.001221</td>\n",
" <td> 0.001953</td>\n",
" <td>-0.002441</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" acc.x acc.y acc.z stabilizer.pitch stabilizer.roll \\\n",
"22039 0.005127 0.001465 0.944092 0.347964 0.148520 \n",
"22139 0.004150 0.000488 0.942383 0.351399 0.146871 \n",
"22240 0.003418 0.000732 0.942383 0.352935 0.146225 \n",
"22340 0.005127 -0.001709 0.942139 0.352702 0.138738 \n",
"22440 0.003906 0.003418 0.941650 0.358598 0.132611 \n",
"\n",
" stabilizer.yaw timestamp t ax ay az \n",
"22039 2.766970 22039 0 0.000000 0.000000 0.000000 \n",
"22139 2.769159 22139 100 -0.000977 -0.000977 -0.001709 \n",
"22240 2.769656 22240 201 -0.001709 -0.000732 -0.001709 \n",
"22340 2.771863 22340 301 0.000000 -0.003174 -0.001953 \n",
"22440 2.774046 22440 401 -0.001221 0.001953 -0.002441 "
]
},
"execution_count": 10,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"data.head()"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"<matplotlib.legend.Legend at 0x10c938f10>"
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
"<!-- Created with matplotlib (http://matplotlib.org/) -->\n",
"<svg height=\"237pt\" version=\"1.1\" viewBox=\"0 0 349 237\" width=\"349pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"\n",
"M0 237.6\n",
"L349.2 237.6\n",
"L349.2 0\n",
"L0 0\n",
"z\n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_2\">\n",
" <path d=\"\n",
"M7.2 230.4\n",
"L342 230.4\n",
"L342 7.2\n",
"L7.2 7.2\n",
"z\n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"pane3d_1\">\n",
" <g id=\"patch_3\">\n",
" <path d=\"\n",
"M51.5829 181.081\n",
"L147.404 126.357\n",
"L145.809 21.7893\n",
"L44.6449 70.9573\" style=\"fill:#f2f2f2;opacity:0.5;stroke:#f2f2f2;\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"pane3d_2\">\n",
" <g id=\"patch_4\">\n",
" <path d=\"\n",
"M147.404 126.357\n",
"L302.626 156.951\n",
"L309.121 49.2301\n",
"L145.809 21.7893\" style=\"fill:#e6e6e6;opacity:0.5;stroke:#e6e6e6;\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"pane3d_3\">\n",
" <g id=\"patch_5\">\n",
" <path d=\"\n",
"M51.5829 181.081\n",
"L214.897 216.712\n",
"L302.626 156.951\n",
"L147.404 126.357\" style=\"fill:#ececec;opacity:0.5;stroke:#ececec;\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"axis3d_1\">\n",
" <g id=\"line2d_1\">\n",
" <path d=\"\n",
"M51.5829 181.081\n",
"L214.897 216.712\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-width:0.75;\"/>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- X -->\n",
" <defs>\n",
" <path d=\"\n",
"M6.29688 72.9062\n",
"L16.8906 72.9062\n",
"L35.0156 45.7969\n",
"L53.2188 72.9062\n",
"L63.8125 72.9062\n",
"L40.375 37.8906\n",
"L65.375 0\n",
"L54.7812 0\n",
"L34.2812 31\n",
"L13.625 0\n",
"L2.98438 0\n",
"L29 38.9219\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-58\"/>\n",
" </defs>\n",
" <g transform=\"translate(115.827398694 222.773463318)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-58\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"Line3DCollection_1\">\n",
" <defs>\n",
" <path d=\"\n",
"M54.7061 -55.8379\n",
"L150.383 -110.656\n",
"L148.936 -215.285\" id=\"C0_0_792b725b34\"/>\n",
" <path d=\"\n",
"M76.2733 -51.1324\n",
"L170.938 -106.604\n",
"L170.524 -211.658\" id=\"C0_1_476173a9bd\"/>\n",
" <path d=\"\n",
"M98.1084 -46.3685\n",
"L191.731 -102.506\n",
"L192.373 -207.987\" id=\"C0_2_42b4ca7068\"/>\n",
" <path d=\"\n",
"M120.216 -41.545\n",
"L212.764 -98.3607\n",
"L214.488 -204.271\" id=\"C0_3_d86c810323\"/>\n",
" <path d=\"\n",
"M142.602 -36.6609\n",
"L234.042 -94.1668\n",
"L236.874 -200.509\" id=\"C0_4_3eb73b2897\"/>\n",
" <path d=\"\n",
"M165.271 -31.7149\n",
"L255.57 -89.9237\n",
"L259.536 -196.701\" id=\"C0_5_81727e8295\"/>\n",
" <path d=\"\n",
"M188.229 -26.706\n",
"L277.351 -85.6307\n",
"L282.479 -192.846\" id=\"C0_6_cb0f54569f\"/>\n",
" <path d=\"\n",
"M211.481 -21.6329\n",
"L299.39 -81.2867\n",
"L305.709 -188.943\" id=\"C0_7_84dc74b8f4\"/>\n",
" </defs>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C0_0_792b725b34\" y=\"237.6\"/>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C0_1_476173a9bd\" y=\"237.6\"/>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C0_2_42b4ca7068\" y=\"237.6\"/>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C0_3_d86c810323\" y=\"237.6\"/>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C0_4_3eb73b2897\" y=\"237.6\"/>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C0_5_81727e8295\" y=\"237.6\"/>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C0_6_cb0f54569f\" y=\"237.6\"/>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C0_7_84dc74b8f4\" y=\"237.6\"/>\n",
" </g>\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_2\">\n",
" <path d=\"\n",
"M55.5302 181.29\n",
"L53.0546 182.708\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- −350000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M10.5938 35.5\n",
"L73.1875 35.5\n",
"L73.1875 27.2031\n",
"L10.5938 27.2031\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-2212\"/>\n",
" <path d=\"\n",
"M40.5781 39.3125\n",
"Q47.6562 37.7969 51.625 33\n",
"Q55.6094 28.2188 55.6094 21.1875\n",
"Q55.6094 10.4062 48.1875 4.48438\n",
"Q40.7656 -1.42188 27.0938 -1.42188\n",
"Q22.5156 -1.42188 17.6562 -0.515625\n",
"Q12.7969 0.390625 7.625 2.20312\n",
"L7.625 11.7188\n",
"Q11.7188 9.32812 16.5938 8.10938\n",
"Q21.4844 6.89062 26.8125 6.89062\n",
"Q36.0781 6.89062 40.9375 10.5469\n",
"Q45.7969 14.2031 45.7969 21.1875\n",
"Q45.7969 27.6406 41.2812 31.2656\n",
"Q36.7656 34.9062 28.7188 34.9062\n",
"L20.2188 34.9062\n",
"L20.2188 43.0156\n",
"L29.1094 43.0156\n",
"Q36.375 43.0156 40.2344 45.9219\n",
"Q44.0938 48.8281 44.0938 54.2969\n",
"Q44.0938 59.9062 40.1094 62.9062\n",
"Q36.1406 65.9219 28.7188 65.9219\n",
"Q24.6562 65.9219 20.0156 65.0312\n",
"Q15.375 64.1562 9.8125 62.3125\n",
"L9.8125 71.0938\n",
"Q15.4375 72.6562 20.3438 73.4375\n",
"Q25.25 74.2188 29.5938 74.2188\n",
"Q40.8281 74.2188 47.3594 69.1094\n",
"Q53.9062 64.0156 53.9062 55.3281\n",
"Q53.9062 49.2656 50.4375 45.0938\n",
"Q46.9688 40.9219 40.5781 39.3125\" id=\"BitstreamVeraSans-Roman-33\"/>\n",
" <path d=\"\n",
"M31.7812 66.4062\n",
"Q24.1719 66.4062 20.3281 58.9062\n",
"Q16.5 51.4219 16.5 36.375\n",
"Q16.5 21.3906 20.3281 13.8906\n",
"Q24.1719 6.39062 31.7812 6.39062\n",
"Q39.4531 6.39062 43.2812 13.8906\n",
"Q47.125 21.3906 47.125 36.375\n",
"Q47.125 51.4219 43.2812 58.9062\n",
"Q39.4531 66.4062 31.7812 66.4062\n",
"M31.7812 74.2188\n",
"Q44.0469 74.2188 50.5156 64.5156\n",
"Q56.9844 54.8281 56.9844 36.375\n",
"Q56.9844 17.9688 50.5156 8.26562\n",
"Q44.0469 -1.42188 31.7812 -1.42188\n",
"Q19.5312 -1.42188 13.0625 8.26562\n",
"Q6.59375 17.9688 6.59375 36.375\n",
"Q6.59375 54.8281 13.0625 64.5156\n",
"Q19.5312 74.2188 31.7812 74.2188\" id=\"BitstreamVeraSans-Roman-30\"/>\n",
" <path d=\"\n",
"M10.7969 72.9062\n",
"L49.5156 72.9062\n",
"L49.5156 64.5938\n",
"L19.8281 64.5938\n",
"L19.8281 46.7344\n",
"Q21.9688 47.4688 24.1094 47.8281\n",
"Q26.2656 48.1875 28.4219 48.1875\n",
"Q40.625 48.1875 47.75 41.5\n",
"Q54.8906 34.8125 54.8906 23.3906\n",
"Q54.8906 11.625 47.5625 5.09375\n",
"Q40.2344 -1.42188 26.9062 -1.42188\n",
"Q22.3125 -1.42188 17.5469 -0.640625\n",
"Q12.7969 0.140625 7.71875 1.70312\n",
"L7.71875 11.625\n",
"Q12.1094 9.23438 16.7969 8.0625\n",
"Q21.4844 6.89062 26.7031 6.89062\n",
"Q35.1562 6.89062 40.0781 11.3281\n",
"Q45.0156 15.7656 45.0156 23.3906\n",
"Q45.0156 31 40.0781 35.4375\n",
"Q35.1562 39.8906 26.7031 39.8906\n",
"Q22.75 39.8906 18.8125 39.0156\n",
"Q14.8906 38.1406 10.7969 36.2812\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-35\"/>\n",
" </defs>\n",
" <g transform=\"translate(26.8694844016 198.533361536)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path d=\"\n",
"M77.0891 185.99\n",
"L74.6386 187.426\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- −300000 -->\n",
" <g transform=\"translate(48.4346573656 203.30241871)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_4\">\n",
" <path d=\"\n",
"M98.9156 190.748\n",
"L96.4909 192.201\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- −250000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M19.1875 8.29688\n",
"L53.6094 8.29688\n",
"L53.6094 0\n",
"L7.32812 0\n",
"L7.32812 8.29688\n",
"Q12.9375 14.1094 22.625 23.8906\n",
"Q32.3281 33.6875 34.8125 36.5312\n",
"Q39.5469 41.8438 41.4219 45.5312\n",
"Q43.3125 49.2188 43.3125 52.7812\n",
"Q43.3125 58.5938 39.2344 62.25\n",
"Q35.1562 65.9219 28.6094 65.9219\n",
"Q23.9688 65.9219 18.8125 64.3125\n",
"Q13.6719 62.7031 7.8125 59.4219\n",
"L7.8125 69.3906\n",
"Q13.7656 71.7812 18.9375 73\n",
"Q24.125 74.2188 28.4219 74.2188\n",
"Q39.75 74.2188 46.4844 68.5469\n",
"Q53.2188 62.8906 53.2188 53.4219\n",
"Q53.2188 48.9219 51.5312 44.8906\n",
"Q49.8594 40.875 45.4062 35.4062\n",
"Q44.1875 33.9844 37.6406 27.2188\n",
"Q31.1094 20.4531 19.1875 8.29688\" id=\"BitstreamVeraSans-Roman-32\"/>\n",
" </defs>\n",
" <g transform=\"translate(70.268024851 208.130786099)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_4\">\n",
" <g id=\"line2d_5\">\n",
" <path d=\"\n",
"M121.015 195.565\n",
"L118.617 197.037\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- −200000 -->\n",
" <g transform=\"translate(92.3746212505 213.019577037)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_5\">\n",
" <g id=\"line2d_6\">\n",
" <path d=\"\n",
"M143.391 200.443\n",
"L141.021 201.934\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_6\">\n",
" <!-- −150000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M12.4062 8.29688\n",
"L28.5156 8.29688\n",
"L28.5156 63.9219\n",
"L10.9844 60.4062\n",
"L10.9844 69.3906\n",
"L28.4219 72.9062\n",
"L38.2812 72.9062\n",
"L38.2812 8.29688\n",
"L54.3906 8.29688\n",
"L54.3906 0\n",
"L12.4062 0\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-31\"/>\n",
" </defs>\n",
" <g transform=\"translate(114.759607754 217.969932903)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_6\">\n",
" <g id=\"line2d_7\">\n",
" <path d=\"\n",
"M166.051 205.383\n",
"L163.709 206.892\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_7\">\n",
" <!-- −100000 -->\n",
" <g transform=\"translate(137.428276365 222.983024005)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_7\">\n",
" <g id=\"line2d_8\">\n",
" <path d=\"\n",
"M188.999 210.385\n",
"L186.687 211.914\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_8\">\n",
" <!-- −50000 -->\n",
" <g transform=\"translate(163.567304073 228.060050499)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_8\">\n",
" <g id=\"line2d_9\">\n",
" <path d=\"\n",
"M212.241 215.452\n",
"L209.959 217\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_9\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(203.534600933 233.202243354)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"axis3d_2\">\n",
" <g id=\"line2d_10\">\n",
" <path d=\"\n",
"M302.626 156.951\n",
"L214.897 216.712\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-width:0.75;\"/>\n",
" </g>\n",
" <g id=\"text_10\">\n",
" <!-- Y -->\n",
" <defs>\n",
" <path d=\"\n",
"M-0.203125 72.9062\n",
"L10.4062 72.9062\n",
"L30.6094 42.9219\n",
"L50.6875 72.9062\n",
"L61.2812 72.9062\n",
"L35.5 34.7188\n",
"L35.5 0\n",
"L25.5938 0\n",
"L25.5938 34.7188\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-59\"/>\n",
" </defs>\n",
" <g transform=\"translate(278.128494085 206.240412819)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-59\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"Line3DCollection_2\">\n",
" <defs>\n",
" <path d=\"\n",
"M46.8297 -167.705\n",
"L53.6445 -57.6967\n",
"L216.791 -22.1776\" id=\"C1_0_ff70b06a8b\"/>\n",
" <path d=\"\n",
"M67.4473 -177.725\n",
"L73.1159 -68.8168\n",
"L234.663 -34.3521\" id=\"C1_1_395709e4dd\"/>\n",
" <path d=\"\n",
"M87.4394 -187.442\n",
"L92.0262 -79.6164\n",
"L251.997 -46.1599\" id=\"C1_2_c30f1b2d63\"/>\n",
" <path d=\"\n",
"M106.834 -196.868\n",
"L110.399 -90.1093\n",
"L268.816 -57.6173\" id=\"C1_3_44f043bdf3\"/>\n",
" <path d=\"\n",
"M125.658 -206.017\n",
"L128.258 -100.308\n",
"L285.144 -68.7397\" id=\"C1_4_f0d3602a63\"/>\n",
" <path d=\"\n",
"M143.936 -214.9\n",
"L145.623 -110.226\n",
"L301.001 -79.5416\" id=\"C1_5_e3f65c00b1\"/>\n",
" </defs>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C1_0_ff70b06a8b\" y=\"237.6\"/>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C1_1_395709e4dd\" y=\"237.6\"/>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C1_2_c30f1b2d63\" y=\"237.6\"/>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C1_3_44f043bdf3\" y=\"237.6\"/>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C1_4_f0d3602a63\" y=\"237.6\"/>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C1_5_e3f65c00b1\" y=\"237.6\"/>\n",
" </g>\n",
" <g id=\"xtick_9\">\n",
" <g id=\"line2d_11\">\n",
" <path d=\"\n",
"M215.425 215.125\n",
"L219.525 216.018\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_11\">\n",
" <!-- −200000 -->\n",
" <g transform=\"translate(203.820536435 231.108231952)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_10\">\n",
" <g id=\"line2d_12\">\n",
" <path d=\"\n",
"M233.312 202.96\n",
"L237.369 203.825\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_12\">\n",
" <!-- −150000 -->\n",
" <g transform=\"translate(221.541119077 218.814957636)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_11\">\n",
" <g id=\"line2d_13\">\n",
" <path d=\"\n",
"M250.659 191.16\n",
"L254.674 192\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_13\">\n",
" <!-- −100000 -->\n",
" <g transform=\"translate(238.728152622 206.891821569)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_12\">\n",
" <g id=\"line2d_14\">\n",
" <path d=\"\n",
"M267.493 179.711\n",
"L271.466 180.526\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_14\">\n",
" <!-- −50000 -->\n",
" <g transform=\"translate(258.586626631 195.322354938)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_13\">\n",
" <g id=\"line2d_15\">\n",
" <path d=\"\n",
"M283.834 168.597\n",
"L287.766 169.388\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_15\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(291.491236648 184.091051665)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_14\">\n",
" <g id=\"line2d_16\">\n",
" <path d=\"\n",
"M299.704 157.802\n",
"L303.596 158.571\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_16\">\n",
" <!-- 50000 -->\n",
" <g transform=\"translate(294.545859153 173.183299066)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"254.4921875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"axis3d_3\">\n",
" <g id=\"line2d_17\">\n",
" <path d=\"\n",
"M302.626 156.951\n",
"L309.121 49.2301\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-width:0.75;\"/>\n",
" </g>\n",
" <g id=\"text_17\">\n",
" <!-- Z -->\n",
" <defs>\n",
" <path d=\"\n",
"M5.60938 72.9062\n",
"L62.8906 72.9062\n",
"L62.8906 65.375\n",
"L16.7969 8.29688\n",
"L64.0156 8.29688\n",
"L64.0156 0\n",
"L4.5 0\n",
"L4.5 7.51562\n",
"L50.5938 64.5938\n",
"L5.60938 64.5938\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-5a\"/>\n",
" </defs>\n",
" <g transform=\"translate(334.582171372 104.392437865)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-5a\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"Line3DCollection_3\">\n",
" <defs>\n",
" <path d=\"\n",
"M302.75 -82.6977\n",
"L147.374 -113.236\n",
"L51.4512 -58.6103\" id=\"C2_0_771906302b\"/>\n",
" <path d=\"\n",
"M303.496 -95.0773\n",
"L147.19 -125.275\n",
"L50.655 -71.2476\" id=\"C2_1_283de67364\"/>\n",
" <path d=\"\n",
"M304.252 -107.607\n",
"L147.005 -137.455\n",
"L49.8488 -84.0434\" id=\"C2_2_e72e142c0e\"/>\n",
" <path d=\"\n",
"M305.016 -120.29\n",
"L146.817 -149.777\n",
"L49.0325 -97.0009\" id=\"C2_3_aa3ff2b2e6\"/>\n",
" <path d=\"\n",
"M305.79 -133.13\n",
"L146.626 -162.244\n",
"L48.2058 -110.123\" id=\"C2_4_a48068a8d9\"/>\n",
" <path d=\"\n",
"M306.574 -146.128\n",
"L146.434 -174.859\n",
"L47.3685 -123.413\" id=\"C2_5_532a7e01b7\"/>\n",
" <path d=\"\n",
"M307.367 -159.287\n",
"L146.239 -187.624\n",
"L46.5204 -136.874\" id=\"C2_6_899e93703a\"/>\n",
" <path d=\"\n",
"M308.171 -172.612\n",
"L146.042 -200.542\n",
"L45.6613 -150.51\" id=\"C2_7_f5407445f4\"/>\n",
" <path d=\"\n",
"M308.984 -186.105\n",
"L145.843 -213.616\n",
"L44.7911 -164.323\" id=\"C2_8_b97da213c5\"/>\n",
" </defs>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C2_0_771906302b\" y=\"237.6\"/>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C2_1_283de67364\" y=\"237.6\"/>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C2_2_e72e142c0e\" y=\"237.6\"/>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C2_3_aa3ff2b2e6\" y=\"237.6\"/>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C2_4_a48068a8d9\" y=\"237.6\"/>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C2_5_532a7e01b7\" y=\"237.6\"/>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C2_6_899e93703a\" y=\"237.6\"/>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C2_7_f5407445f4\" y=\"237.6\"/>\n",
" <use style=\"fill:none;stroke:#e6e6e6;\" x=\"0.0\" xlink:href=\"#C2_8_b97da213c5\" y=\"237.6\"/>\n",
" </g>\n",
" <g id=\"xtick_15\">\n",
" <g id=\"line2d_18\">\n",
" <path d=\"\n",
"M301.453 154.647\n",
"L305.345 155.412\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_18\">\n",
" <!-- −160000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M33.0156 40.375\n",
"Q26.375 40.375 22.4844 35.8281\n",
"Q18.6094 31.2969 18.6094 23.3906\n",
"Q18.6094 15.5312 22.4844 10.9531\n",
"Q26.375 6.39062 33.0156 6.39062\n",
"Q39.6562 6.39062 43.5312 10.9531\n",
"Q47.4062 15.5312 47.4062 23.3906\n",
"Q47.4062 31.2969 43.5312 35.8281\n",
"Q39.6562 40.375 33.0156 40.375\n",
"M52.5938 71.2969\n",
"L52.5938 62.3125\n",
"Q48.875 64.0625 45.0938 64.9844\n",
"Q41.3125 65.9219 37.5938 65.9219\n",
"Q27.8281 65.9219 22.6719 59.3281\n",
"Q17.5312 52.7344 16.7969 39.4062\n",
"Q19.6719 43.6562 24.0156 45.9219\n",
"Q28.375 48.1875 33.5938 48.1875\n",
"Q44.5781 48.1875 50.9531 41.5156\n",
"Q57.3281 34.8594 57.3281 23.3906\n",
"Q57.3281 12.1562 50.6875 5.35938\n",
"Q44.0469 -1.42188 33.0156 -1.42188\n",
"Q20.3594 -1.42188 13.6719 8.26562\n",
"Q6.98438 17.9688 6.98438 36.375\n",
"Q6.98438 53.6562 15.1875 63.9375\n",
"Q23.3906 74.2188 37.2031 74.2188\n",
"Q40.9219 74.2188 44.7031 73.4844\n",
"Q48.4844 72.75 52.5938 71.2969\" id=\"BitstreamVeraSans-Roman-36\"/>\n",
" </defs>\n",
" <g transform=\"translate(293.936578723 161.196882286)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_16\">\n",
" <g id=\"line2d_19\">\n",
" <path d=\"\n",
"M302.192 142.271\n",
"L306.108 143.027\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_19\">\n",
" <!-- −140000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M37.7969 64.3125\n",
"L12.8906 25.3906\n",
"L37.7969 25.3906\n",
"z\n",
"\n",
"M35.2031 72.9062\n",
"L47.6094 72.9062\n",
"L47.6094 25.3906\n",
"L58.0156 25.3906\n",
"L58.0156 17.1875\n",
"L47.6094 17.1875\n",
"L47.6094 0\n",
"L37.7969 0\n",
"L37.7969 17.1875\n",
"L4.89062 17.1875\n",
"L4.89062 26.7031\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-34\"/>\n",
" </defs>\n",
" <g transform=\"translate(294.763564481 148.831490042)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_17\">\n",
" <g id=\"line2d_20\">\n",
" <path d=\"\n",
"M302.939 129.744\n",
"L306.88 130.492\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_20\">\n",
" <!-- −120000 -->\n",
" <g transform=\"translate(295.600578112 136.316157383)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_18\">\n",
" <g id=\"line2d_21\">\n",
" <path d=\"\n",
"M303.695 117.063\n",
"L307.661 117.802\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_21\">\n",
" <!-- −100000 -->\n",
" <g transform=\"translate(296.447803123 123.64814045)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_19\">\n",
" <g id=\"line2d_22\">\n",
" <path d=\"\n",
"M304.461 104.227\n",
"L308.452 104.957\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_22\">\n",
" <!-- −80000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M31.7812 34.625\n",
"Q24.75 34.625 20.7188 30.8594\n",
"Q16.7031 27.0938 16.7031 20.5156\n",
"Q16.7031 13.9219 20.7188 10.1562\n",
"Q24.75 6.39062 31.7812 6.39062\n",
"Q38.8125 6.39062 42.8594 10.1719\n",
"Q46.9219 13.9688 46.9219 20.5156\n",
"Q46.9219 27.0938 42.8906 30.8594\n",
"Q38.875 34.625 31.7812 34.625\n",
"M21.9219 38.8125\n",
"Q15.5781 40.375 12.0312 44.7188\n",
"Q8.5 49.0781 8.5 55.3281\n",
"Q8.5 64.0625 14.7188 69.1406\n",
"Q20.9531 74.2188 31.7812 74.2188\n",
"Q42.6719 74.2188 48.875 69.1406\n",
"Q55.0781 64.0625 55.0781 55.3281\n",
"Q55.0781 49.0781 51.5312 44.7188\n",
"Q48 40.375 41.7031 38.8125\n",
"Q48.8281 37.1562 52.7969 32.3125\n",
"Q56.7812 27.4844 56.7812 20.5156\n",
"Q56.7812 9.90625 50.3125 4.23438\n",
"Q43.8438 -1.42188 31.7812 -1.42188\n",
"Q19.7344 -1.42188 13.25 4.23438\n",
"Q6.78125 9.90625 6.78125 20.5156\n",
"Q6.78125 27.4844 10.7812 32.3125\n",
"Q14.7969 37.1562 21.9219 38.8125\n",
"M18.3125 54.3906\n",
"Q18.3125 48.7344 21.8438 45.5625\n",
"Q25.3906 42.3906 31.7812 42.3906\n",
"Q38.1406 42.3906 41.7188 45.5625\n",
"Q45.3125 48.7344 45.3125 54.3906\n",
"Q45.3125 60.0625 41.7188 63.2344\n",
"Q38.1406 66.4062 31.7812 66.4062\n",
"Q25.3906 66.4062 21.8438 63.2344\n",
"Q18.3125 60.0625 18.3125 54.3906\" id=\"BitstreamVeraSans-Roman-38\"/>\n",
" </defs>\n",
" <g transform=\"translate(300.486677526 110.824628024)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-38\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_20\">\n",
" <g id=\"line2d_23\">\n",
" <path d=\"\n",
"M305.236 91.2325\n",
"L309.252 91.9531\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_23\">\n",
" <!-- −60000 -->\n",
" <g transform=\"translate(301.354893977 97.8427394446)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_21\">\n",
" <g id=\"line2d_24\">\n",
" <path d=\"\n",
"M306.021 78.0759\n",
"L310.063 78.7868\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_24\">\n",
" <!-- −40000 -->\n",
" <g transform=\"translate(302.233899919 84.6995224567)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_22\">\n",
" <g id=\"line2d_25\">\n",
" <path d=\"\n",
"M306.815 64.7546\n",
"L310.884 65.4555\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_25\">\n",
" <!-- −20000 -->\n",
" <g transform=\"translate(303.123897735 71.3919509688)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_23\">\n",
" <g id=\"line2d_26\">\n",
" <path d=\"\n",
"M307.62 51.2654\n",
"L311.715 51.956\" style=\"fill:none;stroke:#000000;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"text_26\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(320.73993865 57.9169227316)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"line2d_27\">\n",
" <path clip-path=\"url(#pf4e2211f04)\" d=\"\n",
"M287.245 61.6422\n",
"L287.243 61.6454\n",
"L287.234 61.6582\n",
"L287.214 61.6849\n",
"L287.186 61.7275\n",
"L287.153 61.7842\n",
"L287.116 61.8523\n",
"L287.067 61.9266\n",
"L287.007 62.0033\n",
"L286.936 62.0875\n",
"L286.854 62.1875\n",
"L286.76 62.3021\n",
"L286.658 62.4264\n",
"L286.551 62.5588\n",
"L286.44 62.6983\n",
"L286.334 62.8412\n",
"L286.237 62.9829\n",
"L286.133 63.1259\n",
"L286.014 63.2809\n",
"L285.878 63.453\n",
"L285.73 63.6364\n",
"L285.538 63.8114\n",
"L283.973 63.7169\n",
"L278.202 62.8612\n",
"L268.225 61.2599\n",
"L258.119 59.652\n",
"L251.858 59.0246\n",
"L251.364 60.0822\n",
"L255.381 63.357\n",
"L258.398 69.6435\n",
"L254.087 78.004\n",
"L241.965 86.057\n",
"L226.74 93.3512\n",
"L211.338 100.515\n",
"L196.033 107.655\n",
"L180.806 114.777\n",
"L165.659 121.869\n",
"L150.602 128.923\n",
"L135.635 135.937\n",
"L120.753 142.907\n",
"L105.95 149.841\n",
"L91.2271 156.745\n",
"L76.588 163.618\" style=\"fill:none;stroke:#0000ff;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"legend_1\">\n",
" <g id=\"patch_6\">\n",
" <path d=\"\n",
"M273.262 34.4138\n",
"L336 34.4138\n",
"L336 13.2\n",
"L273.262 13.2\n",
"L273.262 34.4138\n",
"z\n",
"\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"line2d_28\">\n",
" <path d=\"\n",
"M281.663 22.9181\n",
"L298.462 22.9181\" style=\"fill:none;stroke:#0000ff;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"line2d_29\"/>\n",
" <g id=\"text_27\">\n",
" <!-- pos -->\n",
" <defs>\n",
" <path d=\"\n",
"M30.6094 48.3906\n",
"Q23.3906 48.3906 19.1875 42.75\n",
"Q14.9844 37.1094 14.9844 27.2969\n",
"Q14.9844 17.4844 19.1562 11.8438\n",
"Q23.3438 6.20312 30.6094 6.20312\n",
"Q37.7969 6.20312 41.9844 11.8594\n",
"Q46.1875 17.5312 46.1875 27.2969\n",
"Q46.1875 37.0156 41.9844 42.7031\n",
"Q37.7969 48.3906 30.6094 48.3906\n",
"M30.6094 56\n",
"Q42.3281 56 49.0156 48.375\n",
"Q55.7188 40.7656 55.7188 27.2969\n",
"Q55.7188 13.875 49.0156 6.21875\n",
"Q42.3281 -1.42188 30.6094 -1.42188\n",
"Q18.8438 -1.42188 12.1719 6.21875\n",
"Q5.51562 13.875 5.51562 27.2969\n",
"Q5.51562 40.7656 12.1719 48.375\n",
"Q18.8438 56 30.6094 56\" id=\"BitstreamVeraSans-Roman-6f\"/>\n",
" <path d=\"\n",
"M44.2812 53.0781\n",
"L44.2812 44.5781\n",
"Q40.4844 46.5312 36.375 47.5\n",
"Q32.2812 48.4844 27.875 48.4844\n",
"Q21.1875 48.4844 17.8438 46.4375\n",
"Q14.5 44.3906 14.5 40.2812\n",
"Q14.5 37.1562 16.8906 35.375\n",
"Q19.2812 33.5938 26.5156 31.9844\n",
"L29.5938 31.2969\n",
"Q39.1562 29.25 43.1875 25.5156\n",
"Q47.2188 21.7812 47.2188 15.0938\n",
"Q47.2188 7.46875 41.1875 3.01562\n",
"Q35.1562 -1.42188 24.6094 -1.42188\n",
"Q20.2188 -1.42188 15.4531 -0.5625\n",
"Q10.6875 0.296875 5.42188 2\n",
"L5.42188 11.2812\n",
"Q10.4062 8.6875 15.2344 7.39062\n",
"Q20.0625 6.10938 24.8125 6.10938\n",
"Q31.1562 6.10938 34.5625 8.28125\n",
"Q37.9844 10.4531 37.9844 14.4062\n",
"Q37.9844 18.0625 35.5156 20.0156\n",
"Q33.0625 21.9688 24.7031 23.7812\n",
"L21.5781 24.5156\n",
"Q13.2344 26.2656 9.51562 29.9062\n",
"Q5.8125 33.5469 5.8125 39.8906\n",
"Q5.8125 47.6094 11.2812 51.7969\n",
"Q16.75 56 26.8125 56\n",
"Q31.7812 56 36.1719 55.2656\n",
"Q40.5781 54.5469 44.2812 53.0781\" id=\"BitstreamVeraSans-Roman-73\"/>\n",
" <path d=\"\n",
"M18.1094 8.20312\n",
"L18.1094 -20.7969\n",
"L9.07812 -20.7969\n",
"L9.07812 54.6875\n",
"L18.1094 54.6875\n",
"L18.1094 46.3906\n",
"Q20.9531 51.2656 25.2656 53.625\n",
"Q29.5938 56 35.5938 56\n",
"Q45.5625 56 51.7812 48.0938\n",
"Q58.0156 40.1875 58.0156 27.2969\n",
"Q58.0156 14.4062 51.7812 6.48438\n",
"Q45.5625 -1.42188 35.5938 -1.42188\n",
"Q29.5938 -1.42188 25.2656 0.953125\n",
"Q20.9531 3.32812 18.1094 8.20312\n",
"M48.6875 27.2969\n",
"Q48.6875 37.2031 44.6094 42.8438\n",
"Q40.5312 48.4844 33.4062 48.4844\n",
"Q26.2656 48.4844 22.1875 42.8438\n",
"Q18.1094 37.2031 18.1094 27.2969\n",
"Q18.1094 17.3906 22.1875 11.75\n",
"Q26.2656 6.10938 33.4062 6.10938\n",
"Q40.5312 6.10938 44.6094 11.75\n",
"Q48.6875 17.3906 48.6875 27.2969\" id=\"BitstreamVeraSans-Roman-70\"/>\n",
" </defs>\n",
" <g transform=\"translate(311.6625 27.118125)scale(0.12 -0.12)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-70\"/>\n",
" <use x=\"63.4765625\" xlink:href=\"#BitstreamVeraSans-Roman-6f\"/>\n",
" <use x=\"124.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-73\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pf4e2211f04\">\n",
" <rect height=\"223.2\" width=\"334.8\" x=\"7.2\" y=\"7.2\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n"
],
"text/plain": [
"<matplotlib.figure.Figure at 0x10e627f10>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"vel_x = integrate.cumtrapz(data['ax'], data.t,initial=0)\n",
"vel_y = integrate.cumtrapz(data['ay'], data.t,initial=0)\n",
"vel_z = integrate.cumtrapz(data['az'], data.t,initial=0)\n",
"pos_x = integrate.cumtrapz(vel_x, data.t,initial=0)\n",
"pos_y = integrate.cumtrapz(vel_y, data.t,initial=0)\n",
"pos_z = integrate.cumtrapz(vel_z, data.t,initial=0)\n",
"fig = plt.figure()\n",
"ax = fig.gca(projection='3d')\n",
"ax.plot(pos_x, pos_y, pos_z, label='pos')\n",
"ax.set_xlabel('X')\n",
"ax.set_ylabel('Y')\n",
"ax.set_zlabel('Z')\n",
"ax.legend()"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"<matplotlib.text.Text at 0x10c9cd190>"
]
},
"execution_count": 12,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
"<!-- Created with matplotlib (http://matplotlib.org/) -->\n",
"<svg height=\"270pt\" version=\"1.1\" viewBox=\"0 0 415 270\" width=\"415pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"\n",
"M0 270.795\n",
"L415.229 270.795\n",
"L415.229 0\n",
"L0 0\n",
"z\n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"\n",
"M70.7094 235.239\n",
"L405.509 235.239\n",
"L405.509 12.0391\n",
"L70.7094 12.0391\n",
"z\n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"line2d_1\">\n",
" <path clip-path=\"url(#pcdd61efa71)\" d=\"\n",
"M405.509 56.6791\n",
"L405.507 56.6812\n",
"L405.496 56.6895\n",
"L405.474 56.7103\n",
"L405.445 56.7425\n",
"L405.407 56.771\n",
"L405.354 56.7917\n",
"L405.283 56.8174\n",
"L405.199 56.8567\n",
"L405.104 56.908\n",
"L404.993 56.9686\n",
"L404.869 57.0401\n",
"L404.734 57.1192\n",
"L404.59 57.1972\n",
"L404.437 57.2713\n",
"L404.292 57.3439\n",
"L404.165 57.4181\n",
"L404.032 57.5004\n",
"L403.876 57.5926\n",
"L403.693 57.6913\n",
"L403.49 57.7944\n",
"L403.162 57.8489\n",
"L399.953 57.7765\n",
"L388.068 57.5472\n",
"L367.309 57.0116\n",
"L345.969 56.2276\n",
"L333.279 56.4772\n",
"L334.557 59.3283\n",
"L346.966 64.4147\n",
"L359.177 71.6562\n",
"L358.731 81.6578\n",
"L343.104 92.692\n",
"L320.621 103.306\n",
"L297.452 113.737\n",
"L274.298 124.149\n",
"L251.148 134.579\n",
"L228 145.016\n",
"L204.863 155.447\n",
"L181.743 165.874\n",
"L158.628 176.296\n",
"L135.509 186.715\n",
"L112.387 197.128\n",
"L89.2633 207.53\" style=\"fill:none;stroke:#0000ff;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L0 -4\" id=\"m93b0483c22\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"70.709375\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_3\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L0 4\" id=\"m741efc42ff\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"70.709375\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- −350000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M10.5938 35.5\n",
"L73.1875 35.5\n",
"L73.1875 27.2031\n",
"L10.5938 27.2031\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-2212\"/>\n",
" <path d=\"\n",
"M40.5781 39.3125\n",
"Q47.6562 37.7969 51.625 33\n",
"Q55.6094 28.2188 55.6094 21.1875\n",
"Q55.6094 10.4062 48.1875 4.48438\n",
"Q40.7656 -1.42188 27.0938 -1.42188\n",
"Q22.5156 -1.42188 17.6562 -0.515625\n",
"Q12.7969 0.390625 7.625 2.20312\n",
"L7.625 11.7188\n",
"Q11.7188 9.32812 16.5938 8.10938\n",
"Q21.4844 6.89062 26.8125 6.89062\n",
"Q36.0781 6.89062 40.9375 10.5469\n",
"Q45.7969 14.2031 45.7969 21.1875\n",
"Q45.7969 27.6406 41.2812 31.2656\n",
"Q36.7656 34.9062 28.7188 34.9062\n",
"L20.2188 34.9062\n",
"L20.2188 43.0156\n",
"L29.1094 43.0156\n",
"Q36.375 43.0156 40.2344 45.9219\n",
"Q44.0938 48.8281 44.0938 54.2969\n",
"Q44.0938 59.9062 40.1094 62.9062\n",
"Q36.1406 65.9219 28.7188 65.9219\n",
"Q24.6562 65.9219 20.0156 65.0312\n",
"Q15.375 64.1562 9.8125 62.3125\n",
"L9.8125 71.0938\n",
"Q15.4375 72.6562 20.3438 73.4375\n",
"Q25.25 74.2188 29.5938 74.2188\n",
"Q40.8281 74.2188 47.3594 69.1094\n",
"Q53.9062 64.0156 53.9062 55.3281\n",
"Q53.9062 49.2656 50.4375 45.0938\n",
"Q46.9688 40.9219 40.5781 39.3125\" id=\"BitstreamVeraSans-Roman-33\"/>\n",
" <path d=\"\n",
"M31.7812 66.4062\n",
"Q24.1719 66.4062 20.3281 58.9062\n",
"Q16.5 51.4219 16.5 36.375\n",
"Q16.5 21.3906 20.3281 13.8906\n",
"Q24.1719 6.39062 31.7812 6.39062\n",
"Q39.4531 6.39062 43.2812 13.8906\n",
"Q47.125 21.3906 47.125 36.375\n",
"Q47.125 51.4219 43.2812 58.9062\n",
"Q39.4531 66.4062 31.7812 66.4062\n",
"M31.7812 74.2188\n",
"Q44.0469 74.2188 50.5156 64.5156\n",
"Q56.9844 54.8281 56.9844 36.375\n",
"Q56.9844 17.9688 50.5156 8.26562\n",
"Q44.0469 -1.42188 31.7812 -1.42188\n",
"Q19.5312 -1.42188 13.0625 8.26562\n",
"Q6.59375 17.9688 6.59375 36.375\n",
"Q6.59375 54.8281 13.0625 64.5156\n",
"Q19.5312 74.2188 31.7812 74.2188\" id=\"BitstreamVeraSans-Roman-30\"/>\n",
" <path d=\"\n",
"M10.7969 72.9062\n",
"L49.5156 72.9062\n",
"L49.5156 64.5938\n",
"L19.8281 64.5938\n",
"L19.8281 46.7344\n",
"Q21.9688 47.4688 24.1094 47.8281\n",
"Q26.2656 48.1875 28.4219 48.1875\n",
"Q40.625 48.1875 47.75 41.5\n",
"Q54.8906 34.8125 54.8906 23.3906\n",
"Q54.8906 11.625 47.5625 5.09375\n",
"Q40.2344 -1.42188 26.9062 -1.42188\n",
"Q22.3125 -1.42188 17.5469 -0.640625\n",
"Q12.7969 0.140625 7.71875 1.70312\n",
"L7.71875 11.625\n",
"Q12.1094 9.23438 16.7969 8.0625\n",
"Q21.4844 6.89062 26.7031 6.89062\n",
"Q35.1562 6.89062 40.0781 11.3281\n",
"Q45.0156 15.7656 45.0156 23.3906\n",
"Q45.0156 31 40.0781 35.4375\n",
"Q35.1562 39.8906 26.7031 39.8906\n",
"Q22.75 39.8906 18.8125 39.0156\n",
"Q14.8906 38.1406 10.7969 36.2812\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-35\"/>\n",
" </defs>\n",
" <g transform=\"translate(48.29375 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"118.537946429\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_5\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"118.537946429\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- −300000 -->\n",
" <g transform=\"translate(96.1223214286 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"166.366517857\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_7\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"166.366517857\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- −250000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M19.1875 8.29688\n",
"L53.6094 8.29688\n",
"L53.6094 0\n",
"L7.32812 0\n",
"L7.32812 8.29688\n",
"Q12.9375 14.1094 22.625 23.8906\n",
"Q32.3281 33.6875 34.8125 36.5312\n",
"Q39.5469 41.8438 41.4219 45.5312\n",
"Q43.3125 49.2188 43.3125 52.7812\n",
"Q43.3125 58.5938 39.2344 62.25\n",
"Q35.1562 65.9219 28.6094 65.9219\n",
"Q23.9688 65.9219 18.8125 64.3125\n",
"Q13.6719 62.7031 7.8125 59.4219\n",
"L7.8125 69.3906\n",
"Q13.7656 71.7812 18.9375 73\n",
"Q24.125 74.2188 28.4219 74.2188\n",
"Q39.75 74.2188 46.4844 68.5469\n",
"Q53.2188 62.8906 53.2188 53.4219\n",
"Q53.2188 48.9219 51.5312 44.8906\n",
"Q49.8594 40.875 45.4062 35.4062\n",
"Q44.1875 33.9844 37.6406 27.2188\n",
"Q31.1094 20.4531 19.1875 8.29688\" id=\"BitstreamVeraSans-Roman-32\"/>\n",
" </defs>\n",
" <g transform=\"translate(143.950892857 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_4\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"214.195089286\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_9\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"214.195089286\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- −200000 -->\n",
" <g transform=\"translate(191.779464286 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_5\">\n",
" <g id=\"line2d_10\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"262.023660714\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_11\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"262.023660714\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- −150000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M12.4062 8.29688\n",
"L28.5156 8.29688\n",
"L28.5156 63.9219\n",
"L10.9844 60.4062\n",
"L10.9844 69.3906\n",
"L28.4219 72.9062\n",
"L38.2812 72.9062\n",
"L38.2812 8.29688\n",
"L54.3906 8.29688\n",
"L54.3906 0\n",
"L12.4062 0\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-31\"/>\n",
" </defs>\n",
" <g transform=\"translate(239.608035714 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_6\">\n",
" <g id=\"line2d_12\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"309.852232143\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_13\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"309.852232143\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_6\">\n",
" <!-- −100000 -->\n",
" <g transform=\"translate(287.436607143 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_7\">\n",
" <g id=\"line2d_14\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"357.680803571\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_15\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"357.680803571\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_7\">\n",
" <!-- −50000 -->\n",
" <g transform=\"translate(338.446428571 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_8\">\n",
" <g id=\"line2d_16\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"405.509375\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_17\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"405.509375\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_8\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(402.98984375 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_9\">\n",
" <!-- x -->\n",
" <defs>\n",
" <path d=\"\n",
"M54.8906 54.6875\n",
"L35.1094 28.0781\n",
"L55.9062 0\n",
"L45.3125 0\n",
"L29.3906 21.4844\n",
"L13.4844 0\n",
"L2.875 0\n",
"L24.125 28.6094\n",
"L4.6875 54.6875\n",
"L15.2812 54.6875\n",
"L29.7812 35.2031\n",
"L44.2812 54.6875\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-78\"/>\n",
" </defs>\n",
" <g transform=\"translate(235.4578125 261.515625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-78\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_18\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L4 0\" id=\"m728421d6d4\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"70.709375\" xlink:href=\"#m728421d6d4\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_19\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L-4 0\" id=\"mcb0005524f\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"405.509375\" xlink:href=\"#mcb0005524f\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_10\">\n",
" <!-- −200000 -->\n",
" <g transform=\"translate(21.878125 237.9984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_20\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"70.709375\" xlink:href=\"#m728421d6d4\" y=\"190.5990625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_21\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"405.509375\" xlink:href=\"#mcb0005524f\" y=\"190.5990625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_11\">\n",
" <!-- −150000 -->\n",
" <g transform=\"translate(21.878125 193.3584375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_3\">\n",
" <g id=\"line2d_22\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"70.709375\" xlink:href=\"#m728421d6d4\" y=\"145.9590625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_23\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"405.509375\" xlink:href=\"#mcb0005524f\" y=\"145.9590625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_12\">\n",
" <!-- −100000 -->\n",
" <g transform=\"translate(21.878125 148.7184375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_4\">\n",
" <g id=\"line2d_24\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"70.709375\" xlink:href=\"#m728421d6d4\" y=\"101.3190625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_25\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"405.509375\" xlink:href=\"#mcb0005524f\" y=\"101.3190625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_13\">\n",
" <!-- −50000 -->\n",
" <g transform=\"translate(28.240625 104.0784375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_5\">\n",
" <g id=\"line2d_26\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"70.709375\" xlink:href=\"#m728421d6d4\" y=\"56.6790625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_27\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"405.509375\" xlink:href=\"#mcb0005524f\" y=\"56.6790625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_14\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(61.6703125 59.4384375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_6\">\n",
" <g id=\"line2d_28\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"70.709375\" xlink:href=\"#m728421d6d4\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_29\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"405.509375\" xlink:href=\"#mcb0005524f\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_15\">\n",
" <!-- 50000 -->\n",
" <g transform=\"translate(36.3328125 14.7984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"254.4921875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_16\">\n",
" <!-- y -->\n",
" <defs>\n",
" <path d=\"\n",
"M32.1719 -5.07812\n",
"Q28.375 -14.8438 24.75 -17.8125\n",
"Q21.1406 -20.7969 15.0938 -20.7969\n",
"L7.90625 -20.7969\n",
"L7.90625 -13.2812\n",
"L13.1875 -13.2812\n",
"Q16.8906 -13.2812 18.9375 -11.5156\n",
"Q21 -9.76562 23.4844 -3.21875\n",
"L25.0938 0.875\n",
"L2.98438 54.6875\n",
"L12.5 54.6875\n",
"L29.5938 11.9219\n",
"L46.6875 54.6875\n",
"L56.2031 54.6875\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-79\"/>\n",
" </defs>\n",
" <g transform=\"translate(14.7984375 126.3)rotate(-90.0)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-79\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"\n",
"M70.7094 12.0391\n",
"L405.509 12.0391\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"\n",
"M405.509 235.239\n",
"L405.509 12.0391\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"\n",
"M70.7094 235.239\n",
"L405.509 235.239\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"\n",
"M70.7094 235.239\n",
"L70.7094 12.0391\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pcdd61efa71\">\n",
" <rect height=\"223.2\" width=\"334.8\" x=\"70.709375\" y=\"12.0390625\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n"
],
"text/plain": [
"<matplotlib.figure.Figure at 0x10c6b2ed0>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"plt.plot(pos_x,pos_y)\n",
"plt.xlabel('x')\n",
"plt.ylabel('y')"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"[<matplotlib.lines.Line2D at 0x10d372f50>]"
]
},
"execution_count": 13,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
"<!-- Created with matplotlib (http://matplotlib.org/) -->\n",
"<svg height=\"256pt\" version=\"1.1\" viewBox=\"0 0 388 256\" width=\"388pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"\n",
"M0 256.117\n",
"L388.011 256.117\n",
"L388.011 0\n",
"L0 0\n",
"z\n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"\n",
"M33.8625 235.239\n",
"L368.663 235.239\n",
"L368.663 12.0391\n",
"L33.8625 12.0391\n",
"z\n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"line2d_1\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 3\n",
"C0.795609 3 1.55874 2.6839 2.12132 2.12132\n",
"C2.6839 1.55874 3 0.795609 3 0\n",
"C3 -0.795609 2.6839 -1.55874 2.12132 -2.12132\n",
"C1.55874 -2.6839 0.795609 -3 0 -3\n",
"C-0.795609 -3 -1.55874 -2.6839 -2.12132 -2.12132\n",
"C-2.6839 -1.55874 -3 -0.795609 -3 0\n",
"C-3 0.795609 -2.6839 1.55874 -2.12132 2.12132\n",
"C-1.55874 2.6839 -0.795609 3 0 3\n",
"z\n",
"\" id=\"mf1e9a9e4ae\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g clip-path=\"url(#p33057e3db6)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"33.8625\" xlink:href=\"#mf1e9a9e4ae\" y=\"39.9390625\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"41.3025\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.2115234375\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"48.8169\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.1434082031\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"56.2569\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.8245605469\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"63.6969\" xlink:href=\"#mf1e9a9e4ae\" y=\"39.394140625\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"71.1369\" xlink:href=\"#mf1e9a9e4ae\" y=\"39.6666015625\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"78.5769\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.0752929687\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"86.0169\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.5520996094\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"93.4569\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.2796386719\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"100.8969\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.1434082031\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"108.3369\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.3477539062\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"115.7769\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.2796386719\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"123.2169\" xlink:href=\"#mf1e9a9e4ae\" y=\"39.8028320312\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"130.6569\" xlink:href=\"#mf1e9a9e4ae\" y=\"39.7347167969\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"138.0969\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.0071777344\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"145.5369\" xlink:href=\"#mf1e9a9e4ae\" y=\"39.8028320312\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"152.9769\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.3477539062\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"160.4169\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.2796386719\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"167.8569\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.0752929687\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"175.2969\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.1434082031\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"182.7369\" xlink:href=\"#mf1e9a9e4ae\" y=\"39.9390625\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"190.1769\" xlink:href=\"#mf1e9a9e4ae\" y=\"33.6724609375\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"197.6169\" xlink:href=\"#mf1e9a9e4ae\" y=\"36.6014160156\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"205.0569\" xlink:href=\"#mf1e9a9e4ae\" y=\"33.2637695312\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"212.4969\" xlink:href=\"#mf1e9a9e4ae\" y=\"18.3465332031\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"219.9369\" xlink:href=\"#mf1e9a9e4ae\" y=\"58.7388671875\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"227.3769\" xlink:href=\"#mf1e9a9e4ae\" y=\"153.146582031\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"234.8169\" xlink:href=\"#mf1e9a9e4ae\" y=\"119.906347656\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"242.2569\" xlink:href=\"#mf1e9a9e4ae\" y=\"46.2056640625\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"249.6969\" xlink:href=\"#mf1e9a9e4ae\" y=\"216.834326172\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"257.1369\" xlink:href=\"#mf1e9a9e4ae\" y=\"24.8855957031\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"264.5769\" xlink:href=\"#mf1e9a9e4ae\" y=\"22.2291015625\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"272.0169\" xlink:href=\"#mf1e9a9e4ae\" y=\"37.8274902344\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"279.4569\" xlink:href=\"#mf1e9a9e4ae\" y=\"39.0535644531\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"286.8969\" xlink:href=\"#mf1e9a9e4ae\" y=\"41.573828125\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"294.3369\" xlink:href=\"#mf1e9a9e4ae\" y=\"39.6666015625\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"301.7769\" xlink:href=\"#mf1e9a9e4ae\" y=\"39.7347167969\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"309.2169\" xlink:href=\"#mf1e9a9e4ae\" y=\"39.8709472656\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"316.6569\" xlink:href=\"#mf1e9a9e4ae\" y=\"39.7347167969\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"324.0969\" xlink:href=\"#mf1e9a9e4ae\" y=\"39.8709472656\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"331.5369\" xlink:href=\"#mf1e9a9e4ae\" y=\"39.8709472656\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"338.9769\" xlink:href=\"#mf1e9a9e4ae\" y=\"39.394140625\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"346.4169\" xlink:href=\"#mf1e9a9e4ae\" y=\"39.6666015625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L0 -4\" id=\"m93b0483c22\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"33.8625\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_3\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L0 4\" id=\"m741efc42ff\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"33.8625\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 0 -->\n",
" <defs>\n",
" <path d=\"\n",
"M31.7812 66.4062\n",
"Q24.1719 66.4062 20.3281 58.9062\n",
"Q16.5 51.4219 16.5 36.375\n",
"Q16.5 21.3906 20.3281 13.8906\n",
"Q24.1719 6.39062 31.7812 6.39062\n",
"Q39.4531 6.39062 43.2812 13.8906\n",
"Q47.125 21.3906 47.125 36.375\n",
"Q47.125 51.4219 43.2812 58.9062\n",
"Q39.4531 66.4062 31.7812 66.4062\n",
"M31.7812 74.2188\n",
"Q44.0469 74.2188 50.5156 64.5156\n",
"Q56.9844 54.8281 56.9844 36.375\n",
"Q56.9844 17.9688 50.5156 8.26562\n",
"Q44.0469 -1.42188 31.7812 -1.42188\n",
"Q19.5312 -1.42188 13.0625 8.26562\n",
"Q6.59375 17.9688 6.59375 36.375\n",
"Q6.59375 54.8281 13.0625 64.5156\n",
"Q19.5312 74.2188 31.7812 74.2188\" id=\"BitstreamVeraSans-Roman-30\"/>\n",
" </defs>\n",
" <g transform=\"translate(31.34296875 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"71.0625\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_5\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"71.0625\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 500 -->\n",
" <defs>\n",
" <path d=\"\n",
"M10.7969 72.9062\n",
"L49.5156 72.9062\n",
"L49.5156 64.5938\n",
"L19.8281 64.5938\n",
"L19.8281 46.7344\n",
"Q21.9688 47.4688 24.1094 47.8281\n",
"Q26.2656 48.1875 28.4219 48.1875\n",
"Q40.625 48.1875 47.75 41.5\n",
"Q54.8906 34.8125 54.8906 23.3906\n",
"Q54.8906 11.625 47.5625 5.09375\n",
"Q40.2344 -1.42188 26.9062 -1.42188\n",
"Q22.3125 -1.42188 17.5469 -0.640625\n",
"Q12.7969 0.140625 7.71875 1.70312\n",
"L7.71875 11.625\n",
"Q12.1094 9.23438 16.7969 8.0625\n",
"Q21.4844 6.89062 26.7031 6.89062\n",
"Q35.1562 6.89062 40.0781 11.3281\n",
"Q45.0156 15.7656 45.0156 23.3906\n",
"Q45.0156 31 40.0781 35.4375\n",
"Q35.1562 39.8906 26.7031 39.8906\n",
"Q22.75 39.8906 18.8125 39.0156\n",
"Q14.8906 38.1406 10.7969 36.2812\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-35\"/>\n",
" </defs>\n",
" <g transform=\"translate(62.23671875 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"108.2625\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_7\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"108.2625\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 1000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M12.4062 8.29688\n",
"L28.5156 8.29688\n",
"L28.5156 63.9219\n",
"L10.9844 60.4062\n",
"L10.9844 69.3906\n",
"L28.4219 72.9062\n",
"L38.2812 72.9062\n",
"L38.2812 8.29688\n",
"L54.3906 8.29688\n",
"L54.3906 0\n",
"L12.4062 0\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-31\"/>\n",
" </defs>\n",
" <g transform=\"translate(96.41875 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_4\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"145.4625\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_9\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"145.4625\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 1500 -->\n",
" <g transform=\"translate(133.61875 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_5\">\n",
" <g id=\"line2d_10\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"182.6625\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_11\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"182.6625\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- 2000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M19.1875 8.29688\n",
"L53.6094 8.29688\n",
"L53.6094 0\n",
"L7.32812 0\n",
"L7.32812 8.29688\n",
"Q12.9375 14.1094 22.625 23.8906\n",
"Q32.3281 33.6875 34.8125 36.5312\n",
"Q39.5469 41.8438 41.4219 45.5312\n",
"Q43.3125 49.2188 43.3125 52.7812\n",
"Q43.3125 58.5938 39.2344 62.25\n",
"Q35.1562 65.9219 28.6094 65.9219\n",
"Q23.9688 65.9219 18.8125 64.3125\n",
"Q13.6719 62.7031 7.8125 59.4219\n",
"L7.8125 69.3906\n",
"Q13.7656 71.7812 18.9375 73\n",
"Q24.125 74.2188 28.4219 74.2188\n",
"Q39.75 74.2188 46.4844 68.5469\n",
"Q53.2188 62.8906 53.2188 53.4219\n",
"Q53.2188 48.9219 51.5312 44.8906\n",
"Q49.8594 40.875 45.4062 35.4062\n",
"Q44.1875 33.9844 37.6406 27.2188\n",
"Q31.1094 20.4531 19.1875 8.29688\" id=\"BitstreamVeraSans-Roman-32\"/>\n",
" </defs>\n",
" <g transform=\"translate(170.6359375 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_6\">\n",
" <g id=\"line2d_12\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"219.8625\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_13\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"219.8625\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_6\">\n",
" <!-- 2500 -->\n",
" <g transform=\"translate(207.8359375 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_7\">\n",
" <g id=\"line2d_14\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"257.0625\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_15\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"257.0625\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_7\">\n",
" <!-- 3000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M40.5781 39.3125\n",
"Q47.6562 37.7969 51.625 33\n",
"Q55.6094 28.2188 55.6094 21.1875\n",
"Q55.6094 10.4062 48.1875 4.48438\n",
"Q40.7656 -1.42188 27.0938 -1.42188\n",
"Q22.5156 -1.42188 17.6562 -0.515625\n",
"Q12.7969 0.390625 7.625 2.20312\n",
"L7.625 11.7188\n",
"Q11.7188 9.32812 16.5938 8.10938\n",
"Q21.4844 6.89062 26.8125 6.89062\n",
"Q36.0781 6.89062 40.9375 10.5469\n",
"Q45.7969 14.2031 45.7969 21.1875\n",
"Q45.7969 27.6406 41.2812 31.2656\n",
"Q36.7656 34.9062 28.7188 34.9062\n",
"L20.2188 34.9062\n",
"L20.2188 43.0156\n",
"L29.1094 43.0156\n",
"Q36.375 43.0156 40.2344 45.9219\n",
"Q44.0938 48.8281 44.0938 54.2969\n",
"Q44.0938 59.9062 40.1094 62.9062\n",
"Q36.1406 65.9219 28.7188 65.9219\n",
"Q24.6562 65.9219 20.0156 65.0312\n",
"Q15.375 64.1562 9.8125 62.3125\n",
"L9.8125 71.0938\n",
"Q15.4375 72.6562 20.3438 73.4375\n",
"Q25.25 74.2188 29.5938 74.2188\n",
"Q40.8281 74.2188 47.3594 69.1094\n",
"Q53.9062 64.0156 53.9062 55.3281\n",
"Q53.9062 49.2656 50.4375 45.0938\n",
"Q46.9688 40.9219 40.5781 39.3125\" id=\"BitstreamVeraSans-Roman-33\"/>\n",
" </defs>\n",
" <g transform=\"translate(245.05078125 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_8\">\n",
" <g id=\"line2d_16\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"294.2625\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_17\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"294.2625\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_8\">\n",
" <!-- 3500 -->\n",
" <g transform=\"translate(282.25078125 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_9\">\n",
" <g id=\"line2d_18\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"331.4625\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_19\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"331.4625\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_9\">\n",
" <!-- 4000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M37.7969 64.3125\n",
"L12.8906 25.3906\n",
"L37.7969 25.3906\n",
"z\n",
"\n",
"M35.2031 72.9062\n",
"L47.6094 72.9062\n",
"L47.6094 25.3906\n",
"L58.0156 25.3906\n",
"L58.0156 17.1875\n",
"L47.6094 17.1875\n",
"L47.6094 0\n",
"L37.7969 0\n",
"L37.7969 17.1875\n",
"L4.89062 17.1875\n",
"L4.89062 26.7031\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-34\"/>\n",
" </defs>\n",
" <g transform=\"translate(319.3140625 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_10\">\n",
" <g id=\"line2d_20\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"368.6625\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_21\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"368.6625\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_10\">\n",
" <!-- 4500 -->\n",
" <g transform=\"translate(356.5140625 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_22\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L4 0\" id=\"m728421d6d4\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"33.8625\" xlink:href=\"#m728421d6d4\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_23\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L-4 0\" id=\"mcb0005524f\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"368.6625\" xlink:href=\"#mcb0005524f\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_11\">\n",
" <!-- −0.7 -->\n",
" <defs>\n",
" <path d=\"\n",
"M10.5938 35.5\n",
"L73.1875 35.5\n",
"L73.1875 27.2031\n",
"L10.5938 27.2031\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-2212\"/>\n",
" <path d=\"\n",
"M10.6875 12.4062\n",
"L21 12.4062\n",
"L21 0\n",
"L10.6875 0\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-2e\"/>\n",
" <path d=\"\n",
"M8.20312 72.9062\n",
"L55.0781 72.9062\n",
"L55.0781 68.7031\n",
"L28.6094 0\n",
"L18.3125 0\n",
"L43.2188 64.5938\n",
"L8.20312 64.5938\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-37\"/>\n",
" </defs>\n",
" <g transform=\"translate(7.49375 237.9984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"179.19921875\" xlink:href=\"#BitstreamVeraSans-Roman-37\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_24\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"33.8625\" xlink:href=\"#m728421d6d4\" y=\"207.3390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_25\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"368.6625\" xlink:href=\"#mcb0005524f\" y=\"207.3390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_12\">\n",
" <!-- −0.6 -->\n",
" <defs>\n",
" <path d=\"\n",
"M33.0156 40.375\n",
"Q26.375 40.375 22.4844 35.8281\n",
"Q18.6094 31.2969 18.6094 23.3906\n",
"Q18.6094 15.5312 22.4844 10.9531\n",
"Q26.375 6.39062 33.0156 6.39062\n",
"Q39.6562 6.39062 43.5312 10.9531\n",
"Q47.4062 15.5312 47.4062 23.3906\n",
"Q47.4062 31.2969 43.5312 35.8281\n",
"Q39.6562 40.375 33.0156 40.375\n",
"M52.5938 71.2969\n",
"L52.5938 62.3125\n",
"Q48.875 64.0625 45.0938 64.9844\n",
"Q41.3125 65.9219 37.5938 65.9219\n",
"Q27.8281 65.9219 22.6719 59.3281\n",
"Q17.5312 52.7344 16.7969 39.4062\n",
"Q19.6719 43.6562 24.0156 45.9219\n",
"Q28.375 48.1875 33.5938 48.1875\n",
"Q44.5781 48.1875 50.9531 41.5156\n",
"Q57.3281 34.8594 57.3281 23.3906\n",
"Q57.3281 12.1562 50.6875 5.35938\n",
"Q44.0469 -1.42188 33.0156 -1.42188\n",
"Q20.3594 -1.42188 13.6719 8.26562\n",
"Q6.98438 17.9688 6.98438 36.375\n",
"Q6.98438 53.6562 15.1875 63.9375\n",
"Q23.3906 74.2188 37.2031 74.2188\n",
"Q40.9219 74.2188 44.7031 73.4844\n",
"Q48.4844 72.75 52.5938 71.2969\" id=\"BitstreamVeraSans-Roman-36\"/>\n",
" </defs>\n",
" <g transform=\"translate(7.26875 210.0984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"179.19921875\" xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_3\">\n",
" <g id=\"line2d_26\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"33.8625\" xlink:href=\"#m728421d6d4\" y=\"179.4390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_27\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"368.6625\" xlink:href=\"#mcb0005524f\" y=\"179.4390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_13\">\n",
" <!-- −0.5 -->\n",
" <g transform=\"translate(7.5125 182.1984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"179.19921875\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_4\">\n",
" <g id=\"line2d_28\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"33.8625\" xlink:href=\"#m728421d6d4\" y=\"151.5390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_29\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"368.6625\" xlink:href=\"#mcb0005524f\" y=\"151.5390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_14\">\n",
" <!-- −0.4 -->\n",
" <g transform=\"translate(7.2 154.2984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"179.19921875\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_5\">\n",
" <g id=\"line2d_30\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"33.8625\" xlink:href=\"#m728421d6d4\" y=\"123.6390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_31\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"368.6625\" xlink:href=\"#mcb0005524f\" y=\"123.6390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_15\">\n",
" <!-- −0.3 -->\n",
" <g transform=\"translate(7.440625 126.3984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"179.19921875\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_6\">\n",
" <g id=\"line2d_32\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"33.8625\" xlink:href=\"#m728421d6d4\" y=\"95.7390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_33\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"368.6625\" xlink:href=\"#mcb0005524f\" y=\"95.7390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_16\">\n",
" <!-- −0.2 -->\n",
" <g transform=\"translate(7.640625 98.4984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"179.19921875\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_7\">\n",
" <g id=\"line2d_34\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"33.8625\" xlink:href=\"#m728421d6d4\" y=\"67.8390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_35\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"368.6625\" xlink:href=\"#mcb0005524f\" y=\"67.8390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_17\">\n",
" <!-- −0.1 -->\n",
" <g transform=\"translate(7.5625 70.5984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"179.19921875\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_8\">\n",
" <g id=\"line2d_36\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"33.8625\" xlink:href=\"#m728421d6d4\" y=\"39.9390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_37\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"368.6625\" xlink:href=\"#mcb0005524f\" y=\"39.9390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_18\">\n",
" <!-- 0.0 -->\n",
" <g transform=\"translate(15.2828125 42.6984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_9\">\n",
" <g id=\"line2d_38\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"33.8625\" xlink:href=\"#m728421d6d4\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_39\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"368.6625\" xlink:href=\"#mcb0005524f\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_19\">\n",
" <!-- 0.1 -->\n",
" <g transform=\"translate(15.5421875 14.7984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"\n",
"M33.8625 12.0391\n",
"L368.663 12.0391\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"\n",
"M368.663 235.239\n",
"L368.663 12.0391\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"\n",
"M33.8625 235.239\n",
"L368.663 235.239\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"\n",
"M33.8625 235.239\n",
"L33.8625 12.0391\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p33057e3db6\">\n",
" <rect height=\"223.2\" width=\"334.8\" x=\"33.8625\" y=\"12.0390625\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n"
],
"text/plain": [
"<matplotlib.figure.Figure at 0x10d288150>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"plt.plot(data.t,data.ay,'o')"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"[<matplotlib.lines.Line2D at 0x10d66fd50>]"
]
},
"execution_count": 14,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
"<!-- Created with matplotlib (http://matplotlib.org/) -->\n",
"<svg height=\"256pt\" version=\"1.1\" viewBox=\"0 0 391 256\" width=\"391pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"\n",
"M0 256.117\n",
"L391.092 256.117\n",
"L391.092 0\n",
"L0 0\n",
"z\n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"\n",
"M36.9438 235.239\n",
"L371.744 235.239\n",
"L371.744 12.0391\n",
"L36.9438 12.0391\n",
"z\n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"line2d_1\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 3\n",
"C0.795609 3 1.55874 2.6839 2.12132 2.12132\n",
"C2.6839 1.55874 3 0.795609 3 0\n",
"C3 -0.795609 2.6839 -1.55874 2.12132 -2.12132\n",
"C1.55874 -2.6839 0.795609 -3 0 -3\n",
"C-0.795609 -3 -1.55874 -2.6839 -2.12132 -2.12132\n",
"C-2.6839 -1.55874 -3 -0.795609 -3 0\n",
"C-3 0.795609 -2.6839 1.55874 -2.12132 2.12132\n",
"C-1.55874 2.6839 -0.795609 3 0 3\n",
"z\n",
"\" id=\"mf1e9a9e4ae\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g clip-path=\"url(#p44936d0d7c)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"36.94375\" xlink:href=\"#mf1e9a9e4ae\" y=\"39.9390625\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"44.38375\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.0071777344\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"51.89815\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.1275714111\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"59.33815\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.4000323486\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"66.77815\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.4851763916\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"74.21815\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.2808306885\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"81.65815\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.2467730713\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"89.09815\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.4340899658\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"96.53815\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.6724932861\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"103.97815\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.8087237549\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"111.41815\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.9619830322\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"118.85815\" xlink:href=\"#mf1e9a9e4ae\" y=\"41.1492999268\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"126.29815\" xlink:href=\"#mf1e9a9e4ae\" y=\"41.2003863525\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"133.73815\" xlink:href=\"#mf1e9a9e4ae\" y=\"41.1152423096\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"141.17815\" xlink:href=\"#mf1e9a9e4ae\" y=\"41.0811846924\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"148.61815\" xlink:href=\"#mf1e9a9e4ae\" y=\"41.0641558838\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"156.05815\" xlink:href=\"#mf1e9a9e4ae\" y=\"41.1322711182\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"163.49815\" xlink:href=\"#mf1e9a9e4ae\" y=\"41.3195880127\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"170.93815\" xlink:href=\"#mf1e9a9e4ae\" y=\"41.4387896729\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"178.37815\" xlink:href=\"#mf1e9a9e4ae\" y=\"41.5239337158\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"185.81815\" xlink:href=\"#mf1e9a9e4ae\" y=\"41.5750201416\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"193.25815\" xlink:href=\"#mf1e9a9e4ae\" y=\"40.008369751\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"200.69815\" xlink:href=\"#mf1e9a9e4ae\" y=\"37.6073077393\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"208.13815\" xlink:href=\"#mf1e9a9e4ae\" y=\"35.104072876\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"215.57815\" xlink:href=\"#mf1e9a9e4ae\" y=\"28.0371173096\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"223.01815\" xlink:href=\"#mf1e9a9e4ae\" y=\"27.3389361572\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"230.45815\" xlink:href=\"#mf1e9a9e4ae\" y=\"60.3407672119\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"237.89815\" xlink:href=\"#mf1e9a9e4ae\" y=\"108.634468384\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"245.33815\" xlink:href=\"#mf1e9a9e4ae\" y=\"130.192940063\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"252.77815\" xlink:href=\"#mf1e9a9e4ae\" y=\"175.983406372\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"260.21815\" xlink:href=\"#mf1e9a9e4ae\" y=\"216.443855591\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"267.65815\" xlink:href=\"#mf1e9a9e4ae\" y=\"208.252998657\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"275.09815\" xlink:href=\"#mf1e9a9e4ae\" y=\"203.297615356\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"282.53815\" xlink:href=\"#mf1e9a9e4ae\" y=\"202.548347778\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"289.97815\" xlink:href=\"#mf1e9a9e4ae\" y=\"202.735664673\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"297.41815\" xlink:href=\"#mf1e9a9e4ae\" y=\"203.076240845\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"304.85815\" xlink:href=\"#mf1e9a9e4ae\" y=\"202.957039185\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"312.29815\" xlink:href=\"#mf1e9a9e4ae\" y=\"202.88892395\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"319.73815\" xlink:href=\"#mf1e9a9e4ae\" y=\"202.820808716\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"327.17815\" xlink:href=\"#mf1e9a9e4ae\" y=\"202.752693481\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"334.61815\" xlink:href=\"#mf1e9a9e4ae\" y=\"202.718635864\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"342.05815\" xlink:href=\"#mf1e9a9e4ae\" y=\"202.565376587\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"349.49815\" xlink:href=\"#mf1e9a9e4ae\" y=\"202.361030884\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L0 -4\" id=\"m93b0483c22\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"36.94375\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_3\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L0 4\" id=\"m741efc42ff\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"36.94375\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 0 -->\n",
" <defs>\n",
" <path d=\"\n",
"M31.7812 66.4062\n",
"Q24.1719 66.4062 20.3281 58.9062\n",
"Q16.5 51.4219 16.5 36.375\n",
"Q16.5 21.3906 20.3281 13.8906\n",
"Q24.1719 6.39062 31.7812 6.39062\n",
"Q39.4531 6.39062 43.2812 13.8906\n",
"Q47.125 21.3906 47.125 36.375\n",
"Q47.125 51.4219 43.2812 58.9062\n",
"Q39.4531 66.4062 31.7812 66.4062\n",
"M31.7812 74.2188\n",
"Q44.0469 74.2188 50.5156 64.5156\n",
"Q56.9844 54.8281 56.9844 36.375\n",
"Q56.9844 17.9688 50.5156 8.26562\n",
"Q44.0469 -1.42188 31.7812 -1.42188\n",
"Q19.5312 -1.42188 13.0625 8.26562\n",
"Q6.59375 17.9688 6.59375 36.375\n",
"Q6.59375 54.8281 13.0625 64.5156\n",
"Q19.5312 74.2188 31.7812 74.2188\" id=\"BitstreamVeraSans-Roman-30\"/>\n",
" </defs>\n",
" <g transform=\"translate(34.42421875 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"74.14375\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_5\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"74.14375\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 500 -->\n",
" <defs>\n",
" <path d=\"\n",
"M10.7969 72.9062\n",
"L49.5156 72.9062\n",
"L49.5156 64.5938\n",
"L19.8281 64.5938\n",
"L19.8281 46.7344\n",
"Q21.9688 47.4688 24.1094 47.8281\n",
"Q26.2656 48.1875 28.4219 48.1875\n",
"Q40.625 48.1875 47.75 41.5\n",
"Q54.8906 34.8125 54.8906 23.3906\n",
"Q54.8906 11.625 47.5625 5.09375\n",
"Q40.2344 -1.42188 26.9062 -1.42188\n",
"Q22.3125 -1.42188 17.5469 -0.640625\n",
"Q12.7969 0.140625 7.71875 1.70312\n",
"L7.71875 11.625\n",
"Q12.1094 9.23438 16.7969 8.0625\n",
"Q21.4844 6.89062 26.7031 6.89062\n",
"Q35.1562 6.89062 40.0781 11.3281\n",
"Q45.0156 15.7656 45.0156 23.3906\n",
"Q45.0156 31 40.0781 35.4375\n",
"Q35.1562 39.8906 26.7031 39.8906\n",
"Q22.75 39.8906 18.8125 39.0156\n",
"Q14.8906 38.1406 10.7969 36.2812\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-35\"/>\n",
" </defs>\n",
" <g transform=\"translate(65.31796875 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"111.34375\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_7\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"111.34375\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 1000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M12.4062 8.29688\n",
"L28.5156 8.29688\n",
"L28.5156 63.9219\n",
"L10.9844 60.4062\n",
"L10.9844 69.3906\n",
"L28.4219 72.9062\n",
"L38.2812 72.9062\n",
"L38.2812 8.29688\n",
"L54.3906 8.29688\n",
"L54.3906 0\n",
"L12.4062 0\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-31\"/>\n",
" </defs>\n",
" <g transform=\"translate(99.5 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_4\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"148.54375\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_9\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"148.54375\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 1500 -->\n",
" <g transform=\"translate(136.7 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_5\">\n",
" <g id=\"line2d_10\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"185.74375\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_11\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"185.74375\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- 2000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M19.1875 8.29688\n",
"L53.6094 8.29688\n",
"L53.6094 0\n",
"L7.32812 0\n",
"L7.32812 8.29688\n",
"Q12.9375 14.1094 22.625 23.8906\n",
"Q32.3281 33.6875 34.8125 36.5312\n",
"Q39.5469 41.8438 41.4219 45.5312\n",
"Q43.3125 49.2188 43.3125 52.7812\n",
"Q43.3125 58.5938 39.2344 62.25\n",
"Q35.1562 65.9219 28.6094 65.9219\n",
"Q23.9688 65.9219 18.8125 64.3125\n",
"Q13.6719 62.7031 7.8125 59.4219\n",
"L7.8125 69.3906\n",
"Q13.7656 71.7812 18.9375 73\n",
"Q24.125 74.2188 28.4219 74.2188\n",
"Q39.75 74.2188 46.4844 68.5469\n",
"Q53.2188 62.8906 53.2188 53.4219\n",
"Q53.2188 48.9219 51.5312 44.8906\n",
"Q49.8594 40.875 45.4062 35.4062\n",
"Q44.1875 33.9844 37.6406 27.2188\n",
"Q31.1094 20.4531 19.1875 8.29688\" id=\"BitstreamVeraSans-Roman-32\"/>\n",
" </defs>\n",
" <g transform=\"translate(173.7171875 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_6\">\n",
" <g id=\"line2d_12\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"222.94375\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_13\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"222.94375\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_6\">\n",
" <!-- 2500 -->\n",
" <g transform=\"translate(210.9171875 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_7\">\n",
" <g id=\"line2d_14\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"260.14375\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_15\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"260.14375\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_7\">\n",
" <!-- 3000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M40.5781 39.3125\n",
"Q47.6562 37.7969 51.625 33\n",
"Q55.6094 28.2188 55.6094 21.1875\n",
"Q55.6094 10.4062 48.1875 4.48438\n",
"Q40.7656 -1.42188 27.0938 -1.42188\n",
"Q22.5156 -1.42188 17.6562 -0.515625\n",
"Q12.7969 0.390625 7.625 2.20312\n",
"L7.625 11.7188\n",
"Q11.7188 9.32812 16.5938 8.10938\n",
"Q21.4844 6.89062 26.8125 6.89062\n",
"Q36.0781 6.89062 40.9375 10.5469\n",
"Q45.7969 14.2031 45.7969 21.1875\n",
"Q45.7969 27.6406 41.2812 31.2656\n",
"Q36.7656 34.9062 28.7188 34.9062\n",
"L20.2188 34.9062\n",
"L20.2188 43.0156\n",
"L29.1094 43.0156\n",
"Q36.375 43.0156 40.2344 45.9219\n",
"Q44.0938 48.8281 44.0938 54.2969\n",
"Q44.0938 59.9062 40.1094 62.9062\n",
"Q36.1406 65.9219 28.7188 65.9219\n",
"Q24.6562 65.9219 20.0156 65.0312\n",
"Q15.375 64.1562 9.8125 62.3125\n",
"L9.8125 71.0938\n",
"Q15.4375 72.6562 20.3438 73.4375\n",
"Q25.25 74.2188 29.5938 74.2188\n",
"Q40.8281 74.2188 47.3594 69.1094\n",
"Q53.9062 64.0156 53.9062 55.3281\n",
"Q53.9062 49.2656 50.4375 45.0938\n",
"Q46.9688 40.9219 40.5781 39.3125\" id=\"BitstreamVeraSans-Roman-33\"/>\n",
" </defs>\n",
" <g transform=\"translate(248.13203125 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_8\">\n",
" <g id=\"line2d_16\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"297.34375\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_17\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"297.34375\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_8\">\n",
" <!-- 3500 -->\n",
" <g transform=\"translate(285.33203125 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_9\">\n",
" <g id=\"line2d_18\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"334.54375\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_19\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"334.54375\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_9\">\n",
" <!-- 4000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M37.7969 64.3125\n",
"L12.8906 25.3906\n",
"L37.7969 25.3906\n",
"z\n",
"\n",
"M35.2031 72.9062\n",
"L47.6094 72.9062\n",
"L47.6094 25.3906\n",
"L58.0156 25.3906\n",
"L58.0156 17.1875\n",
"L47.6094 17.1875\n",
"L47.6094 0\n",
"L37.7969 0\n",
"L37.7969 17.1875\n",
"L4.89062 17.1875\n",
"L4.89062 26.7031\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-34\"/>\n",
" </defs>\n",
" <g transform=\"translate(322.3953125 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_10\">\n",
" <g id=\"line2d_20\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"371.74375\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_21\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"371.74375\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_10\">\n",
" <!-- 4500 -->\n",
" <g transform=\"translate(359.5953125 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_22\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L4 0\" id=\"m728421d6d4\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"36.94375\" xlink:href=\"#m728421d6d4\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_23\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L-4 0\" id=\"mcb0005524f\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"371.74375\" xlink:href=\"#mcb0005524f\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_11\">\n",
" <!-- −140 -->\n",
" <defs>\n",
" <path d=\"\n",
"M10.5938 35.5\n",
"L73.1875 35.5\n",
"L73.1875 27.2031\n",
"L10.5938 27.2031\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-2212\"/>\n",
" </defs>\n",
" <g transform=\"translate(7.2 237.9984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_24\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"36.94375\" xlink:href=\"#m728421d6d4\" y=\"207.3390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_25\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"371.74375\" xlink:href=\"#mcb0005524f\" y=\"207.3390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_12\">\n",
" <!-- −120 -->\n",
" <g transform=\"translate(7.2 210.0984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_3\">\n",
" <g id=\"line2d_26\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"36.94375\" xlink:href=\"#m728421d6d4\" y=\"179.4390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_27\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"371.74375\" xlink:href=\"#mcb0005524f\" y=\"179.4390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_13\">\n",
" <!-- −100 -->\n",
" <g transform=\"translate(7.2 182.1984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_4\">\n",
" <g id=\"line2d_28\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"36.94375\" xlink:href=\"#m728421d6d4\" y=\"151.5390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_29\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"371.74375\" xlink:href=\"#mcb0005524f\" y=\"151.5390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_14\">\n",
" <!-- −80 -->\n",
" <defs>\n",
" <path d=\"\n",
"M31.7812 34.625\n",
"Q24.75 34.625 20.7188 30.8594\n",
"Q16.7031 27.0938 16.7031 20.5156\n",
"Q16.7031 13.9219 20.7188 10.1562\n",
"Q24.75 6.39062 31.7812 6.39062\n",
"Q38.8125 6.39062 42.8594 10.1719\n",
"Q46.9219 13.9688 46.9219 20.5156\n",
"Q46.9219 27.0938 42.8906 30.8594\n",
"Q38.875 34.625 31.7812 34.625\n",
"M21.9219 38.8125\n",
"Q15.5781 40.375 12.0312 44.7188\n",
"Q8.5 49.0781 8.5 55.3281\n",
"Q8.5 64.0625 14.7188 69.1406\n",
"Q20.9531 74.2188 31.7812 74.2188\n",
"Q42.6719 74.2188 48.875 69.1406\n",
"Q55.0781 64.0625 55.0781 55.3281\n",
"Q55.0781 49.0781 51.5312 44.7188\n",
"Q48 40.375 41.7031 38.8125\n",
"Q48.8281 37.1562 52.7969 32.3125\n",
"Q56.7812 27.4844 56.7812 20.5156\n",
"Q56.7812 9.90625 50.3125 4.23438\n",
"Q43.8438 -1.42188 31.7812 -1.42188\n",
"Q19.7344 -1.42188 13.25 4.23438\n",
"Q6.78125 9.90625 6.78125 20.5156\n",
"Q6.78125 27.4844 10.7812 32.3125\n",
"Q14.7969 37.1562 21.9219 38.8125\n",
"M18.3125 54.3906\n",
"Q18.3125 48.7344 21.8438 45.5625\n",
"Q25.3906 42.3906 31.7812 42.3906\n",
"Q38.1406 42.3906 41.7188 45.5625\n",
"Q45.3125 48.7344 45.3125 54.3906\n",
"Q45.3125 60.0625 41.7188 63.2344\n",
"Q38.1406 66.4062 31.7812 66.4062\n",
"Q25.3906 66.4062 21.8438 63.2344\n",
"Q18.3125 60.0625 18.3125 54.3906\" id=\"BitstreamVeraSans-Roman-38\"/>\n",
" </defs>\n",
" <g transform=\"translate(13.5625 154.2984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-38\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_5\">\n",
" <g id=\"line2d_30\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"36.94375\" xlink:href=\"#m728421d6d4\" y=\"123.6390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_31\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"371.74375\" xlink:href=\"#mcb0005524f\" y=\"123.6390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_15\">\n",
" <!-- −60 -->\n",
" <defs>\n",
" <path d=\"\n",
"M33.0156 40.375\n",
"Q26.375 40.375 22.4844 35.8281\n",
"Q18.6094 31.2969 18.6094 23.3906\n",
"Q18.6094 15.5312 22.4844 10.9531\n",
"Q26.375 6.39062 33.0156 6.39062\n",
"Q39.6562 6.39062 43.5312 10.9531\n",
"Q47.4062 15.5312 47.4062 23.3906\n",
"Q47.4062 31.2969 43.5312 35.8281\n",
"Q39.6562 40.375 33.0156 40.375\n",
"M52.5938 71.2969\n",
"L52.5938 62.3125\n",
"Q48.875 64.0625 45.0938 64.9844\n",
"Q41.3125 65.9219 37.5938 65.9219\n",
"Q27.8281 65.9219 22.6719 59.3281\n",
"Q17.5312 52.7344 16.7969 39.4062\n",
"Q19.6719 43.6562 24.0156 45.9219\n",
"Q28.375 48.1875 33.5938 48.1875\n",
"Q44.5781 48.1875 50.9531 41.5156\n",
"Q57.3281 34.8594 57.3281 23.3906\n",
"Q57.3281 12.1562 50.6875 5.35938\n",
"Q44.0469 -1.42188 33.0156 -1.42188\n",
"Q20.3594 -1.42188 13.6719 8.26562\n",
"Q6.98438 17.9688 6.98438 36.375\n",
"Q6.98438 53.6562 15.1875 63.9375\n",
"Q23.3906 74.2188 37.2031 74.2188\n",
"Q40.9219 74.2188 44.7031 73.4844\n",
"Q48.4844 72.75 52.5938 71.2969\" id=\"BitstreamVeraSans-Roman-36\"/>\n",
" </defs>\n",
" <g transform=\"translate(13.5625 126.3984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_6\">\n",
" <g id=\"line2d_32\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"36.94375\" xlink:href=\"#m728421d6d4\" y=\"95.7390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_33\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"371.74375\" xlink:href=\"#mcb0005524f\" y=\"95.7390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_16\">\n",
" <!-- −40 -->\n",
" <g transform=\"translate(13.5625 98.4984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_7\">\n",
" <g id=\"line2d_34\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"36.94375\" xlink:href=\"#m728421d6d4\" y=\"67.8390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_35\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"371.74375\" xlink:href=\"#mcb0005524f\" y=\"67.8390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_17\">\n",
" <!-- −20 -->\n",
" <g transform=\"translate(13.5625 70.5984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_8\">\n",
" <g id=\"line2d_36\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"36.94375\" xlink:href=\"#m728421d6d4\" y=\"39.9390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_37\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"371.74375\" xlink:href=\"#mcb0005524f\" y=\"39.9390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_18\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(27.9046875 42.6984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_9\">\n",
" <g id=\"line2d_38\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"36.94375\" xlink:href=\"#m728421d6d4\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_39\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"371.74375\" xlink:href=\"#mcb0005524f\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_19\">\n",
" <!-- 20 -->\n",
" <g transform=\"translate(21.615625 14.7984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"\n",
"M36.9438 12.0391\n",
"L371.744 12.0391\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"\n",
"M371.744 235.239\n",
"L371.744 12.0391\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"\n",
"M36.9438 235.239\n",
"L371.744 235.239\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"\n",
"M36.9438 235.239\n",
"L36.9438 12.0391\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p44936d0d7c\">\n",
" <rect height=\"223.2\" width=\"334.8\" x=\"36.94375\" y=\"12.0390625\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n"
],
"text/plain": [
"<matplotlib.figure.Figure at 0x10d600250>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"plt.plot(data.t,vel_y,'o')"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"[<matplotlib.lines.Line2D at 0x10d7f2790>]"
]
},
"execution_count": 16,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
"<!-- Created with matplotlib (http://matplotlib.org/) -->\n",
"<svg height=\"256pt\" version=\"1.1\" viewBox=\"0 0 410 256\" width=\"410pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"\n",
"M0 256.117\n",
"L410.18 256.117\n",
"L410.18 0\n",
"L0 0\n",
"z\n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"\n",
"M56.0313 235.239\n",
"L390.831 235.239\n",
"L390.831 12.0391\n",
"L56.0313 12.0391\n",
"z\n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"line2d_1\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 3\n",
"C0.795609 3 1.55874 2.6839 2.12132 2.12132\n",
"C2.6839 1.55874 3 0.795609 3 0\n",
"C3 -0.795609 2.6839 -1.55874 2.12132 -2.12132\n",
"C1.55874 -2.6839 0.795609 -3 0 -3\n",
"C-0.795609 -3 -1.55874 -2.6839 -2.12132 -2.12132\n",
"C-2.6839 -1.55874 -3 -0.795609 -3 0\n",
"C-3 0.795609 -2.6839 1.55874 -2.12132 2.12132\n",
"C-1.55874 2.6839 -0.795609 3 0 3\n",
"z\n",
"\" id=\"mf1e9a9e4ae\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g clip-path=\"url(#p10325448e0)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"56.03125\" xlink:href=\"#mf1e9a9e4ae\" y=\"56.6790625\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"63.47125\" xlink:href=\"#mf1e9a9e4ae\" y=\"56.6812421875\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"70.98565\" xlink:href=\"#mf1e9a9e4ae\" y=\"56.6895362799\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"78.42565\" xlink:href=\"#mf1e9a9e4ae\" y=\"56.7103196002\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"85.86565\" xlink:href=\"#mf1e9a9e4ae\" y=\"56.7425462799\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"93.30565\" xlink:href=\"#mf1e9a9e4ae\" y=\"56.7709585064\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"100.74565\" xlink:href=\"#mf1e9a9e4ae\" y=\"56.7917418268\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"108.18565\" xlink:href=\"#mf1e9a9e4ae\" y=\"56.8174294439\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"115.62565\" xlink:href=\"#mf1e9a9e4ae\" y=\"56.856740108\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"123.06565\" xlink:href=\"#mf1e9a9e4ae\" y=\"56.9080390533\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"130.50565\" xlink:href=\"#mf1e9a9e4ae\" y=\"56.9686016705\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"137.94565\" xlink:href=\"#mf1e9a9e4ae\" y=\"57.0400627252\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"145.38565\" xlink:href=\"#mf1e9a9e4ae\" y=\"57.1191526861\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"152.82565\" xlink:href=\"#mf1e9a9e4ae\" y=\"57.1971528033\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"160.26565\" xlink:href=\"#mf1e9a9e4ae\" y=\"57.2713384674\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"167.70565\" xlink:href=\"#mf1e9a9e4ae\" y=\"57.3438893658\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"175.14565\" xlink:href=\"#mf1e9a9e4ae\" y=\"57.4180750299\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"182.58565\" xlink:href=\"#mf1e9a9e4ae\" y=\"57.5004345221\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"190.02565\" xlink:href=\"#mf1e9a9e4ae\" y=\"57.592602608\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"197.46565\" xlink:href=\"#mf1e9a9e4ae\" y=\"57.6913097564\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"204.90565\" xlink:href=\"#mf1e9a9e4ae\" y=\"57.7943762799\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"212.34565\" xlink:href=\"#mf1e9a9e4ae\" y=\"57.8489447564\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"219.78565\" xlink:href=\"#mf1e9a9e4ae\" y=\"57.7765464361\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"227.22565\" xlink:href=\"#mf1e9a9e4ae\" y=\"57.5472106158\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"234.66565\" xlink:href=\"#mf1e9a9e4ae\" y=\"57.0116287018\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"242.10565\" xlink:href=\"#mf1e9a9e4ae\" y=\"56.2275624127\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"249.54565\" xlink:href=\"#mf1e9a9e4ae\" y=\"56.4772129205\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"256.98565\" xlink:href=\"#mf1e9a9e4ae\" y=\"59.3283204596\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"264.42565\" xlink:href=\"#mf1e9a9e4ae\" y=\"64.4146975299\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"271.86565\" xlink:href=\"#mf1e9a9e4ae\" y=\"71.6562406158\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"279.30565\" xlink:href=\"#mf1e9a9e4ae\" y=\"81.6578129986\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"286.74565\" xlink:href=\"#mf1e9a9e4ae\" y=\"92.6920123346\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"294.18565\" xlink:href=\"#mf1e9a9e4ae\" y=\"103.305531983\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"301.62565\" xlink:href=\"#mf1e9a9e4ae\" y=\"113.736502803\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"309.06565\" xlink:href=\"#mf1e9a9e4ae\" y=\"124.149491202\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"316.50565\" xlink:href=\"#mf1e9a9e4ae\" y=\"134.579372178\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"323.94565\" xlink:href=\"#mf1e9a9e4ae\" y=\"145.016337139\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"331.38565\" xlink:href=\"#mf1e9a9e4ae\" y=\"155.44730796\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"338.82565\" xlink:href=\"#mf1e9a9e4ae\" y=\"165.873919405\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"346.26565\" xlink:href=\"#mf1e9a9e4ae\" y=\"176.296171475\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"353.70565\" xlink:href=\"#mf1e9a9e4ae\" y=\"186.715154014\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"361.14565\" xlink:href=\"#mf1e9a9e4ae\" y=\"197.128142413\"/>\n",
" <use style=\"fill:#0000ff;stroke:#000000;stroke-width:0.5;\" x=\"368.58565\" xlink:href=\"#mf1e9a9e4ae\" y=\"207.529687452\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L0 -4\" id=\"m93b0483c22\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"56.03125\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_3\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L0 4\" id=\"m741efc42ff\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"56.03125\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- 0 -->\n",
" <defs>\n",
" <path d=\"\n",
"M31.7812 66.4062\n",
"Q24.1719 66.4062 20.3281 58.9062\n",
"Q16.5 51.4219 16.5 36.375\n",
"Q16.5 21.3906 20.3281 13.8906\n",
"Q24.1719 6.39062 31.7812 6.39062\n",
"Q39.4531 6.39062 43.2812 13.8906\n",
"Q47.125 21.3906 47.125 36.375\n",
"Q47.125 51.4219 43.2812 58.9062\n",
"Q39.4531 66.4062 31.7812 66.4062\n",
"M31.7812 74.2188\n",
"Q44.0469 74.2188 50.5156 64.5156\n",
"Q56.9844 54.8281 56.9844 36.375\n",
"Q56.9844 17.9688 50.5156 8.26562\n",
"Q44.0469 -1.42188 31.7812 -1.42188\n",
"Q19.5312 -1.42188 13.0625 8.26562\n",
"Q6.59375 17.9688 6.59375 36.375\n",
"Q6.59375 54.8281 13.0625 64.5156\n",
"Q19.5312 74.2188 31.7812 74.2188\" id=\"BitstreamVeraSans-Roman-30\"/>\n",
" </defs>\n",
" <g transform=\"translate(53.51171875 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"93.23125\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_5\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"93.23125\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- 500 -->\n",
" <defs>\n",
" <path d=\"\n",
"M10.7969 72.9062\n",
"L49.5156 72.9062\n",
"L49.5156 64.5938\n",
"L19.8281 64.5938\n",
"L19.8281 46.7344\n",
"Q21.9688 47.4688 24.1094 47.8281\n",
"Q26.2656 48.1875 28.4219 48.1875\n",
"Q40.625 48.1875 47.75 41.5\n",
"Q54.8906 34.8125 54.8906 23.3906\n",
"Q54.8906 11.625 47.5625 5.09375\n",
"Q40.2344 -1.42188 26.9062 -1.42188\n",
"Q22.3125 -1.42188 17.5469 -0.640625\n",
"Q12.7969 0.140625 7.71875 1.70312\n",
"L7.71875 11.625\n",
"Q12.1094 9.23438 16.7969 8.0625\n",
"Q21.4844 6.89062 26.7031 6.89062\n",
"Q35.1562 6.89062 40.0781 11.3281\n",
"Q45.0156 15.7656 45.0156 23.3906\n",
"Q45.0156 31 40.0781 35.4375\n",
"Q35.1562 39.8906 26.7031 39.8906\n",
"Q22.75 39.8906 18.8125 39.0156\n",
"Q14.8906 38.1406 10.7969 36.2812\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-35\"/>\n",
" </defs>\n",
" <g transform=\"translate(84.40546875 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"130.43125\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_7\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"130.43125\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 1000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M12.4062 8.29688\n",
"L28.5156 8.29688\n",
"L28.5156 63.9219\n",
"L10.9844 60.4062\n",
"L10.9844 69.3906\n",
"L28.4219 72.9062\n",
"L38.2812 72.9062\n",
"L38.2812 8.29688\n",
"L54.3906 8.29688\n",
"L54.3906 0\n",
"L12.4062 0\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-31\"/>\n",
" </defs>\n",
" <g transform=\"translate(118.5875 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_4\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"167.63125\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_9\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"167.63125\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 1500 -->\n",
" <g transform=\"translate(155.7875 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_5\">\n",
" <g id=\"line2d_10\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"204.83125\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_11\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"204.83125\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- 2000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M19.1875 8.29688\n",
"L53.6094 8.29688\n",
"L53.6094 0\n",
"L7.32812 0\n",
"L7.32812 8.29688\n",
"Q12.9375 14.1094 22.625 23.8906\n",
"Q32.3281 33.6875 34.8125 36.5312\n",
"Q39.5469 41.8438 41.4219 45.5312\n",
"Q43.3125 49.2188 43.3125 52.7812\n",
"Q43.3125 58.5938 39.2344 62.25\n",
"Q35.1562 65.9219 28.6094 65.9219\n",
"Q23.9688 65.9219 18.8125 64.3125\n",
"Q13.6719 62.7031 7.8125 59.4219\n",
"L7.8125 69.3906\n",
"Q13.7656 71.7812 18.9375 73\n",
"Q24.125 74.2188 28.4219 74.2188\n",
"Q39.75 74.2188 46.4844 68.5469\n",
"Q53.2188 62.8906 53.2188 53.4219\n",
"Q53.2188 48.9219 51.5312 44.8906\n",
"Q49.8594 40.875 45.4062 35.4062\n",
"Q44.1875 33.9844 37.6406 27.2188\n",
"Q31.1094 20.4531 19.1875 8.29688\" id=\"BitstreamVeraSans-Roman-32\"/>\n",
" </defs>\n",
" <g transform=\"translate(192.8046875 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_6\">\n",
" <g id=\"line2d_12\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"242.03125\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_13\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"242.03125\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_6\">\n",
" <!-- 2500 -->\n",
" <g transform=\"translate(230.0046875 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_7\">\n",
" <g id=\"line2d_14\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"279.23125\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_15\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"279.23125\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_7\">\n",
" <!-- 3000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M40.5781 39.3125\n",
"Q47.6562 37.7969 51.625 33\n",
"Q55.6094 28.2188 55.6094 21.1875\n",
"Q55.6094 10.4062 48.1875 4.48438\n",
"Q40.7656 -1.42188 27.0938 -1.42188\n",
"Q22.5156 -1.42188 17.6562 -0.515625\n",
"Q12.7969 0.390625 7.625 2.20312\n",
"L7.625 11.7188\n",
"Q11.7188 9.32812 16.5938 8.10938\n",
"Q21.4844 6.89062 26.8125 6.89062\n",
"Q36.0781 6.89062 40.9375 10.5469\n",
"Q45.7969 14.2031 45.7969 21.1875\n",
"Q45.7969 27.6406 41.2812 31.2656\n",
"Q36.7656 34.9062 28.7188 34.9062\n",
"L20.2188 34.9062\n",
"L20.2188 43.0156\n",
"L29.1094 43.0156\n",
"Q36.375 43.0156 40.2344 45.9219\n",
"Q44.0938 48.8281 44.0938 54.2969\n",
"Q44.0938 59.9062 40.1094 62.9062\n",
"Q36.1406 65.9219 28.7188 65.9219\n",
"Q24.6562 65.9219 20.0156 65.0312\n",
"Q15.375 64.1562 9.8125 62.3125\n",
"L9.8125 71.0938\n",
"Q15.4375 72.6562 20.3438 73.4375\n",
"Q25.25 74.2188 29.5938 74.2188\n",
"Q40.8281 74.2188 47.3594 69.1094\n",
"Q53.9062 64.0156 53.9062 55.3281\n",
"Q53.9062 49.2656 50.4375 45.0938\n",
"Q46.9688 40.9219 40.5781 39.3125\" id=\"BitstreamVeraSans-Roman-33\"/>\n",
" </defs>\n",
" <g transform=\"translate(267.21953125 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_8\">\n",
" <g id=\"line2d_16\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"316.43125\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_17\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"316.43125\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_8\">\n",
" <!-- 3500 -->\n",
" <g transform=\"translate(304.41953125 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_9\">\n",
" <g id=\"line2d_18\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"353.63125\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_19\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"353.63125\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_9\">\n",
" <!-- 4000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M37.7969 64.3125\n",
"L12.8906 25.3906\n",
"L37.7969 25.3906\n",
"z\n",
"\n",
"M35.2031 72.9062\n",
"L47.6094 72.9062\n",
"L47.6094 25.3906\n",
"L58.0156 25.3906\n",
"L58.0156 17.1875\n",
"L47.6094 17.1875\n",
"L47.6094 0\n",
"L37.7969 0\n",
"L37.7969 17.1875\n",
"L4.89062 17.1875\n",
"L4.89062 26.7031\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-34\"/>\n",
" </defs>\n",
" <g transform=\"translate(341.4828125 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_10\">\n",
" <g id=\"line2d_20\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"390.83125\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_21\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"390.83125\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_10\">\n",
" <!-- 4500 -->\n",
" <g transform=\"translate(378.6828125 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_22\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L4 0\" id=\"m728421d6d4\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"56.03125\" xlink:href=\"#m728421d6d4\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_23\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L-4 0\" id=\"mcb0005524f\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"390.83125\" xlink:href=\"#mcb0005524f\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_11\">\n",
" <!-- −200000 -->\n",
" <defs>\n",
" <path d=\"\n",
"M10.5938 35.5\n",
"L73.1875 35.5\n",
"L73.1875 27.2031\n",
"L10.5938 27.2031\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-2212\"/>\n",
" </defs>\n",
" <g transform=\"translate(7.2 237.9984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_24\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"56.03125\" xlink:href=\"#m728421d6d4\" y=\"190.5990625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_25\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"390.83125\" xlink:href=\"#mcb0005524f\" y=\"190.5990625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_12\">\n",
" <!-- −150000 -->\n",
" <g transform=\"translate(7.2 193.3584375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_3\">\n",
" <g id=\"line2d_26\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"56.03125\" xlink:href=\"#m728421d6d4\" y=\"145.9590625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_27\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"390.83125\" xlink:href=\"#mcb0005524f\" y=\"145.9590625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_13\">\n",
" <!-- −100000 -->\n",
" <g transform=\"translate(7.2 148.7184375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"401.904296875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_4\">\n",
" <g id=\"line2d_28\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"56.03125\" xlink:href=\"#m728421d6d4\" y=\"101.3190625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_29\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"390.83125\" xlink:href=\"#mcb0005524f\" y=\"101.3190625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_14\">\n",
" <!-- −50000 -->\n",
" <g transform=\"translate(13.5625 104.0784375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"274.658203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"338.28125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_5\">\n",
" <g id=\"line2d_30\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"56.03125\" xlink:href=\"#m728421d6d4\" y=\"56.6790625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_31\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"390.83125\" xlink:href=\"#mcb0005524f\" y=\"56.6790625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_15\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(46.9921875 59.4384375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_6\">\n",
" <g id=\"line2d_32\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"56.03125\" xlink:href=\"#m728421d6d4\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_33\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"390.83125\" xlink:href=\"#mcb0005524f\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_16\">\n",
" <!-- 50000 -->\n",
" <g transform=\"translate(21.6546875 14.7984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"254.4921875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"\n",
"M56.0313 12.0391\n",
"L390.831 12.0391\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"\n",
"M390.831 235.239\n",
"L390.831 12.0391\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"\n",
"M56.0313 235.239\n",
"L390.831 235.239\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"\n",
"M56.0313 235.239\n",
"L56.0313 12.0391\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p10325448e0\">\n",
" <rect height=\"223.2\" width=\"334.8\" x=\"56.03125\" y=\"12.0390625\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n"
],
"text/plain": [
"<matplotlib.figure.Figure at 0x10d3aa390>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"plt.plot(data.t,pos_y,'o')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 2",
"language": "python",
"name": "python2"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.7"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment