Skip to content
Permalink
7cb3d1c045
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
5845 lines (5845 sloc) 476 KB
{
"cells": [
{
"cell_type": "code",
"execution_count": 9,
"metadata": {
"collapsed": true,
"scrolled": true,
"slideshow": {
"slide_type": "skip"
}
},
"outputs": [],
"source": [
"%plot --format svg"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "slide"
}
},
"source": [
"|Question|Answered Right|Answered Wrong|Total \\%|\n",
"|----------------------------------------|---|---|---|\n",
"|Define a cell as C={}; C{1}=1.21; C{2}='Gigawatts'; How do you print '1.21 Gigawatts'?|46|29|61.333333333333%|\n",
"|How do you access the third column of an array assigned to the variable A?|58|17|77.333333333333%|\n",
"|What is the result of the following matlab command \"> a=10; b=20; a=5; c=a+b|71|4|94.666666666667%|\n",
"|What is the result of the following Matlab command \"> 1./[2 2]|57|18|76%|\n",
"|Where would a function be saved that cannot be run in Matlab/Octave?|55|20|73.333333333333%|"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {
"collapsed": false,
"slideshow": {
"slide_type": "fragment"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"ans =\n",
"\n",
" 2 2\n",
"\n"
]
}
],
"source": [
"1*[2 2]"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "slide"
}
},
"source": [
"# Matlab/Octave basic use"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "subslide"
}
},
"source": [
"## Matlab environment can be called by:\n",
"\n",
"1. Starting the matlab executable (the gui)\n",
"2. Starting a jupyter notebook with Matlab kernel\n",
"3. Starting matlab with command-line interface (no gui)\n",
"\n",
"Main requirement = matlab kernel (main matlab program) is running and accepting commands\n",
"\n",
"Once started call\n",
"\n",
"1. matlab built-in functions \n",
"2. anything you write in your `MATLABPATH` or \n",
"3. working directory (`pwd`)"
]
},
{
"cell_type": "code",
"execution_count": 46,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"Octave's search path contains the following directories:\n",
"\n",
".\n",
"/usr/local/lib/python2.7/dist-packages/octave_kernel\n",
"/home/ryan/Documents/MATLAB\n",
"/usr/lib/x86_64-linux-gnu/octave/4.0.0/site/oct/x86_64-pc-linux-gnu\n",
"/usr/lib/x86_64-linux-gnu/octave/site/oct/api-v50+/x86_64-pc-linux-gnu\n",
"/usr/lib/x86_64-linux-gnu/octave/site/oct/x86_64-pc-linux-gnu\n",
"/usr/share/octave/4.0.0/site/m\n",
"/usr/share/octave/site/api-v50+/m\n",
"/usr/share/octave/site/m\n",
"/usr/share/octave/site/m/startup\n",
"/usr/lib/x86_64-linux-gnu/octave/4.0.0/oct/x86_64-pc-linux-gnu\n",
"/usr/share/octave/4.0.0/m\n",
"/usr/share/octave/4.0.0/m/audio\n",
"/usr/share/octave/4.0.0/m/debian\n",
"/usr/share/octave/4.0.0/m/deprecated\n",
"/usr/share/octave/4.0.0/m/elfun\n",
"/usr/share/octave/4.0.0/m/general\n",
"/usr/share/octave/4.0.0/m/geometry\n",
"/usr/share/octave/4.0.0/m/gui\n",
"/usr/share/octave/4.0.0/m/help\n",
"/usr/share/octave/4.0.0/m/image\n",
"/usr/share/octave/4.0.0/m/io\n",
"/usr/share/octave/4.0.0/m/java\n",
"/usr/share/octave/4.0.0/m/linear-algebra\n",
"/usr/share/octave/4.0.0/m/miscellaneous\n",
"/usr/share/octave/4.0.0/m/optimization\n",
"/usr/share/octave/4.0.0/m/path\n",
"/usr/share/octave/4.0.0/m/pkg\n",
"/usr/share/octave/4.0.0/m/plot\n",
"/usr/share/octave/4.0.0/m/plot/appearance\n",
"/usr/share/octave/4.0.0/m/plot/draw\n",
"/usr/share/octave/4.0.0/m/plot/util\n",
"/usr/share/octave/4.0.0/m/polynomial\n",
"/usr/share/octave/4.0.0/m/prefs\n",
"/usr/share/octave/4.0.0/m/set\n",
"/usr/share/octave/4.0.0/m/signal\n",
"/usr/share/octave/4.0.0/m/sparse\n",
"/usr/share/octave/4.0.0/m/specfun\n",
"/usr/share/octave/4.0.0/m/special-matrix\n",
"/usr/share/octave/4.0.0/m/startup\n",
"/usr/share/octave/4.0.0/m/statistics\n",
"/usr/share/octave/4.0.0/m/statistics/base\n",
"/usr/share/octave/4.0.0/m/statistics/distributions\n",
"/usr/share/octave/4.0.0/m/statistics/models\n",
"/usr/share/octave/4.0.0/m/statistics/tests\n",
"/usr/share/octave/4.0.0/m/strings\n",
"/usr/share/octave/4.0.0/m/testfun\n",
"/usr/share/octave/4.0.0/m/time\n",
"/usr/share/octave/4.0.0/data\n",
"\n"
]
}
],
"source": [
"path"
]
},
{
"cell_type": "code",
"execution_count": 47,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"ans = /home/ryan/Documents/UConn/ME3255/course_git_S2017/03_Intro to matlab-octave\r\n"
]
}
],
"source": [
"pwd"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "slide"
}
},
"source": [
"## Assignments (`=`-operator)\n",
"\n",
"Matlab is interpreted language \n",
"\n",
"each line of code (either saved text file or command-line) is executed as a standalone command\n",
"\n",
"These are reffered to \"scripts\""
]
},
{
"cell_type": "code",
"execution_count": 50,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"a = 10\n",
"b = 30\n",
"c = 40\n"
]
}
],
"source": [
"a=10 % line one assigns a to 10\n",
"b=a*3 % line two assigns b to 10 times 3 by calling 'a' from line one\n",
"c=a+b % line three does not assign anything directly, but leaving off the \";\" prints the result\n",
" % ans"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "slide"
}
},
"source": [
"## Matlab has a number of \"objects\" that you can assign to variables\n",
"1. arrays (vectors and matrices `[`...`]`) \n",
"3. cells (combination of strings, text, even function calls `{`...`}`)\n",
"2. strings (text `\"`...`\"` )\n",
"3. functions (both built-in, defined or developed)\n",
"4. and more... (classes defined by `classdef` - you can create your own object to help organize data)"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "slide"
}
},
"source": [
"### 1- Arrays\n",
"\n",
"Default in matlab is that when you assign a value to a variable, it is stored as an array\n",
"\n",
"arrays are N x M x ... values of integers or floating point numbers or complex integers/floating point numbers\n",
"\n",
"Use the parantheses to access values in an array `...(n,m)`"
]
},
{
"cell_type": "code",
"execution_count": 51,
"metadata": {
"collapsed": false,
"slideshow": {
"slide_type": "fragment"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"A =\n",
"\n",
" 1 2 3\n",
" 4 5 6\n",
" 7 8 9\n",
" 10 11 12\n",
"\n",
"size of A is 4 x 3\n"
]
}
],
"source": [
"A = [1 2 3;4,5,6;7,8,9;10,11,12]\n",
"fprintf('size of A is %i x %i\\n',size(A))"
]
},
{
"cell_type": "code",
"execution_count": 53,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"A =\n",
"\n",
" 1 2 3\n",
" 4 5 6\n",
" 7 8 9\n",
" 10 11 12\n",
"\n",
"ans = 7\n",
"ans = 11\n"
]
}
],
"source": [
"A = [1 2 3;4,5,6;7,8,9;10,11,12]\n",
"A(3,1)\n",
"A(8)"
]
},
{
"cell_type": "code",
"execution_count": 55,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"ans = 0\r\n"
]
}
],
"source": [
"a=10; % a is 1x1 array where a(1,1)==10\n",
"a(1,1)==1\n"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "slide"
}
},
"source": [
"## 2. Cells \n",
"### combine different size arrays and text\n",
"\n",
"you cannot use math operators 'binary operators'"
]
},
{
"cell_type": "code",
"execution_count": 57,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "fragment"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"ans =\n",
"\n",
" Columns 1 through 8:\n",
"\n",
" 0.00000 0.11111 0.22222 0.33333 0.44444 0.55556 0.66667 0.77778\n",
"\n",
" Columns 9 and 10:\n",
"\n",
" 0.88889 1.00000\n",
"\n"
]
}
],
"source": [
"C={};\n",
"C{1}=linspace(0,1,10);\n",
"C{2}=linspace(0,1,3);\n",
"C{'z'}='holy cow';\n",
"C{1}"
]
},
{
"cell_type": "code",
"execution_count": 61,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "fragment"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"ans =\n",
"\n",
" Columns 1 through 8:\n",
"\n",
" 0.00000 0.22222 0.44444 0.66667 0.88889 1.11111 1.33333 1.55556\n",
"\n",
" Columns 9 and 10:\n",
"\n",
" 1.77778 2.00000\n",
"\n"
]
}
],
"source": [
"C{1}+C{1}"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "slide"
}
},
"source": [
"## 3. Strings \n",
"### can be combined and printed"
]
},
{
"cell_type": "code",
"execution_count": 62,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "fragment"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"ans = computational mechanics rocks!\r\n"
]
}
],
"source": [
"string1 = 'computational'; string2 = 'mechanics';\n",
"[string1, ' ', string2, ' rocks!']"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "subslide"
}
},
"source": [
"use `fprintf` to format strings and numbers for output and `sprintf` to save variables\n"
]
},
{
"cell_type": "code",
"execution_count": 63,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "fragment"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"computational mechanics\n",
"\n",
"string = the dog had 4 legs and weighed 30.9 lbs\n"
]
}
],
"source": [
"fprintf([string1,' ',string2,'\\n\\n'])\n",
"string = sprintf('the dog had %i legs and weighed %1.1f lbs',4,30.93)"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "slide"
}
},
"source": [
"## 4. Functions \n",
"### Some built in Matlab functions \n",
"**(i.e. the reasons to run Matlab)** "
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "subslide"
}
},
"source": [
"## Math operators (=, +, -, /, *, ^)\n",
"\n",
"Matlab assumes all variables are matrices\n",
"\n",
"all operators are matrix operations functions"
]
},
{
"cell_type": "code",
"execution_count": 67,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"ans =\n",
"\n",
" 3 3\n",
"\n",
"ans =\n",
"\n",
" 0.50000 0.50000\n",
"\n"
]
}
],
"source": [
"1+[2,2]\n",
"1./[2,2]"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "slide"
}
},
"source": [
"# Thanks"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "slide"
}
},
"source": [
"# Further Examples of Arrays and Functions"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "fragment"
}
},
"source": [
"vectors are either 1xN or Nx1 arrays for row and column"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "fragment"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"ans =\n",
"\n",
" 100\n",
" 2\n",
" 3\n",
"\n"
]
}
],
"source": [
"v_row = [100, 2,3]; %row vector\n",
"v_column = [1;2;3]; %column vector\n",
"v_row'"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "subslide"
}
},
"source": [
"Matrices are MxN arrays\n",
"the `:`-symbol can substitute for a counting"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"A =\n",
"\n",
" 1 2 3\n",
" 4 5 6\n",
" 7 8 9\n",
" 10 11 12\n",
"\n",
"ans =\n",
"\n",
" 1\n",
" 4\n",
" 7\n",
" 10\n",
"\n"
]
}
],
"source": [
"A = [1 2 3;4,5,6;7,8,9;10,11,12]\n",
"A(:,1) % the colon assumes you want the first value, 1, counting up by 1 to the last value, 4"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "subslide"
}
},
"source": [
"You can also use every 2nd value or any other integer up to `end` which is the largest value of that row or column of the array"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"ans =\n",
"\n",
" 1 2 3\n",
"\n"
]
}
],
"source": [
"A(1,:) % you can also use `end` "
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"ans =\n",
"\n",
" 1\n",
" 4\n",
" 7\n",
" 10\n",
" 2\n",
" 5\n",
" 8\n",
" 11\n",
" 3\n",
" 6\n",
" 9\n",
" 12\n",
"\n"
]
}
],
"source": [
"A(:)"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "subslide"
}
},
"source": [
"In general, arrays can be any size \n",
"\n",
"take rolling 4 die and determining the sum of the components"
]
},
{
"cell_type": "code",
"execution_count": 30,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"'mode' is a function from the file /usr/share/octave/4.0.0/m/statistics/base/mode.m\n",
"\n",
" -- Function File: mode (X)\n",
" -- Function File: mode (X, DIM)\n",
" -- Function File: [M, F, C] = mode (...)\n",
" Compute the most frequently occurring value in a dataset (mode).\n",
"\n",
" 'mode' determines the frequency of values along the first\n",
" non-singleton dimension and returns the value with the highest\n",
" frequency. If two, or more, values have the same frequency 'mode'\n",
" returns the smallest.\n",
"\n",
" If the optional argument DIM is given, operate along this\n",
" dimension.\n",
"\n",
" The return variable F is the number of occurrences of the mode in\n",
" the dataset.\n",
"\n",
" The cell array C contains all of the elements with the maximum\n",
" frequency.\n",
"\n",
" See also: mean, median.\n",
"\n",
"Additional help for built-in functions and operators is\n",
"available in the online version of the manual. Use the command\n",
"'doc <topic>' to search the manual index.\n",
"\n",
"Help and information about Octave is also available on the WWW\n",
"at http://www.octave.org and via the help@octave.org\n",
"mailing list.\n"
]
}
],
"source": [
"help mode"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"ans = 14\n",
"ans = 3.4170\n",
"ans =\n",
"\n",
"ans(:,:,1) =\n",
"\n",
" 4 5 6 7 8 9\n",
" 5 6 7 8 9 10\n",
" 6 7 8 9 10 11\n",
" 7 8 9 10 11 12\n",
" 8 9 10 11 12 13\n",
" 9 10 11 12 13 14\n",
"\n",
"ans(:,:,2) =\n",
"\n",
" 5 6 7 8 9 10\n",
" 6 7 8 9 10 11\n",
" 7 8 9 10 11 12\n",
" 8 9 10 11 12 13\n",
" 9 10 11 12 13 14\n",
" 10 11 12 13 14 15\n",
"\n",
"ans(:,:,3) =\n",
"\n",
" 6 7 8 9 10 11\n",
" 7 8 9 10 11 12\n",
" 8 9 10 11 12 13\n",
" 9 10 11 12 13 14\n",
" 10 11 12 13 14 15\n",
" 11 12 13 14 15 16\n",
"\n",
"ans(:,:,4) =\n",
"\n",
" 7 8 9 10 11 12\n",
" 8 9 10 11 12 13\n",
" 9 10 11 12 13 14\n",
" 10 11 12 13 14 15\n",
" 11 12 13 14 15 16\n",
" 12 13 14 15 16 17\n",
"\n",
"ans(:,:,5) =\n",
"\n",
" 8 9 10 11 12 13\n",
" 9 10 11 12 13 14\n",
" 10 11 12 13 14 15\n",
" 11 12 13 14 15 16\n",
" 12 13 14 15 16 17\n",
" 13 14 15 16 17 18\n",
"\n",
"ans(:,:,6) =\n",
"\n",
" 9 10 11 12 13 14\n",
" 10 11 12 13 14 15\n",
" 11 12 13 14 15 16\n",
" 12 13 14 15 16 17\n",
" 13 14 15 16 17 18\n",
" 14 15 16 17 18 19\n",
"\n"
]
}
],
"source": [
"mean(A_6666(:))\n",
"std(A_6666(:))\n",
"A_6666(:,:,:,1)"
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"ans =\n",
"\n",
" 1296 1\n",
"\n"
]
}
],
"source": [
"size(A_6666(:))\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## This is helpful to create reports of computed data\n",
"\n",
"the `\\` signifies a special character e.g. `\\n` = newline, `\\t` = tab\n",
"\n",
"to actually print the \"\\\", use `\\\\`"
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"n\n",
" n\n"
]
}
],
"source": [
"fprintf('n\\n n')"
]
},
{
"cell_type": "code",
"execution_count": 34,
"metadata": {
"collapsed": false,
"scrolled": false,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"ans = 0\r\n"
]
}
],
"source": [
"fid = fopen('file.txt','w');\n",
"string1='Computational';\n",
"string2='Mechanics';\n",
"string='happy semester';\n",
"fprintf(fid,[string1, ' ', string2])\n",
"fprintf(fid,'\\n')\n",
"fprintf(fid,string)\n",
"fprintf(fid,'\\n')\n",
"fprintf(fid,'are you awake?')\n",
"fprintf(fid,'\\n')\n",
"fprintf(fid,'%f is equal to pi',pi)\n",
"fclose(fid)"
]
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"ans =\n",
"\n",
" 20\n"
]
}
],
"source": [
"a=10;\n",
"a+a % add two 1x1 arrays"
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"ans =\n",
"\n",
" 2 4 6\n",
" 8 10 12\n",
" 14 16 18\n",
" 20 22 24\n"
]
}
],
"source": [
"A = [1 2 3;4,5,6;7,8,9;10,11,12];\n",
"A+A % add two 4 x 3 arrays"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"ans =\n",
"\n",
" 14 32 50 68\n",
" 32 77 122 167\n",
" 50 122 194 266\n",
" 68 167 266 365\n"
]
}
],
"source": [
"A*A'"
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"ans =\n",
"\n",
" 1 4 9\n",
" 16 25 36\n",
" 49 64 81\n",
" 100 121 144\n"
]
}
],
"source": [
"A.^2"
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"ans =\n",
"\n",
" 1 4 9\n",
" 16 25 36\n",
" 49 64 81\n",
" 100 121 144\n"
]
}
],
"source": [
"A.*A"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[\b> In pymat_eval (line 31)\n",
" In matlabserver (line 24)]\b \n",
"[\bWarning: Rank deficient, rank = 2, tol = 1.696862e-14.]\b \n",
"\n",
"ans =\n",
"\n",
" 1.0000 0 0 -0.0000\n",
" 0.6667 0 0 0.3333\n",
" 0.3333 0 0 0.6667\n",
" 0.0000 0 0 1.0000\n"
]
}
],
"source": [
"A/A"
]
},
{
"cell_type": "code",
"execution_count": 27,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"/ Slash or right matrix divide.\n",
" A/B is the matrix division of B into A, which is roughly the\n",
" same as A*INV(B) , except it is computed in a different way.\n",
" More precisely, A/B = (B'\\A')'. See MLDIVIDE for details.\n",
" \n",
" C = MRDIVIDE(A,B) is called for the syntax 'A / B' when A or B is an\n",
" object.\n",
" \n",
" See also MLDIVIDE, RDIVIDE, LDIVIDE.\n",
"\n",
" Reference page in Doc Center\n",
" doc mrdivide\n",
"\n",
" Other functions named mrdivide\n",
"\n",
" codistributed/mrdivide gf/mrdivide laurpoly/mrdivide\n",
" duration/mrdivide gpuArray/mrdivide StaticModel/mrdivide\n",
" DynamicSystem/mrdivide LagOp/mrdivide timeseries/mrdivide\n",
" fints/mrdivide\n"
]
}
],
"source": [
"help /"
]
},
{
"cell_type": "code",
"execution_count": 28,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"ans =\n",
"\n",
" 1 1 1\n",
" 1 1 1\n",
" 1 1 1\n",
" 1 1 1\n"
]
}
],
"source": [
"% element-by-element operation with '.'\n",
"A./A"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "subslide"
}
},
"source": [
"But, for 1x1 arrays, these are considered scalars and you get a free-pass"
]
},
{
"cell_type": "code",
"execution_count": 29,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"ans =\n",
"\n",
" 10 20 30\n",
" 40 50 60\n",
" 70 80 90\n",
" 100 110 120\n"
]
}
],
"source": [
"a*A % where a=10 and A is 1:12 in a 3 x 4 matrix"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "slide"
}
},
"source": [
"## 4.con'd Other built-in functions"
]
},
{
"cell_type": "code",
"execution_count": 30,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"t_linear =\n",
"\n",
" Columns 1 through 7\n",
"\n",
" 0 0.1000 0.2000 0.3000 0.4000 0.5000 0.6000\n",
"\n",
" Columns 8 through 11\n",
"\n",
" 0.7000 0.8000 0.9000 1.0000\n"
]
}
],
"source": [
"t_linear=linspace(0,1,11)"
]
},
{
"cell_type": "code",
"execution_count": 31,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"t_log =\n",
"\n",
" 1 10 100\n"
]
}
],
"source": [
"t_log = logspace(0,2,3) % log interval from 10^0 to 10^2 split into 3 values"
]
},
{
"cell_type": "code",
"execution_count": 32,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"LOGSPACE Logarithmically spaced vector.\n",
" LOGSPACE(X1, X2) generates a row vector of 50 logarithmically\n",
" equally spaced points between decades 10^X1 and 10^X2. If X2\n",
" is pi, then the points are between 10^X1 and pi.\n",
" \n",
" LOGSPACE(X1, X2, N) generates N points.\n",
" For N = 1, LOGSPACE returns 10^X2.\n",
" \n",
" Class support for inputs X1,X2:\n",
" float: double, single\n",
" \n",
" See also LINSPACE, COLON.\n",
"\n",
" Reference page in Doc Center\n",
" doc logspace\n",
"\n",
" Other functions named logspace\n",
"\n",
" codistributed.logspace distributed.logspace\n",
" codistributor1d/logspace gpuArray/logspace\n",
" codistributor2dbc/logspace\n"
]
}
],
"source": [
"help logspace"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "slide"
}
},
"source": [
"## 4.con'd scripts, functions or classes (to define objects)\n",
"\n",
"When using the GUI, your command history is saved, \n",
"\n",
"Best practice: save your work either as a script or a function or combination of both\n",
"\n",
"Creating a default graph script:"
]
},
{
"cell_type": "code",
"execution_count": 33,
"metadata": {
"collapsed": true,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [],
"source": [
"set(0, 'defaultAxesFontSize', 16)\n",
"set(0,'defaultTextFontSize',14)\n",
"set(0,'defaultLineLineWidth',3)"
]
},
{
"cell_type": "code",
"execution_count": 34,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"data": {
"image/png": "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\n",
"text/plain": [
"<IPython.core.display.Image object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"plot(t_linear,t_linear.^2)\n",
"xlabel('time (s)')\n",
"ylabel('displacement (m)')"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "slide"
}
},
"source": [
"## Graphics can be produced with a number of functions\n",
"\n",
"2-D plots, 3-D plots, contour plots, 3D contour plots ... "
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"data": {
"image/svg+xml": [
"<svg height=\"420px\" viewBox=\"0 0 560 420\" width=\"560px\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
"\n",
"<title>Gnuplot</title>\n",
"<desc>Produced by GNUPLOT 5.0 patchlevel 3 </desc>\n",
"\n",
"<g id=\"gnuplot_canvas\">\n",
"\n",
"<rect fill=\"none\" height=\"420\" width=\"560\" x=\"0\" y=\"0\"/>\n",
"<defs>\n",
"\n",
"\t<circle id=\"gpDot\" r=\"0.5\" stroke-width=\"0.5\"/>\n",
"\t<path d=\"M-1,0 h2 M0,-1 v2\" id=\"gpPt0\" stroke=\"currentColor\" stroke-width=\"0.333\"/>\n",
"\t<path d=\"M-1,-1 L1,1 M1,-1 L-1,1\" id=\"gpPt1\" stroke=\"currentColor\" stroke-width=\"0.333\"/>\n",
"\t<path d=\"M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1\" id=\"gpPt2\" stroke=\"currentColor\" stroke-width=\"0.333\"/>\n",
"\t<rect height=\"2\" id=\"gpPt3\" stroke=\"currentColor\" stroke-width=\"0.333\" width=\"2\" x=\"-1\" y=\"-1\"/>\n",
"\t<rect fill=\"currentColor\" height=\"2\" id=\"gpPt4\" stroke=\"currentColor\" stroke-width=\"0.333\" width=\"2\" x=\"-1\" y=\"-1\"/>\n",
"\t<circle cx=\"0\" cy=\"0\" id=\"gpPt5\" r=\"1\" stroke=\"currentColor\" stroke-width=\"0.333\"/>\n",
"\t<use fill=\"currentColor\" id=\"gpPt6\" stroke=\"none\" xlink:href=\"#gpPt5\"/>\n",
"\t<path d=\"M0,-1.33 L-1.33,0.67 L1.33,0.67 z\" id=\"gpPt7\" stroke=\"currentColor\" stroke-width=\"0.333\"/>\n",
"\t<use fill=\"currentColor\" id=\"gpPt8\" stroke=\"none\" xlink:href=\"#gpPt7\"/>\n",
"\t<use id=\"gpPt9\" stroke=\"currentColor\" transform=\"rotate(180)\" xlink:href=\"#gpPt7\"/>\n",
"\t<use fill=\"currentColor\" id=\"gpPt10\" stroke=\"none\" xlink:href=\"#gpPt9\"/>\n",
"\t<use id=\"gpPt11\" stroke=\"currentColor\" transform=\"rotate(45)\" xlink:href=\"#gpPt3\"/>\n",
"\t<use fill=\"currentColor\" id=\"gpPt12\" stroke=\"none\" xlink:href=\"#gpPt11\"/>\n",
"\t<path d=\"M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z\" id=\"gpPt13\" stroke=\"currentColor\" stroke-width=\"0.333\"/>\n",
"\t<use fill=\"currentColor\" id=\"gpPt14\" stroke=\"none\" xlink:href=\"#gpPt13\"/>\n",
"\t<filter filterUnits=\"objectBoundingBox\" height=\"1\" id=\"textbox\" width=\"1\" x=\"0\" y=\"0\">\n",
"\t <feFlood flood-color=\"white\" flood-opacity=\"1\" result=\"bgnd\"/>\n",
"\t <feComposite in=\"SourceGraphic\" in2=\"bgnd\" operator=\"atop\"/>\n",
"\t</filter>\n",
"\t<filter filterUnits=\"objectBoundingBox\" height=\"1\" id=\"greybox\" width=\"1\" x=\"0\" y=\"0\">\n",
"\t <feFlood flood-color=\"lightgrey\" flood-opacity=\"1\" result=\"grey\"/>\n",
"\t <feComposite in=\"SourceGraphic\" in2=\"grey\" operator=\"atop\"/>\n",
"\t</filter>\n",
"</defs>\n",
"<g color=\"white\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 255, 255)\" points=\"36.4,396.0 543.0,396.0 543.0,11.4 36.4,11.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M36.4,396.0 L44.8,396.0 M543.1,396.0 L534.7,396.0 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(30.8,399.7)\">\n",
"\t\t<text><tspan font-family=\"{}\">-1</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M36.4,299.8 L44.8,299.8 M543.1,299.8 L534.7,299.8 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(30.8,303.5)\">\n",
"\t\t<text><tspan font-family=\"{}\">-0.5</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M36.4,203.6 L44.8,203.6 M543.1,203.6 L534.7,203.6 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(30.8,207.3)\">\n",
"\t\t<text><tspan font-family=\"{}\">0</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M36.4,107.5 L44.8,107.5 M543.1,107.5 L534.7,107.5 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(30.8,111.2)\">\n",
"\t\t<text><tspan font-family=\"{}\">0.5</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M36.4,11.3 L44.8,11.3 M543.1,11.3 L534.7,11.3 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(30.8,15.0)\">\n",
"\t\t<text><tspan font-family=\"{}\">1</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M36.4,396.0 L36.4,387.6 M36.4,11.3 L36.4,19.7 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(36.4,411.7)\">\n",
"\t\t<text><tspan font-family=\"{}\">-1</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M163.1,396.0 L163.1,387.6 M163.1,11.3 L163.1,19.7 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(163.1,411.7)\">\n",
"\t\t<text><tspan font-family=\"{}\">-0.5</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M289.8,396.0 L289.8,387.6 M289.8,11.3 L289.8,19.7 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(289.8,411.7)\">\n",
"\t\t<text><tspan font-family=\"{}\">0</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M416.4,396.0 L416.4,387.6 M416.4,11.3 L416.4,19.7 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(416.4,411.7)\">\n",
"\t\t<text><tspan font-family=\"{}\">0.5</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M543.1,396.0 L543.1,387.6 M543.1,11.3 L543.1,19.7 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(543.1,411.7)\">\n",
"\t\t<text><tspan font-family=\"{}\">1</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M36.4,11.3 L36.4,396.0 L543.1,396.0 L543.1,11.3 L36.4,11.3 Z \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"\t<g id=\"gnuplot_plot_1a\"><title>gnuplot_plot_1a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M96.7,11.3 L112.4,16.6 L137.7,20.8 L163.1,20.8 L188.4,15.4 L197.2,11.3 \" stroke=\"rgb( 0, 0, 128)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_2a\"><title>gnuplot_plot_2a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M382.3,396.0 L391.1,391.9 L416.4,386.5 L441.8,386.5 L467.1,390.7 L482.8,396.0 \" stroke=\"rgb( 0, 0, 128)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_3a\"><title>gnuplot_plot_3a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M36.4,350.2 L43.4,338.3 L48.9,319.1 L48.9,299.8 L41.8,280.6 L36.4,273.9 \" stroke=\"rgb( 0, 0, 128)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_4a\"><title>gnuplot_plot_4a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M543.1,133.4 L537.7,126.7 L530.6,107.5 L530.6,88.2 L536.1,69.0 L543.1,57.1 \" stroke=\"rgb( 0, 0, 128)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_5a\"><title>gnuplot_plot_5a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M77.6,11.3 L87.1,16.4 L112.4,25.2 L137.7,30.3 L141.6,30.5 L163.1,32.1 L173.8,30.5 L188.4,28.6 L213.7,18.3 L222.7,11.3 \" stroke=\"rgb( 0, 0, 241)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_6a\"><title>gnuplot_plot_6a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M356.8,396.0 L365.8,389.0 L391.1,378.7 L405.7,376.8 L416.4,375.2 L437.9,376.8 L441.8,377.0 L467.1,382.1 L492.4,390.9 L501.9,396.0 \" stroke=\"rgb( 0, 0, 241)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_7a\"><title>gnuplot_plot_7a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M36.4,364.7 L43.1,357.5 L54.8,338.3 L61.5,319.1 L61.7,316.1 L63.8,299.8 L61.7,291.7 L59.2,280.6 L45.6,261.4 L36.4,254.6 \" stroke=\"rgb( 0, 0, 241)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_8a\"><title>gnuplot_plot_8a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M543.1,152.7 L533.9,145.9 L520.3,126.7 L517.8,115.6 L515.7,107.5 L517.8,91.2 L518.0,88.2 L524.7,69.0 L536.4,49.8 L543.1,42.6 \" stroke=\"rgb( 0, 0, 241)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_9a\"><title>gnuplot_plot_9a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M62.5,11.3 L87.1,24.5 L103.8,30.5 L112.4,35.0 L137.7,42.7 L163.1,46.1 L188.4,44.8 L213.7,36.7 L222.8,30.5 L239.1,17.6 L243.8,11.3 \" stroke=\"rgb( 0, 99, 255)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_10a\"><title>gnuplot_plot_10a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M335.7,396.0 L340.4,389.7 L356.7,376.8 L365.8,370.6 L391.1,362.5 L416.4,361.2 L441.8,364.6 L467.1,372.3 L475.7,376.8 L492.4,382.8 L517.0,396.0 \" stroke=\"rgb( 0, 99, 255)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_11a\"><title>gnuplot_plot_11a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M36.4,376.2 L53.8,357.5 L61.7,344.9 L67.6,338.3 L77.7,319.1 L82.2,299.8 L80.5,280.6 L69.8,261.4 L61.7,254.5 L44.7,242.1 L36.4,238.5 \" stroke=\"rgb( 0, 99, 255)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_12a\"><title>gnuplot_plot_12a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M543.1,168.8 L534.8,165.2 L517.8,152.8 L509.7,145.9 L499.0,126.7 L497.3,107.5 L501.8,88.2 L511.9,69.0 L517.8,62.4 L525.7,49.8 L543.1,31.1 \" stroke=\"rgb( 0, 99, 255)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_13a\"><title>gnuplot_plot_13a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M51.9,11.3 L61.7,18.8 L83.4,30.5 L87.1,33.3 L112.4,46.4 L122.8,49.8 L137.7,56.9 L163.1,63.5 L188.4,65.1 L213.7,60.7 L232.9,49.8 L239.1,45.8 L252.0,30.5 L262.9,11.3 \" stroke=\"rgb( 0, 212, 255)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_14a\"><title>gnuplot_plot_14a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M316.6,396.0 L327.5,376.8 L340.4,361.5 L346.6,357.5 L365.8,346.6 L391.1,342.2 L416.4,343.8 L441.8,350.4 L456.7,357.5 L467.1,360.9 L492.4,374.0 L496.1,376.8 L517.8,388.5 L527.6,396.0 \" stroke=\"rgb( 0, 212, 255)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_15a\"><title>gnuplot_plot_15a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M36.4,384.2 L46.2,376.8 L61.7,360.3 L65.4,357.5 L82.6,338.3 L87.1,330.4 L96.5,319.1 L105.1,299.8 L107.3,280.6 L101.5,261.4 L87.1,246.8 L81.9,242.1 L61.7,232.3 L36.4,224.1 \" stroke=\"rgb( 0, 212, 255)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_16a\"><title>gnuplot_plot_16a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M543.1,183.2 L517.8,175.0 L497.6,165.2 L492.4,160.5 L478.0,145.9 L472.2,126.7 L474.4,107.5 L483.0,88.2 L492.4,76.9 L496.9,69.0 L514.1,49.8 L517.8,47.0 L533.3,30.5 L543.1,23.1 \" stroke=\"rgb( 0, 212, 255)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_17a\"><title>gnuplot_plot_17a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M41.6,11.3 L61.7,26.6 L69.0,30.5 L87.1,44.3 L97.6,49.8 L112.4,61.0 L128.6,69.0 L137.7,75.9 L163.1,87.5 L166.3,88.2 L188.4,96.6 L213.7,98.9 L239.1,92.1 L244.2,88.2 L263.3,69.0 L264.4,67.5 L272.2,49.8 L277.5,30.5 L280.8,11.3 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_18a\"><title>gnuplot_plot_18a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M298.7,396.0 L302.0,376.8 L307.3,357.5 L315.1,339.8 L316.2,338.3 L335.3,319.1 L340.4,315.2 L365.8,308.4 L391.1,310.7 L413.2,319.1 L416.4,319.8 L441.8,331.4 L450.9,338.3 L467.1,346.3 L481.9,357.5 L492.4,363.0 L510.5,376.8 L517.8,380.7 L537.9,396.0 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_19a\"><title>gnuplot_plot_19a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M36.4,392.1 L56.6,376.8 L61.7,371.3 L79.8,357.5 L87.1,349.5 L101.9,338.3 L112.4,326.0 L121.5,319.1 L136.8,299.8 L137.7,297.4 L148.8,280.6 L151.8,261.4 L142.8,242.1 L137.7,238.3 L112.4,223.7 L110.4,222.9 L87.1,217.0 L61.7,213.0 L36.4,210.4 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_20a\"><title>gnuplot_plot_20a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M543.1,196.9 L517.8,194.3 L492.4,190.3 L469.1,184.4 L467.1,183.6 L441.8,169.0 L436.7,165.2 L427.7,145.9 L430.7,126.7 L441.8,109.9 L442.7,107.5 L458.0,88.2 L467.1,81.3 L477.6,69.0 L492.4,57.8 L499.7,49.8 L517.8,36.0 L522.9,30.5 L543.1,15.2 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_21a\"><title>gnuplot_plot_21a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M41.6,396.0 L61.7,380.7 L69.0,376.8 L87.1,363.0 L97.6,357.5 L112.4,346.3 L128.6,338.3 L137.7,331.4 L163.1,319.8 L166.3,319.1 L188.4,310.7 L213.7,308.4 L239.1,315.2 L244.2,319.1 L263.3,338.3 L264.4,339.8 L272.2,357.5 L277.5,376.8 L280.8,396.0 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_22a\"><title>gnuplot_plot_22a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M298.7,11.3 L302.0,30.5 L307.3,49.8 L315.1,67.5 L316.2,69.0 L335.3,88.2 L340.4,92.1 L365.8,98.9 L391.1,96.6 L413.2,88.2 L416.4,87.5 L441.8,75.9 L450.9,69.0 L467.1,61.0 L481.9,49.8 L492.4,44.3 L510.5,30.5 L517.8,26.6 L537.9,11.3 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_23a\"><title>gnuplot_plot_23a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M543.1,392.1 L522.9,376.8 L517.8,371.3 L499.7,357.5 L492.4,349.5 L477.6,338.3 L467.1,326.0 L458.0,319.1 L442.7,299.8 L441.8,297.4 L430.7,280.6 L427.7,261.4 L436.7,242.1 L441.8,238.3 L467.1,223.7 L469.1,222.9 L492.4,217.0 L517.8,213.0 L543.1,210.4 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_24a\"><title>gnuplot_plot_24a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M36.4,196.9 L61.7,194.3 L87.1,190.3 L110.4,184.4 L112.4,183.6 L137.7,169.0 L142.8,165.2 L151.8,145.9 L148.8,126.7 L137.7,109.9 L136.8,107.5 L121.5,88.2 L112.4,81.3 L101.9,69.0 L87.1,57.8 L79.8,49.8 L61.7,36.0 L56.6,30.5 L36.4,15.2 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_25a\"><title>gnuplot_plot_25a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M51.9,396.0 L61.7,388.5 L83.4,376.8 L87.1,374.0 L112.4,360.9 L122.8,357.5 L137.7,350.4 L163.1,343.8 L188.4,342.2 L213.7,346.6 L232.9,357.5 L239.1,361.5 L252.0,376.8 L262.9,396.0 \" stroke=\"rgb(255, 212, 0)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_26a\"><title>gnuplot_plot_26a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M316.6,11.3 L327.5,30.5 L340.4,45.8 L346.6,49.8 L365.8,60.7 L391.1,65.1 L416.4,63.5 L441.8,56.9 L456.7,49.8 L467.1,46.4 L492.4,33.3 L496.1,30.5 L517.8,18.8 L527.6,11.3 \" stroke=\"rgb(255, 212, 0)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_27a\"><title>gnuplot_plot_27a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M543.1,384.2 L533.3,376.8 L517.8,360.3 L514.1,357.5 L496.9,338.3 L492.4,330.4 L483.0,319.1 L474.4,299.8 L472.2,280.6 L478.0,261.4 L492.4,246.8 L497.6,242.1 L517.8,232.3 L543.1,224.1 \" stroke=\"rgb(255, 212, 0)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_28a\"><title>gnuplot_plot_28a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M36.4,183.2 L61.7,175.0 L81.9,165.2 L87.1,160.5 L101.5,145.9 L107.3,126.7 L105.1,107.5 L96.5,88.2 L87.1,76.9 L82.6,69.0 L65.4,49.8 L61.7,47.0 L46.2,30.5 L36.4,23.1 \" stroke=\"rgb(255, 212, 0)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_29a\"><title>gnuplot_plot_29a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M62.5,396.0 L87.1,382.8 L103.8,376.8 L112.4,372.3 L137.7,364.6 L163.1,361.2 L188.4,362.5 L213.7,370.6 L222.8,376.8 L239.1,389.7 L243.8,396.0 \" stroke=\"rgb(255, 99, 0)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_30a\"><title>gnuplot_plot_30a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M335.7,11.3 L340.4,17.6 L356.7,30.5 L365.8,36.7 L391.1,44.8 L416.4,46.1 L441.8,42.7 L467.1,35.0 L475.7,30.5 L492.4,24.5 L517.0,11.3 \" stroke=\"rgb(255, 99, 0)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_31a\"><title>gnuplot_plot_31a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M543.1,376.2 L525.7,357.5 L517.8,344.9 L511.9,338.3 L501.8,319.1 L497.3,299.8 L499.0,280.6 L509.7,261.4 L517.8,254.5 L534.8,242.1 L543.1,238.5 \" stroke=\"rgb(255, 99, 0)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_32a\"><title>gnuplot_plot_32a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M36.4,168.8 L44.7,165.2 L61.7,152.8 L69.8,145.9 L80.5,126.7 L82.2,107.5 L77.7,88.2 L67.6,69.0 L61.7,62.4 L53.8,49.8 L36.4,31.1 \" stroke=\"rgb(255, 99, 0)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_33a\"><title>gnuplot_plot_33a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M77.6,396.0 L87.1,390.9 L112.4,382.1 L137.7,377.0 L141.6,376.8 L163.1,375.2 L173.8,376.8 L188.4,378.7 L213.7,389.0 L222.7,396.0 \" stroke=\"rgb(241, 0, 0)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_34a\"><title>gnuplot_plot_34a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M356.8,11.3 L365.8,18.3 L391.1,28.6 L405.7,30.5 L416.4,32.1 L437.9,30.5 L441.8,30.3 L467.1,25.2 L492.4,16.4 L501.9,11.3 \" stroke=\"rgb(241, 0, 0)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_35a\"><title>gnuplot_plot_35a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M543.1,364.7 L536.4,357.5 L524.7,338.3 L518.0,319.1 L517.8,316.1 L515.7,299.8 L517.8,291.7 L520.3,280.6 L533.9,261.4 L543.1,254.6 \" stroke=\"rgb(241, 0, 0)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_36a\"><title>gnuplot_plot_36a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M36.4,152.7 L45.6,145.9 L59.2,126.7 L61.7,115.6 L63.8,107.5 L61.7,91.2 L61.5,88.2 L54.8,69.0 L43.1,49.8 L36.4,42.6 \" stroke=\"rgb(241, 0, 0)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_37a\"><title>gnuplot_plot_37a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M96.7,396.0 L112.4,390.7 L137.7,386.5 L163.1,386.5 L188.4,391.9 L197.2,396.0 \" stroke=\"rgb(128, 0, 0)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_38a\"><title>gnuplot_plot_38a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M382.3,11.3 L391.1,15.4 L416.4,20.8 L441.8,20.8 L467.1,16.6 L482.8,11.3 \" stroke=\"rgb(128, 0, 0)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_39a\"><title>gnuplot_plot_39a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M543.1,350.2 L536.1,338.3 L530.6,319.1 L530.6,299.8 L537.7,280.6 L543.1,273.9 \" stroke=\"rgb(128, 0, 0)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_40a\"><title>gnuplot_plot_40a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M36.4,133.4 L41.8,126.7 L48.9,107.5 L48.9,88.2 L43.4,69.0 L36.4,57.1 \" stroke=\"rgb(128, 0, 0)\"/></g>\n",
"\t</g>\n",
"<g color=\"white\" fill=\"none\" stroke=\"rgb(128, 0, 0)\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"2.00\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"2.00\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"</g>\n",
"</svg>"
],
"text/plain": [
"<IPython.core.display.SVG object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"x=linspace(-1,1,21); y=linspace(-1,1,21);\n",
"[X,Y]=meshgrid(x,y);\n",
"Z=(X.*Y.^3-X.^3.*Y);\n",
"\n",
"contour(X,Y,Z)"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"data": {
"image/svg+xml": [
"<svg height=\"420px\" viewBox=\"0 0 560 420\" width=\"560px\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
"\n",
"<title>Gnuplot</title>\n",
"<desc>Produced by GNUPLOT 5.0 patchlevel 3 </desc>\n",
"\n",
"<g id=\"gnuplot_canvas\">\n",
"\n",
"<rect fill=\"none\" height=\"420\" width=\"560\" x=\"0\" y=\"0\"/>\n",
"<defs>\n",
"\n",
"\t<circle id=\"gpDot\" r=\"0.5\" stroke-width=\"0.5\"/>\n",
"\t<path d=\"M-1,0 h2 M0,-1 v2\" id=\"gpPt0\" stroke=\"currentColor\" stroke-width=\"0.333\"/>\n",
"\t<path d=\"M-1,-1 L1,1 M1,-1 L-1,1\" id=\"gpPt1\" stroke=\"currentColor\" stroke-width=\"0.333\"/>\n",
"\t<path d=\"M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1\" id=\"gpPt2\" stroke=\"currentColor\" stroke-width=\"0.333\"/>\n",
"\t<rect height=\"2\" id=\"gpPt3\" stroke=\"currentColor\" stroke-width=\"0.333\" width=\"2\" x=\"-1\" y=\"-1\"/>\n",
"\t<rect fill=\"currentColor\" height=\"2\" id=\"gpPt4\" stroke=\"currentColor\" stroke-width=\"0.333\" width=\"2\" x=\"-1\" y=\"-1\"/>\n",
"\t<circle cx=\"0\" cy=\"0\" id=\"gpPt5\" r=\"1\" stroke=\"currentColor\" stroke-width=\"0.333\"/>\n",
"\t<use fill=\"currentColor\" id=\"gpPt6\" stroke=\"none\" xlink:href=\"#gpPt5\"/>\n",
"\t<path d=\"M0,-1.33 L-1.33,0.67 L1.33,0.67 z\" id=\"gpPt7\" stroke=\"currentColor\" stroke-width=\"0.333\"/>\n",
"\t<use fill=\"currentColor\" id=\"gpPt8\" stroke=\"none\" xlink:href=\"#gpPt7\"/>\n",
"\t<use id=\"gpPt9\" stroke=\"currentColor\" transform=\"rotate(180)\" xlink:href=\"#gpPt7\"/>\n",
"\t<use fill=\"currentColor\" id=\"gpPt10\" stroke=\"none\" xlink:href=\"#gpPt9\"/>\n",
"\t<use id=\"gpPt11\" stroke=\"currentColor\" transform=\"rotate(45)\" xlink:href=\"#gpPt3\"/>\n",
"\t<use fill=\"currentColor\" id=\"gpPt12\" stroke=\"none\" xlink:href=\"#gpPt11\"/>\n",
"\t<path d=\"M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z\" id=\"gpPt13\" stroke=\"currentColor\" stroke-width=\"0.333\"/>\n",
"\t<use fill=\"currentColor\" id=\"gpPt14\" stroke=\"none\" xlink:href=\"#gpPt13\"/>\n",
"\t<filter filterUnits=\"objectBoundingBox\" height=\"1\" id=\"textbox\" width=\"1\" x=\"0\" y=\"0\">\n",
"\t <feFlood flood-color=\"white\" flood-opacity=\"1\" result=\"bgnd\"/>\n",
"\t <feComposite in=\"SourceGraphic\" in2=\"bgnd\" operator=\"atop\"/>\n",
"\t</filter>\n",
"\t<filter filterUnits=\"objectBoundingBox\" height=\"1\" id=\"greybox\" width=\"1\" x=\"0\" y=\"0\">\n",
"\t <feFlood flood-color=\"lightgrey\" flood-opacity=\"1\" result=\"grey\"/>\n",
"\t <feComposite in=\"SourceGraphic\" in2=\"grey\" operator=\"atop\"/>\n",
"\t</filter>\n",
"</defs>\n",
"<g color=\"white\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"\t<g id=\"gnuplot_plot_1a\"><title>gnuplot_plot_1a</title>\n",
"<g color=\"white\" fill=\"none\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M344.2,234.6 L343.3,233.6 \" stroke=\"rgb( 0, 0, 128)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M316.8,173.1 L318.7,179.4 \" stroke=\"rgb( 0, 132, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M347.1,235.3 L344.2,234.6 \" stroke=\"rgb( 0, 0, 128)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M343.9,233.9 L344.2,234.6 \" stroke=\"rgb( 0, 0, 128)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M307.7,129.6 L316.8,173.1 \" stroke=\"rgb( 6, 255, 249)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M304.9,137.0 L316.8,173.1 \" stroke=\"rgb( 6, 255, 249)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M295.8,93.5 L307.7,129.6 \" stroke=\"rgb(249, 255, 6)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M314.0,169.4 L318.0,179.1 \" stroke=\"rgb( 0, 196, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M304.9,137.0 L314.0,169.4 \" stroke=\"rgb( 38, 255, 217)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M302.1,144.5 L314.0,169.4 \" stroke=\"rgb( 38, 255, 217)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M295.8,93.5 L304.9,137.0 \" stroke=\"rgb(249, 255, 6)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M293.0,112.1 L304.9,137.0 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M317.6,178.9 L311.3,168.0 \" stroke=\"rgb( 0, 245, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M302.1,144.5 L311.3,168.0 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M299.4,151.9 L311.3,168.0 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M293.0,112.1 L302.1,144.5 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M290.2,128.4 L302.1,144.5 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M308.5,168.7 L317.2,178.7 \" stroke=\"rgb( 22, 255, 233)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M283.8,69.8 L295.8,93.5 \" stroke=\"rgb(255, 67, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M150.1,232.8 L141.0,252.0 \" stroke=\"rgb( 0, 2, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M152.9,234.3 L141.0,252.0 \" stroke=\"rgb( 0, 0, 225)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M129.1,264.2 L141.0,252.0 \" stroke=\"rgb( 0, 0, 160)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M138.2,240.1 L129.1,264.2 \" stroke=\"rgb( 0, 0, 208)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M117.2,269.5 L129.1,264.2 \" stroke=\"rgb( 0, 0, 128)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M283.8,69.8 L293.0,112.1 \" stroke=\"rgb(255, 99, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M281.1,97.2 L293.0,112.1 \" stroke=\"rgb(255, 164, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M157.8,226.9 L152.9,234.3 \" stroke=\"rgb( 0, 34, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M157.9,227.2 L152.9,234.3 \" stroke=\"rgb( 0, 34, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M126.3,241.3 L117.2,269.5 \" stroke=\"rgb( 0, 0, 208)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M105.3,266.5 L117.2,269.5 \" stroke=\"rgb( 0, 0, 144)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M308.5,168.7 L299.4,151.9 \" stroke=\"rgb( 87, 255, 168)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M290.2,128.4 L299.4,151.9 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M287.4,142.6 L299.4,151.9 \" stroke=\"rgb(168, 255, 87)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M316.6,178.4 L308.5,168.7 \" stroke=\"rgb( 38, 255, 217)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M296.6,159.4 L308.5,168.7 \" stroke=\"rgb( 87, 255, 168)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M176.7,187.9 L173.1,195.4 \" stroke=\"rgb( 0, 229, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M281.1,97.2 L290.2,128.4 \" stroke=\"rgb(255, 196, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M278.4,120.1 L290.2,128.4 \" stroke=\"rgb(255, 229, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M114.4,235.0 L105.3,266.5 \" stroke=\"rgb( 0, 2, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M93.3,253.9 L105.3,266.5 \" stroke=\"rgb( 0, 0, 208)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M305.7,171.2 L315.1,177.7 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M185.9,185.9 L176.7,187.9 \" stroke=\"rgb( 6, 255, 249)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M188.6,161.9 L176.7,187.9 \" stroke=\"rgb( 55, 255, 200)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M272.0,57.2 L283.8,69.8 \" stroke=\"rgb(208, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M272.0,57.2 L281.1,97.2 \" stroke=\"rgb(255, 2, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M269.3,90.9 L281.1,97.2 \" stroke=\"rgb(255, 83, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M296.6,159.4 L287.4,142.6 \" stroke=\"rgb(168, 255, 87)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M278.4,120.1 L287.4,142.6 \" stroke=\"rgb(249, 255, 6)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M275.6,139.1 L287.4,142.6 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M305.7,171.2 L296.6,159.4 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M284.7,155.0 L296.6,159.4 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M150.1,232.8 L157.2,225.4 \" stroke=\"rgb( 0, 83, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M311.6,176.1 L305.7,171.2 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M293.8,166.8 L305.7,171.2 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M156.4,223.0 L150.1,232.8 \" stroke=\"rgb( 0, 99, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M138.2,240.1 L150.1,232.8 \" stroke=\"rgb( 0, 51, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M269.3,90.9 L278.4,120.1 \" stroke=\"rgb(255, 132, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M266.5,118.3 L278.4,120.1 \" stroke=\"rgb(255, 180, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M197.8,166.1 L188.6,161.9 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M200.6,135.9 L188.6,161.9 \" stroke=\"rgb(200, 255, 55)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M185.9,185.9 L178.4,197.5 \" stroke=\"rgb( 6, 255, 249)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M147.4,222.3 L138.2,240.1 \" stroke=\"rgb( 0, 99, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M126.3,241.3 L138.2,240.1 \" stroke=\"rgb( 0, 51, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M195.0,185.2 L185.9,185.9 \" stroke=\"rgb( 38, 255, 217)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M197.8,166.1 L185.9,185.9 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M302.9,175.2 L307.4,176.5 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M284.7,155.0 L275.6,139.1 \" stroke=\"rgb(200, 255, 55)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M266.5,118.3 L275.6,139.1 \" stroke=\"rgb(255, 212, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M263.7,140.4 L275.6,139.1 \" stroke=\"rgb(249, 255, 6)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M293.8,166.8 L284.7,155.0 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M272.9,154.8 L284.7,155.0 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M260.1,54.2 L269.3,90.9 \" stroke=\"rgb(208, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M257.3,92.0 L269.3,90.9 \" stroke=\"rgb(255, 51, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M102.5,220.0 L93.3,253.9 \" stroke=\"rgb( 0, 99, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M81.4,230.2 L93.3,253.9 \" stroke=\"rgb( 0, 67, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M206.9,170.3 L197.8,166.1 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M209.7,146.3 L197.8,166.1 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M257.3,92.0 L266.5,118.3 \" stroke=\"rgb(255, 99, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M254.6,122.1 L266.5,118.3 \" stroke=\"rgb(255, 180, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M209.7,146.3 L200.6,135.9 \" stroke=\"rgb(249, 255, 6)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M212.5,111.3 L200.6,135.9 \" stroke=\"rgb(255, 180, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M260.1,54.2 L272.0,57.2 \" stroke=\"rgb(144, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M302.9,175.2 L293.8,166.8 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M281.9,165.9 L293.8,166.8 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M135.5,220.5 L126.3,241.3 \" stroke=\"rgb( 0, 132, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M114.4,235.0 L126.3,241.3 \" stroke=\"rgb( 0, 83, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M218.8,155.5 L209.7,146.3 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M221.6,127.8 L209.7,146.3 \" stroke=\"rgb(255, 245, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M272.9,154.8 L263.7,140.4 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M254.6,122.1 L263.7,140.4 \" stroke=\"rgb(255, 212, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M251.8,145.5 L263.7,140.4 \" stroke=\"rgb(249, 255, 6)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M245.4,99.4 L254.6,122.1 \" stroke=\"rgb(255, 115, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M242.7,130.3 L254.6,122.1 \" stroke=\"rgb(255, 196, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M248.2,59.5 L257.3,92.0 \" stroke=\"rgb(208, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M245.4,99.4 L257.3,92.0 \" stroke=\"rgb(255, 51, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M192.2,195.5 L183.1,198.9 \" stroke=\"rgb( 22, 255, 233)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M195.0,185.2 L183.1,198.9 \" stroke=\"rgb( 22, 255, 233)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M281.9,165.9 L272.9,154.8 \" stroke=\"rgb(168, 255, 87)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M260.9,157.9 L272.9,154.8 \" stroke=\"rgb(200, 255, 55)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M305.5,176.7 L302.9,175.2 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M291.0,174.3 L302.9,175.2 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M204.2,185.5 L195.0,185.2 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M206.9,170.3 L195.0,185.2 \" stroke=\"rgb( 87, 255, 168)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M221.6,127.8 L212.5,111.3 \" stroke=\"rgb(255, 164, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M224.4,89.5 L212.5,111.3 \" stroke=\"rgb(255, 67, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M230.7,141.8 L221.6,127.8 \" stroke=\"rgb(255, 229, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M233.5,111.7 L221.6,127.8 \" stroke=\"rgb(255, 164, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M216.1,174.6 L206.9,170.3 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M218.8,155.5 L206.9,170.3 \" stroke=\"rgb(168, 255, 87)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M251.8,145.5 L242.7,130.3 \" stroke=\"rgb(255, 229, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M233.5,111.7 L242.7,130.3 \" stroke=\"rgb(255, 164, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M230.7,141.8 L242.7,130.3 \" stroke=\"rgb(255, 229, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M228.0,163.6 L218.8,155.5 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M230.7,141.8 L218.8,155.5 \" stroke=\"rgb(233, 255, 22)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M236.3,71.7 L245.4,99.4 \" stroke=\"rgb(255, 2, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M233.5,111.7 L245.4,99.4 \" stroke=\"rgb(255, 99, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M239.9,153.6 L230.7,141.8 \" stroke=\"rgb(233, 255, 22)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M260.9,157.9 L251.8,145.5 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M239.9,153.6 L251.8,145.5 \" stroke=\"rgb(233, 255, 22)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M224.4,89.5 L233.5,111.7 \" stroke=\"rgb(255, 67, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M291.0,174.3 L281.9,165.9 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M270.1,167.8 L281.9,165.9 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M147.4,222.3 L155.3,219.7 \" stroke=\"rgb( 0, 180, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M248.2,59.5 L260.1,54.2 \" stroke=\"rgb(128, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M270.1,167.8 L260.9,157.9 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M249.0,163.5 L260.9,157.9 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M249.0,163.5 L239.9,153.6 \" stroke=\"rgb(200, 255, 55)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M228.0,163.6 L239.9,153.6 \" stroke=\"rgb(200, 255, 55)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M236.3,71.7 L224.4,89.5 \" stroke=\"rgb(225, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M343.8,185.0 L337.2,185.0 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M123.5,212.2 L114.4,235.0 \" stroke=\"rgb( 0, 196, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M102.5,220.0 L114.4,235.0 \" stroke=\"rgb( 0, 164, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M237.1,170.7 L228.0,163.6 \" stroke=\"rgb(168, 255, 87)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M216.1,174.6 L228.0,163.6 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M297.9,178.9 L291.0,174.3 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M279.2,175.6 L291.0,174.3 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M236.3,71.7 L248.2,59.5 \" stroke=\"rgb(160, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M153.4,214.1 L147.4,222.3 \" stroke=\"rgb( 0, 196, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M135.5,220.5 L147.4,222.3 \" stroke=\"rgb( 0, 180, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M225.2,178.8 L216.1,174.6 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M204.2,185.5 L216.1,174.6 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M279.2,175.6 L270.1,167.8 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M258.2,171.7 L270.1,167.8 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M213.3,186.8 L204.2,185.5 \" stroke=\"rgb( 87, 255, 168)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M192.2,195.5 L204.2,185.5 \" stroke=\"rgb( 55, 255, 200)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M258.2,171.7 L249.0,163.5 \" stroke=\"rgb(168, 255, 87)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M237.1,170.7 L249.0,163.5 \" stroke=\"rgb(168, 255, 87)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M201.4,194.1 L192.2,195.5 \" stroke=\"rgb( 55, 255, 200)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M186.5,199.4 L192.2,195.5 \" stroke=\"rgb( 38, 255, 217)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M246.3,177.0 L237.1,170.7 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M225.2,178.8 L237.1,170.7 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M288.3,181.7 L295.2,181.0 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M330.4,186.4 L328.0,185.9 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M342.3,185.3 L326.6,184.5 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M90.6,195.2 L81.4,230.2 \" stroke=\"rgb( 6, 255, 249)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M69.5,194.2 L81.4,230.2 \" stroke=\"rgb( 6, 255, 249)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M267.3,178.5 L258.2,171.7 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M246.3,177.0 L258.2,171.7 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M288.3,181.7 L279.2,175.6 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M267.3,178.5 L279.2,175.6 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M234.3,183.0 L225.2,178.8 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M213.3,186.8 L225.2,178.8 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M351.4,184.7 L342.3,185.3 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M359.1,182.2 L342.3,185.3 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M330.4,186.4 L342.3,185.3 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M144.6,206.4 L135.5,220.5 \" stroke=\"rgb( 6, 255, 249)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M123.5,212.2 L135.5,220.5 \" stroke=\"rgb( 0, 229, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M222.4,189.0 L213.3,186.8 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M201.4,194.1 L213.3,186.8 \" stroke=\"rgb( 87, 255, 168)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M255.4,182.6 L246.3,177.0 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M234.3,183.0 L246.3,177.0 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M380.8,172.6 L366.5,179.8 \" stroke=\"rgb(168, 255, 87)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M276.5,184.3 L267.3,178.5 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M255.4,182.6 L267.3,178.5 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M291.9,183.6 L288.3,181.7 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M276.5,184.3 L288.3,181.7 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M210.5,194.3 L201.4,194.1 \" stroke=\"rgb( 87, 255, 168)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M189.5,199.6 L201.4,194.1 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M111.6,196.2 L102.5,220.0 \" stroke=\"rgb( 38, 255, 217)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M90.6,195.2 L102.5,220.0 \" stroke=\"rgb( 38, 255, 217)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M339.5,187.9 L330.4,186.4 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M328.8,186.7 L330.4,186.4 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M243.5,187.2 L234.3,183.0 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M222.4,189.0 L234.3,183.0 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M144.6,206.4 L151.5,208.5 \" stroke=\"rgb( 38, 255, 217)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M264.5,187.6 L255.4,182.6 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M243.5,187.2 L255.4,182.6 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M360.6,184.0 L351.4,184.7 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M372.5,177.9 L351.4,184.7 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M339.5,187.9 L351.4,184.7 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M408.3,147.4 L404.1,152.7 \" stroke=\"rgb(255, 212, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M285.5,189.2 L276.5,184.3 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M264.5,187.6 L276.5,184.3 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M231.6,191.8 L222.4,189.0 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M210.5,194.3 L222.4,189.0 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M285.5,189.2 L286.6,188.9 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M405.4,151.5 L386.1,169.3 \" stroke=\"rgb(255, 245, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M132.7,197.2 L123.5,212.2 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M111.6,196.2 L123.5,212.2 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M252.6,191.4 L243.5,187.2 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M231.6,191.8 L243.5,187.2 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M219.7,195.9 L210.5,194.3 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M198.6,198.2 L210.5,194.3 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M348.7,189.3 L339.5,187.9 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M332.2,189.9 L339.5,187.9 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M381.6,175.4 L372.5,177.9 \" stroke=\"rgb(200, 255, 55)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M393.5,164.5 L372.5,177.9 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M360.6,184.0 L372.5,177.9 \" stroke=\"rgb(168, 255, 87)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M273.7,192.3 L264.5,187.6 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M252.6,191.4 L264.5,187.6 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M286.2,189.5 L285.5,189.2 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M273.7,192.3 L285.5,189.2 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M149.2,202.3 L144.6,206.4 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M132.7,197.2 L144.6,206.4 \" stroke=\"rgb( 87, 255, 168)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M240.7,195.2 L231.6,191.8 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M219.7,195.9 L231.6,191.8 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M369.7,184.3 L360.6,184.0 \" stroke=\"rgb(168, 255, 87)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M348.7,189.3 L360.6,184.0 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M207.8,198.8 L198.6,198.2 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M189.4,199.6 L198.6,198.2 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M336.7,194.0 L336.1,193.8 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M261.8,195.6 L252.6,191.4 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M240.7,195.2 L252.6,191.4 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M282.0,196.3 L273.7,192.3 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M261.8,195.6 L273.7,192.3 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M228.8,198.6 L219.7,195.9 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M207.8,198.8 L219.7,195.9 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M357.8,191.5 L348.7,189.3 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M336.7,194.0 L348.7,189.3 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M402.7,160.5 L393.5,164.5 \" stroke=\"rgb(255, 229, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M405.4,151.5 L393.5,164.5 \" stroke=\"rgb(255, 229, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M381.6,175.4 L393.5,164.5 \" stroke=\"rgb(233, 255, 22)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M414.6,142.9 L405.4,151.5 \" stroke=\"rgb(255, 164, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M426.5,121.6 L405.4,151.5 \" stroke=\"rgb(255, 99, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M78.7,159.1 L69.5,194.2 \" stroke=\"rgb(249, 255, 6)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M249.9,199.0 L240.7,195.2 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M228.8,198.6 L240.7,195.2 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M390.8,174.7 L381.6,175.4 \" stroke=\"rgb(233, 255, 22)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M369.7,184.3 L381.6,175.4 \" stroke=\"rgb(200, 255, 55)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M99.7,171.3 L90.6,195.2 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M78.7,159.1 L90.6,195.2 \" stroke=\"rgb(249, 255, 6)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M270.9,199.8 L261.8,195.6 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M249.9,199.0 L261.8,195.6 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M345.9,197.3 L336.7,194.0 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M336.4,194.1 L336.7,194.0 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M378.8,186.1 L369.7,184.3 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M357.8,191.5 L369.7,184.3 \" stroke=\"rgb(168, 255, 87)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M466.7,286.4 L454.7,305.5 \" stroke=\"rgb( 0, 0, 208)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M445.6,265.6 L454.7,305.5 \" stroke=\"rgb( 0, 2, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M442.8,315.0 L454.7,305.5 \" stroke=\"rgb( 0, 0, 144)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M120.8,181.1 L111.6,196.2 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M99.7,171.3 L111.6,196.2 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M216.9,201.1 L207.8,198.8 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M195.8,200.1 L207.8,198.8 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M270.9,199.8 L281.6,196.9 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M141.8,188.8 L132.7,197.2 \" stroke=\"rgb(168, 255, 87)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M120.8,181.1 L132.7,197.2 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M433.7,278.3 L442.8,315.0 \" stroke=\"rgb( 0, 0, 208)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M430.9,316.1 L442.8,315.0 \" stroke=\"rgb( 0, 0, 128)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M237.9,202.1 L228.8,198.6 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M216.9,201.1 L228.8,198.6 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M366.9,195.0 L357.8,191.5 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M345.9,197.3 L357.8,191.5 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M141.8,188.8 L145.5,191.7 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M478.6,256.3 L466.7,286.4 \" stroke=\"rgb( 0, 67, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M457.5,244.1 L466.7,286.4 \" stroke=\"rgb( 0, 99, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M259.0,203.1 L249.9,199.0 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M237.9,202.1 L249.9,199.0 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M277.9,203.1 L270.9,199.8 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M259.0,203.1 L270.9,199.8 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M205.0,202.4 L195.8,200.1 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M183.9,199.2 L195.8,200.1 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M355.0,201.8 L345.9,197.3 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M340.5,199.5 L345.9,197.3 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M399.9,177.0 L390.8,174.7 \" stroke=\"rgb(249, 255, 6)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M402.7,160.5 L390.8,174.7 \" stroke=\"rgb(255, 229, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M378.8,186.1 L390.8,174.7 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M411.8,159.7 L402.7,160.5 \" stroke=\"rgb(255, 196, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M414.6,142.9 L402.7,160.5 \" stroke=\"rgb(255, 164, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M388.0,190.5 L378.8,186.1 \" stroke=\"rgb(200, 255, 55)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M366.9,195.0 L378.8,186.1 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M226.0,204.5 L216.9,201.1 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M205.0,202.4 L216.9,201.1 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M421.8,283.6 L430.9,316.1 \" stroke=\"rgb( 0, 0, 208)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M419.0,310.4 L430.9,316.1 \" stroke=\"rgb( 0, 0, 160)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M247.1,206.1 L237.9,202.1 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M226.0,204.5 L237.9,202.1 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M376.1,200.6 L366.9,195.0 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M355.0,201.8 L366.9,195.0 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M423.7,138.0 L414.6,142.9 \" stroke=\"rgb(255, 99, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M426.5,121.6 L414.6,142.9 \" stroke=\"rgb(255, 67, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M268.1,207.2 L259.0,203.1 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M247.1,206.1 L259.0,203.1 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M457.5,244.1 L445.6,265.6 \" stroke=\"rgb( 0, 164, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M436.5,234.3 L445.6,265.6 \" stroke=\"rgb( 0, 196, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M433.7,278.3 L445.6,265.6 \" stroke=\"rgb( 0, 83, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M424.5,249.2 L433.7,278.3 \" stroke=\"rgb( 0, 132, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M421.8,283.6 L433.7,278.3 \" stroke=\"rgb( 0, 51, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M490.5,213.8 L478.6,256.3 \" stroke=\"rgb( 6, 255, 249)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M469.4,212.8 L478.6,256.3 \" stroke=\"rgb( 6, 255, 249)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M268.1,207.2 L276.7,204.9 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M364.2,207.9 L355.0,201.8 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M345.5,205.8 L355.0,201.8 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M214.1,206.2 L205.0,202.4 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M193.1,202.1 L205.0,202.4 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M397.1,198.1 L388.0,190.5 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M399.9,177.0 L388.0,190.5 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M376.1,200.6 L388.0,190.5 \" stroke=\"rgb(168, 255, 87)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M435.6,111.3 L426.5,121.6 \" stroke=\"rgb(225, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M409.0,183.2 L399.9,177.0 \" stroke=\"rgb(249, 255, 6)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M411.8,159.7 L399.9,177.0 \" stroke=\"rgb(255, 212, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M235.2,208.9 L226.0,204.5 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M214.1,206.2 L226.0,204.5 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M144.2,188.2 L141.8,188.8 \" stroke=\"rgb(200, 255, 55)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M129.9,173.7 L141.8,188.8 \" stroke=\"rgb(249, 255, 6)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M385.2,208.9 L376.1,200.6 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M364.2,207.9 L376.1,200.6 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M256.2,210.4 L247.1,206.1 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M235.2,208.9 L247.1,206.1 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M412.6,257.4 L421.8,283.6 \" stroke=\"rgb( 0, 99, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M409.9,282.7 L421.8,283.6 \" stroke=\"rgb( 0, 51, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M469.4,212.8 L457.5,244.1 \" stroke=\"rgb( 38, 255, 217)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M448.4,211.8 L457.5,244.1 \" stroke=\"rgb( 38, 255, 217)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M421.0,163.4 L411.8,159.7 \" stroke=\"rgb(255, 180, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M423.7,138.0 L411.8,159.7 \" stroke=\"rgb(255, 115, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M129.9,173.7 L120.8,181.1 \" stroke=\"rgb(255, 229, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M108.9,157.3 L120.8,181.1 \" stroke=\"rgb(255, 196, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M352.2,213.0 L349.3,211.0 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M274.4,210.1 L268.1,207.2 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M256.2,210.4 L268.1,207.2 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M409.9,282.7 L419.0,310.4 \" stroke=\"rgb( 0, 2, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M407.1,299.2 L419.0,310.4 \" stroke=\"rgb( 0, 0, 225)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M373.3,216.2 L364.2,207.9 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M352.2,213.0 L364.2,207.9 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M436.5,234.3 L424.5,249.2 \" stroke=\"rgb( 0, 229, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M415.4,226.6 L424.5,249.2 \" stroke=\"rgb( 6, 255, 249)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M412.6,257.4 L424.5,249.2 \" stroke=\"rgb( 0, 180, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M406.3,209.8 L397.1,198.1 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M409.0,183.2 L397.1,198.1 \" stroke=\"rgb(200, 255, 55)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M385.2,208.9 L397.1,198.1 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M448.4,211.8 L436.5,234.3 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M427.3,210.8 L436.5,234.3 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M108.9,157.3 L99.7,171.3 \" stroke=\"rgb(255, 164, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M87.8,136.5 L99.7,171.3 \" stroke=\"rgb(255, 99, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M418.2,194.1 L409.0,183.2 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M421.0,163.4 L409.0,183.2 \" stroke=\"rgb(255, 212, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M394.4,220.7 L385.2,208.9 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M373.3,216.2 L385.2,208.9 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M223.3,211.3 L214.1,206.2 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M202.2,206.9 L214.1,206.2 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M202.2,206.9 L193.1,202.1 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M181.2,199.6 L193.1,202.1 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M403.5,236.6 L412.6,257.4 \" stroke=\"rgb( 0, 229, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M400.7,260.0 L412.6,257.4 \" stroke=\"rgb( 0, 180, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M244.3,213.6 L235.2,208.9 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M223.3,211.3 L235.2,208.9 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M432.9,138.1 L423.7,138.0 \" stroke=\"rgb(255, 51, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M435.6,111.3 L423.7,138.0 \" stroke=\"rgb(255, 2, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M415.4,226.6 L406.3,209.8 \" stroke=\"rgb( 87, 255, 168)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M418.2,194.1 L406.3,209.8 \" stroke=\"rgb(168, 255, 87)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M394.4,220.7 L406.3,209.8 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M427.3,210.8 L415.4,226.6 \" stroke=\"rgb( 87, 255, 168)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M403.5,236.6 L415.4,226.6 \" stroke=\"rgb( 38, 255, 217)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M265.4,214.8 L256.2,210.4 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M244.3,213.6 L256.2,210.4 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M361.4,220.8 L352.2,213.0 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M350.8,213.4 L352.2,213.0 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M403.5,236.6 L394.4,220.7 \" stroke=\"rgb( 55, 255, 200)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M382.4,227.3 L394.4,220.7 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M382.4,227.3 L373.3,216.2 \" stroke=\"rgb( 87, 255, 168)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M361.4,220.8 L373.3,216.2 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M427.3,210.8 L418.2,194.1 \" stroke=\"rgb(168, 255, 87)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M430.1,172.6 L418.2,194.1 \" stroke=\"rgb(249, 255, 6)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M439.2,188.4 L427.3,210.8 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M391.6,241.8 L403.5,236.6 \" stroke=\"rgb( 6, 255, 249)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M400.7,260.0 L409.9,282.7 \" stroke=\"rgb( 0, 115, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M398.0,276.9 L409.9,282.7 \" stroke=\"rgb( 0, 99, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M430.1,172.6 L421.0,163.4 \" stroke=\"rgb(255, 180, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M432.9,138.1 L421.0,163.4 \" stroke=\"rgb(255, 99, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M265.4,214.8 L273.5,212.5 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M87.8,136.5 L78.7,159.1 \" stroke=\"rgb(255, 67, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M460.3,180.5 L448.4,211.8 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M439.2,188.4 L448.4,211.8 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M391.6,241.8 L382.4,227.3 \" stroke=\"rgb( 38, 255, 217)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M370.5,230.7 L382.4,227.3 \" stroke=\"rgb( 55, 255, 200)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M481.3,170.3 L469.4,212.8 \" stroke=\"rgb(249, 255, 6)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M460.3,180.5 L469.4,212.8 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M391.6,241.8 L400.7,260.0 \" stroke=\"rgb( 0, 212, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M388.8,258.3 L400.7,260.0 \" stroke=\"rgb( 0, 196, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M232.4,216.9 L223.3,211.3 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M211.3,213.1 L223.3,211.3 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M211.3,213.1 L202.2,206.9 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M190.3,206.1 L202.2,206.9 \" stroke=\"rgb(168, 255, 87)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M379.7,243.1 L391.6,241.8 \" stroke=\"rgb( 6, 255, 249)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M370.5,230.7 L361.4,220.8 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M356.4,221.9 L361.4,220.8 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M253.5,218.4 L244.3,213.6 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M232.4,216.9 L244.3,213.6 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M439.2,188.4 L430.1,172.6 \" stroke=\"rgb(255, 229, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M442.0,144.4 L430.1,172.6 \" stroke=\"rgb(255, 132, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M481.3,170.3 L490.5,213.8 \" stroke=\"rgb(249, 255, 6)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M451.1,158.1 L439.2,188.4 \" stroke=\"rgb(255, 196, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M444.8,106.6 L435.6,111.3 \" stroke=\"rgb(160, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M190.3,206.1 L181.2,199.6 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M169.2,194.7 L181.2,199.6 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M164.5,190.9 L181.2,199.6 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M271.5,217.5 L265.4,214.8 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M253.5,218.4 L265.4,214.8 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M138.3,173.0 L129.9,173.7 \" stroke=\"rgb(255, 180, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M118.0,152.0 L129.9,173.7 \" stroke=\"rgb(255, 132, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M442.0,144.4 L432.9,138.1 \" stroke=\"rgb(255, 51, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M444.8,106.6 L432.9,138.1 \" stroke=\"rgb(208, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M398.0,276.9 L407.1,299.2 \" stroke=\"rgb( 0, 67, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M395.2,283.8 L407.1,299.2 \" stroke=\"rgb( 0, 67, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M379.7,243.1 L370.5,230.7 \" stroke=\"rgb( 38, 255, 217)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M362.4,231.3 L370.5,230.7 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M220.5,220.1 L211.3,213.1 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M199.4,214.3 L211.3,213.1 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M241.5,222.5 L232.4,216.9 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M220.5,220.1 L232.4,216.9 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M388.8,258.3 L398.0,276.9 \" stroke=\"rgb( 0, 164, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M386.0,267.3 L398.0,276.9 \" stroke=\"rgb( 0, 164, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M388.8,258.3 L379.7,243.1 \" stroke=\"rgb( 0, 229, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M368.6,241.6 L379.7,243.1 \" stroke=\"rgb( 22, 255, 233)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M262.6,222.8 L253.5,218.4 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M241.5,222.5 L253.5,218.4 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M376.9,253.3 L388.8,258.3 \" stroke=\"rgb( 0, 229, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M199.4,214.3 L190.3,206.1 \" stroke=\"rgb(168, 255, 87)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M178.4,203.8 L190.3,206.1 \" stroke=\"rgb(200, 255, 55)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M472.2,139.2 L460.3,180.5 \" stroke=\"rgb(255, 99, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M451.1,158.1 L460.3,180.5 \" stroke=\"rgb(255, 164, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M451.1,158.1 L442.0,144.4 \" stroke=\"rgb(255, 83, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M453.9,108.7 L442.0,144.4 \" stroke=\"rgb(208, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M262.6,222.8 L270.4,220.2 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M118.0,152.0 L108.9,157.3 \" stroke=\"rgb(255, 83, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M96.9,124.8 L108.9,157.3 \" stroke=\"rgb(255, 2, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M463.1,119.1 L451.1,158.1 \" stroke=\"rgb(255, 2, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M229.6,227.1 L220.5,220.1 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M208.6,223.3 L220.5,220.1 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M178.4,203.8 L169.2,194.7 \" stroke=\"rgb(233, 255, 22)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M157.3,186.9 L169.2,194.7 \" stroke=\"rgb(255, 229, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M152.2,181.0 L169.2,194.7 \" stroke=\"rgb(255, 229, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M250.7,227.5 L241.5,222.5 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M229.6,227.1 L241.5,222.5 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M127.1,154.1 L137.0,169.8 \" stroke=\"rgb(255, 99, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M208.6,223.3 L199.4,214.3 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M187.5,214.6 L199.4,214.3 \" stroke=\"rgb(168, 255, 87)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M453.9,108.7 L444.8,106.6 \" stroke=\"rgb(128, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M268.5,225.0 L262.6,222.8 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M250.7,227.5 L262.6,222.8 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M376.9,253.3 L371.4,246.2 \" stroke=\"rgb( 6, 255, 249)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M472.2,139.2 L481.3,170.3 \" stroke=\"rgb(255, 67, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M187.5,214.6 L178.4,203.8 \" stroke=\"rgb(200, 255, 55)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M166.5,199.4 L178.4,203.8 \" stroke=\"rgb(233, 255, 22)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M217.7,232.4 L208.6,223.3 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M196.7,226.6 L208.6,223.3 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M238.8,233.4 L229.6,227.1 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M217.7,232.4 L229.6,227.1 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M386.0,267.3 L376.9,253.3 \" stroke=\"rgb( 0, 229, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M375.0,252.1 L376.9,253.3 \" stroke=\"rgb( 6, 255, 249)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M259.8,231.4 L250.7,227.5 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M238.8,233.4 L250.7,227.5 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M96.9,124.8 L87.8,136.5 \" stroke=\"rgb(208, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M395.2,283.8 L386.0,267.3 \" stroke=\"rgb( 0, 164, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M381.4,262.6 L386.0,267.3 \" stroke=\"rgb( 0, 212, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M383.3,265.6 L395.2,283.8 \" stroke=\"rgb( 0, 180, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M374.6,255.9 L395.2,283.8 \" stroke=\"rgb( 0, 196, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M196.7,226.6 L187.5,214.6 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M175.6,214.0 L187.5,214.6 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M226.9,240.6 L217.7,232.4 \" stroke=\"rgb( 87, 255, 168)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M205.8,238.5 L217.7,232.4 \" stroke=\"rgb( 87, 255, 168)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M259.8,231.4 L267.3,228.2 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M463.1,119.1 L453.9,108.7 \" stroke=\"rgb(144, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M127.1,154.1 L118.0,152.0 \" stroke=\"rgb(255, 51, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M106.1,122.8 L118.0,152.0 \" stroke=\"rgb(208, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M205.8,238.5 L196.7,226.6 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M184.8,229.8 L196.7,226.6 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M247.9,238.3 L238.8,233.4 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M226.9,240.6 L238.8,233.4 \" stroke=\"rgb( 87, 255, 168)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M166.5,199.4 L157.3,186.9 \" stroke=\"rgb(255, 229, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M145.4,175.8 L157.3,186.9 \" stroke=\"rgb(255, 164, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M139.2,165.8 L157.3,186.9 \" stroke=\"rgb(255, 148, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M206.6,343.6 L197.5,330.4 \" stroke=\"rgb( 0, 0, 160)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M209.4,303.7 L197.5,330.4 \" stroke=\"rgb( 0, 2, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M188.3,311.7 L197.5,330.4 \" stroke=\"rgb( 0, 0, 225)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M463.1,119.1 L472.2,139.2 \" stroke=\"rgb(208, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M200.3,290.4 L188.3,311.7 \" stroke=\"rgb( 0, 67, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M179.2,288.8 L188.3,311.7 \" stroke=\"rgb( 0, 67, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M214.9,249.5 L205.8,238.5 \" stroke=\"rgb( 55, 255, 200)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M193.9,245.6 L205.8,238.5 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M215.8,349.8 L206.6,343.6 \" stroke=\"rgb( 0, 0, 128)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M218.5,312.0 L206.6,343.6 \" stroke=\"rgb( 0, 0, 208)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M175.6,214.0 L166.5,199.4 \" stroke=\"rgb(233, 255, 22)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M154.6,192.8 L166.5,199.4 \" stroke=\"rgb(255, 229, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M236.0,247.2 L226.9,240.6 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M214.9,249.5 L226.9,240.6 \" stroke=\"rgb( 55, 255, 200)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M265.4,232.8 L259.8,231.4 \" stroke=\"rgb(119, 255, 136)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M247.9,238.3 L259.8,231.4 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M184.8,229.8 L175.6,214.0 \" stroke=\"rgb(168, 255, 87)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M163.7,212.3 L175.6,214.0 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M193.9,245.6 L184.8,229.8 \" stroke=\"rgb( 87, 255, 168)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M172.8,233.0 L184.8,229.8 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M191.1,273.3 L179.2,288.8 \" stroke=\"rgb( 0, 164, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M170.1,263.3 L179.2,288.8 \" stroke=\"rgb( 0, 180, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M203.0,260.3 L193.9,245.6 \" stroke=\"rgb( 22, 255, 233)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M182.0,253.8 L193.9,245.6 \" stroke=\"rgb( 38, 255, 217)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M224.1,258.5 L214.9,249.5 \" stroke=\"rgb( 22, 255, 233)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M203.0,260.3 L214.9,249.5 \" stroke=\"rgb( 22, 255, 233)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M346.3,234.8 L358.3,242.0 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M209.4,303.7 L200.3,290.4 \" stroke=\"rgb( 0, 99, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M212.2,272.8 L200.3,290.4 \" stroke=\"rgb( 0, 164, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M191.1,273.3 L200.3,290.4 \" stroke=\"rgb( 0, 164, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M203.0,260.3 L191.1,273.3 \" stroke=\"rgb( 0, 229, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M182.0,253.8 L191.1,273.3 \" stroke=\"rgb( 0, 245, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M212.2,272.8 L203.0,260.3 \" stroke=\"rgb( 0, 229, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M257.1,241.1 L247.9,238.3 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M236.0,247.2 L247.9,238.3 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M132.6,159.1 L127.1,154.1 \" stroke=\"rgb(255, 51, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M115.2,129.1 L127.1,154.1 \" stroke=\"rgb(208, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M172.8,233.0 L182.0,253.8 \" stroke=\"rgb( 87, 255, 168)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M170.1,263.3 L182.0,253.8 \" stroke=\"rgb( 6, 255, 249)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M218.5,312.0 L209.4,303.7 \" stroke=\"rgb( 0, 51, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M221.3,282.0 L209.4,303.7 \" stroke=\"rgb( 0, 115, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M224.9,347.8 L215.8,349.8 \" stroke=\"rgb( 0, 0, 144)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M227.7,314.2 L215.8,349.8 \" stroke=\"rgb( 0, 0, 208)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M245.1,251.2 L236.0,247.2 \" stroke=\"rgb( 55, 255, 200)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M224.1,258.5 L236.0,247.2 \" stroke=\"rgb( 38, 255, 217)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M221.3,282.0 L212.2,272.8 \" stroke=\"rgb( 0, 196, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M224.1,258.5 L212.2,272.8 \" stroke=\"rgb( 0, 245, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M233.2,264.7 L224.1,258.5 \" stroke=\"rgb( 6, 255, 249)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M160.9,236.3 L170.1,263.3 \" stroke=\"rgb( 55, 255, 200)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M163.7,212.3 L172.8,233.0 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M160.9,236.3 L172.8,233.0 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M315.0,227.3 L309.6,227.0 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M353.1,237.7 L373.7,254.9 \" stroke=\"rgb( 87, 255, 168)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M325.2,228.3 L340.8,232.6 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M257.1,241.1 L264.0,236.8 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M106.1,122.8 L96.9,124.8 \" stroke=\"rgb(144, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M154.6,192.8 L163.7,212.3 \" stroke=\"rgb(255, 245, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M151.8,209.3 L163.7,212.3 \" stroke=\"rgb(249, 255, 6)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M227.7,314.2 L218.5,312.0 \" stroke=\"rgb( 0, 51, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M230.5,286.7 L218.5,312.0 \" stroke=\"rgb( 0, 99, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M230.5,286.7 L221.3,282.0 \" stroke=\"rgb( 0, 180, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M233.2,264.7 L221.3,282.0 \" stroke=\"rgb( 0, 212, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M145.4,175.8 L154.6,192.8 \" stroke=\"rgb(255, 164, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M142.6,183.8 L154.6,192.8 \" stroke=\"rgb(255, 164, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M371.4,246.1 L383.3,265.6 \" stroke=\"rgb( 55, 255, 200)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M362.2,241.9 L383.3,265.6 \" stroke=\"rgb( 55, 255, 200)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M133.5,161.0 L145.4,175.8 \" stroke=\"rgb(255, 67, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M124.4,142.3 L145.4,175.8 \" stroke=\"rgb(255, 18, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M262.8,241.1 L257.1,241.1 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M245.1,251.2 L257.1,241.1 \" stroke=\"rgb( 87, 255, 168)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M151.8,209.3 L160.9,236.3 \" stroke=\"rgb(200, 255, 55)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M242.4,267.0 L233.2,264.7 \" stroke=\"rgb( 6, 255, 249)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M245.1,251.2 L233.2,264.7 \" stroke=\"rgb( 38, 255, 217)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M254.3,252.0 L245.1,251.2 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M311.0,226.9 L296.6,228.5 \" stroke=\"rgb(168, 255, 87)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M362.2,241.9 L353.1,237.7 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M341.2,229.3 L353.1,237.7 \" stroke=\"rgb(168, 255, 87)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M332.0,228.9 L353.1,237.7 \" stroke=\"rgb(152, 255, 103)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M234.1,336.2 L224.9,347.8 \" stroke=\"rgb( 0, 0, 208)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M236.8,308.9 L224.9,347.8 \" stroke=\"rgb( 0, 2, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M320.1,225.4 L311.0,226.9 \" stroke=\"rgb(200, 255, 55)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M332.0,228.9 L311.0,226.9 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M299.1,227.7 L311.0,226.9 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M239.6,286.0 L230.5,286.7 \" stroke=\"rgb( 0, 180, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M242.4,267.0 L230.5,286.7 \" stroke=\"rgb( 0, 229, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M341.2,229.3 L332.0,228.9 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M320.1,225.4 L332.0,228.9 \" stroke=\"rgb(200, 255, 55)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M299.1,227.7 L287.0,231.2 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M142.6,183.8 L151.8,209.3 \" stroke=\"rgb(255, 180, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M236.8,308.9 L227.7,314.2 \" stroke=\"rgb( 0, 83, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M239.6,286.0 L227.7,314.2 \" stroke=\"rgb( 0, 132, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M115.2,129.1 L106.1,122.8 \" stroke=\"rgb(128, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M254.3,252.0 L261.6,245.4 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M251.5,264.4 L242.4,267.0 \" stroke=\"rgb( 38, 255, 217)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M254.3,252.0 L242.4,267.0 \" stroke=\"rgb( 55, 255, 200)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M371.4,246.1 L362.2,241.9 \" stroke=\"rgb(136, 255, 119)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M350.3,228.5 L362.2,241.9 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M260.4,249.8 L254.3,252.0 \" stroke=\"rgb(103, 255, 152)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M133.5,161.0 L142.6,183.8 \" stroke=\"rgb(255, 67, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M308.2,223.8 L299.1,227.7 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M287.1,231.1 L299.1,227.7 \" stroke=\"rgb(200, 255, 55)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M124.4,142.3 L115.2,129.1 \" stroke=\"rgb(160, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M124.4,142.3 L133.5,161.0 \" stroke=\"rgb(225, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M329.3,222.0 L320.1,225.4 \" stroke=\"rgb(233, 255, 22)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M308.2,223.8 L320.1,225.4 \" stroke=\"rgb(233, 255, 22)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M350.3,228.5 L341.2,229.3 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M329.3,222.0 L341.2,229.3 \" stroke=\"rgb(233, 255, 22)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M248.7,278.6 L239.6,286.0 \" stroke=\"rgb( 0, 229, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M251.5,264.4 L239.6,286.0 \" stroke=\"rgb( 6, 255, 249)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M296.3,225.1 L287.1,231.1 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M276.8,237.0 L287.1,231.1 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M359.4,226.5 L371.4,246.1 \" stroke=\"rgb(200, 255, 55)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M246.0,294.9 L236.8,308.9 \" stroke=\"rgb( 0, 164, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M248.7,278.6 L236.8,308.9 \" stroke=\"rgb( 0, 196, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M257.9,258.6 L251.5,264.4 \" stroke=\"rgb( 87, 255, 168)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M259.0,254.4 L251.5,264.4 \" stroke=\"rgb( 71, 255, 184)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M243.2,313.5 L234.1,336.2 \" stroke=\"rgb( 0, 67, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M246.0,294.9 L234.1,336.2 \" stroke=\"rgb( 0, 99, 255)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M284.4,230.3 L271.7,241.4 \" stroke=\"rgb(200, 255, 55)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M317.3,217.0 L308.2,223.8 \" stroke=\"rgb(255, 229, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M296.3,225.1 L308.2,223.8 \" stroke=\"rgb(249, 255, 6)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M359.4,226.5 L350.3,228.5 \" stroke=\"rgb(249, 255, 6)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M338.4,216.5 L350.3,228.5 \" stroke=\"rgb(255, 245, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M338.4,216.5 L329.3,222.0 \" stroke=\"rgb(255, 229, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M317.3,217.0 L329.3,222.0 \" stroke=\"rgb(255, 229, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M255.3,267.7 L248.7,278.6 \" stroke=\"rgb( 55, 255, 200)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M256.3,264.4 L248.7,278.6 \" stroke=\"rgb( 55, 255, 200)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M305.4,215.3 L296.3,225.1 \" stroke=\"rgb(255, 212, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M284.4,230.3 L296.3,225.1 \" stroke=\"rgb(249, 255, 6)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M293.5,217.9 L284.4,230.3 \" stroke=\"rgb(255, 212, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M272.6,240.3 L284.4,230.3 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M272.6,240.3 L264.5,250.9 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M347.5,208.4 L359.4,226.5 \" stroke=\"rgb(255, 180, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M281.6,226.1 L272.6,240.3 \" stroke=\"rgb(249, 255, 6)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M252.5,277.8 L246.0,294.9 \" stroke=\"rgb( 22, 255, 233)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M252.6,277.3 L246.0,294.9 \" stroke=\"rgb( 6, 255, 249)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M326.5,206.9 L317.3,217.0 \" stroke=\"rgb(255, 164, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M305.4,215.3 L317.3,217.0 \" stroke=\"rgb(255, 196, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M347.5,208.4 L338.4,216.5 \" stroke=\"rgb(255, 164, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M326.5,206.9 L338.4,216.5 \" stroke=\"rgb(255, 164, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M252.3,278.4 L243.2,313.5 \" stroke=\"rgb( 6, 255, 249)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M255.1,271.0 L243.2,313.5 \" stroke=\"rgb( 6, 255, 249)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M314.6,201.1 L305.4,215.3 \" stroke=\"rgb(255, 115, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M293.5,217.9 L305.4,215.3 \" stroke=\"rgb(255, 180, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M269.8,241.0 L258.1,263.0 \" stroke=\"rgb(184, 255, 71)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M302.7,200.2 L293.5,217.9 \" stroke=\"rgb(255, 99, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M281.6,226.1 L293.5,217.9 \" stroke=\"rgb(255, 180, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M335.6,193.1 L326.5,206.9 \" stroke=\"rgb(255, 67, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M314.6,201.1 L326.5,206.9 \" stroke=\"rgb(255, 99, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M278.9,218.1 L269.8,241.0 \" stroke=\"rgb(255, 196, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M281.6,226.1 L269.8,241.0 \" stroke=\"rgb(255, 229, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M335.6,193.1 L347.5,208.4 \" stroke=\"rgb(255, 67, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M290.7,205.4 L281.6,226.1 \" stroke=\"rgb(255, 132, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M264.2,235.9 L255.1,271.0 \" stroke=\"rgb(249, 255, 6)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M267.0,239.6 L255.1,271.0 \" stroke=\"rgb(217, 255, 38)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M323.7,181.9 L314.6,201.1 \" stroke=\"rgb(255, 2, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M302.7,200.2 L314.6,201.1 \" stroke=\"rgb(255, 51, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M323.7,181.9 L335.6,193.1 \" stroke=\"rgb(225, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M276.2,205.7 L267.0,239.6 \" stroke=\"rgb(255, 99, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M278.9,218.1 L267.0,239.6 \" stroke=\"rgb(255, 164, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M311.8,176.1 L302.7,200.2 \" stroke=\"rgb(208, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M290.7,205.4 L302.7,200.2 \" stroke=\"rgb(255, 51, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M264.2,235.9 L252.3,278.4 \" stroke=\"rgb(249, 255, 6)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M299.9,177.3 L290.7,205.4 \" stroke=\"rgb(208, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M278.9,218.1 L290.7,205.4 \" stroke=\"rgb(255, 83, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M288.0,186.7 L278.9,218.1 \" stroke=\"rgb(255, 2, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M311.8,176.1 L323.7,181.9 \" stroke=\"rgb(160, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M276.2,205.7 L264.2,235.9 \" stroke=\"rgb(255, 67, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M299.9,177.3 L311.8,176.1 \" stroke=\"rgb(128, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M288.0,186.7 L276.2,205.7 \" stroke=\"rgb(208, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M288.0,186.7 L299.9,177.3 \" stroke=\"rgb(144, 0, 0)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_2a\"><title>gnuplot_plot_2a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"</g>\n",
"\t</g>\n",
"<g color=\"white\" fill=\"none\" stroke=\"rgb(136, 255, 119)\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M252.3,370.4 L490.5,305.7 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M252.3,370.4 L69.5,286.1 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M69.5,286.1 L168.7,259.2 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M365.8,248.3 L321.7,227.9 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M490.5,305.7 L462.6,292.9 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M69.5,102.3 L69.5,286.1 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M307.7,37.6 L307.7,129.6 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M490.5,121.9 L490.5,305.7 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M252.3,278.4 L252.3,370.4 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M69.5,102.3 L307.7,37.6 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M490.5,121.9 L307.7,37.6 \" stroke=\"black\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M252.3,370.4 L69.5,286.1 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M259.6,373.7 L252.3,370.4 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M69.5,286.1 L62.3,282.8 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(264.4,382.2)\">\n",
"\t\t<text><tspan font-family=\"{}\">-1</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M181.3,294.0 L129.1,270.0 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M311.8,354.2 L240.1,321.1 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M319.0,357.5 L311.8,354.2 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M129.1,270.0 L122.7,267.0 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(323.8,366.0)\">\n",
"\t\t<text><tspan font-family=\"{}\">-0.5</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M371.4,338.0 L251.8,282.9 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M378.6,341.4 L371.4,338.0 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(383.4,349.8)\">\n",
"\t\t<text><tspan font-family=\"{}\">0</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M430.9,321.9 L267.8,246.6 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M438.1,325.2 L430.9,321.9 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(443.0,333.7)\">\n",
"\t\t<text><tspan font-family=\"{}\">0.5</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M365.8,248.3 L321.7,227.9 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M490.5,305.7 L462.6,292.9 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M497.7,309.1 L490.5,305.7 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(502.5,317.5)\">\n",
"\t\t<text><tspan font-family=\"{}\">1</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M252.3,370.4 L490.5,305.7 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M245.7,372.2 L252.3,370.4 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M490.5,305.7 L497.1,303.9 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(241.2,378.5)\">\n",
"\t\t<text><tspan font-family=\"{}\">-1</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M228.4,343.4 L404.4,295.6 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M206.6,349.3 L212.6,347.7 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M200.0,351.1 L206.6,349.3 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(195.5,357.4)\">\n",
"\t\t<text><tspan font-family=\"{}\">-0.5</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M245.5,305.3 L383.4,267.8 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M160.9,328.2 L192.3,319.7 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M154.3,330.1 L160.9,328.2 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(149.8,336.3)\">\n",
"\t\t<text><tspan font-family=\"{}\">0</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M255.8,269.0 L353.4,242.5 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M115.2,307.2 L179.6,289.7 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M108.6,309.0 L115.2,307.2 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M353.4,242.5 L357.4,241.5 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(104.1,315.3)\">\n",
"\t\t<text><tspan font-family=\"{}\">0.5</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M69.5,286.1 L168.7,259.2 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M62.9,287.9 L69.5,286.1 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(58.4,294.2)\">\n",
"\t\t<text><tspan font-family=\"{}\">1</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M69.5,286.1 L168.7,259.2 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M365.8,248.3 L321.7,227.9 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M490.5,305.7 L462.6,292.9 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M61.1,286.1 L69.5,286.1 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(49.1,289.8)\">\n",
"\t\t<text><tspan font-family=\"{}\">-0.4</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M498.9,305.7 L490.5,305.7 \" stroke=\"black\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M147.8,241.9 L161.6,238.2 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M69.5,263.1 L95.4,256.1 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M490.5,282.7 L471.6,274.0 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M61.1,263.1 L69.5,263.1 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(49.1,266.8)\">\n",
"\t\t<text><tspan font-family=\"{}\">-0.3</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M498.9,282.7 L490.5,282.7 \" stroke=\"black\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M69.5,240.1 L84.4,236.1 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M490.5,259.7 L479.1,254.5 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M61.1,240.1 L69.5,240.1 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(49.1,243.8)\">\n",
"\t\t<text><tspan font-family=\"{}\">-0.2</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M498.9,259.7 L490.5,259.7 \" stroke=\"black\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M165.2,191.3 L176.6,188.2 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M69.5,217.1 L76.5,215.3 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M366.6,179.8 L313.0,155.1 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M490.5,236.7 L484.8,234.1 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M61.1,217.1 L69.5,217.1 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(49.1,220.8)\">\n",
"\t\t<text><tspan font-family=\"{}\">-0.1</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M498.9,236.7 L490.5,236.7 \" stroke=\"black\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M145.8,173.5 L188.6,161.9 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M388.6,166.9 L307.7,129.6 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M61.1,194.2 L69.5,194.2 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(49.1,197.9)\">\n",
"\t\t<text><tspan font-family=\"{}\">0</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M498.9,213.8 L490.5,213.8 \" stroke=\"black\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M300.7,108.5 L307.7,106.6 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M131.9,154.3 L200.7,135.7 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M69.5,171.3 L76.0,169.5 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M405.1,151.5 L307.7,106.6 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M490.5,190.9 L485.1,188.4 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M61.1,171.3 L69.5,171.3 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(49.1,175.0)\">\n",
"\t\t<text><tspan font-family=\"{}\">0.1</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M498.9,190.9 L490.5,190.9 \" stroke=\"black\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M292.8,87.6 L307.7,83.6 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M119.2,134.8 L213.6,109.2 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M69.5,148.3 L84.7,144.1 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M417.6,134.3 L307.7,83.6 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M490.5,167.9 L479.1,162.6 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M61.1,148.3 L69.5,148.3 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(49.1,152.0)\">\n",
"\t\t<text><tspan font-family=\"{}\">0.2</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M498.9,167.9 L490.5,167.9 \" stroke=\"black\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M281.8,67.6 L307.7,60.6 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M69.5,125.3 L229.5,81.9 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M430.4,117.2 L307.7,60.6 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M490.5,144.9 L470.6,135.7 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M61.1,125.3 L69.5,125.3 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(49.1,129.0)\">\n",
"\t\t<text><tspan font-family=\"{}\">0.3</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M498.9,144.9 L490.5,144.9 \" stroke=\"black\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M69.5,102.3 L307.7,37.6 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"gray\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path class=\"gridline\" d=\"M490.5,121.9 L307.7,37.6 \" stroke=\"gray\" stroke-dasharray=\"2,4\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M61.1,102.3 L69.5,102.3 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(49.1,106.0)\">\n",
"\t\t<text><tspan font-family=\"{}\">0.4</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M498.9,121.9 L490.5,121.9 \" stroke=\"black\"/></g>\n",
"</g>\n",
"</svg>"
],
"text/plain": [
"<IPython.core.display.SVG object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"mesh(X,Y,Z)"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {
"collapsed": false,
"scrolled": true,
"slideshow": {
"slide_type": "subslide"
}
},
"outputs": [
{
"data": {
"image/svg+xml": [
"<svg height=\"420px\" viewBox=\"0 0 560 420\" width=\"560px\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
"\n",
"<title>Gnuplot</title>\n",
"<desc>Produced by GNUPLOT 5.0 patchlevel 3 </desc>\n",
"\n",
"<g id=\"gnuplot_canvas\">\n",
"\n",
"<rect fill=\"none\" height=\"420\" width=\"560\" x=\"0\" y=\"0\"/>\n",
"<defs>\n",
"\n",
"\t<circle id=\"gpDot\" r=\"0.5\" stroke-width=\"0.5\"/>\n",
"\t<path d=\"M-1,0 h2 M0,-1 v2\" id=\"gpPt0\" stroke=\"currentColor\" stroke-width=\"0.333\"/>\n",
"\t<path d=\"M-1,-1 L1,1 M1,-1 L-1,1\" id=\"gpPt1\" stroke=\"currentColor\" stroke-width=\"0.333\"/>\n",
"\t<path d=\"M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1\" id=\"gpPt2\" stroke=\"currentColor\" stroke-width=\"0.333\"/>\n",
"\t<rect height=\"2\" id=\"gpPt3\" stroke=\"currentColor\" stroke-width=\"0.333\" width=\"2\" x=\"-1\" y=\"-1\"/>\n",
"\t<rect fill=\"currentColor\" height=\"2\" id=\"gpPt4\" stroke=\"currentColor\" stroke-width=\"0.333\" width=\"2\" x=\"-1\" y=\"-1\"/>\n",
"\t<circle cx=\"0\" cy=\"0\" id=\"gpPt5\" r=\"1\" stroke=\"currentColor\" stroke-width=\"0.333\"/>\n",
"\t<use fill=\"currentColor\" id=\"gpPt6\" stroke=\"none\" xlink:href=\"#gpPt5\"/>\n",
"\t<path d=\"M0,-1.33 L-1.33,0.67 L1.33,0.67 z\" id=\"gpPt7\" stroke=\"currentColor\" stroke-width=\"0.333\"/>\n",
"\t<use fill=\"currentColor\" id=\"gpPt8\" stroke=\"none\" xlink:href=\"#gpPt7\"/>\n",
"\t<use id=\"gpPt9\" stroke=\"currentColor\" transform=\"rotate(180)\" xlink:href=\"#gpPt7\"/>\n",
"\t<use fill=\"currentColor\" id=\"gpPt10\" stroke=\"none\" xlink:href=\"#gpPt9\"/>\n",
"\t<use id=\"gpPt11\" stroke=\"currentColor\" transform=\"rotate(45)\" xlink:href=\"#gpPt3\"/>\n",
"\t<use fill=\"currentColor\" id=\"gpPt12\" stroke=\"none\" xlink:href=\"#gpPt11\"/>\n",
"\t<path d=\"M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z\" id=\"gpPt13\" stroke=\"currentColor\" stroke-width=\"0.333\"/>\n",
"\t<use fill=\"currentColor\" id=\"gpPt14\" stroke=\"none\" xlink:href=\"#gpPt13\"/>\n",
"\t<filter filterUnits=\"objectBoundingBox\" height=\"1\" id=\"textbox\" width=\"1\" x=\"0\" y=\"0\">\n",
"\t <feFlood flood-color=\"white\" flood-opacity=\"1\" result=\"bgnd\"/>\n",
"\t <feComposite in=\"SourceGraphic\" in2=\"bgnd\" operator=\"atop\"/>\n",
"\t</filter>\n",
"\t<filter filterUnits=\"objectBoundingBox\" height=\"1\" id=\"greybox\" width=\"1\" x=\"0\" y=\"0\">\n",
"\t <feFlood flood-color=\"lightgrey\" flood-opacity=\"1\" result=\"grey\"/>\n",
"\t <feComposite in=\"SourceGraphic\" in2=\"grey\" operator=\"atop\"/>\n",
"\t</filter>\n",
"</defs>\n",
"<g color=\"white\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 255, 255)\" points=\"66.1,355.3 493.9,355.3 493.9,52.7 66.1,52.7 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M66.1,52.7 L66.1,355.3 L493.9,355.3 L493.9,52.7 L66.1,52.7 Z \" stroke=\"black\"/></g>\n",
"\t<g id=\"gnuplot_plot_1a\"><title>gnuplot_plot_1a</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"\t</g>\n",
"\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 148, 255)\" points=\"493.9,355.3 472.5,355.3 472.5,340.2 493.9,340.2 \"/>\n",
"\t</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,355.3 L493.9,340.2 L472.5,340.2 L472.5,355.3 L493.9,355.3 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 2, 255)\" points=\"472.5,355.3 451.1,355.3 451.1,340.2 472.5,340.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M472.5,355.3 L472.5,340.2 L451.1,340.2 L451.1,355.3 L472.5,355.3 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 0, 160)\" points=\"451.1,355.3 429.7,355.3 429.7,340.2 451.1,340.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M451.1,355.3 L451.1,340.2 L429.7,340.2 L429.7,355.3 L451.1,355.3 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 0, 128)\" points=\"429.7,355.3 408.3,355.3 408.3,340.2 429.7,340.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M429.7,355.3 L429.7,340.2 L408.3,340.2 L408.3,355.3 L429.7,355.3 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 0, 128)\" points=\"408.3,355.3 386.9,355.3 386.9,340.2 408.3,340.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M408.3,355.3 L408.3,340.2 L386.9,340.2 L386.9,355.3 L408.3,355.3 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 0, 176)\" points=\"386.9,355.3 365.5,355.3 365.5,340.2 386.9,340.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,355.3 L386.9,340.2 L365.5,340.2 L365.5,355.3 L386.9,355.3 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 18, 255)\" points=\"365.5,355.3 344.1,355.3 344.1,340.2 365.5,340.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M365.5,355.3 L365.5,340.2 L344.1,340.2 L344.1,355.3 L365.5,355.3 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 115, 255)\" points=\"344.1,355.3 322.7,355.3 322.7,340.2 344.1,340.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M344.1,355.3 L344.1,340.2 L322.7,340.2 L322.7,355.3 L344.1,355.3 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 245, 255)\" points=\"322.7,355.3 301.3,355.3 301.3,340.2 322.7,340.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M322.7,355.3 L322.7,340.2 L301.3,340.2 L301.3,355.3 L322.7,355.3 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"301.3,355.3 280.0,355.3 280.0,340.2 301.3,340.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M301.3,355.3 L301.3,340.2 L280.0,340.2 L280.0,355.3 L301.3,355.3 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 245, 0)\" points=\"280.0,355.3 258.7,355.3 258.7,340.2 280.0,340.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,355.3 L280.0,340.2 L258.7,340.2 L258.7,355.3 L280.0,355.3 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 132, 0)\" points=\"258.7,355.3 237.3,355.3 237.3,340.2 258.7,340.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M258.7,355.3 L258.7,340.2 L237.3,340.2 L237.3,355.3 L258.7,355.3 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 18, 0)\" points=\"237.3,355.3 215.9,355.3 215.9,340.2 237.3,340.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M237.3,355.3 L237.3,340.2 L215.9,340.2 L215.9,355.3 L237.3,355.3 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(176, 0, 0)\" points=\"215.9,355.3 194.5,355.3 194.5,340.2 215.9,340.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M215.9,355.3 L215.9,340.2 L194.5,340.2 L194.5,355.3 L215.9,355.3 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(128, 0, 0)\" points=\"194.5,355.3 173.1,355.3 173.1,340.2 194.5,340.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M194.5,355.3 L194.5,340.2 L173.1,340.2 L173.1,355.3 L194.5,355.3 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(128, 0, 0)\" points=\"173.1,355.3 151.7,355.3 151.7,340.2 173.1,340.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,355.3 L173.1,340.2 L151.7,340.2 L151.7,355.3 L173.1,355.3 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(160, 0, 0)\" points=\"151.7,355.3 130.3,355.3 130.3,340.2 151.7,340.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M151.7,355.3 L151.7,340.2 L130.3,340.2 L130.3,355.3 L151.7,355.3 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 2, 0)\" points=\"130.3,355.3 108.9,355.3 108.9,340.2 130.3,340.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M130.3,355.3 L130.3,340.2 L108.9,340.2 L108.9,355.3 L130.3,355.3 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 148, 0)\" points=\"108.9,355.3 87.5,355.3 87.5,340.2 108.9,340.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M108.9,355.3 L108.9,340.2 L87.5,340.2 L87.5,355.3 L108.9,355.3 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"87.5,355.3 66.1,355.3 66.1,340.2 87.5,340.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M87.5,355.3 L87.5,340.2 L66.1,340.2 L66.1,355.3 L87.5,355.3 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"493.9,340.2 472.5,340.2 472.5,325.0 493.9,325.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,340.2 L493.9,325.0 L472.5,325.0 L472.5,340.2 L493.9,340.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 212, 255)\" points=\"472.5,340.2 451.1,340.2 451.1,325.0 472.5,325.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M472.5,340.2 L472.5,325.0 L451.1,325.0 L451.1,340.2 L472.5,340.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 115, 255)\" points=\"451.1,340.2 429.7,340.2 429.7,325.0 451.1,325.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M451.1,340.2 L451.1,325.0 L429.7,325.0 L429.7,340.2 L451.1,340.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 51, 255)\" points=\"429.7,340.2 408.3,340.2 408.3,325.0 429.7,325.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M429.7,340.2 L429.7,325.0 L408.3,325.0 L408.3,340.2 L429.7,340.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 34, 255)\" points=\"408.3,340.2 386.9,340.2 386.9,325.0 408.3,325.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M408.3,340.2 L408.3,325.0 L386.9,325.0 L386.9,340.2 L408.3,340.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 67, 255)\" points=\"386.9,340.2 365.5,340.2 365.5,325.0 386.9,325.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,340.2 L386.9,325.0 L365.5,325.0 L365.5,340.2 L386.9,340.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 115, 255)\" points=\"365.5,340.2 344.1,340.2 344.1,325.0 365.5,325.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M365.5,340.2 L365.5,325.0 L344.1,325.0 L344.1,340.2 L365.5,340.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 196, 255)\" points=\"344.1,340.2 322.7,340.2 322.7,325.0 344.1,325.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M344.1,340.2 L344.1,325.0 L322.7,325.0 L322.7,340.2 L344.1,340.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 22, 255, 233)\" points=\"322.7,340.2 301.3,340.2 301.3,325.0 322.7,325.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M322.7,340.2 L322.7,325.0 L301.3,325.0 L301.3,340.2 L322.7,340.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"301.3,340.2 280.0,340.2 280.0,325.0 301.3,325.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M301.3,340.2 L301.3,325.0 L280.0,325.0 L280.0,340.2 L301.3,340.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(233, 255, 22)\" points=\"280.0,340.2 258.7,340.2 258.7,325.0 280.0,325.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,340.2 L280.0,325.0 L258.7,325.0 L258.7,340.2 L280.0,340.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 196, 0)\" points=\"258.7,340.2 237.3,340.2 237.3,325.0 258.7,325.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M258.7,340.2 L258.7,325.0 L237.3,325.0 L237.3,340.2 L258.7,340.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 115, 0)\" points=\"237.3,340.2 215.9,340.2 215.9,325.0 237.3,325.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M237.3,340.2 L237.3,325.0 L215.9,325.0 L215.9,340.2 L237.3,340.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 67, 0)\" points=\"215.9,340.2 194.5,340.2 194.5,325.0 215.9,325.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M215.9,340.2 L215.9,325.0 L194.5,325.0 L194.5,340.2 L215.9,340.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 34, 0)\" points=\"194.5,340.2 173.1,340.2 173.1,325.0 194.5,325.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M194.5,340.2 L194.5,325.0 L173.1,325.0 L173.1,340.2 L194.5,340.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 51, 0)\" points=\"173.1,340.2 151.7,340.2 151.7,325.0 173.1,325.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,340.2 L173.1,325.0 L151.7,325.0 L151.7,340.2 L173.1,340.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 115, 0)\" points=\"151.7,340.2 130.3,340.2 130.3,325.0 151.7,325.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M151.7,340.2 L151.7,325.0 L130.3,325.0 L130.3,340.2 L151.7,340.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 212, 0)\" points=\"130.3,340.2 108.9,340.2 108.9,325.0 130.3,325.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M130.3,340.2 L130.3,325.0 L108.9,325.0 L108.9,340.2 L130.3,340.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"108.9,340.2 87.5,340.2 87.5,325.0 108.9,325.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M108.9,340.2 L108.9,325.0 L87.5,325.0 L87.5,340.2 L108.9,340.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 148, 255)\" points=\"87.5,340.2 66.1,340.2 66.1,325.0 87.5,325.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M87.5,340.2 L87.5,325.0 L66.1,325.0 L66.1,340.2 L87.5,340.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 212, 0)\" points=\"493.9,325.0 472.5,325.0 472.5,309.9 493.9,309.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,325.0 L493.9,309.9 L472.5,309.9 L472.5,325.0 L493.9,325.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"472.5,325.0 451.1,325.0 451.1,309.9 472.5,309.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M472.5,325.0 L472.5,309.9 L451.1,309.9 L451.1,325.0 L472.5,325.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 22, 255, 233)\" points=\"451.1,325.0 429.7,325.0 429.7,309.9 451.1,309.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M451.1,325.0 L451.1,309.9 L429.7,309.9 L429.7,325.0 L451.1,325.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 196, 255)\" points=\"429.7,325.0 408.3,325.0 408.3,309.9 429.7,309.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M429.7,325.0 L429.7,309.9 L408.3,309.9 L408.3,325.0 L429.7,325.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 164, 255)\" points=\"408.3,325.0 386.9,325.0 386.9,309.9 408.3,309.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M408.3,325.0 L408.3,309.9 L386.9,309.9 L386.9,325.0 L408.3,325.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 180, 255)\" points=\"386.9,325.0 365.5,325.0 365.5,309.9 386.9,309.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,325.0 L386.9,309.9 L365.5,309.9 L365.5,325.0 L386.9,325.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 196, 255)\" points=\"365.5,325.0 344.1,325.0 344.1,309.9 365.5,309.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M365.5,325.0 L365.5,309.9 L344.1,309.9 L344.1,325.0 L365.5,325.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 245, 255)\" points=\"344.1,325.0 322.7,325.0 322.7,309.9 344.1,309.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M344.1,325.0 L344.1,309.9 L322.7,309.9 L322.7,325.0 L344.1,325.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 55, 255, 200)\" points=\"322.7,325.0 301.3,325.0 301.3,309.9 322.7,309.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M322.7,325.0 L322.7,309.9 L301.3,309.9 L301.3,325.0 L322.7,325.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"301.3,325.0 280.0,325.0 280.0,309.9 301.3,309.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M301.3,325.0 L301.3,309.9 L280.0,309.9 L280.0,325.0 L301.3,325.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(200, 255, 55)\" points=\"280.0,325.0 258.7,325.0 258.7,309.9 280.0,309.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,325.0 L280.0,309.9 L258.7,309.9 L258.7,325.0 L280.0,325.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 245, 0)\" points=\"258.7,325.0 237.3,325.0 237.3,309.9 258.7,309.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M258.7,325.0 L258.7,309.9 L237.3,309.9 L237.3,325.0 L258.7,325.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 196, 0)\" points=\"237.3,325.0 215.9,325.0 215.9,309.9 237.3,309.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M237.3,325.0 L237.3,309.9 L215.9,309.9 L215.9,325.0 L237.3,325.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 180, 0)\" points=\"215.9,325.0 194.5,325.0 194.5,309.9 215.9,309.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M215.9,325.0 L215.9,309.9 L194.5,309.9 L194.5,325.0 L215.9,325.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 164, 0)\" points=\"194.5,325.0 173.1,325.0 173.1,309.9 194.5,309.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M194.5,325.0 L194.5,309.9 L173.1,309.9 L173.1,325.0 L194.5,325.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 196, 0)\" points=\"173.1,325.0 151.7,325.0 151.7,309.9 173.1,309.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,325.0 L173.1,309.9 L151.7,309.9 L151.7,325.0 L173.1,325.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(249, 255, 6)\" points=\"151.7,325.0 130.3,325.0 130.3,309.9 151.7,309.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M151.7,325.0 L151.7,309.9 L130.3,309.9 L130.3,325.0 L151.7,325.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"130.3,325.0 108.9,325.0 108.9,309.9 130.3,309.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M130.3,325.0 L130.3,309.9 L108.9,309.9 L108.9,325.0 L130.3,325.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 212, 255)\" points=\"108.9,325.0 87.5,325.0 87.5,309.9 108.9,309.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M108.9,325.0 L108.9,309.9 L87.5,309.9 L87.5,325.0 L108.9,325.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 2, 255)\" points=\"87.5,325.0 66.1,325.0 66.1,309.9 87.5,309.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M87.5,325.0 L87.5,309.9 L66.1,309.9 L66.1,325.0 L87.5,325.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 115, 0)\" points=\"493.9,309.9 472.5,309.9 472.5,294.8 493.9,294.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,309.9 L493.9,294.8 L472.5,294.8 L472.5,309.9 L493.9,309.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(249, 255, 6)\" points=\"472.5,309.9 451.1,309.9 451.1,294.8 472.5,294.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M472.5,309.9 L472.5,294.8 L451.1,294.8 L451.1,309.9 L472.5,309.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"451.1,309.9 429.7,309.9 429.7,294.8 451.1,294.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M451.1,309.9 L451.1,294.8 L429.7,294.8 L429.7,309.9 L451.1,309.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 55, 255, 200)\" points=\"429.7,309.9 408.3,309.9 408.3,294.8 429.7,294.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M429.7,309.9 L429.7,294.8 L408.3,294.8 L408.3,309.9 L429.7,309.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 22, 255, 233)\" points=\"408.3,309.9 386.9,309.9 386.9,294.8 408.3,294.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M408.3,309.9 L408.3,294.8 L386.9,294.8 L386.9,309.9 L408.3,309.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 6, 255, 249)\" points=\"386.9,309.9 365.5,309.9 365.5,294.8 386.9,294.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,309.9 L386.9,294.8 L365.5,294.8 L365.5,309.9 L386.9,309.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 22, 255, 233)\" points=\"365.5,309.9 344.1,309.9 344.1,294.8 365.5,294.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M365.5,309.9 L365.5,294.8 L344.1,294.8 L344.1,309.9 L365.5,309.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 38, 255, 217)\" points=\"344.1,309.9 322.7,309.9 322.7,294.8 344.1,294.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M344.1,309.9 L344.1,294.8 L322.7,294.8 L322.7,309.9 L344.1,309.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 87, 255, 168)\" points=\"322.7,309.9 301.3,309.9 301.3,294.8 322.7,294.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M322.7,309.9 L322.7,294.8 L301.3,294.8 L301.3,309.9 L322.7,309.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"301.3,309.9 280.0,309.9 280.0,294.8 301.3,294.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M301.3,309.9 L301.3,294.8 L280.0,294.8 L280.0,309.9 L301.3,309.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(168, 255, 87)\" points=\"280.0,309.9 258.7,309.9 258.7,294.8 280.0,294.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,309.9 L280.0,294.8 L258.7,294.8 L258.7,309.9 L280.0,309.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(217, 255, 38)\" points=\"258.7,309.9 237.3,309.9 237.3,294.8 258.7,294.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M258.7,309.9 L258.7,294.8 L237.3,294.8 L237.3,309.9 L258.7,309.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(249, 255, 6)\" points=\"237.3,309.9 215.9,309.9 215.9,294.8 237.3,294.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M237.3,309.9 L237.3,294.8 L215.9,294.8 L215.9,309.9 L237.3,309.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(249, 255, 6)\" points=\"215.9,309.9 194.5,309.9 194.5,294.8 215.9,294.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M215.9,309.9 L215.9,294.8 L194.5,294.8 L194.5,309.9 L215.9,309.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(249, 255, 6)\" points=\"194.5,309.9 173.1,309.9 173.1,294.8 194.5,294.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M194.5,309.9 L194.5,294.8 L173.1,294.8 L173.1,309.9 L194.5,309.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(200, 255, 55)\" points=\"173.1,309.9 151.7,309.9 151.7,294.8 173.1,294.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,309.9 L173.1,294.8 L151.7,294.8 L151.7,309.9 L173.1,309.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"151.7,309.9 130.3,309.9 130.3,294.8 151.7,294.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M151.7,309.9 L151.7,294.8 L130.3,294.8 L130.3,309.9 L151.7,309.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 6, 255, 249)\" points=\"130.3,309.9 108.9,309.9 108.9,294.8 130.3,294.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M130.3,309.9 L130.3,294.8 L108.9,294.8 L108.9,309.9 L130.3,309.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 115, 255)\" points=\"108.9,309.9 87.5,309.9 87.5,294.8 108.9,294.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M108.9,309.9 L108.9,294.8 L87.5,294.8 L87.5,309.9 L108.9,309.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 0, 160)\" points=\"87.5,309.9 66.1,309.9 66.1,294.8 87.5,294.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M87.5,309.9 L87.5,294.8 L66.1,294.8 L66.1,309.9 L87.5,309.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 51, 0)\" points=\"493.9,294.8 472.5,294.8 472.5,279.6 493.9,279.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,294.8 L493.9,279.6 L472.5,279.6 L472.5,294.8 L493.9,294.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 196, 0)\" points=\"472.5,294.8 451.1,294.8 451.1,279.6 472.5,279.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M472.5,294.8 L472.5,279.6 L451.1,279.6 L451.1,294.8 L472.5,294.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(200, 255, 55)\" points=\"451.1,294.8 429.7,294.8 429.7,279.6 451.1,279.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M451.1,294.8 L451.1,279.6 L429.7,279.6 L429.7,294.8 L451.1,294.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"429.7,294.8 408.3,294.8 408.3,279.6 429.7,279.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M429.7,294.8 L429.7,279.6 L408.3,279.6 L408.3,294.8 L429.7,294.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 87, 255, 168)\" points=\"408.3,294.8 386.9,294.8 386.9,279.6 408.3,279.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M408.3,294.8 L408.3,279.6 L386.9,279.6 L386.9,294.8 L408.3,294.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 71, 255, 184)\" points=\"386.9,294.8 365.5,294.8 365.5,279.6 386.9,279.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,294.8 L386.9,279.6 L365.5,279.6 L365.5,294.8 L386.9,294.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 55, 255, 200)\" points=\"365.5,294.8 344.1,294.8 344.1,279.6 365.5,279.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M365.5,294.8 L365.5,279.6 L344.1,279.6 L344.1,294.8 L365.5,294.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 71, 255, 184)\" points=\"344.1,294.8 322.7,294.8 322.7,279.6 344.1,279.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M344.1,294.8 L344.1,279.6 L322.7,279.6 L322.7,294.8 L344.1,294.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(103, 255, 152)\" points=\"322.7,294.8 301.3,294.8 301.3,279.6 322.7,279.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M322.7,294.8 L322.7,279.6 L301.3,279.6 L301.3,294.8 L322.7,294.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"301.3,294.8 280.0,294.8 280.0,279.6 301.3,279.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M301.3,294.8 L301.3,279.6 L280.0,279.6 L280.0,294.8 L301.3,294.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(152, 255, 103)\" points=\"280.0,294.8 258.7,294.8 258.7,279.6 280.0,279.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,294.8 L280.0,279.6 L258.7,279.6 L258.7,294.8 L280.0,294.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(184, 255, 71)\" points=\"258.7,294.8 237.3,294.8 237.3,279.6 258.7,279.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M258.7,294.8 L258.7,279.6 L237.3,279.6 L237.3,294.8 L258.7,294.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(200, 255, 55)\" points=\"237.3,294.8 215.9,294.8 215.9,279.6 237.3,279.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M237.3,294.8 L237.3,279.6 L215.9,279.6 L215.9,294.8 L237.3,294.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(200, 255, 55)\" points=\"215.9,294.8 194.5,294.8 194.5,279.6 215.9,279.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M215.9,294.8 L215.9,279.6 L194.5,279.6 L194.5,294.8 L215.9,294.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(168, 255, 87)\" points=\"194.5,294.8 173.1,294.8 173.1,279.6 194.5,279.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M194.5,294.8 L194.5,279.6 L173.1,279.6 L173.1,294.8 L194.5,294.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"173.1,294.8 151.7,294.8 151.7,279.6 173.1,279.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,294.8 L173.1,279.6 L151.7,279.6 L151.7,294.8 L173.1,294.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 55, 255, 200)\" points=\"151.7,294.8 130.3,294.8 130.3,279.6 151.7,279.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M151.7,294.8 L151.7,279.6 L130.3,279.6 L130.3,294.8 L151.7,294.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 196, 255)\" points=\"130.3,294.8 108.9,294.8 108.9,279.6 130.3,279.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M130.3,294.8 L130.3,279.6 L108.9,279.6 L108.9,294.8 L130.3,294.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 51, 255)\" points=\"108.9,294.8 87.5,294.8 87.5,279.6 108.9,279.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M108.9,294.8 L108.9,279.6 L87.5,279.6 L87.5,294.8 L108.9,294.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 0, 128)\" points=\"87.5,294.8 66.1,294.8 66.1,279.6 87.5,279.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M87.5,294.8 L87.5,279.6 L66.1,279.6 L66.1,294.8 L87.5,294.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 34, 0)\" points=\"493.9,279.6 472.5,279.6 472.5,264.5 493.9,264.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,279.6 L493.9,264.5 L472.5,264.5 L472.5,279.6 L493.9,279.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 164, 0)\" points=\"472.5,279.6 451.1,279.6 451.1,264.5 472.5,264.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M472.5,279.6 L472.5,264.5 L451.1,264.5 L451.1,279.6 L472.5,279.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(249, 255, 6)\" points=\"451.1,279.6 429.7,279.6 429.7,264.5 451.1,264.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M451.1,279.6 L451.1,264.5 L429.7,264.5 L429.7,279.6 L451.1,279.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(168, 255, 87)\" points=\"429.7,279.6 408.3,279.6 408.3,264.5 429.7,264.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M429.7,279.6 L429.7,264.5 L408.3,264.5 L408.3,279.6 L429.7,279.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"408.3,279.6 386.9,279.6 386.9,264.5 408.3,264.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M408.3,279.6 L408.3,264.5 L386.9,264.5 L386.9,279.6 L408.3,279.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(103, 255, 152)\" points=\"386.9,279.6 365.5,279.6 365.5,264.5 386.9,264.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,279.6 L386.9,264.5 L365.5,264.5 L365.5,279.6 L386.9,279.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(103, 255, 152)\" points=\"365.5,279.6 344.1,279.6 344.1,264.5 365.5,264.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M365.5,279.6 L365.5,264.5 L344.1,264.5 L344.1,279.6 L365.5,279.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(103, 255, 152)\" points=\"344.1,279.6 322.7,279.6 322.7,264.5 344.1,264.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M344.1,279.6 L344.1,264.5 L322.7,264.5 L322.7,279.6 L344.1,279.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"322.7,279.6 301.3,279.6 301.3,264.5 322.7,264.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M322.7,279.6 L322.7,264.5 L301.3,264.5 L301.3,279.6 L322.7,279.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"301.3,279.6 280.0,279.6 280.0,264.5 301.3,264.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M301.3,279.6 L301.3,264.5 L280.0,264.5 L280.0,279.6 L301.3,279.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(152, 255, 103)\" points=\"280.0,279.6 258.7,279.6 258.7,264.5 280.0,264.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,279.6 L280.0,264.5 L258.7,264.5 L258.7,279.6 L280.0,279.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(152, 255, 103)\" points=\"258.7,279.6 237.3,279.6 237.3,264.5 258.7,264.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M258.7,279.6 L258.7,264.5 L237.3,264.5 L237.3,279.6 L258.7,279.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(168, 255, 87)\" points=\"237.3,279.6 215.9,279.6 215.9,264.5 237.3,264.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M237.3,279.6 L237.3,264.5 L215.9,264.5 L215.9,279.6 L237.3,279.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(152, 255, 103)\" points=\"215.9,279.6 194.5,279.6 194.5,264.5 215.9,264.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M215.9,279.6 L215.9,264.5 L194.5,264.5 L194.5,279.6 L215.9,279.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"194.5,279.6 173.1,279.6 173.1,264.5 194.5,264.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M194.5,279.6 L194.5,264.5 L173.1,264.5 L173.1,279.6 L194.5,279.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 87, 255, 168)\" points=\"173.1,279.6 151.7,279.6 151.7,264.5 173.1,264.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,279.6 L173.1,264.5 L151.7,264.5 L151.7,279.6 L173.1,279.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 22, 255, 233)\" points=\"151.7,279.6 130.3,279.6 130.3,264.5 151.7,264.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M151.7,279.6 L151.7,264.5 L130.3,264.5 L130.3,279.6 L151.7,279.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 164, 255)\" points=\"130.3,279.6 108.9,279.6 108.9,264.5 130.3,264.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M130.3,279.6 L130.3,264.5 L108.9,264.5 L108.9,279.6 L130.3,279.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 34, 255)\" points=\"108.9,279.6 87.5,279.6 87.5,264.5 108.9,264.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M108.9,279.6 L108.9,264.5 L87.5,264.5 L87.5,279.6 L108.9,279.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 0, 128)\" points=\"87.5,279.6 66.1,279.6 66.1,264.5 87.5,264.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M87.5,279.6 L87.5,264.5 L66.1,264.5 L66.1,279.6 L87.5,279.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 67, 0)\" points=\"493.9,264.5 472.5,264.5 472.5,249.4 493.9,249.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,264.5 L493.9,249.4 L472.5,249.4 L472.5,264.5 L493.9,264.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 180, 0)\" points=\"472.5,264.5 451.1,264.5 451.1,249.4 472.5,249.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M472.5,264.5 L472.5,249.4 L451.1,249.4 L451.1,264.5 L472.5,264.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(249, 255, 6)\" points=\"451.1,264.5 429.7,264.5 429.7,249.4 451.1,249.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M451.1,264.5 L451.1,249.4 L429.7,249.4 L429.7,264.5 L451.1,264.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(200, 255, 55)\" points=\"429.7,264.5 408.3,264.5 408.3,249.4 429.7,249.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M429.7,264.5 L429.7,249.4 L408.3,249.4 L408.3,264.5 L429.7,264.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(152, 255, 103)\" points=\"408.3,264.5 386.9,264.5 386.9,249.4 408.3,249.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M408.3,264.5 L408.3,249.4 L386.9,249.4 L386.9,264.5 L408.3,264.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"386.9,264.5 365.5,264.5 365.5,249.4 386.9,249.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,264.5 L386.9,249.4 L365.5,249.4 L365.5,264.5 L386.9,264.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"365.5,264.5 344.1,264.5 344.1,249.4 365.5,249.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M365.5,264.5 L365.5,249.4 L344.1,249.4 L344.1,264.5 L365.5,264.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"344.1,264.5 322.7,264.5 322.7,249.4 344.1,249.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M344.1,264.5 L344.1,249.4 L322.7,249.4 L322.7,264.5 L344.1,264.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"322.7,264.5 301.3,264.5 301.3,249.4 322.7,249.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M322.7,264.5 L322.7,249.4 L301.3,249.4 L301.3,264.5 L322.7,264.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"301.3,264.5 280.0,264.5 280.0,249.4 301.3,249.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M301.3,264.5 L301.3,249.4 L280.0,249.4 L280.0,264.5 L301.3,264.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"280.0,264.5 258.7,264.5 258.7,249.4 280.0,249.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,264.5 L280.0,249.4 L258.7,249.4 L258.7,264.5 L280.0,264.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"258.7,264.5 237.3,264.5 237.3,249.4 258.7,249.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M258.7,264.5 L258.7,249.4 L237.3,249.4 L237.3,264.5 L258.7,264.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"237.3,264.5 215.9,264.5 215.9,249.4 237.3,249.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M237.3,264.5 L237.3,249.4 L215.9,249.4 L215.9,264.5 L237.3,264.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"215.9,264.5 194.5,264.5 194.5,249.4 215.9,249.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M215.9,264.5 L215.9,249.4 L194.5,249.4 L194.5,264.5 L215.9,264.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(103, 255, 152)\" points=\"194.5,264.5 173.1,264.5 173.1,249.4 194.5,249.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M194.5,264.5 L194.5,249.4 L173.1,249.4 L173.1,264.5 L194.5,264.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 71, 255, 184)\" points=\"173.1,264.5 151.7,264.5 151.7,249.4 173.1,249.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,264.5 L173.1,249.4 L151.7,249.4 L151.7,264.5 L173.1,264.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 6, 255, 249)\" points=\"151.7,264.5 130.3,264.5 130.3,249.4 151.7,249.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M151.7,264.5 L151.7,249.4 L130.3,249.4 L130.3,264.5 L151.7,264.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 180, 255)\" points=\"130.3,264.5 108.9,264.5 108.9,249.4 130.3,249.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M130.3,264.5 L130.3,249.4 L108.9,249.4 L108.9,264.5 L130.3,264.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 67, 255)\" points=\"108.9,264.5 87.5,264.5 87.5,249.4 108.9,249.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M108.9,264.5 L108.9,249.4 L87.5,249.4 L87.5,264.5 L108.9,264.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 0, 192)\" points=\"87.5,264.5 66.1,264.5 66.1,249.4 87.5,249.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M87.5,264.5 L87.5,249.4 L66.1,249.4 L66.1,264.5 L87.5,264.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 115, 0)\" points=\"493.9,249.4 472.5,249.4 472.5,234.2 493.9,234.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,249.4 L493.9,234.2 L472.5,234.2 L472.5,249.4 L493.9,249.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 196, 0)\" points=\"472.5,249.4 451.1,249.4 451.1,234.2 472.5,234.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M472.5,249.4 L472.5,234.2 L451.1,234.2 L451.1,249.4 L472.5,249.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(249, 255, 6)\" points=\"451.1,249.4 429.7,249.4 429.7,234.2 451.1,234.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M451.1,249.4 L451.1,234.2 L429.7,234.2 L429.7,249.4 L451.1,249.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(200, 255, 55)\" points=\"429.7,249.4 408.3,249.4 408.3,234.2 429.7,234.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M429.7,249.4 L429.7,234.2 L408.3,234.2 L408.3,249.4 L429.7,249.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(168, 255, 87)\" points=\"408.3,249.4 386.9,249.4 386.9,234.2 408.3,234.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M408.3,249.4 L408.3,234.2 L386.9,234.2 L386.9,249.4 L408.3,249.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"386.9,249.4 365.5,249.4 365.5,234.2 386.9,234.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,249.4 L386.9,234.2 L365.5,234.2 L365.5,249.4 L386.9,249.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"365.5,249.4 344.1,249.4 344.1,234.2 365.5,234.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M365.5,249.4 L365.5,234.2 L344.1,234.2 L344.1,249.4 L365.5,249.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"344.1,249.4 322.7,249.4 322.7,234.2 344.1,234.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M344.1,249.4 L344.1,234.2 L322.7,234.2 L322.7,249.4 L344.1,249.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"322.7,249.4 301.3,249.4 301.3,234.2 322.7,234.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M322.7,249.4 L322.7,234.2 L301.3,234.2 L301.3,249.4 L322.7,249.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"301.3,249.4 280.0,249.4 280.0,234.2 301.3,234.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M301.3,249.4 L301.3,234.2 L280.0,234.2 L280.0,249.4 L301.3,249.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"280.0,249.4 258.7,249.4 258.7,234.2 280.0,234.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,249.4 L280.0,234.2 L258.7,234.2 L258.7,249.4 L280.0,249.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"258.7,249.4 237.3,249.4 237.3,234.2 258.7,234.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M258.7,249.4 L258.7,234.2 L237.3,234.2 L237.3,249.4 L258.7,249.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"237.3,249.4 215.9,249.4 215.9,234.2 237.3,234.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M237.3,249.4 L237.3,234.2 L215.9,234.2 L215.9,249.4 L237.3,249.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"215.9,249.4 194.5,249.4 194.5,234.2 215.9,234.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M215.9,249.4 L215.9,234.2 L194.5,234.2 L194.5,249.4 L215.9,249.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(103, 255, 152)\" points=\"194.5,249.4 173.1,249.4 173.1,234.2 194.5,234.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M194.5,249.4 L194.5,234.2 L173.1,234.2 L173.1,249.4 L194.5,249.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 55, 255, 200)\" points=\"173.1,249.4 151.7,249.4 151.7,234.2 173.1,234.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,249.4 L173.1,234.2 L151.7,234.2 L151.7,249.4 L173.1,249.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 22, 255, 233)\" points=\"151.7,249.4 130.3,249.4 130.3,234.2 151.7,234.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M151.7,249.4 L151.7,234.2 L130.3,234.2 L130.3,249.4 L151.7,249.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 212, 255)\" points=\"130.3,249.4 108.9,249.4 108.9,234.2 130.3,234.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M130.3,249.4 L130.3,234.2 L108.9,234.2 L108.9,249.4 L130.3,249.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 115, 255)\" points=\"108.9,249.4 87.5,249.4 87.5,234.2 108.9,234.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M108.9,249.4 L108.9,234.2 L87.5,234.2 L87.5,249.4 L108.9,249.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 18, 255)\" points=\"87.5,249.4 66.1,249.4 66.1,234.2 87.5,234.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M87.5,249.4 L87.5,234.2 L66.1,234.2 L66.1,249.4 L87.5,249.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 196, 0)\" points=\"493.9,234.2 472.5,234.2 472.5,219.1 493.9,219.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,234.2 L493.9,219.1 L472.5,219.1 L472.5,234.2 L493.9,234.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 245, 0)\" points=\"472.5,234.2 451.1,234.2 451.1,219.1 472.5,219.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M472.5,234.2 L472.5,219.1 L451.1,219.1 L451.1,234.2 L472.5,234.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(217, 255, 38)\" points=\"451.1,234.2 429.7,234.2 429.7,219.1 451.1,219.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M451.1,234.2 L451.1,219.1 L429.7,219.1 L429.7,234.2 L451.1,234.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(184, 255, 71)\" points=\"429.7,234.2 408.3,234.2 408.3,219.1 429.7,219.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M429.7,234.2 L429.7,219.1 L408.3,219.1 L408.3,234.2 L429.7,234.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(152, 255, 103)\" points=\"408.3,234.2 386.9,234.2 386.9,219.1 408.3,219.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M408.3,234.2 L408.3,219.1 L386.9,219.1 L386.9,234.2 L408.3,234.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"386.9,234.2 365.5,234.2 365.5,219.1 386.9,219.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,234.2 L386.9,219.1 L365.5,219.1 L365.5,234.2 L386.9,234.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"365.5,234.2 344.1,234.2 344.1,219.1 365.5,219.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M365.5,234.2 L365.5,219.1 L344.1,219.1 L344.1,234.2 L365.5,234.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"344.1,234.2 322.7,234.2 322.7,219.1 344.1,219.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M344.1,234.2 L344.1,219.1 L322.7,219.1 L322.7,234.2 L344.1,234.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"322.7,234.2 301.3,234.2 301.3,219.1 322.7,219.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M322.7,234.2 L322.7,219.1 L301.3,219.1 L301.3,234.2 L322.7,234.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"301.3,234.2 280.0,234.2 280.0,219.1 301.3,219.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M301.3,234.2 L301.3,219.1 L280.0,219.1 L280.0,234.2 L301.3,234.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"280.0,234.2 258.7,234.2 258.7,219.1 280.0,219.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,234.2 L280.0,219.1 L258.7,219.1 L258.7,234.2 L280.0,234.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"258.7,234.2 237.3,234.2 237.3,219.1 258.7,219.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M258.7,234.2 L258.7,219.1 L237.3,219.1 L237.3,234.2 L258.7,234.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"237.3,234.2 215.9,234.2 215.9,219.1 237.3,219.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M237.3,234.2 L237.3,219.1 L215.9,219.1 L215.9,234.2 L237.3,234.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"215.9,234.2 194.5,234.2 194.5,219.1 215.9,219.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M215.9,234.2 L215.9,219.1 L194.5,219.1 L194.5,234.2 L215.9,234.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(103, 255, 152)\" points=\"194.5,234.2 173.1,234.2 173.1,219.1 194.5,219.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M194.5,234.2 L194.5,219.1 L173.1,219.1 L173.1,234.2 L194.5,234.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 71, 255, 184)\" points=\"173.1,234.2 151.7,234.2 151.7,219.1 173.1,219.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,234.2 L173.1,219.1 L151.7,219.1 L151.7,234.2 L173.1,234.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 38, 255, 217)\" points=\"151.7,234.2 130.3,234.2 130.3,219.1 151.7,219.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M151.7,234.2 L151.7,219.1 L130.3,219.1 L130.3,234.2 L151.7,234.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 6, 255, 249)\" points=\"130.3,234.2 108.9,234.2 108.9,219.1 130.3,219.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M130.3,234.2 L130.3,219.1 L108.9,219.1 L108.9,234.2 L130.3,234.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 196, 255)\" points=\"108.9,234.2 87.5,234.2 87.5,219.1 108.9,219.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M108.9,234.2 L108.9,219.1 L87.5,219.1 L87.5,234.2 L108.9,234.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 132, 255)\" points=\"87.5,234.2 66.1,234.2 66.1,219.1 87.5,219.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M87.5,234.2 L87.5,219.1 L66.1,219.1 L66.1,234.2 L87.5,234.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(233, 255, 22)\" points=\"493.9,219.1 472.5,219.1 472.5,204.0 493.9,204.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,219.1 L493.9,204.0 L472.5,204.0 L472.5,219.1 L493.9,219.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(200, 255, 55)\" points=\"472.5,219.1 451.1,219.1 451.1,204.0 472.5,204.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M472.5,219.1 L472.5,204.0 L451.1,204.0 L451.1,219.1 L472.5,219.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(168, 255, 87)\" points=\"451.1,219.1 429.7,219.1 429.7,204.0 451.1,204.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M451.1,219.1 L451.1,204.0 L429.7,204.0 L429.7,219.1 L451.1,219.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(152, 255, 103)\" points=\"429.7,219.1 408.3,219.1 408.3,204.0 429.7,204.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M429.7,219.1 L429.7,204.0 L408.3,204.0 L408.3,219.1 L429.7,219.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(152, 255, 103)\" points=\"408.3,219.1 386.9,219.1 386.9,204.0 408.3,204.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M408.3,219.1 L408.3,204.0 L386.9,204.0 L386.9,219.1 L408.3,219.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"386.9,219.1 365.5,219.1 365.5,204.0 386.9,204.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,219.1 L386.9,204.0 L365.5,204.0 L365.5,219.1 L386.9,219.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"365.5,219.1 344.1,219.1 344.1,204.0 365.5,204.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M365.5,219.1 L365.5,204.0 L344.1,204.0 L344.1,219.1 L365.5,219.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"344.1,219.1 322.7,219.1 322.7,204.0 344.1,204.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M344.1,219.1 L344.1,204.0 L322.7,204.0 L322.7,219.1 L344.1,219.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"322.7,219.1 301.3,219.1 301.3,204.0 322.7,204.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M322.7,219.1 L322.7,204.0 L301.3,204.0 L301.3,219.1 L322.7,219.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"301.3,219.1 280.0,219.1 280.0,204.0 301.3,204.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M301.3,219.1 L301.3,204.0 L280.0,204.0 L280.0,219.1 L301.3,219.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"280.0,219.1 258.7,219.1 258.7,204.0 280.0,204.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,219.1 L280.0,204.0 L258.7,204.0 L258.7,219.1 L280.0,219.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"258.7,219.1 237.3,219.1 237.3,204.0 258.7,204.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M258.7,219.1 L258.7,204.0 L237.3,204.0 L237.3,219.1 L258.7,219.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"237.3,219.1 215.9,219.1 215.9,204.0 237.3,204.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M237.3,219.1 L237.3,204.0 L215.9,204.0 L215.9,219.1 L237.3,219.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"215.9,219.1 194.5,219.1 194.5,204.0 215.9,204.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M215.9,219.1 L215.9,204.0 L194.5,204.0 L194.5,219.1 L215.9,219.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"194.5,219.1 173.1,219.1 173.1,204.0 194.5,204.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M194.5,219.1 L194.5,204.0 L173.1,204.0 L173.1,219.1 L194.5,219.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(103, 255, 152)\" points=\"173.1,219.1 151.7,219.1 151.7,204.0 173.1,204.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,219.1 L173.1,204.0 L151.7,204.0 L151.7,219.1 L173.1,219.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 87, 255, 168)\" points=\"151.7,219.1 130.3,219.1 130.3,204.0 151.7,204.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M151.7,219.1 L151.7,204.0 L130.3,204.0 L130.3,219.1 L151.7,219.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 55, 255, 200)\" points=\"130.3,219.1 108.9,219.1 108.9,204.0 130.3,204.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M130.3,219.1 L130.3,204.0 L108.9,204.0 L108.9,219.1 L130.3,219.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 38, 255, 217)\" points=\"108.9,219.1 87.5,219.1 87.5,204.0 108.9,204.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M108.9,219.1 L108.9,204.0 L87.5,204.0 L87.5,219.1 L108.9,219.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 245, 255)\" points=\"87.5,219.1 66.1,219.1 66.1,204.0 87.5,204.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M87.5,219.1 L87.5,204.0 L66.1,204.0 L66.1,219.1 L87.5,219.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"493.9,204.0 472.5,204.0 472.5,188.9 493.9,188.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,204.0 L493.9,188.9 L472.5,188.9 L472.5,204.0 L493.9,204.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"472.5,204.0 451.1,204.0 451.1,188.9 472.5,188.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M472.5,204.0 L472.5,188.9 L451.1,188.9 L451.1,204.0 L472.5,204.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"451.1,204.0 429.7,204.0 429.7,188.9 451.1,188.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M451.1,204.0 L451.1,188.9 L429.7,188.9 L429.7,204.0 L451.1,204.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"429.7,204.0 408.3,204.0 408.3,188.9 429.7,188.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M429.7,204.0 L429.7,188.9 L408.3,188.9 L408.3,204.0 L429.7,204.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"408.3,204.0 386.9,204.0 386.9,188.9 408.3,188.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M408.3,204.0 L408.3,188.9 L386.9,188.9 L386.9,204.0 L408.3,204.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"386.9,204.0 365.5,204.0 365.5,188.9 386.9,188.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,204.0 L386.9,188.9 L365.5,188.9 L365.5,204.0 L386.9,204.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"365.5,204.0 344.1,204.0 344.1,188.9 365.5,188.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M365.5,204.0 L365.5,188.9 L344.1,188.9 L344.1,204.0 L365.5,204.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"344.1,204.0 322.7,204.0 322.7,188.9 344.1,188.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M344.1,204.0 L344.1,188.9 L322.7,188.9 L322.7,204.0 L344.1,204.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"322.7,204.0 301.3,204.0 301.3,188.9 322.7,188.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M322.7,204.0 L322.7,188.9 L301.3,188.9 L301.3,204.0 L322.7,204.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"301.3,204.0 280.0,204.0 280.0,188.9 301.3,188.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M301.3,204.0 L301.3,188.9 L280.0,188.9 L280.0,204.0 L301.3,204.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"280.0,204.0 258.7,204.0 258.7,188.9 280.0,188.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,204.0 L280.0,188.9 L258.7,188.9 L258.7,204.0 L280.0,204.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"258.7,204.0 237.3,204.0 237.3,188.9 258.7,188.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M258.7,204.0 L258.7,188.9 L237.3,188.9 L237.3,204.0 L258.7,204.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"237.3,204.0 215.9,204.0 215.9,188.9 237.3,188.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M237.3,204.0 L237.3,188.9 L215.9,188.9 L215.9,204.0 L237.3,204.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"215.9,204.0 194.5,204.0 194.5,188.9 215.9,188.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M215.9,204.0 L215.9,188.9 L194.5,188.9 L194.5,204.0 L215.9,204.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"194.5,204.0 173.1,204.0 173.1,188.9 194.5,188.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M194.5,204.0 L194.5,188.9 L173.1,188.9 L173.1,204.0 L194.5,204.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"173.1,204.0 151.7,204.0 151.7,188.9 173.1,188.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,204.0 L173.1,188.9 L151.7,188.9 L151.7,204.0 L173.1,204.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"151.7,204.0 130.3,204.0 130.3,188.9 151.7,188.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M151.7,204.0 L151.7,188.9 L130.3,188.9 L130.3,204.0 L151.7,204.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"130.3,204.0 108.9,204.0 108.9,188.9 130.3,188.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M130.3,204.0 L130.3,188.9 L108.9,188.9 L108.9,204.0 L130.3,204.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"108.9,204.0 87.5,204.0 87.5,188.9 108.9,188.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M108.9,204.0 L108.9,188.9 L87.5,188.9 L87.5,204.0 L108.9,204.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"87.5,204.0 66.1,204.0 66.1,188.9 87.5,188.9 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M87.5,204.0 L87.5,188.9 L66.1,188.9 L66.1,204.0 L87.5,204.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 22, 255, 233)\" points=\"493.9,188.9 472.5,188.9 472.5,173.8 493.9,173.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,188.9 L493.9,173.8 L472.5,173.8 L472.5,188.9 L493.9,188.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 55, 255, 200)\" points=\"472.5,188.9 451.1,188.9 451.1,173.8 472.5,173.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M472.5,188.9 L472.5,173.8 L451.1,173.8 L451.1,188.9 L472.5,188.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 87, 255, 168)\" points=\"451.1,188.9 429.7,188.9 429.7,173.8 451.1,173.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M451.1,188.9 L451.1,173.8 L429.7,173.8 L429.7,188.9 L451.1,188.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(103, 255, 152)\" points=\"429.7,188.9 408.3,188.9 408.3,173.8 429.7,173.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M429.7,188.9 L429.7,173.8 L408.3,173.8 L408.3,188.9 L429.7,188.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"408.3,188.9 386.9,188.9 386.9,173.8 408.3,173.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M408.3,188.9 L408.3,173.8 L386.9,173.8 L386.9,188.9 L408.3,188.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"386.9,188.9 365.5,188.9 365.5,173.8 386.9,173.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,188.9 L386.9,173.8 L365.5,173.8 L365.5,188.9 L386.9,188.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"365.5,188.9 344.1,188.9 344.1,173.8 365.5,173.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M365.5,188.9 L365.5,173.8 L344.1,173.8 L344.1,188.9 L365.5,188.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"344.1,188.9 322.7,188.9 322.7,173.8 344.1,173.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M344.1,188.9 L344.1,173.8 L322.7,173.8 L322.7,188.9 L344.1,188.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"322.7,188.9 301.3,188.9 301.3,173.8 322.7,173.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M322.7,188.9 L322.7,173.8 L301.3,173.8 L301.3,188.9 L322.7,188.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"301.3,188.9 280.0,188.9 280.0,173.8 301.3,173.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M301.3,188.9 L301.3,173.8 L280.0,173.8 L280.0,188.9 L301.3,188.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"280.0,188.9 258.7,188.9 258.7,173.8 280.0,173.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,188.9 L280.0,173.8 L258.7,173.8 L258.7,188.9 L280.0,188.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"258.7,188.9 237.3,188.9 237.3,173.8 258.7,173.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M258.7,188.9 L258.7,173.8 L237.3,173.8 L237.3,188.9 L258.7,188.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"237.3,188.9 215.9,188.9 215.9,173.8 237.3,173.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M237.3,188.9 L237.3,173.8 L215.9,173.8 L215.9,188.9 L237.3,188.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"215.9,188.9 194.5,188.9 194.5,173.8 215.9,173.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M215.9,188.9 L215.9,173.8 L194.5,173.8 L194.5,188.9 L215.9,188.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(152, 255, 103)\" points=\"194.5,188.9 173.1,188.9 173.1,173.8 194.5,173.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M194.5,188.9 L194.5,173.8 L173.1,173.8 L173.1,188.9 L194.5,188.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(152, 255, 103)\" points=\"173.1,188.9 151.7,188.9 151.7,173.8 173.1,173.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,188.9 L173.1,173.8 L151.7,173.8 L151.7,188.9 L173.1,188.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(168, 255, 87)\" points=\"151.7,188.9 130.3,188.9 130.3,173.8 151.7,173.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M151.7,188.9 L151.7,173.8 L130.3,173.8 L130.3,188.9 L151.7,188.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(200, 255, 55)\" points=\"130.3,188.9 108.9,188.9 108.9,173.8 130.3,173.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M130.3,188.9 L130.3,173.8 L108.9,173.8 L108.9,188.9 L130.3,188.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(233, 255, 22)\" points=\"108.9,188.9 87.5,188.9 87.5,173.8 108.9,173.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M108.9,188.9 L108.9,173.8 L87.5,173.8 L87.5,188.9 L108.9,188.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 245, 0)\" points=\"87.5,188.9 66.1,188.9 66.1,173.8 87.5,173.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M87.5,188.9 L87.5,173.8 L66.1,173.8 L66.1,188.9 L87.5,188.9 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 196, 255)\" points=\"493.9,173.8 472.5,173.8 472.5,158.6 493.9,158.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,173.8 L493.9,158.6 L472.5,158.6 L472.5,173.8 L493.9,173.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 245, 255)\" points=\"472.5,173.8 451.1,173.8 451.1,158.6 472.5,158.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M472.5,173.8 L472.5,158.6 L451.1,158.6 L451.1,173.8 L472.5,173.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 38, 255, 217)\" points=\"451.1,173.8 429.7,173.8 429.7,158.6 451.1,158.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M451.1,173.8 L451.1,158.6 L429.7,158.6 L429.7,173.8 L451.1,173.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 71, 255, 184)\" points=\"429.7,173.8 408.3,173.8 408.3,158.6 429.7,158.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M429.7,173.8 L429.7,158.6 L408.3,158.6 L408.3,173.8 L429.7,173.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(103, 255, 152)\" points=\"408.3,173.8 386.9,173.8 386.9,158.6 408.3,158.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M408.3,173.8 L408.3,158.6 L386.9,158.6 L386.9,173.8 L408.3,173.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"386.9,173.8 365.5,173.8 365.5,158.6 386.9,158.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,173.8 L386.9,158.6 L365.5,158.6 L365.5,173.8 L386.9,173.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"365.5,173.8 344.1,173.8 344.1,158.6 365.5,158.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M365.5,173.8 L365.5,158.6 L344.1,158.6 L344.1,173.8 L365.5,173.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"344.1,173.8 322.7,173.8 322.7,158.6 344.1,158.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M344.1,173.8 L344.1,158.6 L322.7,158.6 L322.7,173.8 L344.1,173.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"322.7,173.8 301.3,173.8 301.3,158.6 322.7,158.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M322.7,173.8 L322.7,158.6 L301.3,158.6 L301.3,173.8 L322.7,173.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"301.3,173.8 280.0,173.8 280.0,158.6 301.3,158.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M301.3,173.8 L301.3,158.6 L280.0,158.6 L280.0,173.8 L301.3,173.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"280.0,173.8 258.7,173.8 258.7,158.6 280.0,158.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,173.8 L280.0,158.6 L258.7,158.6 L258.7,173.8 L280.0,173.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"258.7,173.8 237.3,173.8 237.3,158.6 258.7,158.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M258.7,173.8 L258.7,158.6 L237.3,158.6 L237.3,173.8 L258.7,173.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"237.3,173.8 215.9,173.8 215.9,158.6 237.3,158.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M237.3,173.8 L237.3,158.6 L215.9,158.6 L215.9,173.8 L237.3,173.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"215.9,173.8 194.5,173.8 194.5,158.6 215.9,158.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M215.9,173.8 L215.9,158.6 L194.5,158.6 L194.5,173.8 L215.9,173.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(152, 255, 103)\" points=\"194.5,173.8 173.1,173.8 173.1,158.6 194.5,158.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M194.5,173.8 L194.5,158.6 L173.1,158.6 L173.1,173.8 L194.5,173.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(184, 255, 71)\" points=\"173.1,173.8 151.7,173.8 151.7,158.6 173.1,158.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,173.8 L173.1,158.6 L151.7,158.6 L151.7,173.8 L173.1,173.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(217, 255, 38)\" points=\"151.7,173.8 130.3,173.8 130.3,158.6 151.7,158.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M151.7,173.8 L151.7,158.6 L130.3,158.6 L130.3,173.8 L151.7,173.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 245, 0)\" points=\"130.3,173.8 108.9,173.8 108.9,158.6 130.3,158.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M130.3,173.8 L130.3,158.6 L108.9,158.6 L108.9,173.8 L130.3,173.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 196, 0)\" points=\"108.9,173.8 87.5,173.8 87.5,158.6 108.9,158.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M108.9,173.8 L108.9,158.6 L87.5,158.6 L87.5,173.8 L108.9,173.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 115, 0)\" points=\"87.5,173.8 66.1,173.8 66.1,158.6 87.5,158.6 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M87.5,173.8 L87.5,158.6 L66.1,158.6 L66.1,173.8 L87.5,173.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 115, 255)\" points=\"493.9,158.6 472.5,158.6 472.5,143.5 493.9,143.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,158.6 L493.9,143.5 L472.5,143.5 L472.5,158.6 L493.9,158.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 196, 255)\" points=\"472.5,158.6 451.1,158.6 451.1,143.5 472.5,143.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M472.5,158.6 L472.5,143.5 L451.1,143.5 L451.1,158.6 L472.5,158.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 6, 255, 249)\" points=\"451.1,158.6 429.7,158.6 429.7,143.5 451.1,143.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M451.1,158.6 L451.1,143.5 L429.7,143.5 L429.7,158.6 L451.1,158.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 55, 255, 200)\" points=\"429.7,158.6 408.3,158.6 408.3,143.5 429.7,143.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M429.7,158.6 L429.7,143.5 L408.3,143.5 L408.3,158.6 L429.7,158.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(103, 255, 152)\" points=\"408.3,158.6 386.9,158.6 386.9,143.5 408.3,143.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M408.3,158.6 L408.3,143.5 L386.9,143.5 L386.9,158.6 L408.3,158.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"386.9,158.6 365.5,158.6 365.5,143.5 386.9,143.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,158.6 L386.9,143.5 L365.5,143.5 L365.5,158.6 L386.9,158.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"365.5,158.6 344.1,158.6 344.1,143.5 365.5,143.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M365.5,158.6 L365.5,143.5 L344.1,143.5 L344.1,158.6 L365.5,158.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"344.1,158.6 322.7,158.6 322.7,143.5 344.1,143.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M344.1,158.6 L344.1,143.5 L322.7,143.5 L322.7,158.6 L344.1,158.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"322.7,158.6 301.3,158.6 301.3,143.5 322.7,143.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M322.7,158.6 L322.7,143.5 L301.3,143.5 L301.3,158.6 L322.7,158.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"301.3,158.6 280.0,158.6 280.0,143.5 301.3,143.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M301.3,158.6 L301.3,143.5 L280.0,143.5 L280.0,158.6 L301.3,158.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"280.0,158.6 258.7,158.6 258.7,143.5 280.0,143.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,158.6 L280.0,143.5 L258.7,143.5 L258.7,158.6 L280.0,158.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"258.7,158.6 237.3,158.6 237.3,143.5 258.7,143.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M258.7,158.6 L258.7,143.5 L237.3,143.5 L237.3,158.6 L258.7,158.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"237.3,158.6 215.9,158.6 215.9,143.5 237.3,143.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M237.3,158.6 L237.3,143.5 L215.9,143.5 L215.9,158.6 L237.3,158.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"215.9,158.6 194.5,158.6 194.5,143.5 215.9,143.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M215.9,158.6 L215.9,143.5 L194.5,143.5 L194.5,158.6 L215.9,158.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(168, 255, 87)\" points=\"194.5,158.6 173.1,158.6 173.1,143.5 194.5,143.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M194.5,158.6 L194.5,143.5 L173.1,143.5 L173.1,158.6 L194.5,158.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(200, 255, 55)\" points=\"173.1,158.6 151.7,158.6 151.7,143.5 173.1,143.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,158.6 L173.1,143.5 L151.7,143.5 L151.7,158.6 L173.1,158.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(249, 255, 6)\" points=\"151.7,158.6 130.3,158.6 130.3,143.5 151.7,143.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M151.7,158.6 L151.7,143.5 L130.3,143.5 L130.3,158.6 L151.7,158.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 196, 0)\" points=\"130.3,158.6 108.9,158.6 108.9,143.5 130.3,143.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M130.3,158.6 L130.3,143.5 L108.9,143.5 L108.9,158.6 L130.3,158.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 115, 0)\" points=\"108.9,158.6 87.5,158.6 87.5,143.5 108.9,143.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M108.9,158.6 L108.9,143.5 L87.5,143.5 L87.5,158.6 L108.9,158.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 18, 0)\" points=\"87.5,158.6 66.1,158.6 66.1,143.5 87.5,143.5 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M87.5,158.6 L87.5,143.5 L66.1,143.5 L66.1,158.6 L87.5,158.6 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 67, 255)\" points=\"493.9,143.5 472.5,143.5 472.5,128.4 493.9,128.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,143.5 L493.9,128.4 L472.5,128.4 L472.5,143.5 L493.9,143.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 180, 255)\" points=\"472.5,143.5 451.1,143.5 451.1,128.4 472.5,128.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M472.5,143.5 L472.5,128.4 L451.1,128.4 L451.1,143.5 L472.5,143.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 6, 255, 249)\" points=\"451.1,143.5 429.7,143.5 429.7,128.4 451.1,128.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M451.1,143.5 L451.1,128.4 L429.7,128.4 L429.7,143.5 L451.1,143.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 55, 255, 200)\" points=\"429.7,143.5 408.3,143.5 408.3,128.4 429.7,128.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M429.7,143.5 L429.7,128.4 L408.3,128.4 L408.3,143.5 L429.7,143.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(103, 255, 152)\" points=\"408.3,143.5 386.9,143.5 386.9,128.4 408.3,128.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M408.3,143.5 L408.3,128.4 L386.9,128.4 L386.9,143.5 L408.3,143.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"386.9,143.5 365.5,143.5 365.5,128.4 386.9,128.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,143.5 L386.9,128.4 L365.5,128.4 L365.5,143.5 L386.9,143.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"365.5,143.5 344.1,143.5 344.1,128.4 365.5,128.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M365.5,143.5 L365.5,128.4 L344.1,128.4 L344.1,143.5 L365.5,143.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"344.1,143.5 322.7,143.5 322.7,128.4 344.1,128.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M344.1,143.5 L344.1,128.4 L322.7,128.4 L322.7,143.5 L344.1,143.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"322.7,143.5 301.3,143.5 301.3,128.4 322.7,128.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M322.7,143.5 L322.7,128.4 L301.3,128.4 L301.3,143.5 L322.7,143.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"301.3,143.5 280.0,143.5 280.0,128.4 301.3,128.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M301.3,143.5 L301.3,128.4 L280.0,128.4 L280.0,143.5 L301.3,143.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"280.0,143.5 258.7,143.5 258.7,128.4 280.0,128.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,143.5 L280.0,128.4 L258.7,128.4 L258.7,143.5 L280.0,143.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"258.7,143.5 237.3,143.5 237.3,128.4 258.7,128.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M258.7,143.5 L258.7,128.4 L237.3,128.4 L237.3,143.5 L258.7,143.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"237.3,143.5 215.9,143.5 215.9,128.4 237.3,128.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M237.3,143.5 L237.3,128.4 L215.9,128.4 L215.9,143.5 L237.3,143.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"215.9,143.5 194.5,143.5 194.5,128.4 215.9,128.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M215.9,143.5 L215.9,128.4 L194.5,128.4 L194.5,143.5 L215.9,143.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(152, 255, 103)\" points=\"194.5,143.5 173.1,143.5 173.1,128.4 194.5,128.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M194.5,143.5 L194.5,128.4 L173.1,128.4 L173.1,143.5 L194.5,143.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(200, 255, 55)\" points=\"173.1,143.5 151.7,143.5 151.7,128.4 173.1,128.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,143.5 L173.1,128.4 L151.7,128.4 L151.7,143.5 L173.1,143.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(249, 255, 6)\" points=\"151.7,143.5 130.3,143.5 130.3,128.4 151.7,128.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M151.7,143.5 L151.7,128.4 L130.3,128.4 L130.3,143.5 L151.7,143.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 180, 0)\" points=\"130.3,143.5 108.9,143.5 108.9,128.4 130.3,128.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M130.3,143.5 L130.3,128.4 L108.9,128.4 L108.9,143.5 L130.3,143.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 67, 0)\" points=\"108.9,143.5 87.5,143.5 87.5,128.4 108.9,128.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M108.9,143.5 L108.9,128.4 L87.5,128.4 L87.5,143.5 L108.9,143.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(176, 0, 0)\" points=\"87.5,143.5 66.1,143.5 66.1,128.4 87.5,128.4 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M87.5,143.5 L87.5,128.4 L66.1,128.4 L66.1,143.5 L87.5,143.5 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 34, 255)\" points=\"493.9,128.4 472.5,128.4 472.5,113.2 493.9,113.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,128.4 L493.9,113.2 L472.5,113.2 L472.5,128.4 L493.9,128.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 164, 255)\" points=\"472.5,128.4 451.1,128.4 451.1,113.2 472.5,113.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M472.5,128.4 L472.5,113.2 L451.1,113.2 L451.1,128.4 L472.5,128.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 6, 255, 249)\" points=\"451.1,128.4 429.7,128.4 429.7,113.2 451.1,113.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M451.1,128.4 L451.1,113.2 L429.7,113.2 L429.7,128.4 L451.1,128.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 87, 255, 168)\" points=\"429.7,128.4 408.3,128.4 408.3,113.2 429.7,113.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M429.7,128.4 L429.7,113.2 L408.3,113.2 L408.3,128.4 L429.7,128.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"408.3,128.4 386.9,128.4 386.9,113.2 408.3,113.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M408.3,128.4 L408.3,113.2 L386.9,113.2 L386.9,128.4 L408.3,128.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(152, 255, 103)\" points=\"386.9,128.4 365.5,128.4 365.5,113.2 386.9,113.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,128.4 L386.9,113.2 L365.5,113.2 L365.5,128.4 L386.9,128.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(168, 255, 87)\" points=\"365.5,128.4 344.1,128.4 344.1,113.2 365.5,113.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M365.5,128.4 L365.5,113.2 L344.1,113.2 L344.1,128.4 L365.5,128.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(152, 255, 103)\" points=\"344.1,128.4 322.7,128.4 322.7,113.2 344.1,113.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M344.1,128.4 L344.1,113.2 L322.7,113.2 L322.7,128.4 L344.1,128.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(152, 255, 103)\" points=\"322.7,128.4 301.3,128.4 301.3,113.2 322.7,113.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M322.7,128.4 L322.7,113.2 L301.3,113.2 L301.3,128.4 L322.7,128.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"301.3,128.4 280.0,128.4 280.0,113.2 301.3,113.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M301.3,128.4 L301.3,113.2 L280.0,113.2 L280.0,128.4 L301.3,128.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"280.0,128.4 258.7,128.4 258.7,113.2 280.0,113.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,128.4 L280.0,113.2 L258.7,113.2 L258.7,128.4 L280.0,128.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(103, 255, 152)\" points=\"258.7,128.4 237.3,128.4 237.3,113.2 258.7,113.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M258.7,128.4 L258.7,113.2 L237.3,113.2 L237.3,128.4 L258.7,128.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(103, 255, 152)\" points=\"237.3,128.4 215.9,128.4 215.9,113.2 237.3,113.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M237.3,128.4 L237.3,113.2 L215.9,113.2 L215.9,128.4 L237.3,128.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(103, 255, 152)\" points=\"215.9,128.4 194.5,128.4 194.5,113.2 215.9,113.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M215.9,128.4 L215.9,113.2 L194.5,113.2 L194.5,128.4 L215.9,128.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"194.5,128.4 173.1,128.4 173.1,113.2 194.5,113.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M194.5,128.4 L194.5,113.2 L173.1,113.2 L173.1,128.4 L194.5,128.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(168, 255, 87)\" points=\"173.1,128.4 151.7,128.4 151.7,113.2 173.1,113.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,128.4 L173.1,113.2 L151.7,113.2 L151.7,128.4 L173.1,128.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(249, 255, 6)\" points=\"151.7,128.4 130.3,128.4 130.3,113.2 151.7,113.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M151.7,128.4 L151.7,113.2 L130.3,113.2 L130.3,128.4 L151.7,128.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 164, 0)\" points=\"130.3,128.4 108.9,128.4 108.9,113.2 130.3,113.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M130.3,128.4 L130.3,113.2 L108.9,113.2 L108.9,128.4 L130.3,128.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 34, 0)\" points=\"108.9,128.4 87.5,128.4 87.5,113.2 108.9,113.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M108.9,128.4 L108.9,113.2 L87.5,113.2 L87.5,128.4 L108.9,128.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(128, 0, 0)\" points=\"87.5,128.4 66.1,128.4 66.1,113.2 87.5,113.2 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M87.5,128.4 L87.5,113.2 L66.1,113.2 L66.1,128.4 L87.5,128.4 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 51, 255)\" points=\"493.9,113.2 472.5,113.2 472.5,98.1 493.9,98.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,113.2 L493.9,98.1 L472.5,98.1 L472.5,113.2 L493.9,113.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 196, 255)\" points=\"472.5,113.2 451.1,113.2 451.1,98.1 472.5,98.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M472.5,113.2 L472.5,98.1 L451.1,98.1 L451.1,113.2 L472.5,113.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 55, 255, 200)\" points=\"451.1,113.2 429.7,113.2 429.7,98.1 451.1,98.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M451.1,113.2 L451.1,98.1 L429.7,98.1 L429.7,113.2 L451.1,113.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"429.7,113.2 408.3,113.2 408.3,98.1 429.7,98.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M429.7,113.2 L429.7,98.1 L408.3,98.1 L408.3,113.2 L429.7,113.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(168, 255, 87)\" points=\"408.3,113.2 386.9,113.2 386.9,98.1 408.3,98.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M408.3,113.2 L408.3,98.1 L386.9,98.1 L386.9,113.2 L408.3,113.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(200, 255, 55)\" points=\"386.9,113.2 365.5,113.2 365.5,98.1 386.9,98.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,113.2 L386.9,98.1 L365.5,98.1 L365.5,113.2 L386.9,113.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(200, 255, 55)\" points=\"365.5,113.2 344.1,113.2 344.1,98.1 365.5,98.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M365.5,113.2 L365.5,98.1 L344.1,98.1 L344.1,113.2 L365.5,113.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(184, 255, 71)\" points=\"344.1,113.2 322.7,113.2 322.7,98.1 344.1,98.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M344.1,113.2 L344.1,98.1 L322.7,98.1 L322.7,113.2 L344.1,113.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(152, 255, 103)\" points=\"322.7,113.2 301.3,113.2 301.3,98.1 322.7,98.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M322.7,113.2 L322.7,98.1 L301.3,98.1 L301.3,113.2 L322.7,113.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"301.3,113.2 280.0,113.2 280.0,98.1 301.3,98.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M301.3,113.2 L301.3,98.1 L280.0,98.1 L280.0,113.2 L301.3,113.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(103, 255, 152)\" points=\"280.0,113.2 258.7,113.2 258.7,98.1 280.0,98.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,113.2 L280.0,98.1 L258.7,98.1 L258.7,113.2 L280.0,113.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 71, 255, 184)\" points=\"258.7,113.2 237.3,113.2 237.3,98.1 258.7,98.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M258.7,113.2 L258.7,98.1 L237.3,98.1 L237.3,113.2 L258.7,113.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 55, 255, 200)\" points=\"237.3,113.2 215.9,113.2 215.9,98.1 237.3,98.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M237.3,113.2 L237.3,98.1 L215.9,98.1 L215.9,113.2 L237.3,113.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 55, 255, 200)\" points=\"215.9,113.2 194.5,113.2 194.5,98.1 215.9,98.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M215.9,113.2 L215.9,98.1 L194.5,98.1 L194.5,113.2 L215.9,113.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 87, 255, 168)\" points=\"194.5,113.2 173.1,113.2 173.1,98.1 194.5,98.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M194.5,113.2 L194.5,98.1 L173.1,98.1 L173.1,113.2 L194.5,113.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"173.1,113.2 151.7,113.2 151.7,98.1 173.1,98.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,113.2 L173.1,98.1 L151.7,98.1 L151.7,113.2 L173.1,113.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(200, 255, 55)\" points=\"151.7,113.2 130.3,113.2 130.3,98.1 151.7,98.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M151.7,113.2 L151.7,98.1 L130.3,98.1 L130.3,113.2 L151.7,113.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 196, 0)\" points=\"130.3,113.2 108.9,113.2 108.9,98.1 130.3,98.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M130.3,113.2 L130.3,98.1 L108.9,98.1 L108.9,113.2 L130.3,113.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 51, 0)\" points=\"108.9,113.2 87.5,113.2 87.5,98.1 108.9,98.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M108.9,113.2 L108.9,98.1 L87.5,98.1 L87.5,113.2 L108.9,113.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(128, 0, 0)\" points=\"87.5,113.2 66.1,113.2 66.1,98.1 87.5,98.1 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M87.5,113.2 L87.5,98.1 L66.1,98.1 L66.1,113.2 L87.5,113.2 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 115, 255)\" points=\"493.9,98.1 472.5,98.1 472.5,83.0 493.9,83.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,98.1 L493.9,83.0 L472.5,83.0 L472.5,98.1 L493.9,98.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 22, 255, 233)\" points=\"472.5,98.1 451.1,98.1 451.1,83.0 472.5,83.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M472.5,98.1 L472.5,83.0 L451.1,83.0 L451.1,98.1 L472.5,98.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"451.1,98.1 429.7,98.1 429.7,83.0 451.1,83.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M451.1,98.1 L451.1,83.0 L429.7,83.0 L429.7,98.1 L451.1,98.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(200, 255, 55)\" points=\"429.7,98.1 408.3,98.1 408.3,83.0 429.7,83.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M429.7,98.1 L429.7,83.0 L408.3,83.0 L408.3,98.1 L429.7,98.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(249, 255, 6)\" points=\"408.3,98.1 386.9,98.1 386.9,83.0 408.3,83.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M408.3,98.1 L408.3,83.0 L386.9,83.0 L386.9,98.1 L408.3,98.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(249, 255, 6)\" points=\"386.9,98.1 365.5,98.1 365.5,83.0 386.9,83.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,98.1 L386.9,83.0 L365.5,83.0 L365.5,98.1 L386.9,98.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(249, 255, 6)\" points=\"365.5,98.1 344.1,98.1 344.1,83.0 365.5,83.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M365.5,98.1 L365.5,83.0 L344.1,83.0 L344.1,98.1 L365.5,98.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(217, 255, 38)\" points=\"344.1,98.1 322.7,98.1 322.7,83.0 344.1,83.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M344.1,98.1 L344.1,83.0 L322.7,83.0 L322.7,98.1 L344.1,98.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(168, 255, 87)\" points=\"322.7,98.1 301.3,98.1 301.3,83.0 322.7,83.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M322.7,98.1 L322.7,83.0 L301.3,83.0 L301.3,98.1 L322.7,98.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"301.3,98.1 280.0,98.1 280.0,83.0 301.3,83.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M301.3,98.1 L301.3,83.0 L280.0,83.0 L280.0,98.1 L301.3,98.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 87, 255, 168)\" points=\"280.0,98.1 258.7,98.1 258.7,83.0 280.0,83.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,98.1 L280.0,83.0 L258.7,83.0 L258.7,98.1 L280.0,98.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 38, 255, 217)\" points=\"258.7,98.1 237.3,98.1 237.3,83.0 258.7,83.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M258.7,98.1 L258.7,83.0 L237.3,83.0 L237.3,98.1 L258.7,98.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 6, 255, 249)\" points=\"237.3,98.1 215.9,98.1 215.9,83.0 237.3,83.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M237.3,98.1 L237.3,83.0 L215.9,83.0 L215.9,98.1 L237.3,98.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 6, 255, 249)\" points=\"215.9,98.1 194.5,98.1 194.5,83.0 215.9,83.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M215.9,98.1 L215.9,83.0 L194.5,83.0 L194.5,98.1 L215.9,98.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 6, 255, 249)\" points=\"194.5,98.1 173.1,98.1 173.1,83.0 194.5,83.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M194.5,98.1 L194.5,83.0 L173.1,83.0 L173.1,98.1 L194.5,98.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 55, 255, 200)\" points=\"173.1,98.1 151.7,98.1 151.7,83.0 173.1,83.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,98.1 L173.1,83.0 L151.7,83.0 L151.7,98.1 L173.1,98.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"151.7,98.1 130.3,98.1 130.3,83.0 151.7,83.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M151.7,98.1 L151.7,83.0 L130.3,83.0 L130.3,98.1 L151.7,98.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(249, 255, 6)\" points=\"130.3,98.1 108.9,98.1 108.9,83.0 130.3,83.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M130.3,98.1 L130.3,83.0 L108.9,83.0 L108.9,98.1 L130.3,98.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 115, 0)\" points=\"108.9,98.1 87.5,98.1 87.5,83.0 108.9,83.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M108.9,98.1 L108.9,83.0 L87.5,83.0 L87.5,98.1 L108.9,98.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(160, 0, 0)\" points=\"87.5,98.1 66.1,98.1 66.1,83.0 87.5,83.0 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M87.5,98.1 L87.5,83.0 L66.1,83.0 L66.1,98.1 L87.5,98.1 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 212, 255)\" points=\"493.9,83.0 472.5,83.0 472.5,67.8 493.9,67.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,83.0 L493.9,67.8 L472.5,67.8 L472.5,83.0 L493.9,83.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"472.5,83.0 451.1,83.0 451.1,67.8 472.5,67.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M472.5,83.0 L472.5,67.8 L451.1,67.8 L451.1,83.0 L472.5,83.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(249, 255, 6)\" points=\"451.1,83.0 429.7,83.0 429.7,67.8 451.1,67.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M451.1,83.0 L451.1,67.8 L429.7,67.8 L429.7,83.0 L451.1,83.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 196, 0)\" points=\"429.7,83.0 408.3,83.0 408.3,67.8 429.7,67.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M429.7,83.0 L429.7,67.8 L408.3,67.8 L408.3,83.0 L429.7,83.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 164, 0)\" points=\"408.3,83.0 386.9,83.0 386.9,67.8 408.3,67.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M408.3,83.0 L408.3,67.8 L386.9,67.8 L386.9,83.0 L408.3,83.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 180, 0)\" points=\"386.9,83.0 365.5,83.0 365.5,67.8 386.9,67.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,83.0 L386.9,67.8 L365.5,67.8 L365.5,83.0 L386.9,83.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 196, 0)\" points=\"365.5,83.0 344.1,83.0 344.1,67.8 365.5,67.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M365.5,83.0 L365.5,67.8 L344.1,67.8 L344.1,83.0 L365.5,83.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 245, 0)\" points=\"344.1,83.0 322.7,83.0 322.7,67.8 344.1,67.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M344.1,83.0 L344.1,67.8 L322.7,67.8 L322.7,83.0 L344.1,83.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(200, 255, 55)\" points=\"322.7,83.0 301.3,83.0 301.3,67.8 322.7,67.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M322.7,83.0 L322.7,67.8 L301.3,67.8 L301.3,83.0 L322.7,83.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"301.3,83.0 280.0,83.0 280.0,67.8 301.3,67.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M301.3,83.0 L301.3,67.8 L280.0,67.8 L280.0,83.0 L301.3,83.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 55, 255, 200)\" points=\"280.0,83.0 258.7,83.0 258.7,67.8 280.0,67.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,83.0 L280.0,67.8 L258.7,67.8 L258.7,83.0 L280.0,83.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 6, 255, 249)\" points=\"258.7,83.0 237.3,83.0 237.3,67.8 258.7,67.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M258.7,83.0 L258.7,67.8 L237.3,67.8 L237.3,83.0 L258.7,83.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 212, 255)\" points=\"237.3,83.0 215.9,83.0 215.9,67.8 237.3,67.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M237.3,83.0 L237.3,67.8 L215.9,67.8 L215.9,83.0 L237.3,83.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 180, 255)\" points=\"215.9,83.0 194.5,83.0 194.5,67.8 215.9,67.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M215.9,83.0 L215.9,67.8 L194.5,67.8 L194.5,83.0 L215.9,83.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 164, 255)\" points=\"194.5,83.0 173.1,83.0 173.1,67.8 194.5,67.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M194.5,83.0 L194.5,67.8 L173.1,67.8 L173.1,83.0 L194.5,83.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 196, 255)\" points=\"173.1,83.0 151.7,83.0 151.7,67.8 173.1,67.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,83.0 L173.1,67.8 L151.7,67.8 L151.7,83.0 L173.1,83.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 6, 255, 249)\" points=\"151.7,83.0 130.3,83.0 130.3,67.8 151.7,67.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M151.7,83.0 L151.7,67.8 L130.3,67.8 L130.3,83.0 L151.7,83.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"130.3,83.0 108.9,83.0 108.9,67.8 130.3,67.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M130.3,83.0 L130.3,67.8 L108.9,67.8 L108.9,83.0 L130.3,83.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 212, 0)\" points=\"108.9,83.0 87.5,83.0 87.5,67.8 108.9,67.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M108.9,83.0 L108.9,67.8 L87.5,67.8 L87.5,83.0 L108.9,83.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 2, 0)\" points=\"87.5,83.0 66.1,83.0 66.1,67.8 87.5,67.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M87.5,83.0 L87.5,67.8 L66.1,67.8 L66.1,83.0 L87.5,83.0 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"493.9,67.8 472.5,67.8 472.5,52.7 493.9,52.7 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,67.8 L493.9,52.7 L472.5,52.7 L472.5,67.8 L493.9,67.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 212, 0)\" points=\"472.5,67.8 451.1,67.8 451.1,52.7 472.5,52.7 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M472.5,67.8 L472.5,52.7 L451.1,52.7 L451.1,67.8 L472.5,67.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 115, 0)\" points=\"451.1,67.8 429.7,67.8 429.7,52.7 451.1,52.7 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M451.1,67.8 L451.1,52.7 L429.7,52.7 L429.7,67.8 L451.1,67.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 51, 0)\" points=\"429.7,67.8 408.3,67.8 408.3,52.7 429.7,52.7 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M429.7,67.8 L429.7,52.7 L408.3,52.7 L408.3,67.8 L429.7,67.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 34, 0)\" points=\"408.3,67.8 386.9,67.8 386.9,52.7 408.3,52.7 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M408.3,67.8 L408.3,52.7 L386.9,52.7 L386.9,67.8 L408.3,67.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 67, 0)\" points=\"386.9,67.8 365.5,67.8 365.5,52.7 386.9,52.7 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,67.8 L386.9,52.7 L365.5,52.7 L365.5,67.8 L386.9,67.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 115, 0)\" points=\"365.5,67.8 344.1,67.8 344.1,52.7 365.5,52.7 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M365.5,67.8 L365.5,52.7 L344.1,52.7 L344.1,67.8 L365.5,67.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 196, 0)\" points=\"344.1,67.8 322.7,67.8 322.7,52.7 344.1,52.7 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M344.1,67.8 L344.1,52.7 L322.7,52.7 L322.7,67.8 L344.1,67.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(233, 255, 22)\" points=\"322.7,67.8 301.3,67.8 301.3,52.7 322.7,52.7 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M322.7,67.8 L322.7,52.7 L301.3,52.7 L301.3,67.8 L322.7,67.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(136, 255, 119)\" points=\"301.3,67.8 280.0,67.8 280.0,52.7 301.3,52.7 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M301.3,67.8 L301.3,52.7 L280.0,52.7 L280.0,67.8 L301.3,67.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 38, 255, 217)\" points=\"280.0,67.8 258.7,67.8 258.7,52.7 280.0,52.7 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,67.8 L280.0,52.7 L258.7,52.7 L258.7,67.8 L280.0,67.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 196, 255)\" points=\"258.7,67.8 237.3,67.8 237.3,52.7 258.7,52.7 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M258.7,67.8 L258.7,52.7 L237.3,52.7 L237.3,67.8 L258.7,67.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 115, 255)\" points=\"237.3,67.8 215.9,67.8 215.9,52.7 237.3,52.7 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M237.3,67.8 L237.3,52.7 L215.9,52.7 L215.9,67.8 L237.3,67.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 67, 255)\" points=\"215.9,67.8 194.5,67.8 194.5,52.7 215.9,52.7 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M215.9,67.8 L215.9,52.7 L194.5,52.7 L194.5,67.8 L215.9,67.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 34, 255)\" points=\"194.5,67.8 173.1,67.8 173.1,52.7 194.5,52.7 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M194.5,67.8 L194.5,52.7 L173.1,52.7 L173.1,67.8 L194.5,67.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 51, 255)\" points=\"173.1,67.8 151.7,67.8 151.7,52.7 173.1,52.7 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,67.8 L173.1,52.7 L151.7,52.7 L151.7,67.8 L173.1,67.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 115, 255)\" points=\"151.7,67.8 130.3,67.8 130.3,52.7 151.7,52.7 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M151.7,67.8 L151.7,52.7 L130.3,52.7 L130.3,67.8 L151.7,67.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb( 0, 212, 255)\" points=\"130.3,67.8 108.9,67.8 108.9,52.7 130.3,52.7 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M130.3,67.8 L130.3,52.7 L108.9,52.7 L108.9,67.8 L130.3,67.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(119, 255, 136)\" points=\"108.9,67.8 87.5,67.8 87.5,52.7 108.9,52.7 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M108.9,67.8 L108.9,52.7 L87.5,52.7 L87.5,67.8 L108.9,67.8 \" stroke=\"rgb( 0, 0, 0)\"/>\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 148, 0)\" points=\"87.5,67.8 66.1,67.8 66.1,52.7 87.5,52.7 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M87.5,67.8 L87.5,52.7 L66.1,52.7 L66.1,67.8 L87.5,67.8 \" stroke=\"rgb( 0, 0, 0)\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M66.1,355.3 L66.1,343.3 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M66.1,52.7 L66.1,64.7 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(66.1,376.1)\">\n",
"\t\t<text><tspan font-family=\"{}\">-1</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,355.3 L173.1,343.3 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M173.1,52.7 L173.1,64.7 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(173.1,376.1)\">\n",
"\t\t<text><tspan font-family=\"{}\">-0.5</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,355.3 L280.0,343.3 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M280.0,52.7 L280.0,64.7 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(280.0,376.1)\">\n",
"\t\t<text><tspan font-family=\"{}\">0</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,355.3 L386.9,343.3 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M386.9,52.7 L386.9,64.7 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(386.9,376.1)\">\n",
"\t\t<text><tspan font-family=\"{}\">0.5</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,355.3 L493.9,343.3 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,52.7 L493.9,64.7 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(493.9,376.1)\">\n",
"\t\t<text><tspan font-family=\"{}\">1</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M66.1,355.3 L78.1,355.3 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,355.3 L481.9,355.3 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(58.1,359.0)\">\n",
"\t\t<text><tspan font-family=\"{}\">-1</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M66.1,279.6 L78.1,279.6 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,279.6 L481.9,279.6 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(58.1,283.3)\">\n",
"\t\t<text><tspan font-family=\"{}\">-0.5</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M66.1,204.0 L78.1,204.0 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,204.0 L481.9,204.0 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(58.1,207.7)\">\n",
"\t\t<text><tspan font-family=\"{}\">0</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M66.1,128.4 L78.1,128.4 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,128.4 L481.9,128.4 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(58.1,132.1)\">\n",
"\t\t<text><tspan font-family=\"{}\">0.5</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M66.1,52.7 L78.1,52.7 \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M493.9,52.7 L481.9,52.7 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"10.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(58.1,56.4)\">\n",
"\t\t<text><tspan font-family=\"{}\">1</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"</g>\n",
"</svg>"
],
"text/plain": [
"<IPython.core.display.SVG object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"pcolor(X,Y,Z)"
]
},
{
"cell_type": "code",
"execution_count": 31,
"metadata": {
"collapsed": false,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [],
"source": [
"data=dlmread('US_energy_by_sector.csv',',',2,0);"
]
},
{
"cell_type": "code",
"execution_count": 38,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"image/svg+xml": [
"<svg height=\"420px\" viewBox=\"0 0 560 420\" width=\"560px\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
"\n",
"<title>Gnuplot</title>\n",
"<desc>Produced by GNUPLOT 5.0 patchlevel 3 </desc>\n",
"\n",
"<g id=\"gnuplot_canvas\">\n",
"\n",
"<rect fill=\"none\" height=\"420\" width=\"560\" x=\"0\" y=\"0\"/>\n",
"<defs>\n",
"\n",
"\t<circle id=\"gpDot\" r=\"0.5\" stroke-width=\"0.5\"/>\n",
"\t<path d=\"M-1,0 h2 M0,-1 v2\" id=\"gpPt0\" stroke=\"currentColor\" stroke-width=\"0.222\"/>\n",
"\t<path d=\"M-1,-1 L1,1 M1,-1 L-1,1\" id=\"gpPt1\" stroke=\"currentColor\" stroke-width=\"0.222\"/>\n",
"\t<path d=\"M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1\" id=\"gpPt2\" stroke=\"currentColor\" stroke-width=\"0.222\"/>\n",
"\t<rect height=\"2\" id=\"gpPt3\" stroke=\"currentColor\" stroke-width=\"0.222\" width=\"2\" x=\"-1\" y=\"-1\"/>\n",
"\t<rect fill=\"currentColor\" height=\"2\" id=\"gpPt4\" stroke=\"currentColor\" stroke-width=\"0.222\" width=\"2\" x=\"-1\" y=\"-1\"/>\n",
"\t<circle cx=\"0\" cy=\"0\" id=\"gpPt5\" r=\"1\" stroke=\"currentColor\" stroke-width=\"0.222\"/>\n",
"\t<use fill=\"currentColor\" id=\"gpPt6\" stroke=\"none\" xlink:href=\"#gpPt5\"/>\n",
"\t<path d=\"M0,-1.33 L-1.33,0.67 L1.33,0.67 z\" id=\"gpPt7\" stroke=\"currentColor\" stroke-width=\"0.222\"/>\n",
"\t<use fill=\"currentColor\" id=\"gpPt8\" stroke=\"none\" xlink:href=\"#gpPt7\"/>\n",
"\t<use id=\"gpPt9\" stroke=\"currentColor\" transform=\"rotate(180)\" xlink:href=\"#gpPt7\"/>\n",
"\t<use fill=\"currentColor\" id=\"gpPt10\" stroke=\"none\" xlink:href=\"#gpPt9\"/>\n",
"\t<use id=\"gpPt11\" stroke=\"currentColor\" transform=\"rotate(45)\" xlink:href=\"#gpPt3\"/>\n",
"\t<use fill=\"currentColor\" id=\"gpPt12\" stroke=\"none\" xlink:href=\"#gpPt11\"/>\n",
"\t<path d=\"M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z\" id=\"gpPt13\" stroke=\"currentColor\" stroke-width=\"0.222\"/>\n",
"\t<use fill=\"currentColor\" id=\"gpPt14\" stroke=\"none\" xlink:href=\"#gpPt13\"/>\n",
"\t<filter filterUnits=\"objectBoundingBox\" height=\"1\" id=\"textbox\" width=\"1\" x=\"0\" y=\"0\">\n",
"\t <feFlood flood-color=\"white\" flood-opacity=\"1\" result=\"bgnd\"/>\n",
"\t <feComposite in=\"SourceGraphic\" in2=\"bgnd\" operator=\"atop\"/>\n",
"\t</filter>\n",
"\t<filter filterUnits=\"objectBoundingBox\" height=\"1\" id=\"greybox\" width=\"1\" x=\"0\" y=\"0\">\n",
"\t <feFlood flood-color=\"lightgrey\" flood-opacity=\"1\" result=\"grey\"/>\n",
"\t <feComposite in=\"SourceGraphic\" in2=\"grey\" operator=\"atop\"/>\n",
"\t</filter>\n",
"</defs>\n",
"<g color=\"white\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<g shape-rendering=\"crispEdges\" stroke=\"none\">\n",
"\t\t<polygon fill=\"rgb(255, 255, 255)\" points=\"63.6,362.4 534.9,362.4 534.9,16.8 63.6,16.8 \"/>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M63.6,362.4 L76.1,362.4 M535.0,362.4 L522.5,362.4 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"16.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(55.3,368.4)\">\n",
"\t\t<text><tspan font-family=\"{}\">0</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M63.6,313.0 L76.1,313.0 M535.0,313.0 L522.5,313.0 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"16.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(55.3,319.0)\">\n",
"\t\t<text><tspan font-family=\"{}\">0.2</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M63.6,263.6 L76.1,263.6 M535.0,263.6 L522.5,263.6 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"16.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(55.3,269.6)\">\n",
"\t\t<text><tspan font-family=\"{}\">0.4</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M63.6,214.2 L76.1,214.2 M535.0,214.2 L522.5,214.2 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"16.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(55.3,220.2)\">\n",
"\t\t<text><tspan font-family=\"{}\">0.6</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M63.6,164.9 L76.1,164.9 M535.0,164.9 L522.5,164.9 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"16.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(55.3,170.9)\">\n",
"\t\t<text><tspan font-family=\"{}\">0.8</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M63.6,115.5 L76.1,115.5 M535.0,115.5 L522.5,115.5 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"16.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(55.3,121.5)\">\n",
"\t\t<text><tspan font-family=\"{}\">1</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M63.6,66.1 L76.1,66.1 M535.0,66.1 L522.5,66.1 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"16.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(55.3,72.1)\">\n",
"\t\t<text><tspan font-family=\"{}\">1.2</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M63.6,16.7 L76.1,16.7 M535.0,16.7 L522.5,16.7 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"16.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(55.3,22.7)\">\n",
"\t\t<text><tspan font-family=\"{}\">1.4</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M63.6,362.4 L63.6,349.9 M63.6,16.7 L63.6,29.2 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"16.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(63.6,386.4)\">\n",
"\t\t<text><tspan font-family=\"{}\">1940</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M122.5,362.4 L122.5,349.9 M122.5,16.7 L122.5,29.2 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"16.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(122.5,386.4)\">\n",
"\t\t<text><tspan font-family=\"{}\">1950</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M181.5,362.4 L181.5,349.9 M181.5,16.7 L181.5,29.2 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"16.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(181.5,386.4)\">\n",
"\t\t<text><tspan font-family=\"{}\">1960</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M240.4,362.4 L240.4,349.9 M240.4,16.7 L240.4,29.2 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"16.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(240.4,386.4)\">\n",
"\t\t<text><tspan font-family=\"{}\">1970</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M299.3,362.4 L299.3,349.9 M299.3,16.7 L299.3,29.2 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"16.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(299.3,386.4)\">\n",
"\t\t<text><tspan font-family=\"{}\">1980</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M358.2,362.4 L358.2,349.9 M358.2,16.7 L358.2,29.2 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"16.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(358.2,386.4)\">\n",
"\t\t<text><tspan font-family=\"{}\">1990</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M417.2,362.4 L417.2,349.9 M417.2,16.7 L417.2,29.2 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"16.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(417.2,386.4)\">\n",
"\t\t<text><tspan font-family=\"{}\">2000</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M476.1,362.4 L476.1,349.9 M476.1,16.7 L476.1,29.2 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"16.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(476.1,386.4)\">\n",
"\t\t<text><tspan font-family=\"{}\">2010</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M535.0,362.4 L535.0,349.9 M535.0,16.7 L535.0,29.2 \" stroke=\"black\"/>\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"16.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(535.0,386.4)\">\n",
"\t\t<text><tspan font-family=\"{}\">2020</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<path d=\"M63.6,16.7 L63.6,362.4 L535.0,362.4 L535.0,16.7 L63.6,16.7 Z \" stroke=\"black\"/></g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"16.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(19.1,189.6) rotate(-90)\">\n",
"\t\t<text><tspan font-family=\"{}\">trillions of btus</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"16.00\" stroke=\"none\" text-anchor=\"middle\" transform=\"translate(299.3,413.4)\">\n",
"\t\t<text><tspan font-family=\"{}\">year</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"1.00\">\n",
"\t<path d=\"M71.9,121.7 L71.9,25.7 L383.3,25.7 L383.3,121.7 L71.9,121.7 Z \" stroke=\"black\"/></g>\n",
"\t<g id=\"gnuplot_plot_1a\"><title>residential totals</title>\n",
"<g color=\"white\" fill=\"none\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"3.00\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"3.00\">\n",
"\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"16.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(383.3,55.7)\">\n",
"\t\t<text><tspan font-family=\"{}\">residential totals</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"3.00\">\n",
"\t<path d=\"M83.1,49.7 L136.9,49.7 M116.6,361.0 L122.5,359.5 L128.4,358.0 L134.3,356.3 L140.2,354.7 L146.1,353.0 L152.0,351.2 L157.9,349.3 L163.8,347.4 L169.7,345.4 L175.6,343.3 L181.5,341.1 L187.3,338.8 L193.2,336.4 L199.1,333.9 L205.0,331.4 L210.9,328.8 L216.8,326.0 L222.7,323.1 L228.6,320.1 L234.5,316.8 L240.4,313.4 L246.3,309.9 L252.2,306.3 L258.1,302.6 L263.9,299.0 L269.8,295.3 L275.7,291.5 L281.6,287.6 L287.5,283.6 L293.4,279.7 L299.3,275.9 L305.2,272.1 L311.1,268.2 L317.0,264.4 L322.9,260.5 L328.8,256.5 L334.7,252.6 L340.5,248.6 L346.4,244.3 L352.3,240.0 L358.2,235.8 L364.1,231.5 L370.0,227.2 L375.9,222.7 L381.8,218.2 L387.7,213.6 L393.6,208.8 L399.5,204.1 L405.4,199.5 L411.3,194.6 L417.2,189.6 L423.0,184.6 L428.9,179.5 L434.8,174.3 L440.7,169.1 L446.6,163.8 L452.5,158.7 L458.4,153.3 L464.3,148.0 L470.2,142.8 L476.1,137.4 L482.0,132.1 L487.9,127.2 L493.8,122.0 L499.6,116.7 L505.5,111.7 L511.4,106.6 \" stroke=\"rgb( 0, 0, 255)\"/></g>\n",
"\t</g>\n",
"\t<g id=\"gnuplot_plot_2a\"><title>transportation totals</title>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"3.00\">\n",
"\t<g fill=\"rgb(0,0,0)\" font-family=\"{}\" font-size=\"16.00\" stroke=\"none\" text-anchor=\"end\" transform=\"translate(383.3,103.7)\">\n",
"\t\t<text><tspan font-family=\"{}\">transportation totals</tspan></text>\n",
"\t</g>\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"3.00\">\n",
"\t<path d=\"M83.1,97.7 L136.9,97.7 M116.6,360.5 L122.5,358.4 L128.4,356.2 L134.3,354.0 L140.2,351.7 L146.1,349.6 L152.0,347.2 L157.9,344.8 L163.8,342.4 L169.7,339.9 L175.6,337.4 L181.5,334.8 L187.3,332.1 L193.2,329.4 L199.1,326.5 L205.0,323.5 L210.9,320.5 L216.8,317.3 L222.7,313.9 L228.6,310.2 L234.5,306.4 L240.4,302.4 L246.3,298.3 L252.2,293.9 L258.1,289.3 L263.9,284.9 L269.8,280.4 L275.7,275.7 L281.6,270.8 L287.5,265.7 L293.4,260.7 L299.3,255.8 L305.2,251.0 L311.1,246.3 L317.0,241.6 L322.9,236.7 L328.8,231.8 L334.7,226.6 L340.5,221.4 L346.4,215.9 L352.3,210.3 L358.2,204.8 L364.1,199.4 L370.0,193.8 L375.9,188.2 L381.8,182.5 L387.7,176.6 L393.6,170.6 L399.5,164.5 L405.4,158.3 L411.3,151.9 L417.2,145.3 L423.0,138.9 L428.9,132.2 L434.8,125.6 L440.7,118.8 L446.6,111.8 L452.5,104.7 L458.4,97.6 L464.3,90.9 L470.2,84.3 L476.1,77.6 L482.0,71.0 L487.9,64.6 L493.8,58.0 L499.6,51.4 L505.5,44.6 L511.4,37.7 \" stroke=\"rgb( 0, 128, 0)\"/></g>\n",
"\t</g>\n",
"<g color=\"white\" fill=\"none\" stroke=\"rgb( 0, 128, 0)\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"2.00\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"2.00\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"<g color=\"black\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"butt\" stroke-linejoin=\"miter\" stroke-width=\"0.50\">\n",
"</g>\n",
"</g>\n",
"</svg>"
],
"text/plain": [
"<IPython.core.display.SVG object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"setdefaults;\n",
"plot(data(:,1),cumsum(data(:,3))/1e6,data(:,1),cumsum(data(:,8))/1e6)\n",
"xlabel('year')\n",
"ylabel('trillions of btus')\n",
"legend('residential totals','transportation totals','Location','Northwest')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
"celltoolbar": "Slideshow",
"kernelspec": {
"display_name": "Octave",
"language": "octave",
"name": "octave"
},
"language_info": {
"file_extension": ".m",
"help_links": [
{
"text": "MetaKernel Magics",
"url": "https://github.com/calysto/metakernel/blob/master/metakernel/magics/README.md"
}
],
"mimetype": "text/x-octave",
"name": "octave",
"version": "0.19.14"
}
},
"nbformat": 4,
"nbformat_minor": 2
}