summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorKore Nordmann <github@kore-nordmann.de>2007-01-24 10:45:35 +0000
committerKore Nordmann <github@kore-nordmann.de>2007-01-24 10:45:35 +0000
commit937d04f2094624af45c0241bc75f3cbef4182c70 (patch)
tree86dd6071468f1b3e63a37e4a58228decb2e2464c /tests
parent16bdb8776708f401d085c29222a88a2ae7667ced (diff)
downloadzetacomponents-graph-937d04f2094624af45c0241bc75f3cbef4182c70.zip
zetacomponents-graph-937d04f2094624af45c0241bc75f3cbef4182c70.tar.gz
- Fixed issue #10056: Fixed drawing order for boxes with background and border
# SVG element order changed without visual difference in comparision images # Mind, that bug #9765 hast severe effect for big borders
Diffstat (limited to 'tests')
-rw-r--r--tests/background_test.php129
-rw-r--r--tests/data/compare/ezcGraphBackgroundTest_testRenderPieChartWithBackgroundBorder.svg2
-rw-r--r--tests/data/compare/ezcGraphBackgroundTest_testRenderPieChartWithBackgroundBorderAll.svg2
-rw-r--r--tests/data/compare/ezcGraphBackgroundTest_testRenderPieChartWithBackgroundBorderAndMargin.svg2
-rw-r--r--tests/data/compare/ezcGraphBackgroundTest_testRenderPieChartWithBackgroundBorderAndPadding.svg2
-rw-r--r--tests/data/compare/ezcGraphBackgroundTest_testRenderPieChartWithBigBackgroundBorder.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineBarChart.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineChart.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineChartWithAxisIntersection.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChart.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartToOutput.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithAxisLabels.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithAxisLabelsReversedAxis.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithDifferentAxisSpace.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithHighlightedData.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChart.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartNonFilledAxis.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartNonFilledGrid.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartWithAxisIntersection.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartWithoutDataBorder.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChart.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChartBigMaxFontSize.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChartSmallMaxFontSize.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRenderBarChart.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRenderBarChartSymbols.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartToOutput.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithAxisLabels.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithAxisLabelsReversedAxis.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithDifferentAxisSpace.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithHighlightedData.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRenderNegativeBarChartSymbols.svg2
-rw-r--r--tests/data/compare/ezcGraphRenderer3dTest_testRenderPimpedBarChart.svg2
-rw-r--r--tests/renderer_2d_test.php24
33 files changed, 177 insertions, 38 deletions
diff --git a/tests/background_test.php b/tests/background_test.php
index f16b5bb..c58b8ed 100644
--- a/tests/background_test.php
+++ b/tests/background_test.php
@@ -106,6 +106,135 @@ class ezcGraphBackgroundTest extends ezcGraphTestCase
$this->assertSame( 3, $pieChart->background->borderWidth );
}
+ public function testRenderPieChartWithBackgroundBorder()
+ {
+ $filename = $this->tempDir . __FUNCTION__ . '.svg';
+
+ $chart = new ezcGraphPieChart();
+ $chart->data['sample'] = new ezcGraphArrayDataSet( array(
+ 'Mozilla' => 4375,
+ 'IE' => 345,
+ 'Opera' => 1204,
+ 'wget' => 231,
+ 'Safari' => 987,
+ ) );
+
+ $chart->background->border = '#000000';
+ $chart->background->borderWidth = 1;
+
+ $chart->driver = new ezcGraphSvgDriver();
+ $chart->render( 500, 200, $filename );
+
+ $this->compare(
+ $filename,
+ $this->basePath . 'compare/' . __CLASS__ . '_' . __FUNCTION__ . '.svg'
+ );
+ }
+
+ public function testRenderPieChartWithBigBackgroundBorder()
+ {
+ $filename = $this->tempDir . __FUNCTION__ . '.svg';
+
+ $chart = new ezcGraphPieChart();
+ $chart->data['sample'] = new ezcGraphArrayDataSet( array(
+ 'Mozilla' => 4375,
+ 'IE' => 345,
+ 'Opera' => 1204,
+ 'wget' => 231,
+ 'Safari' => 987,
+ ) );
+
+ $chart->background->border = '#000000';
+ $chart->background->borderWidth = 5;
+
+ $chart->driver = new ezcGraphSvgDriver();
+ $chart->render( 500, 200, $filename );
+
+ $this->compare(
+ $filename,
+ $this->basePath . 'compare/' . __CLASS__ . '_' . __FUNCTION__ . '.svg'
+ );
+ }
+
+ public function testRenderPieChartWithBackgroundBorderAndPadding()
+ {
+ $filename = $this->tempDir . __FUNCTION__ . '.svg';
+
+ $chart = new ezcGraphPieChart();
+ $chart->data['sample'] = new ezcGraphArrayDataSet( array(
+ 'Mozilla' => 4375,
+ 'IE' => 345,
+ 'Opera' => 1204,
+ 'wget' => 231,
+ 'Safari' => 987,
+ ) );
+
+ $chart->background->border = '#000000';
+ $chart->background->borderWidth = 1;
+ $chart->background->padding = 2;
+
+ $chart->driver = new ezcGraphSvgDriver();
+ $chart->render( 500, 200, $filename );
+
+ $this->compare(
+ $filename,
+ $this->basePath . 'compare/' . __CLASS__ . '_' . __FUNCTION__ . '.svg'
+ );
+ }
+
+ public function testRenderPieChartWithBackgroundBorderAndMargin()
+ {
+ $filename = $this->tempDir . __FUNCTION__ . '.svg';
+
+ $chart = new ezcGraphPieChart();
+ $chart->data['sample'] = new ezcGraphArrayDataSet( array(
+ 'Mozilla' => 4375,
+ 'IE' => 345,
+ 'Opera' => 1204,
+ 'wget' => 231,
+ 'Safari' => 987,
+ ) );
+
+ $chart->background->border = '#000000';
+ $chart->background->borderWidth = 1;
+ $chart->background->margin = 3;
+
+ $chart->driver = new ezcGraphSvgDriver();
+ $chart->render( 500, 200, $filename );
+
+ $this->compare(
+ $filename,
+ $this->basePath . 'compare/' . __CLASS__ . '_' . __FUNCTION__ . '.svg'
+ );
+ }
+
+ public function testRenderPieChartWithBackgroundBorderAll()
+ {
+ $filename = $this->tempDir . __FUNCTION__ . '.svg';
+
+ $chart = new ezcGraphPieChart();
+ $chart->data['sample'] = new ezcGraphArrayDataSet( array(
+ 'Mozilla' => 4375,
+ 'IE' => 345,
+ 'Opera' => 1204,
+ 'wget' => 231,
+ 'Safari' => 987,
+ ) );
+
+ $chart->background->border = '#000000';
+ $chart->background->borderWidth = 2;
+ $chart->background->padding = 3;
+ $chart->background->margin = 3;
+
+ $chart->driver = new ezcGraphSvgDriver();
+ $chart->render( 500, 200, $filename );
+
+ $this->compare(
+ $filename,
+ $this->basePath . 'compare/' . __CLASS__ . '_' . __FUNCTION__ . '.svg'
+ );
+ }
+
public function testRenderPieChartWithBackgroundBottomRight()
{
$filename = $this->tempDir . __FUNCTION__ . '.svg';
diff --git a/tests/data/compare/ezcGraphBackgroundTest_testRenderPieChartWithBackgroundBorder.svg b/tests/data/compare/ezcGraphBackgroundTest_testRenderPieChartWithBackgroundBorder.svg
new file mode 100644
index 0000000..d00a9c1
--- /dev/null
+++ b/tests/data/compare/ezcGraphBackgroundTest_testRenderPieChartWithBackgroundBorder.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0"?>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 100.6000,1.0000 L 100.6000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 3.0000,17.0000 L 3.0000,3.0000 L 17.0000,3.0000 L 17.0000,17.0000 L 3.0000,17.0000 z " style="fill: #4e9a06; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_4"/><path d=" M 3.0000,35.0000 L 3.0000,21.0000 L 17.0000,21.0000 L 17.0000,35.0000 L 3.0000,35.0000 z " style="fill: #cc0000; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_6"/><path d=" M 3.0000,53.0000 L 3.0000,39.0000 L 17.0000,39.0000 L 17.0000,53.0000 L 3.0000,53.0000 z " style="fill: #edd400; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 3.0000,71.0000 L 3.0000,57.0000 L 17.0000,57.0000 L 17.0000,71.0000 L 3.0000,71.0000 z " style="fill: #75505b; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 3.0000,89.0000 L 3.0000,75.0000 L 17.0000,75.0000 L 17.0000,89.0000 L 3.0000,89.0000 z " style="fill: #f57900; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_12"/><path d="M 299.80,100.00 L 388.90,100.00 A 89.10,89.10 0 1,1 232.07,42.10 z" style="fill: #4e9a06; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_14"/><path d="M 299.80,100.00 L 388.90,100.00 A 89.10,89.10 0 1,1 232.07,42.10 z" style="fill: none; stroke: #274d03; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_15"/><path d="M 299.80,100.00 L 232.07,42.10 A 89.10,89.10 0 0,1 252.47,24.51 z" style="fill: #cc0000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_16"/><path d="M 299.80,100.00 L 232.07,42.10 A 89.10,89.10 0 0,1 252.47,24.51 z" style="fill: none; stroke: #660000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_17"/><path d="M 299.80,100.00 L 252.47,24.51 A 89.10,89.10 0 0,1 342.46,21.78 z" style="fill: #edd400; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_18"/><path d="M 299.80,100.00 L 252.47,24.51 A 89.10,89.10 0 0,1 342.46,21.78 z" style="fill: none; stroke: #776a00; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_19"/><path d="M 299.80,100.00 L 342.46,21.78 A 89.10,89.10 0 0,1 357.37,32.00 z" style="fill: #75505b; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_20"/><path d="M 299.80,100.00 L 342.46,21.78 A 89.10,89.10 0 0,1 357.37,32.00 z" style="fill: none; stroke: #3b282e; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_21"/><path d="M 299.80,100.00 L 357.37,32.00 A 89.10,89.10 0 0,1 388.90,100.00 z" style="fill: #f57900; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_22"/><path d="M 299.80,100.00 L 357.37,32.00 A 89.10,89.10 0 0,1 388.90,100.00 z" style="fill: none; stroke: #7b3d00; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_23"/><path d=" M 297.7971,34.0304 L 250.6469,10.9000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><ellipse cx="297.7971" cy="34.0304" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_25"/><ellipse cx="250.6469" cy="10.9" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_26"/><path d=" M 256.6930,50.0221 L 223.0999,30.7000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><ellipse cx="256.693" cy="50.0221" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_29"/><ellipse cx="223.0999" cy="30.7" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_30"/><path d=" M 276.9420,161.9154 L 250.6469,189.1000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><ellipse cx="276.942" cy="161.9154" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_33"/><ellipse cx="250.6469" cy="189.1" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_34"/><path d=" M 337.1138,45.5603 L 361.2707,18.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><ellipse cx="337.1138" cy="45.5603" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_37"/><ellipse cx="361.2707" cy="18" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_38"/><path d=" M 359.6768,72.2374 L 395.4493,58.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><ellipse cx="359.6768" cy="72.2374" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_41"/><ellipse cx="395.4493" cy="58" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_42"/><g id="ezcGraphTextBox_5"><path d=" M 17.5000,18.0000 L 17.5000,2.5000 L 70.9400,2.5000 L 70.9400,18.0000 L 17.5000,18.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_44"/><text id="ezcGraphTextBox_5_text" x="18" text-length="51.94px" y="14.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Mozilla</text></g><g id="ezcGraphTextBox_7"><path d=" M 17.5000,36.0000 L 17.5000,20.5000 L 33.8400,20.5000 L 33.8400,36.0000 L 17.5000,36.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_45"/><text id="ezcGraphTextBox_7_text" x="18" text-length="14.84px" y="32.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">IE</text></g><g id="ezcGraphTextBox_9"><path d=" M 17.5000,54.0000 L 17.5000,38.5000 L 56.1000,38.5000 L 56.1000,54.0000 L 17.5000,54.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_46"/><text id="ezcGraphTextBox_9_text" x="18" text-length="37.1px" y="50.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Opera</text></g><g id="ezcGraphTextBox_11"><path d=" M 17.5000,72.0000 L 17.5000,56.5000 L 48.6800,56.5000 L 48.6800,72.0000 L 17.5000,72.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_47"/><text id="ezcGraphTextBox_11_text" x="18" text-length="29.68px" y="68.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">wget</text></g><g id="ezcGraphTextBox_13"><path d=" M 17.5000,90.0000 L 17.5000,74.5000 L 63.5200,74.5000 L 63.5200,90.0000 L 17.5000,90.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_48"/><text id="ezcGraphTextBox_13_text" x="18" text-length="44.52px" y="86.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Safari</text></g><g id="ezcGraphTextBox_27"><path d=" M 155.5309,16.3000 L 155.5309,6.0000 L 245.6469,6.0000 L 245.6469,16.3000 L 155.5309,16.3000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_49"/><text id="ezcGraphTextBox_27_text" x="156.0309" text-length="88.616px" y="13.98" style="font-size: 8px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Opera: 1204 (16.9%)</text></g><g id="ezcGraphTextBox_31"><path d=" M 151.3039,36.1000 L 151.3039,25.8000 L 218.0999,25.8000 L 218.0999,36.1000 L 151.3039,36.1000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_50"/><text id="ezcGraphTextBox_31_text" x="151.8039" text-length="65.296px" y="33.78" style="font-size: 8px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">IE: 345 (4.8%)</text></g><g id="ezcGraphTextBox_35"><path d=" M 146.2029,194.5000 L 146.2029,184.2000 L 245.6469,184.2000 L 245.6469,194.5000 L 146.2029,194.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_51"/><text id="ezcGraphTextBox_35_text" x="146.7029" text-length="97.944px" y="192.18" style="font-size: 8px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Mozilla: 4375 (61.3%)</text></g><g id="ezcGraphTextBox_39"><path d=" M 366.7707,23.4000 L 366.7707,13.1000 L 442.8947,13.1000 L 442.8947,23.4000 L 366.7707,23.4000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_52"/><text id="ezcGraphTextBox_39_text" x="367.2707" text-length="74.624px" y="21.08" style="font-size: 8px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">wget: 231 (3.2%)</text></g><g id="ezcGraphTextBox_43"><path d=" M 400.9493,63.4000 L 400.9493,53.1000 L 491.0653,53.1000 L 491.0653,63.4000 L 400.9493,63.4000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_53"/><text id="ezcGraphTextBox_43_text" x="401.4493" text-length="88.616px" y="61.08" style="font-size: 8px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Safari: 987 (13.8%)</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphBackgroundTest_testRenderPieChartWithBackgroundBorderAll.svg b/tests/data/compare/ezcGraphBackgroundTest_testRenderPieChartWithBackgroundBorderAll.svg
new file mode 100644
index 0000000..afbdc28
--- /dev/null
+++ b/tests/data/compare/ezcGraphBackgroundTest_testRenderPieChartWithBackgroundBorderAll.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0"?>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 3.0000,197.0000 L 3.0000,3.0000 L 497.0000,3.0000 L 497.0000,197.0000 L 3.0000,197.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 3.0000,197.0000 L 3.0000,3.0000 L 497.0000,3.0000 L 497.0000,197.0000 L 3.0000,197.0000 z " style="fill: none; stroke: #000000; stroke-width: 2; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 8.0000,192.0000 L 8.0000,8.0000 L 104.8000,8.0000 L 104.8000,192.0000 L 8.0000,192.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 10.0000,24.0000 L 10.0000,10.0000 L 24.0000,10.0000 L 24.0000,24.0000 L 10.0000,24.0000 z " style="fill: #4e9a06; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_4"/><path d=" M 10.0000,42.0000 L 10.0000,28.0000 L 24.0000,28.0000 L 24.0000,42.0000 L 10.0000,42.0000 z " style="fill: #cc0000; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_6"/><path d=" M 10.0000,60.0000 L 10.0000,46.0000 L 24.0000,46.0000 L 24.0000,60.0000 L 10.0000,60.0000 z " style="fill: #edd400; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 10.0000,78.0000 L 10.0000,64.0000 L 24.0000,64.0000 L 24.0000,78.0000 L 10.0000,78.0000 z " style="fill: #75505b; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 10.0000,96.0000 L 10.0000,82.0000 L 24.0000,82.0000 L 24.0000,96.0000 L 10.0000,96.0000 z " style="fill: #f57900; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_12"/><path d="M 298.40,100.00 L 381.20,100.00 A 82.80,82.80 0 1,1 235.46,46.20 z" style="fill: #4e9a06; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_14"/><path d="M 298.40,100.00 L 381.20,100.00 A 82.80,82.80 0 1,1 235.46,46.20 z" style="fill: none; stroke: #274d03; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_15"/><path d="M 298.40,100.00 L 235.46,46.20 A 82.80,82.80 0 0,1 254.42,29.85 z" style="fill: #cc0000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_16"/><path d="M 298.40,100.00 L 235.46,46.20 A 82.80,82.80 0 0,1 254.42,29.85 z" style="fill: none; stroke: #660000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_17"/><path d="M 298.40,100.00 L 254.42,29.85 A 82.80,82.80 0 0,1 338.04,27.31 z" style="fill: #edd400; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_18"/><path d="M 298.40,100.00 L 254.42,29.85 A 82.80,82.80 0 0,1 338.04,27.31 z" style="fill: none; stroke: #776a00; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_19"/><path d="M 298.40,100.00 L 338.04,27.31 A 82.80,82.80 0 0,1 351.90,36.80 z" style="fill: #75505b; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_20"/><path d="M 298.40,100.00 L 338.04,27.31 A 82.80,82.80 0 0,1 351.90,36.80 z" style="fill: none; stroke: #3b282e; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_21"/><path d="M 298.40,100.00 L 351.90,36.80 A 82.80,82.80 0 0,1 381.20,100.00 z" style="fill: #f57900; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_22"/><path d="M 298.40,100.00 L 351.90,36.80 A 82.80,82.80 0 0,1 381.20,100.00 z" style="fill: none; stroke: #7b3d00; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_23"/><path d=" M 296.5387,38.6949 L 252.2981,17.2000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><ellipse cx="296.5387" cy="38.6949" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_25"/><ellipse cx="252.2981" cy="17.2" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_26"/><path d=" M 258.3410,53.5559 L 226.6989,35.6000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><ellipse cx="258.341" cy="53.5559" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_29"/><ellipse cx="226.6989" cy="35.6" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_30"/><path d=" M 277.1582,157.5375 L 252.2981,182.8000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><ellipse cx="277.1582" cy="157.5375" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_33"/><ellipse cx="252.2981" cy="182.8" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_34"/><path d=" M 333.0754,49.4096 L 356.2459,24.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><ellipse cx="333.0754" cy="49.4096" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_37"/><ellipse cx="356.2459" cy="24" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_38"/><path d=" M 354.0431,74.2004 L 387.7247,61.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><ellipse cx="354.0431" cy="74.2004" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_41"/><ellipse cx="387.7247" cy="61" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_42"/><g id="ezcGraphTextBox_5"><path d=" M 24.5000,25.0000 L 24.5000,9.5000 L 77.9400,9.5000 L 77.9400,25.0000 L 24.5000,25.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_44"/><text id="ezcGraphTextBox_5_text" x="25" text-length="51.94px" y="21.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Mozilla</text></g><g id="ezcGraphTextBox_7"><path d=" M 24.5000,43.0000 L 24.5000,27.5000 L 40.8400,27.5000 L 40.8400,43.0000 L 24.5000,43.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_45"/><text id="ezcGraphTextBox_7_text" x="25" text-length="14.84px" y="39.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">IE</text></g><g id="ezcGraphTextBox_9"><path d=" M 24.5000,61.0000 L 24.5000,45.5000 L 63.1000,45.5000 L 63.1000,61.0000 L 24.5000,61.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_46"/><text id="ezcGraphTextBox_9_text" x="25" text-length="37.1px" y="57.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Opera</text></g><g id="ezcGraphTextBox_11"><path d=" M 24.5000,79.0000 L 24.5000,63.5000 L 55.6800,63.5000 L 55.6800,79.0000 L 24.5000,79.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_47"/><text id="ezcGraphTextBox_11_text" x="25" text-length="29.68px" y="75.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">wget</text></g><g id="ezcGraphTextBox_13"><path d=" M 24.5000,97.0000 L 24.5000,81.5000 L 70.5200,81.5000 L 70.5200,97.0000 L 24.5000,97.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_48"/><text id="ezcGraphTextBox_13_text" x="25" text-length="44.52px" y="93.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Safari</text></g><g id="ezcGraphTextBox_27"><path d=" M 151.1401,22.9000 L 151.1401,12.0000 L 247.2981,12.0000 L 247.2981,22.9000 L 151.1401,22.9000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_49"/><text id="ezcGraphTextBox_27_text" x="151.6401" text-length="94.658px" y="20.49" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Opera: 1204 (16.9%)</text></g><g id="ezcGraphTextBox_31"><path d=" M 150.4509,41.3000 L 150.4509,30.4000 L 221.6989,30.4000 L 221.6989,41.3000 L 150.4509,41.3000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_50"/><text id="ezcGraphTextBox_31_text" x="150.9509" text-length="69.748px" y="38.89" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">IE: 345 (4.8%)</text></g><g id="ezcGraphTextBox_35"><path d=" M 141.1761,188.5000 L 141.1761,177.6000 L 247.2981,177.6000 L 247.2981,188.5000 L 141.1761,188.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_51"/><text id="ezcGraphTextBox_35_text" x="141.6761" text-length="104.622px" y="186.09" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Mozilla: 4375 (61.3%)</text></g><g id="ezcGraphTextBox_39"><path d=" M 361.7459,29.7000 L 361.7459,18.8000 L 442.9579,18.8000 L 442.9579,29.7000 L 361.7459,29.7000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_52"/><text id="ezcGraphTextBox_39_text" x="362.2459" text-length="79.712px" y="27.29" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">wget: 231 (3.2%)</text></g><g id="ezcGraphTextBox_43"><path d=" M 393.2247,66.7000 L 393.2247,55.8000 L 489.3827,55.8000 L 489.3827,66.7000 L 393.2247,66.7000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_53"/><text id="ezcGraphTextBox_43_text" x="393.7247" text-length="94.658px" y="64.29" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Safari: 987 (13.8%)</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphBackgroundTest_testRenderPieChartWithBackgroundBorderAndMargin.svg b/tests/data/compare/ezcGraphBackgroundTest_testRenderPieChartWithBackgroundBorderAndMargin.svg
new file mode 100644
index 0000000..020afe7
--- /dev/null
+++ b/tests/data/compare/ezcGraphBackgroundTest_testRenderPieChartWithBackgroundBorderAndMargin.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0"?>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 3.0000,197.0000 L 3.0000,3.0000 L 497.0000,3.0000 L 497.0000,197.0000 L 3.0000,197.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 3.0000,197.0000 L 3.0000,3.0000 L 497.0000,3.0000 L 497.0000,197.0000 L 3.0000,197.0000 z " style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 4.0000,196.0000 L 4.0000,4.0000 L 102.4000,4.0000 L 102.4000,196.0000 L 4.0000,196.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 6.0000,20.0000 L 6.0000,6.0000 L 20.0000,6.0000 L 20.0000,20.0000 L 6.0000,20.0000 z " style="fill: #4e9a06; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_4"/><path d=" M 6.0000,38.0000 L 6.0000,24.0000 L 20.0000,24.0000 L 20.0000,38.0000 L 6.0000,38.0000 z " style="fill: #cc0000; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_6"/><path d=" M 6.0000,56.0000 L 6.0000,42.0000 L 20.0000,42.0000 L 20.0000,56.0000 L 6.0000,56.0000 z " style="fill: #edd400; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 6.0000,74.0000 L 6.0000,60.0000 L 20.0000,60.0000 L 20.0000,74.0000 L 6.0000,74.0000 z " style="fill: #75505b; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 6.0000,92.0000 L 6.0000,78.0000 L 20.0000,78.0000 L 20.0000,92.0000 L 6.0000,92.0000 z " style="fill: #f57900; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_12"/><path d="M 299.20,100.00 L 385.60,100.00 A 86.40,86.40 0 1,1 233.53,43.86 z" style="fill: #4e9a06; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_14"/><path d="M 299.20,100.00 L 385.60,100.00 A 86.40,86.40 0 1,1 233.53,43.86 z" style="fill: none; stroke: #274d03; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_15"/><path d="M 299.20,100.00 L 233.53,43.86 A 86.40,86.40 0 0,1 253.31,26.80 z" style="fill: #cc0000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_16"/><path d="M 299.20,100.00 L 233.53,43.86 A 86.40,86.40 0 0,1 253.31,26.80 z" style="fill: none; stroke: #660000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_17"/><path d="M 299.20,100.00 L 253.31,26.80 A 86.40,86.40 0 0,1 340.57,24.15 z" style="fill: #edd400; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_18"/><path d="M 299.20,100.00 L 253.31,26.80 A 86.40,86.40 0 0,1 340.57,24.15 z" style="fill: none; stroke: #776a00; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_19"/><path d="M 299.20,100.00 L 340.57,24.15 A 86.40,86.40 0 0,1 355.02,34.06 z" style="fill: #75505b; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_20"/><path d="M 299.20,100.00 L 340.57,24.15 A 86.40,86.40 0 0,1 355.02,34.06 z" style="fill: none; stroke: #3b282e; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_21"/><path d="M 299.20,100.00 L 355.02,34.06 A 86.40,86.40 0 0,1 385.60,100.00 z" style="fill: #f57900; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_22"/><path d="M 299.20,100.00 L 355.02,34.06 A 86.40,86.40 0 0,1 385.60,100.00 z" style="fill: none; stroke: #7b3d00; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_23"/><path d=" M 297.2578,36.0295 L 251.3546,13.6000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><ellipse cx="297.2578" cy="36.0295" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_25"/><ellipse cx="251.3546" cy="13.6" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_26"/><path d=" M 257.3993,51.5366 L 224.6423,32.8000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><ellipse cx="257.3993" cy="51.5366" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_29"/><ellipse cx="224.6423" cy="32.8" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_30"/><path d=" M 277.0346,160.0391 L 251.3546,186.4000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><ellipse cx="277.0346" cy="160.0391" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_33"/><ellipse cx="251.3546" cy="186.4" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_34"/><path d=" M 335.3831,47.2100 L 358.2660,20.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><ellipse cx="335.3831" cy="47.21" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_37"/><ellipse cx="358.266" cy="20" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_38"/><path d=" M 357.2624,73.0786 L 392.0044,59.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><ellipse cx="357.2624" cy="73.0786" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_41"/><ellipse cx="392.0044" cy="59" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_42"/><g id="ezcGraphTextBox_5"><path d=" M 20.5000,21.0000 L 20.5000,5.5000 L 73.9400,5.5000 L 73.9400,21.0000 L 20.5000,21.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_44"/><text id="ezcGraphTextBox_5_text" x="21" text-length="51.94px" y="17.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Mozilla</text></g><g id="ezcGraphTextBox_7"><path d=" M 20.5000,39.0000 L 20.5000,23.5000 L 36.8400,23.5000 L 36.8400,39.0000 L 20.5000,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_45"/><text id="ezcGraphTextBox_7_text" x="21" text-length="14.84px" y="35.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">IE</text></g><g id="ezcGraphTextBox_9"><path d=" M 20.5000,57.0000 L 20.5000,41.5000 L 59.1000,41.5000 L 59.1000,57.0000 L 20.5000,57.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_46"/><text id="ezcGraphTextBox_9_text" x="21" text-length="37.1px" y="53.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Opera</text></g><g id="ezcGraphTextBox_11"><path d=" M 20.5000,75.0000 L 20.5000,59.5000 L 51.6800,59.5000 L 51.6800,75.0000 L 20.5000,75.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_47"/><text id="ezcGraphTextBox_11_text" x="21" text-length="29.68px" y="71.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">wget</text></g><g id="ezcGraphTextBox_13"><path d=" M 20.5000,93.0000 L 20.5000,77.5000 L 66.5200,77.5000 L 66.5200,93.0000 L 20.5000,93.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_48"/><text id="ezcGraphTextBox_13_text" x="21" text-length="44.52px" y="89.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Safari</text></g><g id="ezcGraphTextBox_27"><path d=" M 152.2106,19.2000 L 152.2106,8.5000 L 246.3546,8.5000 L 246.3546,19.2000 L 152.2106,19.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_49"/><text id="ezcGraphTextBox_27_text" x="152.7106" text-length="92.644px" y="16.82" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Opera: 1204 (16.9%)</text></g><g id="ezcGraphTextBox_31"><path d=" M 149.8783,38.4000 L 149.8783,27.7000 L 219.6423,27.7000 L 219.6423,38.4000 L 149.8783,38.4000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_50"/><text id="ezcGraphTextBox_31_text" x="150.3783" text-length="68.264px" y="36.02" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">IE: 345 (4.8%)</text></g><g id="ezcGraphTextBox_35"><path d=" M 142.4586,192.0000 L 142.4586,181.3000 L 246.3546,181.3000 L 246.3546,192.0000 L 142.4586,192.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_51"/><text id="ezcGraphTextBox_35_text" x="142.9586" text-length="102.396px" y="189.62" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Mozilla: 4375 (61.3%)</text></g><g id="ezcGraphTextBox_39"><path d=" M 363.7660,25.6000 L 363.7660,14.9000 L 443.2820,14.9000 L 443.2820,25.6000 L 363.7660,25.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_52"/><text id="ezcGraphTextBox_39_text" x="364.266" text-length="78.016px" y="23.22" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">wget: 231 (3.2%)</text></g><g id="ezcGraphTextBox_43"><path d=" M 397.5044,64.6000 L 397.5044,53.9000 L 491.6484,53.9000 L 491.6484,64.6000 L 397.5044,64.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_53"/><text id="ezcGraphTextBox_43_text" x="398.0044" text-length="92.644px" y="62.22" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Safari: 987 (13.8%)</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphBackgroundTest_testRenderPieChartWithBackgroundBorderAndPadding.svg b/tests/data/compare/ezcGraphBackgroundTest_testRenderPieChartWithBackgroundBorderAndPadding.svg
new file mode 100644
index 0000000..62ed5c7
--- /dev/null
+++ b/tests/data/compare/ezcGraphBackgroundTest_testRenderPieChartWithBackgroundBorderAndPadding.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0"?>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 3.0000,197.0000 L 3.0000,3.0000 L 101.8000,3.0000 L 101.8000,197.0000 L 3.0000,197.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 5.0000,19.0000 L 5.0000,5.0000 L 19.0000,5.0000 L 19.0000,19.0000 L 5.0000,19.0000 z " style="fill: #4e9a06; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_4"/><path d=" M 5.0000,37.0000 L 5.0000,23.0000 L 19.0000,23.0000 L 19.0000,37.0000 L 5.0000,37.0000 z " style="fill: #cc0000; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_6"/><path d=" M 5.0000,55.0000 L 5.0000,41.0000 L 19.0000,41.0000 L 19.0000,55.0000 L 5.0000,55.0000 z " style="fill: #edd400; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 5.0000,73.0000 L 5.0000,59.0000 L 19.0000,59.0000 L 19.0000,73.0000 L 5.0000,73.0000 z " style="fill: #75505b; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 5.0000,91.0000 L 5.0000,77.0000 L 19.0000,77.0000 L 19.0000,91.0000 L 5.0000,91.0000 z " style="fill: #f57900; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_12"/><path d="M 299.40,100.00 L 386.70,100.00 A 87.30,87.30 0 1,1 233.04,43.27 z" style="fill: #4e9a06; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_14"/><path d="M 299.40,100.00 L 386.70,100.00 A 87.30,87.30 0 1,1 233.04,43.27 z" style="fill: none; stroke: #274d03; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_15"/><path d="M 299.40,100.00 L 233.04,43.27 A 87.30,87.30 0 0,1 253.03,26.03 z" style="fill: #cc0000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_16"/><path d="M 299.40,100.00 L 233.04,43.27 A 87.30,87.30 0 0,1 253.03,26.03 z" style="fill: none; stroke: #660000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_17"/><path d="M 299.40,100.00 L 253.03,26.03 A 87.30,87.30 0 0,1 341.20,23.36 z" style="fill: #edd400; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_18"/><path d="M 299.40,100.00 L 253.03,26.03 A 87.30,87.30 0 0,1 341.20,23.36 z" style="fill: none; stroke: #776a00; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_19"/><path d="M 299.40,100.00 L 341.20,23.36 A 87.30,87.30 0 0,1 355.81,33.37 z" style="fill: #75505b; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_20"/><path d="M 299.40,100.00 L 341.20,23.36 A 87.30,87.30 0 0,1 355.81,33.37 z" style="fill: none; stroke: #3b282e; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_21"/><path d="M 299.40,100.00 L 355.81,33.37 A 87.30,87.30 0 0,1 386.70,100.00 z" style="fill: #f57900; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_22"/><path d="M 299.40,100.00 L 355.81,33.37 A 87.30,87.30 0 0,1 386.70,100.00 z" style="fill: none; stroke: #7b3d00; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_23"/><path d=" M 297.4376,35.3631 L 251.1187,12.7000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><ellipse cx="297.4376" cy="35.3631" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_25"/><ellipse cx="251.1187" cy="12.7" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_26"/><path d=" M 257.1638,51.0318 L 224.1281,32.1000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><ellipse cx="257.1638" cy="51.0318" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_29"/><ellipse cx="224.1281" cy="32.1" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_30"/><path d=" M 277.0038,160.6645 L 251.1187,187.3000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><ellipse cx="277.0038" cy="160.6645" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_33"/><ellipse cx="251.1187" cy="187.3" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_34"/><path d=" M 335.9600,46.6601 L 358.7667,19.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><ellipse cx="335.96" cy="46.6601" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_37"/><ellipse cx="358.7667" cy="19" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_38"/><path d=" M 358.0672,72.7982 L 393.3090,59.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><ellipse cx="358.0672" cy="72.7982" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_41"/><ellipse cx="393.309" cy="59" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_42"/><g id="ezcGraphTextBox_5"><path d=" M 19.5000,20.0000 L 19.5000,4.5000 L 72.9400,4.5000 L 72.9400,20.0000 L 19.5000,20.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_44"/><text id="ezcGraphTextBox_5_text" x="20" text-length="51.94px" y="16.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Mozilla</text></g><g id="ezcGraphTextBox_7"><path d=" M 19.5000,38.0000 L 19.5000,22.5000 L 35.8400,22.5000 L 35.8400,38.0000 L 19.5000,38.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_45"/><text id="ezcGraphTextBox_7_text" x="20" text-length="14.84px" y="34.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">IE</text></g><g id="ezcGraphTextBox_9"><path d=" M 19.5000,56.0000 L 19.5000,40.5000 L 58.1000,40.5000 L 58.1000,56.0000 L 19.5000,56.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_46"/><text id="ezcGraphTextBox_9_text" x="20" text-length="37.1px" y="52.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Opera</text></g><g id="ezcGraphTextBox_11"><path d=" M 19.5000,74.0000 L 19.5000,58.5000 L 50.6800,58.5000 L 50.6800,74.0000 L 19.5000,74.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_47"/><text id="ezcGraphTextBox_11_text" x="20" text-length="29.68px" y="70.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">wget</text></g><g id="ezcGraphTextBox_13"><path d=" M 19.5000,92.0000 L 19.5000,76.5000 L 65.5200,76.5000 L 65.5200,92.0000 L 19.5000,92.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_48"/><text id="ezcGraphTextBox_13_text" x="20" text-length="44.52px" y="88.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Safari</text></g><g id="ezcGraphTextBox_27"><path d=" M 149.9607,18.4000 L 149.9607,7.5000 L 246.1187,7.5000 L 246.1187,18.4000 L 149.9607,18.4000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_49"/><text id="ezcGraphTextBox_27_text" x="150.4607" text-length="94.658px" y="15.99" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Opera: 1204 (16.9%)</text></g><g id="ezcGraphTextBox_31"><path d=" M 147.8801,37.8000 L 147.8801,26.9000 L 219.1281,26.9000 L 219.1281,37.8000 L 147.8801,37.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_50"/><text id="ezcGraphTextBox_31_text" x="148.3801" text-length="69.748px" y="35.39" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">IE: 345 (4.8%)</text></g><g id="ezcGraphTextBox_35"><path d=" M 139.9967,193.0000 L 139.9967,182.1000 L 246.1187,182.1000 L 246.1187,193.0000 L 139.9967,193.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_51"/><text id="ezcGraphTextBox_35_text" x="140.4967" text-length="104.622px" y="190.59" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Mozilla: 4375 (61.3%)</text></g><g id="ezcGraphTextBox_39"><path d=" M 364.2667,24.7000 L 364.2667,13.8000 L 445.4787,13.8000 L 445.4787,24.7000 L 364.2667,24.7000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_52"/><text id="ezcGraphTextBox_39_text" x="364.7667" text-length="79.712px" y="22.29" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">wget: 231 (3.2%)</text></g><g id="ezcGraphTextBox_43"><path d=" M 398.8090,64.7000 L 398.8090,53.8000 L 494.9670,53.8000 L 494.9670,64.7000 L 398.8090,64.7000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_53"/><text id="ezcGraphTextBox_43_text" x="399.309" text-length="94.658px" y="62.29" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Safari: 987 (13.8%)</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphBackgroundTest_testRenderPieChartWithBigBackgroundBorder.svg b/tests/data/compare/ezcGraphBackgroundTest_testRenderPieChartWithBigBackgroundBorder.svg
new file mode 100644
index 0000000..c7a1069
--- /dev/null
+++ b/tests/data/compare/ezcGraphBackgroundTest_testRenderPieChartWithBigBackgroundBorder.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0"?>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: none; stroke: #000000; stroke-width: 5; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 5.0000,195.0000 L 5.0000,5.0000 L 103.0000,5.0000 L 103.0000,195.0000 L 5.0000,195.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 7.0000,21.0000 L 7.0000,7.0000 L 21.0000,7.0000 L 21.0000,21.0000 L 7.0000,21.0000 z " style="fill: #4e9a06; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_4"/><path d=" M 7.0000,39.0000 L 7.0000,25.0000 L 21.0000,25.0000 L 21.0000,39.0000 L 7.0000,39.0000 z " style="fill: #cc0000; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_6"/><path d=" M 7.0000,57.0000 L 7.0000,43.0000 L 21.0000,43.0000 L 21.0000,57.0000 L 7.0000,57.0000 z " style="fill: #edd400; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 7.0000,75.0000 L 7.0000,61.0000 L 21.0000,61.0000 L 21.0000,75.0000 L 7.0000,75.0000 z " style="fill: #75505b; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 7.0000,93.0000 L 7.0000,79.0000 L 21.0000,79.0000 L 21.0000,93.0000 L 7.0000,93.0000 z " style="fill: #f57900; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_12"/><path d="M 299.00,100.00 L 384.50,100.00 A 85.50,85.50 0 1,1 234.01,44.44 z" style="fill: #4e9a06; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_14"/><path d="M 299.00,100.00 L 384.50,100.00 A 85.50,85.50 0 1,1 234.01,44.44 z" style="fill: none; stroke: #274d03; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_15"/><path d="M 299.00,100.00 L 234.01,44.44 A 85.50,85.50 0 0,1 253.59,27.56 z" style="fill: #cc0000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_16"/><path d="M 299.00,100.00 L 234.01,44.44 A 85.50,85.50 0 0,1 253.59,27.56 z" style="fill: none; stroke: #660000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_17"/><path d="M 299.00,100.00 L 253.59,27.56 A 85.50,85.50 0 0,1 339.94,24.94 z" style="fill: #edd400; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_18"/><path d="M 299.00,100.00 L 253.59,27.56 A 85.50,85.50 0 0,1 339.94,24.94 z" style="fill: none; stroke: #776a00; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_19"/><path d="M 299.00,100.00 L 339.94,24.94 A 85.50,85.50 0 0,1 354.24,34.74 z" style="fill: #75505b; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_20"/><path d="M 299.00,100.00 L 339.94,24.94 A 85.50,85.50 0 0,1 354.24,34.74 z" style="fill: none; stroke: #3b282e; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_21"/><path d="M 299.00,100.00 L 354.24,34.74 A 85.50,85.50 0 0,1 384.50,100.00 z" style="fill: #f57900; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircleSector_22"/><path d="M 299.00,100.00 L 354.24,34.74 A 85.50,85.50 0 0,1 384.50,100.00 z" style="fill: none; stroke: #7b3d00; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircleSector_23"/><path d=" M 297.0780,36.6958 L 251.5905,14.5000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><ellipse cx="297.078" cy="36.6958" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_25"/><ellipse cx="251.5905" cy="14.5" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_26"/><path d=" M 257.6347,52.0414 L 225.1564,33.5000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><ellipse cx="257.6347" cy="52.0414" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_29"/><ellipse cx="225.1564" cy="33.5" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_30"/><path d=" M 277.0655,159.4137 L 251.5905,185.5000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><ellipse cx="277.0655" cy="159.4137" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_33"/><ellipse cx="251.5905" cy="185.5" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_34"/><path d=" M 334.8062,47.7599 L 357.7636,21.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><ellipse cx="334.8062" cy="47.7599" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_37"/><ellipse cx="357.7636" cy="21" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_38"/><path d=" M 356.4576,73.3591 L 391.1684,60.0000" style="fill: none; stroke: #000000; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><ellipse cx="356.4576" cy="73.3591" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_41"/><ellipse cx="391.1684" cy="60" rx="3" ry="3" style="fill: #000000; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_42"/><g id="ezcGraphTextBox_5"><path d=" M 21.5000,22.0000 L 21.5000,6.5000 L 74.9400,6.5000 L 74.9400,22.0000 L 21.5000,22.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_44"/><text id="ezcGraphTextBox_5_text" x="22" text-length="51.94px" y="18.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Mozilla</text></g><g id="ezcGraphTextBox_7"><path d=" M 21.5000,40.0000 L 21.5000,24.5000 L 37.8400,24.5000 L 37.8400,40.0000 L 21.5000,40.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_45"/><text id="ezcGraphTextBox_7_text" x="22" text-length="14.84px" y="36.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">IE</text></g><g id="ezcGraphTextBox_9"><path d=" M 21.5000,58.0000 L 21.5000,42.5000 L 60.1000,42.5000 L 60.1000,58.0000 L 21.5000,58.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_46"/><text id="ezcGraphTextBox_9_text" x="22" text-length="37.1px" y="54.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Opera</text></g><g id="ezcGraphTextBox_11"><path d=" M 21.5000,76.0000 L 21.5000,60.5000 L 52.6800,60.5000 L 52.6800,76.0000 L 21.5000,76.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_47"/><text id="ezcGraphTextBox_11_text" x="22" text-length="29.68px" y="72.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">wget</text></g><g id="ezcGraphTextBox_13"><path d=" M 21.5000,94.0000 L 21.5000,78.5000 L 67.5200,78.5000 L 67.5200,94.0000 L 21.5000,94.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_48"/><text id="ezcGraphTextBox_13_text" x="22" text-length="44.52px" y="90.9" style="font-size: 14px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Safari</text></g><g id="ezcGraphTextBox_27"><path d=" M 154.4605,20.0000 L 154.4605,9.5000 L 246.5905,9.5000 L 246.5905,20.0000 L 154.4605,20.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_49"/><text id="ezcGraphTextBox_27_text" x="154.9605" text-length="90.63px" y="17.65" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Opera: 1204 (16.9%)</text></g><g id="ezcGraphTextBox_31"><path d=" M 151.8764,39.0000 L 151.8764,28.5000 L 220.1564,28.5000 L 220.1564,39.0000 L 151.8764,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_50"/><text id="ezcGraphTextBox_31_text" x="152.3764" text-length="66.78px" y="36.65" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">IE: 345 (4.8%)</text></g><g id="ezcGraphTextBox_35"><path d=" M 144.9205,191.0000 L 144.9205,180.5000 L 246.5905,180.5000 L 246.5905,191.0000 L 144.9205,191.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_51"/><text id="ezcGraphTextBox_35_text" x="145.4205" text-length="100.17px" y="188.65" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Mozilla: 4375 (61.3%)</text></g><g id="ezcGraphTextBox_39"><path d=" M 363.2636,26.5000 L 363.2636,16.0000 L 441.0836,16.0000 L 441.0836,26.5000 L 363.2636,26.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_52"/><text id="ezcGraphTextBox_39_text" x="363.7636" text-length="76.32px" y="24.15" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">wget: 231 (3.2%)</text></g><g id="ezcGraphTextBox_43"><path d=" M 396.6684,65.5000 L 396.6684,55.0000 L 488.7984,55.0000 L 488.7984,65.5000 L 396.6684,65.5000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_53"/><text id="ezcGraphTextBox_43_text" x="397.1684" text-length="90.63px" y="63.15" style="font-size: 9px; font-family: sans-serif; fill: #2e3436; fill-opacity: 1.00; stroke: none;">Safari: 987 (13.8%)</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineBarChart.svg b/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineBarChart.svg
index 0f6ffdf..0e190af 100644
--- a/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineBarChart.svg
+++ b/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineBarChart.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><ellipse cx="11" cy="47" rx="7" ry="7" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_8"/><path d=" M 100.0000,180.0000 L 500.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 492.0000,184.0000 L 500.0000,180.0000 L 492.0000,176.0000 L 492.0000,184.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 204.0000,20.0000 L 204.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 204.0000,177.0000 L 204.0000,183.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 268.0000,20.0000 L 268.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 268.0000,177.0000 L 268.0000,183.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 332.0000,20.0000 L 332.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 332.0000,177.0000 L 332.0000,183.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 396.0000,20.0000 L 396.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 396.0000,177.0000 L 396.0000,183.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 460.0000,177.0000 L 460.0000,183.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,168.8000 L 460.0000,168.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,169.3333 L 141.0000,169.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,159.2000 L 460.0000,159.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,158.6667 L 141.0000,158.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,148.0000 L 141.0000,148.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 140.0000,136.8000 L 460.0000,136.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,137.3333 L 141.0000,137.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 140.0000,127.2000 L 460.0000,127.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 140.0000,126.6667 L 143.0000,126.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,116.0000 L 141.0000,116.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,104.8000 L 460.0000,104.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,105.3333 L 141.0000,105.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 140.0000,95.2000 L 460.0000,95.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,94.6667 L 141.0000,94.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,84.0000 L 141.0000,84.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 140.0000,72.8000 L 460.0000,72.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 140.0000,73.3333 L 143.0000,73.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,63.2000 L 460.0000,63.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,62.6667 L 141.0000,62.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,52.0000 L 141.0000,52.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 140.0000,40.8000 L 460.0000,40.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,41.3333 L 141.0000,41.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 140.0000,31.2000 L 460.0000,31.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 140.0000,30.6667 L 141.0000,30.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 170.3975,180.0000 L 144.7575,180.0000 L 144.7575,87.8400 L 170.3975,87.8400 L 170.3975,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 170.3975,180.0000 L 144.7575,180.0000 L 144.7575,87.8400 L 170.3975,87.8400 L 170.3975,180.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_64"/><path d=" M 234.3975,180.0000 L 208.7575,180.0000 L 208.7575,170.8267 L 234.3975,170.8267 L 234.3975,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_65"/><path d=" M 234.3975,180.0000 L 208.7575,180.0000 L 208.7575,170.8267 L 234.3975,170.8267 L 234.3975,180.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_66"/><path d=" M 298.3975,180.0000 L 272.7575,180.0000 L 272.7575,166.1333 L 298.3975,166.1333 L 298.3975,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 298.3975,180.0000 L 272.7575,180.0000 L 272.7575,166.1333 L 298.3975,166.1333 L 298.3975,180.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 362.3975,180.0000 L 336.7575,180.0000 L 336.7575,159.3067 L 362.3975,159.3067 L 362.3975,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 362.3975,180.0000 L 336.7575,180.0000 L 336.7575,159.3067 L 362.3975,159.3067 L 362.3975,180.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_70"/><path d=" M 426.3975,180.0000 L 400.7575,180.0000 L 400.7575,147.1467 L 426.3975,147.1467 L 426.3975,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_71"/><path d=" M 426.3975,180.0000 L 400.7575,180.0000 L 400.7575,147.1467 L 426.3975,147.1467 L 426.3975,180.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_72"/><path d=" M 199.2425,180.0000 L 173.6025,180.0000 L 173.6025,130.0800 L 199.2425,130.0800 L 199.2425,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 199.2425,180.0000 L 173.6025,180.0000 L 173.6025,130.0800 L 199.2425,130.0800 L 199.2425,180.0000 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 263.2425,180.0000 L 237.6025,180.0000 L 237.6025,175.5200 L 263.2425,175.5200 L 263.2425,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 263.2425,180.0000 L 237.6025,180.0000 L 237.6025,175.5200 L 263.2425,175.5200 L 263.2425,180.0000 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 327.2425,180.0000 L 301.6025,180.0000 L 301.6025,110.8800 L 327.2425,110.8800 L 327.2425,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_77"/><path d=" M 327.2425,180.0000 L 301.6025,180.0000 L 301.6025,110.8800 L 327.2425,110.8800 L 327.2425,180.0000 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_78"/><path d=" M 391.2425,180.0000 L 365.6025,180.0000 L 365.6025,154.4000 L 391.2425,154.4000 L 391.2425,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 391.2425,180.0000 L 365.6025,180.0000 L 365.6025,154.4000 L 391.2425,154.4000 L 391.2425,180.0000 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 455.2425,180.0000 L 429.6025,180.0000 L 429.6025,179.7867 L 455.2425,179.7867 L 455.2425,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 455.2425,180.0000 L 429.6025,180.0000 L 429.6025,179.7867 L 455.2425,179.7867 L 455.2425,180.0000 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_82"/><path d=" M 172.0000,64.1600 L 172.0000,64.1600" style="fill: none; stroke: #fce94f; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_83"/><path d=" M 172.0000,180.0000 L 172.0000,64.1600 L 236.0000,130.0800 L 236.0000,180.0000 L 172.0000,180.0000 z " style="fill: #fce94f; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 172.0000,64.1600 L 236.0000,130.0800" style="fill: none; stroke: #fce94f; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_85"/><path d=" M 236.0000,180.0000 L 236.0000,130.0800 L 300.0000,116.4267 L 300.0000,180.0000 L 236.0000,180.0000 z " style="fill: #fce94f; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 236.0000,130.0800 L 300.0000,116.4267" style="fill: none; stroke: #fce94f; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_87"/><path d=" M 300.0000,180.0000 L 300.0000,116.4267 L 364.0000,178.9333 L 364.0000,180.0000 L 300.0000,180.0000 z " style="fill: #fce94f; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 300.0000,116.4267 L 364.0000,178.9333" style="fill: none; stroke: #fce94f; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_89"/><path d=" M 364.0000,180.0000 L 364.0000,178.9333 L 428.0000,49.2267 L 428.0000,180.0000 L 364.0000,180.0000 z " style="fill: #fce94f; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_90"/><path d=" M 364.0000,178.9333 L 428.0000,49.2267" style="fill: none; stroke: #fce94f; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><ellipse cx="172" cy="64.16" rx="3" ry="3" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_92"/><ellipse cx="236" cy="130.08" rx="3" ry="3" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_93"/><ellipse cx="300" cy="116.4267" rx="3" ry="3" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_94"/><ellipse cx="364" cy="178.9333" rx="3" ry="3" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_95"/><ellipse cx="428" cy="49.2267" rx="3" ry="3" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_96"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 0</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_9"><path d=" M 18.5000,55.0000 L 18.5000,39.5000 L 64.5200,39.5000 L 64.5200,55.0000 L 18.5000,55.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_99"/><text id="ezcGraphTextBox_9_text" x="19" text-length="44.52px" y="51.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 141.8200,197.0000 L 141.8200,181.5000 L 202.6800,181.5000 L 202.6800,197.0000 L 141.8200,197.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_100"/><text id="ezcGraphTextBox_14_text" x="142.32" text-length="59.36px" y="193.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_17"><path d=" M 205.8200,197.0000 L 205.8200,181.5000 L 266.6800,181.5000 L 266.6800,197.0000 L 205.8200,197.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_101"/><text id="ezcGraphTextBox_17_text" x="206.32" text-length="59.36px" y="193.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_20"><path d=" M 269.8200,197.0000 L 269.8200,181.5000 L 330.6800,181.5000 L 330.6800,197.0000 L 269.8200,197.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_102"/><text id="ezcGraphTextBox_20_text" x="270.32" text-length="59.36px" y="193.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_23"><path d=" M 333.8200,197.0000 L 333.8200,181.5000 L 394.6800,181.5000 L 394.6800,197.0000 L 333.8200,197.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_103"/><text id="ezcGraphTextBox_23_text" x="334.32" text-length="59.36px" y="193.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_26"><path d=" M 397.8200,197.0000 L 397.8200,181.5000 L 458.6800,181.5000 L 458.6800,197.0000 L 397.8200,197.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_104"/><text id="ezcGraphTextBox_26_text" x="398.32" text-length="59.36px" y="193.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_29"><path d=" M 128.8200,179.0000 L 128.8200,163.5000 L 139.0000,163.5000 L 139.0000,179.0000 L 128.8200,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_105"/><text id="ezcGraphTextBox_29_text" x="129.32" text-length="8.68px" y="175.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_40"><path d=" M 111.4600,125.6667 L 111.4600,110.1667 L 139.0000,110.1667 L 139.0000,125.6667 L 111.4600,125.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_106"/><text id="ezcGraphTextBox_40_text" x="111.96" text-length="26.04px" y="122.5667" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_51"><path d=" M 111.4600,72.3333 L 111.4600,56.8333 L 139.0000,56.8333 L 139.0000,72.3333 L 111.4600,72.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_107"/><text id="ezcGraphTextBox_51_text" x="111.96" text-length="26.04px" y="69.2333" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_62"><path d=" M 111.4600,37.0000 L 111.4600,21.5000 L 139.0000,21.5000 L 139.0000,37.0000 L 111.4600,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_108"/><text id="ezcGraphTextBox_62_text" x="111.96" text-length="26.04px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><ellipse cx="11" cy="47" rx="7" ry="7" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_8"/><path d=" M 100.0000,180.0000 L 500.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 492.0000,184.0000 L 500.0000,180.0000 L 492.0000,176.0000 L 492.0000,184.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 204.0000,20.0000 L 204.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 204.0000,177.0000 L 204.0000,183.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 268.0000,20.0000 L 268.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 268.0000,177.0000 L 268.0000,183.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 332.0000,20.0000 L 332.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 332.0000,177.0000 L 332.0000,183.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 396.0000,20.0000 L 396.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 396.0000,177.0000 L 396.0000,183.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 460.0000,177.0000 L 460.0000,183.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,168.8000 L 460.0000,168.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,169.3333 L 141.0000,169.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,159.2000 L 460.0000,159.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,158.6667 L 141.0000,158.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,148.0000 L 141.0000,148.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 140.0000,136.8000 L 460.0000,136.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,137.3333 L 141.0000,137.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 140.0000,127.2000 L 460.0000,127.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 140.0000,126.6667 L 143.0000,126.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,116.0000 L 141.0000,116.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,104.8000 L 460.0000,104.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,105.3333 L 141.0000,105.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 140.0000,95.2000 L 460.0000,95.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,94.6667 L 141.0000,94.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,84.0000 L 141.0000,84.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 140.0000,72.8000 L 460.0000,72.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 140.0000,73.3333 L 143.0000,73.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,63.2000 L 460.0000,63.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,62.6667 L 141.0000,62.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,52.0000 L 141.0000,52.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 140.0000,40.8000 L 460.0000,40.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,41.3333 L 141.0000,41.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 140.0000,31.2000 L 460.0000,31.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 140.0000,30.6667 L 141.0000,30.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 170.3975,180.0000 L 144.7575,180.0000 L 144.7575,87.8400 L 170.3975,87.8400 L 170.3975,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 170.3975,180.0000 L 144.7575,180.0000 L 144.7575,87.8400 L 170.3975,87.8400 L 170.3975,180.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_64"/><path d=" M 234.3975,180.0000 L 208.7575,180.0000 L 208.7575,170.8267 L 234.3975,170.8267 L 234.3975,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_65"/><path d=" M 234.3975,180.0000 L 208.7575,180.0000 L 208.7575,170.8267 L 234.3975,170.8267 L 234.3975,180.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_66"/><path d=" M 298.3975,180.0000 L 272.7575,180.0000 L 272.7575,166.1333 L 298.3975,166.1333 L 298.3975,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 298.3975,180.0000 L 272.7575,180.0000 L 272.7575,166.1333 L 298.3975,166.1333 L 298.3975,180.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 362.3975,180.0000 L 336.7575,180.0000 L 336.7575,159.3067 L 362.3975,159.3067 L 362.3975,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 362.3975,180.0000 L 336.7575,180.0000 L 336.7575,159.3067 L 362.3975,159.3067 L 362.3975,180.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_70"/><path d=" M 426.3975,180.0000 L 400.7575,180.0000 L 400.7575,147.1467 L 426.3975,147.1467 L 426.3975,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_71"/><path d=" M 426.3975,180.0000 L 400.7575,180.0000 L 400.7575,147.1467 L 426.3975,147.1467 L 426.3975,180.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_72"/><path d=" M 199.2425,180.0000 L 173.6025,180.0000 L 173.6025,130.0800 L 199.2425,130.0800 L 199.2425,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 199.2425,180.0000 L 173.6025,180.0000 L 173.6025,130.0800 L 199.2425,130.0800 L 199.2425,180.0000 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 263.2425,180.0000 L 237.6025,180.0000 L 237.6025,175.5200 L 263.2425,175.5200 L 263.2425,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 263.2425,180.0000 L 237.6025,180.0000 L 237.6025,175.5200 L 263.2425,175.5200 L 263.2425,180.0000 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 327.2425,180.0000 L 301.6025,180.0000 L 301.6025,110.8800 L 327.2425,110.8800 L 327.2425,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_77"/><path d=" M 327.2425,180.0000 L 301.6025,180.0000 L 301.6025,110.8800 L 327.2425,110.8800 L 327.2425,180.0000 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_78"/><path d=" M 391.2425,180.0000 L 365.6025,180.0000 L 365.6025,154.4000 L 391.2425,154.4000 L 391.2425,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 391.2425,180.0000 L 365.6025,180.0000 L 365.6025,154.4000 L 391.2425,154.4000 L 391.2425,180.0000 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 455.2425,180.0000 L 429.6025,180.0000 L 429.6025,179.7867 L 455.2425,179.7867 L 455.2425,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 455.2425,180.0000 L 429.6025,180.0000 L 429.6025,179.7867 L 455.2425,179.7867 L 455.2425,180.0000 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_82"/><path d=" M 172.0000,64.1600 L 172.0000,64.1600" style="fill: none; stroke: #fce94f; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_83"/><path d=" M 172.0000,180.0000 L 172.0000,64.1600 L 236.0000,130.0800 L 236.0000,180.0000 L 172.0000,180.0000 z " style="fill: #fce94f; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 172.0000,64.1600 L 236.0000,130.0800" style="fill: none; stroke: #fce94f; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_85"/><path d=" M 236.0000,180.0000 L 236.0000,130.0800 L 300.0000,116.4267 L 300.0000,180.0000 L 236.0000,180.0000 z " style="fill: #fce94f; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 236.0000,130.0800 L 300.0000,116.4267" style="fill: none; stroke: #fce94f; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_87"/><path d=" M 300.0000,180.0000 L 300.0000,116.4267 L 364.0000,178.9333 L 364.0000,180.0000 L 300.0000,180.0000 z " style="fill: #fce94f; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 300.0000,116.4267 L 364.0000,178.9333" style="fill: none; stroke: #fce94f; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_89"/><path d=" M 364.0000,180.0000 L 364.0000,178.9333 L 428.0000,49.2267 L 428.0000,180.0000 L 364.0000,180.0000 z " style="fill: #fce94f; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_90"/><path d=" M 364.0000,178.9333 L 428.0000,49.2267" style="fill: none; stroke: #fce94f; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><ellipse cx="172" cy="64.16" rx="3" ry="3" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_92"/><ellipse cx="236" cy="130.08" rx="3" ry="3" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_93"/><ellipse cx="300" cy="116.4267" rx="3" ry="3" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_94"/><ellipse cx="364" cy="178.9333" rx="3" ry="3" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_95"/><ellipse cx="428" cy="49.2267" rx="3" ry="3" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_96"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 0</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_9"><path d=" M 18.5000,55.0000 L 18.5000,39.5000 L 64.5200,39.5000 L 64.5200,55.0000 L 18.5000,55.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_99"/><text id="ezcGraphTextBox_9_text" x="19" text-length="44.52px" y="51.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 141.8200,197.0000 L 141.8200,181.5000 L 202.6800,181.5000 L 202.6800,197.0000 L 141.8200,197.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_100"/><text id="ezcGraphTextBox_14_text" x="142.32" text-length="59.36px" y="193.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_17"><path d=" M 205.8200,197.0000 L 205.8200,181.5000 L 266.6800,181.5000 L 266.6800,197.0000 L 205.8200,197.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_101"/><text id="ezcGraphTextBox_17_text" x="206.32" text-length="59.36px" y="193.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_20"><path d=" M 269.8200,197.0000 L 269.8200,181.5000 L 330.6800,181.5000 L 330.6800,197.0000 L 269.8200,197.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_102"/><text id="ezcGraphTextBox_20_text" x="270.32" text-length="59.36px" y="193.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_23"><path d=" M 333.8200,197.0000 L 333.8200,181.5000 L 394.6800,181.5000 L 394.6800,197.0000 L 333.8200,197.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_103"/><text id="ezcGraphTextBox_23_text" x="334.32" text-length="59.36px" y="193.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_26"><path d=" M 397.8200,197.0000 L 397.8200,181.5000 L 458.6800,181.5000 L 458.6800,197.0000 L 397.8200,197.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_104"/><text id="ezcGraphTextBox_26_text" x="398.32" text-length="59.36px" y="193.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_29"><path d=" M 128.8200,179.0000 L 128.8200,163.5000 L 139.0000,163.5000 L 139.0000,179.0000 L 128.8200,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_105"/><text id="ezcGraphTextBox_29_text" x="129.32" text-length="8.68px" y="175.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_40"><path d=" M 111.4600,125.6667 L 111.4600,110.1667 L 139.0000,110.1667 L 139.0000,125.6667 L 111.4600,125.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_106"/><text id="ezcGraphTextBox_40_text" x="111.96" text-length="26.04px" y="122.5667" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_51"><path d=" M 111.4600,72.3333 L 111.4600,56.8333 L 139.0000,56.8333 L 139.0000,72.3333 L 111.4600,72.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_107"/><text id="ezcGraphTextBox_51_text" x="111.96" text-length="26.04px" y="69.2333" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_62"><path d=" M 111.4600,37.0000 L 111.4600,21.5000 L 139.0000,21.5000 L 139.0000,37.0000 L 111.4600,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_108"/><text id="ezcGraphTextBox_62_text" x="111.96" text-length="26.04px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineChart.svg b/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineChart.svg
index af554a2..134d323 100644
--- a/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineChart.svg
+++ b/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineChart.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,180.0000 L 500.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,184.0000 L 500.0000,180.0000 L 492.0000,176.0000 L 492.0000,184.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 220.0000,177.0000 L 220.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,177.0000 L 300.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 380.0000,177.0000 L 380.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.0000,177.0000 L 460.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 140.0000,168.8000 L 460.0000,168.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 140.0000,169.3333 L 141.0000,169.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 140.0000,159.2000 L 460.0000,159.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,158.6667 L 141.0000,158.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 140.0000,148.0000 L 141.0000,148.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,136.8000 L 460.0000,136.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,137.3333 L 141.0000,137.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,127.2000 L 460.0000,127.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,126.6667 L 143.0000,126.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,116.0000 L 141.0000,116.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 140.0000,104.8000 L 460.0000,104.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 140.0000,105.3333 L 141.0000,105.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,95.2000 L 460.0000,95.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 140.0000,94.6667 L 141.0000,94.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,84.0000 L 141.0000,84.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,72.8000 L 460.0000,72.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 140.0000,73.3333 L 143.0000,73.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,63.2000 L 460.0000,63.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,62.6667 L 141.0000,62.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 140.0000,52.0000 L 141.0000,52.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,40.8000 L 460.0000,40.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 140.0000,41.3333 L 141.0000,41.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,31.2000 L 460.0000,31.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 140.0000,30.6667 L 141.0000,30.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,130.0800 L 140.0000,130.0800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 140.0000,180.0000 L 140.0000,130.0800 L 220.0000,175.5200 L 220.0000,180.0000 L 140.0000,180.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 140.0000,130.0800 L 220.0000,175.5200" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 220.0000,180.0000 L 220.0000,175.5200 L 300.0000,110.8800 L 300.0000,180.0000 L 220.0000,180.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_61"/><path d=" M 220.0000,175.5200 L 300.0000,110.8800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 300.0000,180.0000 L 300.0000,110.8800 L 380.0000,154.4000 L 380.0000,180.0000 L 300.0000,180.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 300.0000,110.8800 L 380.0000,154.4000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 380.0000,180.0000 L 380.0000,154.4000 L 460.0000,179.7867 L 460.0000,180.0000 L 380.0000,180.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_65"/><path d=" M 380.0000,154.4000 L 460.0000,179.7867" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 140.0000,64.1600 L 140.0000,64.1600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 140.0000,180.0000 L 140.0000,64.1600 L 220.0000,130.0800 L 220.0000,180.0000 L 140.0000,180.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_68"/><path d=" M 140.0000,64.1600 L 220.0000,130.0800" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 220.0000,180.0000 L 220.0000,130.0800 L 300.0000,116.4267 L 300.0000,180.0000 L 220.0000,180.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 220.0000,130.0800 L 300.0000,116.4267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 300.0000,180.0000 L 300.0000,116.4267 L 380.0000,178.9333 L 380.0000,180.0000 L 300.0000,180.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 300.0000,116.4267 L 380.0000,178.9333" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 380.0000,180.0000 L 380.0000,178.9333 L 460.0000,49.2267 L 460.0000,180.0000 L 380.0000,180.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_74"/><path d=" M 380.0000,178.9333 L 460.0000,49.2267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><ellipse cx="140" cy="130.08" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_76"/><ellipse cx="220" cy="175.52" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="300" cy="110.88" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="380" cy="154.4" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="460" cy="179.7867" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="140" cy="64.16" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="220" cy="130.08" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="300" cy="116.4267" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="380" cy="178.9333" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="460" cy="49.2267" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 185.5800,199.0000 L 185.5800,181.5000 L 254.9200,181.5000 L 254.9200,199.0000 L 185.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="186.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_17"><path d=" M 265.5800,199.0000 L 265.5800,181.5000 L 334.9200,181.5000 L 334.9200,199.0000 L 265.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="266.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_20"><path d=" M 345.5800,199.0000 L 345.5800,181.5000 L 414.9200,181.5000 L 414.9200,199.0000 L 345.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="346.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_23"><path d=" M 425.5800,199.0000 L 425.5800,181.5000 L 494.9200,181.5000 L 494.9200,199.0000 L 425.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="426.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_24"><path d=" M 127.5800,179.0000 L 127.5800,161.5000 L 139.0000,161.5000 L 139.0000,179.0000 L 127.5800,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_24_text" x="128.08" text-length="9.92px" y="175.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_35"><path d=" M 107.7400,125.6667 L 107.7400,108.1667 L 139.0000,108.1667 L 139.0000,125.6667 L 107.7400,125.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_35_text" x="108.24" text-length="29.76px" y="122.2667" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_46"><path d=" M 107.7400,72.3333 L 107.7400,54.8333 L 139.0000,54.8333 L 139.0000,72.3333 L 107.7400,72.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_46_text" x="108.24" text-length="29.76px" y="68.9333" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_57"><path d=" M 107.7400,39.0000 L 107.7400,21.5000 L 139.0000,21.5000 L 139.0000,39.0000 L 107.7400,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_57_text" x="108.24" text-length="29.76px" y="35.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,180.0000 L 500.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,184.0000 L 500.0000,180.0000 L 492.0000,176.0000 L 492.0000,184.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 220.0000,177.0000 L 220.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,177.0000 L 300.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 380.0000,177.0000 L 380.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.0000,177.0000 L 460.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 140.0000,168.8000 L 460.0000,168.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 140.0000,169.3333 L 141.0000,169.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 140.0000,159.2000 L 460.0000,159.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,158.6667 L 141.0000,158.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 140.0000,148.0000 L 141.0000,148.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,136.8000 L 460.0000,136.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,137.3333 L 141.0000,137.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,127.2000 L 460.0000,127.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,126.6667 L 143.0000,126.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,116.0000 L 141.0000,116.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 140.0000,104.8000 L 460.0000,104.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 140.0000,105.3333 L 141.0000,105.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,95.2000 L 460.0000,95.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 140.0000,94.6667 L 141.0000,94.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,84.0000 L 141.0000,84.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,72.8000 L 460.0000,72.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 140.0000,73.3333 L 143.0000,73.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,63.2000 L 460.0000,63.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,62.6667 L 141.0000,62.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 140.0000,52.0000 L 141.0000,52.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,40.8000 L 460.0000,40.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 140.0000,41.3333 L 141.0000,41.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,31.2000 L 460.0000,31.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 140.0000,30.6667 L 141.0000,30.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,130.0800 L 140.0000,130.0800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 140.0000,180.0000 L 140.0000,130.0800 L 220.0000,175.5200 L 220.0000,180.0000 L 140.0000,180.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 140.0000,130.0800 L 220.0000,175.5200" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 220.0000,180.0000 L 220.0000,175.5200 L 300.0000,110.8800 L 300.0000,180.0000 L 220.0000,180.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_61"/><path d=" M 220.0000,175.5200 L 300.0000,110.8800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 300.0000,180.0000 L 300.0000,110.8800 L 380.0000,154.4000 L 380.0000,180.0000 L 300.0000,180.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 300.0000,110.8800 L 380.0000,154.4000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 380.0000,180.0000 L 380.0000,154.4000 L 460.0000,179.7867 L 460.0000,180.0000 L 380.0000,180.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_65"/><path d=" M 380.0000,154.4000 L 460.0000,179.7867" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 140.0000,64.1600 L 140.0000,64.1600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 140.0000,180.0000 L 140.0000,64.1600 L 220.0000,130.0800 L 220.0000,180.0000 L 140.0000,180.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_68"/><path d=" M 140.0000,64.1600 L 220.0000,130.0800" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 220.0000,180.0000 L 220.0000,130.0800 L 300.0000,116.4267 L 300.0000,180.0000 L 220.0000,180.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 220.0000,130.0800 L 300.0000,116.4267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 300.0000,180.0000 L 300.0000,116.4267 L 380.0000,178.9333 L 380.0000,180.0000 L 300.0000,180.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 300.0000,116.4267 L 380.0000,178.9333" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 380.0000,180.0000 L 380.0000,178.9333 L 460.0000,49.2267 L 460.0000,180.0000 L 380.0000,180.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_74"/><path d=" M 380.0000,178.9333 L 460.0000,49.2267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><ellipse cx="140" cy="130.08" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_76"/><ellipse cx="220" cy="175.52" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="300" cy="110.88" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="380" cy="154.4" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><ellipse cx="460" cy="179.7867" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="140" cy="64.16" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="220" cy="130.08" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="300" cy="116.4267" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="380" cy="178.9333" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="460" cy="49.2267" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 185.5800,199.0000 L 185.5800,181.5000 L 254.9200,181.5000 L 254.9200,199.0000 L 185.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_14_text" x="186.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_17"><path d=" M 265.5800,199.0000 L 265.5800,181.5000 L 334.9200,181.5000 L 334.9200,199.0000 L 265.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_17_text" x="266.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_20"><path d=" M 345.5800,199.0000 L 345.5800,181.5000 L 414.9200,181.5000 L 414.9200,199.0000 L 345.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_20_text" x="346.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_23"><path d=" M 425.5800,199.0000 L 425.5800,181.5000 L 494.9200,181.5000 L 494.9200,199.0000 L 425.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_23_text" x="426.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_24"><path d=" M 127.5800,179.0000 L 127.5800,161.5000 L 139.0000,161.5000 L 139.0000,179.0000 L 127.5800,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_92"/><text id="ezcGraphTextBox_24_text" x="128.08" text-length="9.92px" y="175.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_35"><path d=" M 107.7400,125.6667 L 107.7400,108.1667 L 139.0000,108.1667 L 139.0000,125.6667 L 107.7400,125.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><text id="ezcGraphTextBox_35_text" x="108.24" text-length="29.76px" y="122.2667" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_46"><path d=" M 107.7400,72.3333 L 107.7400,54.8333 L 139.0000,54.8333 L 139.0000,72.3333 L 107.7400,72.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_94"/><text id="ezcGraphTextBox_46_text" x="108.24" text-length="29.76px" y="68.9333" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_57"><path d=" M 107.7400,39.0000 L 107.7400,21.5000 L 139.0000,21.5000 L 139.0000,39.0000 L 107.7400,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_95"/><text id="ezcGraphTextBox_57_text" x="108.24" text-length="29.76px" y="35.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineChartWithAxisIntersection.svg b/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineChartWithAxisIntersection.svg
index c2c7d71..f620781 100644
--- a/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineChartWithAxisIntersection.svg
+++ b/tests/data/compare/ezcGraphRenderer2dTest_testRenderFilledLineChartWithAxisIntersection.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,140.0000 L 500.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,144.0000 L 500.0000,140.0000 L 492.0000,136.0000 L 492.0000,144.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 220.0000,137.0000 L 220.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,137.0000 L 300.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 380.0000,137.0000 L 380.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.0000,137.0000 L 460.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 140.0000,180.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 140.0000,180.0000 L 143.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 140.0000,172.0000 L 460.0000,172.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,172.0000 L 141.0000,172.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,164.0000 L 460.0000,164.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 140.0000,164.0000 L 141.0000,164.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,156.0000 L 460.0000,156.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,156.0000 L 141.0000,156.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,148.0000 L 141.0000,148.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,132.0000 L 460.0000,132.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,132.0000 L 141.0000,132.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 140.0000,124.0000 L 460.0000,124.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 140.0000,124.0000 L 141.0000,124.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 140.0000,116.0000 L 141.0000,116.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,108.0000 L 460.0000,108.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,108.0000 L 141.0000,108.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,100.0000 L 460.0000,100.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 140.0000,100.0000 L 143.0000,100.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,92.0000 L 460.0000,92.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,92.0000 L 141.0000,92.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 140.0000,84.0000 L 141.0000,84.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,76.0000 L 460.0000,76.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 140.0000,76.0000 L 141.0000,76.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,68.0000 L 460.0000,68.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 140.0000,68.0000 L 141.0000,68.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,60.0000 L 460.0000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 140.0000,60.0000 L 143.0000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 140.0000,52.0000 L 141.0000,52.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 140.0000,44.0000 L 460.0000,44.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 140.0000,44.0000 L 141.0000,44.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 140.0000,36.0000 L 460.0000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 140.0000,36.0000 L 141.0000,36.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 140.0000,28.0000 L 460.0000,28.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 140.0000,28.0000 L 141.0000,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 140.0000,102.5600 L 140.0000,102.5600" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 188.6234,140.0000 L 140.0000,140.0000 L 140.0000,102.5600 L 188.6234,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 188.6234,140.0000 L 220.0000,140.0000 L 220.0000,164.1600 L 188.6234,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_71"/><path d=" M 140.0000,102.5600 L 220.0000,164.1600" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 245.4316,140.0000 L 220.0000,140.0000 L 220.0000,164.1600 L 245.4316,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 245.4316,140.0000 L 300.0000,140.0000 L 300.0000,88.1600 L 245.4316,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_74"/><path d=" M 220.0000,164.1600 L 300.0000,88.1600" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 358.3784,140.0000 L 300.0000,140.0000 L 300.0000,88.1600 L 358.3784,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 358.3784,140.0000 L 380.0000,140.0000 L 380.0000,159.2000 L 358.3784,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_77"/><path d=" M 300.0000,88.1600 L 380.0000,159.2000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 459.3388,140.0000 L 380.0000,140.0000 L 380.0000,159.2000 L 459.3388,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 459.3388,140.0000 L 460.0000,140.0000 L 460.0000,139.8400 L 459.3388,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_80"/><path d=" M 380.0000,159.2000 L 460.0000,139.8400" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_81"/><path d=" M 140.0000,53.1200 L 140.0000,53.1200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_82"/><path d=" M 140.0000,140.0000 L 140.0000,53.1200 L 220.0000,102.5600 L 220.0000,140.0000 L 140.0000,140.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 140.0000,53.1200 L 220.0000,102.5600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_84"/><path d=" M 220.0000,140.0000 L 220.0000,102.5600 L 300.0000,92.3200 L 300.0000,140.0000 L 220.0000,140.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 220.0000,102.5600 L 300.0000,92.3200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_86"/><path d=" M 378.6799,140.0000 L 300.0000,140.0000 L 300.0000,92.3200 L 378.6799,140.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 378.6799,140.0000 L 380.0000,140.0000 L 380.0000,140.8000 L 378.6799,140.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 300.0000,92.3200 L 380.0000,140.8000" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_89"/><path d=" M 380.0000,140.0000 L 380.0000,140.8000 L 460.0000,159.8400 L 460.0000,140.0000 L 380.0000,140.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_90"/><path d=" M 380.0000,140.8000 L 460.0000,159.8400" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><ellipse cx="140" cy="102.56" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_92"/><ellipse cx="220" cy="164.16" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_93"/><ellipse cx="300" cy="88.16" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_94"/><ellipse cx="380" cy="159.2" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_95"/><ellipse cx="460" cy="139.84" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_96"/><ellipse cx="140" cy="53.12" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_97"/><ellipse cx="220" cy="102.56" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_98"/><ellipse cx="300" cy="92.32" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_99"/><ellipse cx="380" cy="140.8" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_100"/><ellipse cx="460" cy="159.84" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_101"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_102"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_103"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 189.8200,157.0000 L 189.8200,141.5000 L 250.6800,141.5000 L 250.6800,157.0000 L 189.8200,157.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_104"/><text id="ezcGraphTextBox_14_text" x="190.32" text-length="59.36px" y="153.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_17"><path d=" M 269.8200,157.0000 L 269.8200,141.5000 L 330.6800,141.5000 L 330.6800,157.0000 L 269.8200,157.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_105"/><text id="ezcGraphTextBox_17_text" x="270.32" text-length="59.36px" y="153.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_20"><path d=" M 349.8200,157.0000 L 349.8200,141.5000 L 410.6800,141.5000 L 410.6800,157.0000 L 349.8200,157.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_106"/><text id="ezcGraphTextBox_20_text" x="350.32" text-length="59.36px" y="153.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_23"><path d=" M 429.8200,157.0000 L 429.8200,141.5000 L 490.6800,141.5000 L 490.6800,157.0000 L 429.8200,157.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_107"/><text id="ezcGraphTextBox_23_text" x="430.32" text-length="59.36px" y="153.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_26"><path d=" M 102.7800,179.0000 L 102.7800,163.5000 L 139.0000,163.5000 L 139.0000,179.0000 L 102.7800,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_108"/><text id="ezcGraphTextBox_26_text" x="103.28" text-length="34.72px" y="175.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-250</text></g><g id="ezcGraphTextBox_35"><path d=" M 128.8200,139.0000 L 128.8200,123.5000 L 139.0000,123.5000 L 139.0000,139.0000 L 128.8200,139.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_109"/><text id="ezcGraphTextBox_35_text" x="129.32" text-length="8.68px" y="135.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_46"><path d=" M 111.4600,99.0000 L 111.4600,83.5000 L 139.0000,83.5000 L 139.0000,99.0000 L 111.4600,99.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_110"/><text id="ezcGraphTextBox_46_text" x="111.96" text-length="26.04px" y="95.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_57"><path d=" M 111.4600,59.0000 L 111.4600,43.5000 L 139.0000,43.5000 L 139.0000,59.0000 L 111.4600,59.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_111"/><text id="ezcGraphTextBox_57_text" x="111.96" text-length="26.04px" y="55.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_68"><path d=" M 111.4600,37.0000 L 111.4600,21.5000 L 139.0000,21.5000 L 139.0000,37.0000 L 111.4600,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_112"/><text id="ezcGraphTextBox_68_text" x="111.96" text-length="26.04px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,140.0000 L 500.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,144.0000 L 500.0000,140.0000 L 492.0000,136.0000 L 492.0000,144.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 220.0000,137.0000 L 220.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,137.0000 L 300.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 380.0000,137.0000 L 380.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.0000,137.0000 L 460.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 140.0000,180.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 140.0000,180.0000 L 143.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 140.0000,172.0000 L 460.0000,172.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,172.0000 L 141.0000,172.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,164.0000 L 460.0000,164.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 140.0000,164.0000 L 141.0000,164.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,156.0000 L 460.0000,156.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,156.0000 L 141.0000,156.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,148.0000 L 141.0000,148.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,132.0000 L 460.0000,132.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,132.0000 L 141.0000,132.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 140.0000,124.0000 L 460.0000,124.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 140.0000,124.0000 L 141.0000,124.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 140.0000,116.0000 L 141.0000,116.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,108.0000 L 460.0000,108.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,108.0000 L 141.0000,108.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,100.0000 L 460.0000,100.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 140.0000,100.0000 L 143.0000,100.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,92.0000 L 460.0000,92.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,92.0000 L 141.0000,92.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 140.0000,84.0000 L 141.0000,84.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,76.0000 L 460.0000,76.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 140.0000,76.0000 L 141.0000,76.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,68.0000 L 460.0000,68.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 140.0000,68.0000 L 141.0000,68.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,60.0000 L 460.0000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 140.0000,60.0000 L 143.0000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 140.0000,52.0000 L 141.0000,52.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 140.0000,44.0000 L 460.0000,44.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 140.0000,44.0000 L 141.0000,44.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 140.0000,36.0000 L 460.0000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 140.0000,36.0000 L 141.0000,36.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 140.0000,28.0000 L 460.0000,28.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 140.0000,28.0000 L 141.0000,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 140.0000,102.5600 L 140.0000,102.5600" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 188.6234,140.0000 L 140.0000,140.0000 L 140.0000,102.5600 L 188.6234,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 188.6234,140.0000 L 220.0000,140.0000 L 220.0000,164.1600 L 188.6234,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_71"/><path d=" M 140.0000,102.5600 L 220.0000,164.1600" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 245.4316,140.0000 L 220.0000,140.0000 L 220.0000,164.1600 L 245.4316,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 245.4316,140.0000 L 300.0000,140.0000 L 300.0000,88.1600 L 245.4316,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_74"/><path d=" M 220.0000,164.1600 L 300.0000,88.1600" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 358.3784,140.0000 L 300.0000,140.0000 L 300.0000,88.1600 L 358.3784,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 358.3784,140.0000 L 380.0000,140.0000 L 380.0000,159.2000 L 358.3784,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_77"/><path d=" M 300.0000,88.1600 L 380.0000,159.2000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 459.3388,140.0000 L 380.0000,140.0000 L 380.0000,159.2000 L 459.3388,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 459.3388,140.0000 L 460.0000,140.0000 L 460.0000,139.8400 L 459.3388,140.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_80"/><path d=" M 380.0000,159.2000 L 460.0000,139.8400" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_81"/><path d=" M 140.0000,53.1200 L 140.0000,53.1200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_82"/><path d=" M 140.0000,140.0000 L 140.0000,53.1200 L 220.0000,102.5600 L 220.0000,140.0000 L 140.0000,140.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 140.0000,53.1200 L 220.0000,102.5600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_84"/><path d=" M 220.0000,140.0000 L 220.0000,102.5600 L 300.0000,92.3200 L 300.0000,140.0000 L 220.0000,140.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 220.0000,102.5600 L 300.0000,92.3200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_86"/><path d=" M 378.6799,140.0000 L 300.0000,140.0000 L 300.0000,92.3200 L 378.6799,140.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 378.6799,140.0000 L 380.0000,140.0000 L 380.0000,140.8000 L 378.6799,140.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 300.0000,92.3200 L 380.0000,140.8000" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_89"/><path d=" M 380.0000,140.0000 L 380.0000,140.8000 L 460.0000,159.8400 L 460.0000,140.0000 L 380.0000,140.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_90"/><path d=" M 380.0000,140.8000 L 460.0000,159.8400" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><ellipse cx="140" cy="102.56" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_92"/><ellipse cx="220" cy="164.16" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_93"/><ellipse cx="300" cy="88.16" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_94"/><ellipse cx="380" cy="159.2" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_95"/><ellipse cx="460" cy="139.84" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_96"/><ellipse cx="140" cy="53.12" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_97"/><ellipse cx="220" cy="102.56" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_98"/><ellipse cx="300" cy="92.32" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_99"/><ellipse cx="380" cy="140.8" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_100"/><ellipse cx="460" cy="159.84" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_101"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_102"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_103"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 189.8200,157.0000 L 189.8200,141.5000 L 250.6800,141.5000 L 250.6800,157.0000 L 189.8200,157.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_104"/><text id="ezcGraphTextBox_14_text" x="190.32" text-length="59.36px" y="153.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_17"><path d=" M 269.8200,157.0000 L 269.8200,141.5000 L 330.6800,141.5000 L 330.6800,157.0000 L 269.8200,157.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_105"/><text id="ezcGraphTextBox_17_text" x="270.32" text-length="59.36px" y="153.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_20"><path d=" M 349.8200,157.0000 L 349.8200,141.5000 L 410.6800,141.5000 L 410.6800,157.0000 L 349.8200,157.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_106"/><text id="ezcGraphTextBox_20_text" x="350.32" text-length="59.36px" y="153.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_23"><path d=" M 429.8200,157.0000 L 429.8200,141.5000 L 490.6800,141.5000 L 490.6800,157.0000 L 429.8200,157.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_107"/><text id="ezcGraphTextBox_23_text" x="430.32" text-length="59.36px" y="153.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_26"><path d=" M 102.7800,179.0000 L 102.7800,163.5000 L 139.0000,163.5000 L 139.0000,179.0000 L 102.7800,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_108"/><text id="ezcGraphTextBox_26_text" x="103.28" text-length="34.72px" y="175.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-250</text></g><g id="ezcGraphTextBox_35"><path d=" M 128.8200,139.0000 L 128.8200,123.5000 L 139.0000,123.5000 L 139.0000,139.0000 L 128.8200,139.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_109"/><text id="ezcGraphTextBox_35_text" x="129.32" text-length="8.68px" y="135.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_46"><path d=" M 111.4600,99.0000 L 111.4600,83.5000 L 139.0000,83.5000 L 139.0000,99.0000 L 111.4600,99.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_110"/><text id="ezcGraphTextBox_46_text" x="111.96" text-length="26.04px" y="95.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_57"><path d=" M 111.4600,59.0000 L 111.4600,43.5000 L 139.0000,43.5000 L 139.0000,59.0000 L 111.4600,59.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_111"/><text id="ezcGraphTextBox_57_text" x="111.96" text-length="26.04px" y="55.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_68"><path d=" M 111.4600,37.0000 L 111.4600,21.5000 L 139.0000,21.5000 L 139.0000,37.0000 L 111.4600,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_112"/><text id="ezcGraphTextBox_68_text" x="111.96" text-length="26.04px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChart.svg b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChart.svg
index 24fead5..b4083a1 100644
--- a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChart.svg
+++ b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChart.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,180.0000 L 500.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,184.0000 L 500.0000,180.0000 L 492.0000,176.0000 L 492.0000,184.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 220.0000,177.0000 L 220.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,177.0000 L 300.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 380.0000,177.0000 L 380.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.0000,177.0000 L 460.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 140.0000,168.8000 L 460.0000,168.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 140.0000,169.3333 L 141.0000,169.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 140.0000,159.2000 L 460.0000,159.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,158.6667 L 141.0000,158.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 140.0000,148.0000 L 141.0000,148.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,136.8000 L 460.0000,136.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,137.3333 L 141.0000,137.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,127.2000 L 460.0000,127.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,126.6667 L 143.0000,126.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,116.0000 L 141.0000,116.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 140.0000,104.8000 L 460.0000,104.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 140.0000,105.3333 L 141.0000,105.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,95.2000 L 460.0000,95.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 140.0000,94.6667 L 141.0000,94.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,84.0000 L 141.0000,84.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,72.8000 L 460.0000,72.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 140.0000,73.3333 L 143.0000,73.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,63.2000 L 460.0000,63.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,62.6667 L 141.0000,62.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 140.0000,52.0000 L 141.0000,52.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,40.8000 L 460.0000,40.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 140.0000,41.3333 L 141.0000,41.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,31.2000 L 460.0000,31.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 140.0000,30.6667 L 141.0000,30.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,130.0800 L 140.0000,130.0800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 140.0000,130.0800 L 220.0000,175.5200" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 220.0000,175.5200 L 300.0000,110.8800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 300.0000,110.8800 L 380.0000,154.4000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 380.0000,154.4000 L 460.0000,179.7867" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 140.0000,64.1600 L 140.0000,64.1600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 140.0000,64.1600 L 220.0000,130.0800" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 220.0000,130.0800 L 300.0000,116.4267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 300.0000,116.4267 L 380.0000,178.9333" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 380.0000,178.9333 L 460.0000,49.2267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><ellipse cx="140" cy="130.08" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_68"/><ellipse cx="220" cy="175.52" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_69"/><ellipse cx="300" cy="110.88" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_70"/><ellipse cx="380" cy="154.4" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_71"/><ellipse cx="460" cy="179.7867" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_72"/><ellipse cx="140" cy="64.16" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_73"/><ellipse cx="220" cy="130.08" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_74"/><ellipse cx="300" cy="116.4267" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_75"/><ellipse cx="380" cy="178.9333" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_76"/><ellipse cx="460" cy="49.2267" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_78"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_79"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 185.5800,199.0000 L 185.5800,181.5000 L 254.9200,181.5000 L 254.9200,199.0000 L 185.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_80"/><text id="ezcGraphTextBox_14_text" x="186.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_17"><path d=" M 265.5800,199.0000 L 265.5800,181.5000 L 334.9200,181.5000 L 334.9200,199.0000 L 265.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_81"/><text id="ezcGraphTextBox_17_text" x="266.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_20"><path d=" M 345.5800,199.0000 L 345.5800,181.5000 L 414.9200,181.5000 L 414.9200,199.0000 L 345.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_82"/><text id="ezcGraphTextBox_20_text" x="346.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_23"><path d=" M 425.5800,199.0000 L 425.5800,181.5000 L 494.9200,181.5000 L 494.9200,199.0000 L 425.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_23_text" x="426.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_24"><path d=" M 127.5800,179.0000 L 127.5800,161.5000 L 139.0000,161.5000 L 139.0000,179.0000 L 127.5800,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_24_text" x="128.08" text-length="9.92px" y="175.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_35"><path d=" M 107.7400,125.6667 L 107.7400,108.1667 L 139.0000,108.1667 L 139.0000,125.6667 L 107.7400,125.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_35_text" x="108.24" text-length="29.76px" y="122.2667" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_46"><path d=" M 107.7400,72.3333 L 107.7400,54.8333 L 139.0000,54.8333 L 139.0000,72.3333 L 107.7400,72.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_46_text" x="108.24" text-length="29.76px" y="68.9333" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_57"><path d=" M 107.7400,39.0000 L 107.7400,21.5000 L 139.0000,21.5000 L 139.0000,39.0000 L 107.7400,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_57_text" x="108.24" text-length="29.76px" y="35.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,180.0000 L 500.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,184.0000 L 500.0000,180.0000 L 492.0000,176.0000 L 492.0000,184.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 220.0000,177.0000 L 220.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,177.0000 L 300.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 380.0000,177.0000 L 380.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.0000,177.0000 L 460.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 140.0000,168.8000 L 460.0000,168.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 140.0000,169.3333 L 141.0000,169.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 140.0000,159.2000 L 460.0000,159.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,158.6667 L 141.0000,158.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 140.0000,148.0000 L 141.0000,148.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,136.8000 L 460.0000,136.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,137.3333 L 141.0000,137.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,127.2000 L 460.0000,127.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,126.6667 L 143.0000,126.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,116.0000 L 141.0000,116.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 140.0000,104.8000 L 460.0000,104.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 140.0000,105.3333 L 141.0000,105.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,95.2000 L 460.0000,95.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 140.0000,94.6667 L 141.0000,94.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,84.0000 L 141.0000,84.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,72.8000 L 460.0000,72.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 140.0000,73.3333 L 143.0000,73.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,63.2000 L 460.0000,63.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,62.6667 L 141.0000,62.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 140.0000,52.0000 L 141.0000,52.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,40.8000 L 460.0000,40.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 140.0000,41.3333 L 141.0000,41.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,31.2000 L 460.0000,31.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 140.0000,30.6667 L 141.0000,30.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,130.0800 L 140.0000,130.0800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 140.0000,130.0800 L 220.0000,175.5200" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 220.0000,175.5200 L 300.0000,110.8800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 300.0000,110.8800 L 380.0000,154.4000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 380.0000,154.4000 L 460.0000,179.7867" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 140.0000,64.1600 L 140.0000,64.1600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 140.0000,64.1600 L 220.0000,130.0800" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 220.0000,130.0800 L 300.0000,116.4267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 300.0000,116.4267 L 380.0000,178.9333" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 380.0000,178.9333 L 460.0000,49.2267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><ellipse cx="140" cy="130.08" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_68"/><ellipse cx="220" cy="175.52" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_69"/><ellipse cx="300" cy="110.88" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_70"/><ellipse cx="380" cy="154.4" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_71"/><ellipse cx="460" cy="179.7867" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_72"/><ellipse cx="140" cy="64.16" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_73"/><ellipse cx="220" cy="130.08" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_74"/><ellipse cx="300" cy="116.4267" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_75"/><ellipse cx="380" cy="178.9333" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_76"/><ellipse cx="460" cy="49.2267" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_78"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_79"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 185.5800,199.0000 L 185.5800,181.5000 L 254.9200,181.5000 L 254.9200,199.0000 L 185.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_80"/><text id="ezcGraphTextBox_14_text" x="186.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_17"><path d=" M 265.5800,199.0000 L 265.5800,181.5000 L 334.9200,181.5000 L 334.9200,199.0000 L 265.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_81"/><text id="ezcGraphTextBox_17_text" x="266.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_20"><path d=" M 345.5800,199.0000 L 345.5800,181.5000 L 414.9200,181.5000 L 414.9200,199.0000 L 345.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_82"/><text id="ezcGraphTextBox_20_text" x="346.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_23"><path d=" M 425.5800,199.0000 L 425.5800,181.5000 L 494.9200,181.5000 L 494.9200,199.0000 L 425.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_23_text" x="426.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_24"><path d=" M 127.5800,179.0000 L 127.5800,161.5000 L 139.0000,161.5000 L 139.0000,179.0000 L 127.5800,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_24_text" x="128.08" text-length="9.92px" y="175.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_35"><path d=" M 107.7400,125.6667 L 107.7400,108.1667 L 139.0000,108.1667 L 139.0000,125.6667 L 107.7400,125.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_35_text" x="108.24" text-length="29.76px" y="122.2667" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_46"><path d=" M 107.7400,72.3333 L 107.7400,54.8333 L 139.0000,54.8333 L 139.0000,72.3333 L 107.7400,72.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_46_text" x="108.24" text-length="29.76px" y="68.9333" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_57"><path d=" M 107.7400,39.0000 L 107.7400,21.5000 L 139.0000,21.5000 L 139.0000,39.0000 L 107.7400,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_57_text" x="108.24" text-length="29.76px" y="35.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartToOutput.svg b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartToOutput.svg
index 607df52..be21c24 100644
--- a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartToOutput.svg
+++ b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartToOutput.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 100.0000,180.0000 L 500.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 492.0000,184.0000 L 500.0000,180.0000 L 492.0000,176.0000 L 492.0000,184.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 220.0000,177.0000 L 220.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.0000,177.0000 L 300.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 380.0000,177.0000 L 380.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 460.0000,177.0000 L 460.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 140.0000,170.4000 L 460.0000,170.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 140.0000,170.0000 L 141.0000,170.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 140.0000,160.8000 L 460.0000,159.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 140.0000,160.0000 L 141.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 140.0000,149.6000 L 460.0000,149.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,150.0000 L 141.0000,150.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,140.0000 L 460.0000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 140.0000,140.0000 L 143.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,130.4000 L 460.0000,130.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,130.0000 L 141.0000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,120.8000 L 460.0000,119.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,120.0000 L 141.0000,120.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 140.0000,109.6000 L 460.0000,109.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,110.0000 L 141.0000,110.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 140.0000,100.0000 L 460.0000,100.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 140.0000,100.0000 L 143.0000,100.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,90.4000 L 460.0000,90.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,90.0000 L 141.0000,90.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,80.8000 L 460.0000,79.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,80.0000 L 141.0000,80.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 140.0000,69.6000 L 460.0000,69.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,70.0000 L 141.0000,70.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 140.0000,60.0000 L 460.0000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,60.0000 L 143.0000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 140.0000,50.4000 L 460.0000,50.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,50.0000 L 141.0000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 140.0000,40.8000 L 460.0000,39.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,40.0000 L 141.0000,40.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 140.0000,29.6000 L 460.0000,29.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,30.0000 L 141.0000,30.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 140.0000,86.4000 L 140.0000,86.4000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 140.0000,86.4000 L 220.0000,171.6000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 220.0000,171.6000 L 300.0000,50.4000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 300.0000,50.4000 L 380.0000,132.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 380.0000,132.0000 L 460.0000,179.6000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><ellipse cx="140" cy="86.4" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_64"/><ellipse cx="220" cy="171.6" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_65"/><ellipse cx="300" cy="50.4" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_66"/><ellipse cx="380" cy="132" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_67"/><ellipse cx="460" cy="179.6" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_68"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_12"><path d=" M 185.5800,199.0000 L 185.5800,181.5000 L 254.9200,181.5000 L 254.9200,199.0000 L 185.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_12_text" x="186.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_15"><path d=" M 265.5800,199.0000 L 265.5800,181.5000 L 334.9200,181.5000 L 334.9200,199.0000 L 265.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_71"/><text id="ezcGraphTextBox_15_text" x="266.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_18"><path d=" M 345.5800,199.0000 L 345.5800,181.5000 L 414.9200,181.5000 L 414.9200,199.0000 L 345.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_72"/><text id="ezcGraphTextBox_18_text" x="346.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_21"><path d=" M 425.5800,199.0000 L 425.5800,181.5000 L 494.9200,181.5000 L 494.9200,199.0000 L 425.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_73"/><text id="ezcGraphTextBox_21_text" x="426.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 127.5800,179.0000 L 127.5800,161.5000 L 139.0000,161.5000 L 139.0000,179.0000 L 127.5800,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_74"/><text id="ezcGraphTextBox_22_text" x="128.08" text-length="9.92px" y="175.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31"><path d=" M 107.7400,139.0000 L 107.7400,121.5000 L 139.0000,121.5000 L 139.0000,139.0000 L 107.7400,139.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_75"/><text id="ezcGraphTextBox_31_text" x="108.24" text-length="29.76px" y="135.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_40"><path d=" M 107.7400,99.0000 L 107.7400,81.5000 L 139.0000,81.5000 L 139.0000,99.0000 L 107.7400,99.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_76"/><text id="ezcGraphTextBox_40_text" x="108.24" text-length="29.76px" y="95.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_49"><path d=" M 107.7400,59.0000 L 107.7400,41.5000 L 139.0000,41.5000 L 139.0000,59.0000 L 107.7400,59.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_77"/><text id="ezcGraphTextBox_49_text" x="108.24" text-length="29.76px" y="55.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_58"><path d=" M 107.7400,39.0000 L 107.7400,21.5000 L 139.0000,21.5000 L 139.0000,39.0000 L 107.7400,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_78"/><text id="ezcGraphTextBox_58_text" x="108.24" text-length="29.76px" y="35.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 100.0000,180.0000 L 500.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_6"/><path d=" M 492.0000,184.0000 L 500.0000,180.0000 L 492.0000,176.0000 L 492.0000,184.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_7"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 220.0000,177.0000 L 220.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.0000,177.0000 L 300.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 380.0000,177.0000 L 380.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 460.0000,177.0000 L 460.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 140.0000,170.4000 L 460.0000,170.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 140.0000,170.0000 L 141.0000,170.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 140.0000,160.8000 L 460.0000,159.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 140.0000,160.0000 L 141.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 140.0000,149.6000 L 460.0000,149.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,150.0000 L 141.0000,150.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,140.0000 L 460.0000,140.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 140.0000,140.0000 L 143.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,130.4000 L 460.0000,130.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,130.0000 L 141.0000,130.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,120.8000 L 460.0000,119.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,120.0000 L 141.0000,120.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 140.0000,109.6000 L 460.0000,109.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,110.0000 L 141.0000,110.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 140.0000,100.0000 L 460.0000,100.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 140.0000,100.0000 L 143.0000,100.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,90.4000 L 460.0000,90.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,90.0000 L 141.0000,90.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,80.8000 L 460.0000,79.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,80.0000 L 141.0000,80.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 140.0000,69.6000 L 460.0000,69.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,70.0000 L 141.0000,70.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 140.0000,60.0000 L 460.0000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,60.0000 L 143.0000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 140.0000,50.4000 L 460.0000,50.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,50.0000 L 141.0000,50.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 140.0000,40.8000 L 460.0000,39.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,40.0000 L 141.0000,40.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 140.0000,29.6000 L 460.0000,29.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,30.0000 L 141.0000,30.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 140.0000,86.4000 L 140.0000,86.4000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 140.0000,86.4000 L 220.0000,171.6000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 220.0000,171.6000 L 300.0000,50.4000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 300.0000,50.4000 L 380.0000,132.0000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 380.0000,132.0000 L 460.0000,179.6000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><ellipse cx="140" cy="86.4" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_64"/><ellipse cx="220" cy="171.6" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_65"/><ellipse cx="300" cy="50.4" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_66"/><ellipse cx="380" cy="132" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_67"/><ellipse cx="460" cy="179.6" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_68"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_69"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_12"><path d=" M 185.5800,199.0000 L 185.5800,181.5000 L 254.9200,181.5000 L 254.9200,199.0000 L 185.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_70"/><text id="ezcGraphTextBox_12_text" x="186.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_15"><path d=" M 265.5800,199.0000 L 265.5800,181.5000 L 334.9200,181.5000 L 334.9200,199.0000 L 265.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_71"/><text id="ezcGraphTextBox_15_text" x="266.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_18"><path d=" M 345.5800,199.0000 L 345.5800,181.5000 L 414.9200,181.5000 L 414.9200,199.0000 L 345.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_72"/><text id="ezcGraphTextBox_18_text" x="346.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_21"><path d=" M 425.5800,199.0000 L 425.5800,181.5000 L 494.9200,181.5000 L 494.9200,199.0000 L 425.5800,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_73"/><text id="ezcGraphTextBox_21_text" x="426.08" text-length="67.84px" y="195.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_22"><path d=" M 127.5800,179.0000 L 127.5800,161.5000 L 139.0000,161.5000 L 139.0000,179.0000 L 127.5800,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_74"/><text id="ezcGraphTextBox_22_text" x="128.08" text-length="9.92px" y="175.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_31"><path d=" M 107.7400,139.0000 L 107.7400,121.5000 L 139.0000,121.5000 L 139.0000,139.0000 L 107.7400,139.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_75"/><text id="ezcGraphTextBox_31_text" x="108.24" text-length="29.76px" y="135.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_40"><path d=" M 107.7400,99.0000 L 107.7400,81.5000 L 139.0000,81.5000 L 139.0000,99.0000 L 107.7400,99.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_76"/><text id="ezcGraphTextBox_40_text" x="108.24" text-length="29.76px" y="95.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_49"><path d=" M 107.7400,59.0000 L 107.7400,41.5000 L 139.0000,41.5000 L 139.0000,59.0000 L 107.7400,59.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_77"/><text id="ezcGraphTextBox_49_text" x="108.24" text-length="29.76px" y="55.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_58"><path d=" M 107.7400,39.0000 L 107.7400,21.5000 L 139.0000,21.5000 L 139.0000,39.0000 L 107.7400,39.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_78"/><text id="ezcGraphTextBox_58_text" x="108.24" text-length="29.76px" y="35.6" style="font-size: 16px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithAxisLabels.svg b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithAxisLabels.svg
index c460424..ae47d17 100644
--- a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithAxisLabels.svg
+++ b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithAxisLabels.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,180.0000 L 500.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,184.0000 L 500.0000,180.0000 L 492.0000,176.0000 L 492.0000,184.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 220.0000,177.0000 L 220.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 300.0000,177.0000 L 300.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 380.0000,177.0000 L 380.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 460.0000,177.0000 L 460.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 140.0000,168.8000 L 460.0000,168.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,169.3333 L 141.0000,169.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,159.2000 L 460.0000,159.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 140.0000,158.6667 L 141.0000,158.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,148.0000 L 141.0000,148.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,136.8000 L 460.0000,136.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,137.3333 L 141.0000,137.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,127.2000 L 460.0000,127.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 140.0000,126.6667 L 143.0000,126.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 140.0000,116.0000 L 141.0000,116.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,104.8000 L 460.0000,104.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 140.0000,105.3333 L 141.0000,105.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,95.2000 L 460.0000,95.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,94.6667 L 141.0000,94.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 140.0000,84.0000 L 141.0000,84.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,72.8000 L 460.0000,72.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 140.0000,73.3333 L 143.0000,73.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,63.2000 L 460.0000,63.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 140.0000,62.6667 L 141.0000,62.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 140.0000,52.0000 L 141.0000,52.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,40.8000 L 460.0000,40.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 140.0000,41.3333 L 141.0000,41.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,31.2000 L 460.0000,31.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 140.0000,30.6667 L 141.0000,30.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 140.0000,130.0800 L 140.0000,130.0800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 140.0000,130.0800 L 220.0000,175.5200" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 220.0000,175.5200 L 300.0000,110.8800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 300.0000,110.8800 L 380.0000,154.4000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 380.0000,154.4000 L 460.0000,179.7867" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 140.0000,64.1600 L 140.0000,64.1600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 140.0000,64.1600 L 220.0000,130.0800" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 220.0000,130.0800 L 300.0000,116.4267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 300.0000,116.4267 L 380.0000,178.9333" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 380.0000,178.9333 L 460.0000,49.2267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><ellipse cx="140" cy="130.08" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_70"/><ellipse cx="220" cy="175.52" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_71"/><ellipse cx="300" cy="110.88" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_72"/><ellipse cx="380" cy="154.4" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_73"/><ellipse cx="460" cy="179.7867" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_74"/><ellipse cx="140" cy="64.16" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_75"/><ellipse cx="220" cy="130.08" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_76"/><ellipse cx="300" cy="116.4267" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="380" cy="178.9333" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="460" cy="49.2267" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_80"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_81"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_10"><path d=" M 445.5600,179.0000 L 445.5600,163.5000 L 499.0000,163.5000 L 499.0000,179.0000 L 445.5600,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_82"/><text id="ezcGraphTextBox_10_text" x="446.06" text-length="51.94px" y="175.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Samples</text></g><g id="ezcGraphTextBox_13"><path d=" M 141.5000,17.0000 L 141.5000,1.5000 L 194.9400,1.5000 L 194.9400,17.0000 L 141.5000,17.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_13_text" x="142" text-length="51.94px" y="13.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Numbers</text></g><g id="ezcGraphTextBox_16"><path d=" M 189.8200,197.0000 L 189.8200,181.5000 L 250.6800,181.5000 L 250.6800,197.0000 L 189.8200,197.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_16_text" x="190.32" text-length="59.36px" y="193.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_19"><path d=" M 269.8200,197.0000 L 269.8200,181.5000 L 330.6800,181.5000 L 330.6800,197.0000 L 269.8200,197.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_19_text" x="270.32" text-length="59.36px" y="193.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_22"><path d=" M 349.8200,197.0000 L 349.8200,181.5000 L 410.6800,181.5000 L 410.6800,197.0000 L 349.8200,197.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_22_text" x="350.32" text-length="59.36px" y="193.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_25"><path d=" M 429.8200,197.0000 L 429.8200,181.5000 L 490.6800,181.5000 L 490.6800,197.0000 L 429.8200,197.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_25_text" x="430.32" text-length="59.36px" y="193.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_26"><path d=" M 128.8200,179.0000 L 128.8200,163.5000 L 139.0000,163.5000 L 139.0000,179.0000 L 128.8200,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_26_text" x="129.32" text-length="8.68px" y="175.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 111.4600,125.6667 L 111.4600,110.1667 L 139.0000,110.1667 L 139.0000,125.6667 L 111.4600,125.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_37_text" x="111.96" text-length="26.04px" y="122.5667" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_48"><path d=" M 111.4600,72.3333 L 111.4600,56.8333 L 139.0000,56.8333 L 139.0000,72.3333 L 111.4600,72.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_48_text" x="111.96" text-length="26.04px" y="69.2333" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_59"><path d=" M 111.4600,37.0000 L 111.4600,21.5000 L 139.0000,21.5000 L 139.0000,37.0000 L 111.4600,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_59_text" x="111.96" text-length="26.04px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,180.0000 L 500.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,184.0000 L 500.0000,180.0000 L 492.0000,176.0000 L 492.0000,184.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 220.0000,177.0000 L 220.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 300.0000,177.0000 L 300.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 380.0000,177.0000 L 380.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 460.0000,177.0000 L 460.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 140.0000,168.8000 L 460.0000,168.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,169.3333 L 141.0000,169.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,159.2000 L 460.0000,159.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 140.0000,158.6667 L 141.0000,158.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,148.0000 L 141.0000,148.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,136.8000 L 460.0000,136.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,137.3333 L 141.0000,137.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,127.2000 L 460.0000,127.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 140.0000,126.6667 L 143.0000,126.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 140.0000,116.0000 L 141.0000,116.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,104.8000 L 460.0000,104.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 140.0000,105.3333 L 141.0000,105.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,95.2000 L 460.0000,95.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,94.6667 L 141.0000,94.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 140.0000,84.0000 L 141.0000,84.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,72.8000 L 460.0000,72.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 140.0000,73.3333 L 143.0000,73.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,63.2000 L 460.0000,63.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 140.0000,62.6667 L 141.0000,62.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 140.0000,52.0000 L 141.0000,52.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,40.8000 L 460.0000,40.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 140.0000,41.3333 L 141.0000,41.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,31.2000 L 460.0000,31.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 140.0000,30.6667 L 141.0000,30.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 140.0000,130.0800 L 140.0000,130.0800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 140.0000,130.0800 L 220.0000,175.5200" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 220.0000,175.5200 L 300.0000,110.8800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 300.0000,110.8800 L 380.0000,154.4000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 380.0000,154.4000 L 460.0000,179.7867" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 140.0000,64.1600 L 140.0000,64.1600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 140.0000,64.1600 L 220.0000,130.0800" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 220.0000,130.0800 L 300.0000,116.4267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 300.0000,116.4267 L 380.0000,178.9333" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 380.0000,178.9333 L 460.0000,49.2267" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><ellipse cx="140" cy="130.08" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_70"/><ellipse cx="220" cy="175.52" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_71"/><ellipse cx="300" cy="110.88" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_72"/><ellipse cx="380" cy="154.4" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_73"/><ellipse cx="460" cy="179.7867" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_74"/><ellipse cx="140" cy="64.16" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_75"/><ellipse cx="220" cy="130.08" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_76"/><ellipse cx="300" cy="116.4267" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="380" cy="178.9333" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="460" cy="49.2267" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_80"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_81"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_10"><path d=" M 445.5600,179.0000 L 445.5600,163.5000 L 499.0000,163.5000 L 499.0000,179.0000 L 445.5600,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_82"/><text id="ezcGraphTextBox_10_text" x="446.06" text-length="51.94px" y="175.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Samples</text></g><g id="ezcGraphTextBox_13"><path d=" M 141.5000,17.0000 L 141.5000,1.5000 L 194.9400,1.5000 L 194.9400,17.0000 L 141.5000,17.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_13_text" x="142" text-length="51.94px" y="13.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Numbers</text></g><g id="ezcGraphTextBox_16"><path d=" M 189.8200,197.0000 L 189.8200,181.5000 L 250.6800,181.5000 L 250.6800,197.0000 L 189.8200,197.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_16_text" x="190.32" text-length="59.36px" y="193.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_19"><path d=" M 269.8200,197.0000 L 269.8200,181.5000 L 330.6800,181.5000 L 330.6800,197.0000 L 269.8200,197.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_19_text" x="270.32" text-length="59.36px" y="193.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_22"><path d=" M 349.8200,197.0000 L 349.8200,181.5000 L 410.6800,181.5000 L 410.6800,197.0000 L 349.8200,197.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_22_text" x="350.32" text-length="59.36px" y="193.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_25"><path d=" M 429.8200,197.0000 L 429.8200,181.5000 L 490.6800,181.5000 L 490.6800,197.0000 L 429.8200,197.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_25_text" x="430.32" text-length="59.36px" y="193.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_26"><path d=" M 128.8200,179.0000 L 128.8200,163.5000 L 139.0000,163.5000 L 139.0000,179.0000 L 128.8200,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_26_text" x="129.32" text-length="8.68px" y="175.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 111.4600,125.6667 L 111.4600,110.1667 L 139.0000,110.1667 L 139.0000,125.6667 L 111.4600,125.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_37_text" x="111.96" text-length="26.04px" y="122.5667" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_48"><path d=" M 111.4600,72.3333 L 111.4600,56.8333 L 139.0000,56.8333 L 139.0000,72.3333 L 111.4600,72.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_48_text" x="111.96" text-length="26.04px" y="69.2333" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_59"><path d=" M 111.4600,37.0000 L 111.4600,21.5000 L 139.0000,21.5000 L 139.0000,37.0000 L 111.4600,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_59_text" x="111.96" text-length="26.04px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithAxisLabelsReversedAxis.svg b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithAxisLabelsReversedAxis.svg
index 3903287..1ae6f8b 100644
--- a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithAxisLabelsReversedAxis.svg
+++ b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithAxisLabelsReversedAxis.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 500.0000,20.0000 L 100.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 108.0000,16.0000 L 100.0000,20.0000 L 108.0000,24.0000 L 108.0000,16.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 460.0000,0.0000 L 460.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 462.5000,195.0000 L 460.0000,200.0000 L 457.5000,195.0000 L 462.5000,195.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 380.0000,20.0000 L 380.0000,17.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 300.0000,20.0000 L 300.0000,17.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 220.0000,20.0000 L 220.0000,17.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 140.0000,20.0000 L 140.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 140.0000,20.0000 L 140.0000,17.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 140.0000,31.2000 L 460.0000,31.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 461.0000,30.6667 L 460.0000,30.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,40.8000 L 460.0000,40.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 461.0000,41.3333 L 460.0000,41.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 461.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,63.2000 L 460.0000,63.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 461.0000,62.6667 L 460.0000,62.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,72.8000 L 460.0000,72.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 463.0000,73.3333 L 460.0000,73.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 461.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,95.2000 L 460.0000,95.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 461.0000,94.6667 L 460.0000,94.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,104.8000 L 460.0000,104.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 461.0000,105.3333 L 460.0000,105.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 461.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,127.2000 L 460.0000,127.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 463.0000,126.6667 L 460.0000,126.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,136.8000 L 460.0000,136.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 461.0000,137.3333 L 460.0000,137.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 461.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,159.2000 L 460.0000,159.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 461.0000,158.6667 L 460.0000,158.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,168.8000 L 460.0000,168.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 461.0000,169.3333 L 460.0000,169.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,180.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 463.0000,180.0000 L 460.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 460.0000,69.9200 L 460.0000,69.9200" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 460.0000,69.9200 L 380.0000,24.4800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 380.0000,24.4800 L 300.0000,89.1200" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 300.0000,89.1200 L 220.0000,45.6000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 220.0000,45.6000 L 140.0000,20.2133" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 460.0000,135.8400 L 460.0000,135.8400" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 460.0000,135.8400 L 380.0000,69.9200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 380.0000,69.9200 L 300.0000,83.5733" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 300.0000,83.5733 L 220.0000,21.0667" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 220.0000,21.0667 L 140.0000,150.7733" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><ellipse cx="460" cy="69.92" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_70"/><ellipse cx="380" cy="24.48" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_71"/><ellipse cx="300" cy="89.12" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_72"/><ellipse cx="220" cy="45.6" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_73"/><ellipse cx="140" cy="20.2133" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_74"/><ellipse cx="460" cy="135.84" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_75"/><ellipse cx="380" cy="69.92" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_76"/><ellipse cx="300" cy="83.5733" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="220" cy="21.0667" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="140" cy="150.7733" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_80"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_81"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_10"><path d=" M 99.5000,19.0000 L 99.5000,3.5000 L 152.9400,3.5000 L 152.9400,19.0000 L 99.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_82"/><text id="ezcGraphTextBox_10_text" x="100" text-length="51.94px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Samples</text></g><g id="ezcGraphTextBox_13"><path d=" M 407.5600,199.0000 L 407.5600,183.5000 L 461.0000,183.5000 L 461.0000,199.0000 L 407.5600,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_13_text" x="408.06" text-length="51.94px" y="195.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Numbers</text></g><g id="ezcGraphTextBox_16"><path d=" M 349.8200,37.0000 L 349.8200,21.5000 L 410.6800,21.5000 L 410.6800,37.0000 L 349.8200,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_16_text" x="350.32" text-length="59.36px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_19"><path d=" M 269.8200,37.0000 L 269.8200,21.5000 L 330.6800,21.5000 L 330.6800,37.0000 L 269.8200,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_19_text" x="270.32" text-length="59.36px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_22"><path d=" M 189.8200,37.0000 L 189.8200,21.5000 L 250.6800,21.5000 L 250.6800,37.0000 L 189.8200,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_22_text" x="190.32" text-length="59.36px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_25"><path d=" M 109.8200,37.0000 L 109.8200,21.5000 L 170.6800,21.5000 L 170.6800,37.0000 L 109.8200,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_25_text" x="110.32" text-length="59.36px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_26"><path d=" M 448.8200,37.0000 L 448.8200,21.5000 L 459.0000,21.5000 L 459.0000,37.0000 L 448.8200,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_26_text" x="449.32" text-length="8.68px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 431.4600,90.3333 L 431.4600,74.8333 L 459.0000,74.8333 L 459.0000,90.3333 L 431.4600,90.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_37_text" x="431.96" text-length="26.04px" y="87.2333" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_48"><path d=" M 431.4600,143.6667 L 431.4600,128.1667 L 459.0000,128.1667 L 459.0000,143.6667 L 431.4600,143.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_48_text" x="431.96" text-length="26.04px" y="140.5667" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_59"><path d=" M 431.4600,179.0000 L 431.4600,163.5000 L 459.0000,163.5000 L 459.0000,179.0000 L 431.4600,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_59_text" x="431.96" text-length="26.04px" y="175.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 500.0000,20.0000 L 100.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 108.0000,16.0000 L 100.0000,20.0000 L 108.0000,24.0000 L 108.0000,16.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 460.0000,0.0000 L 460.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 462.5000,195.0000 L 460.0000,200.0000 L 457.5000,195.0000 L 462.5000,195.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 380.0000,20.0000 L 380.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 380.0000,20.0000 L 380.0000,17.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,20.0000 L 300.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 300.0000,20.0000 L 300.0000,17.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 220.0000,20.0000 L 220.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 220.0000,20.0000 L 220.0000,17.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 140.0000,20.0000 L 140.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 140.0000,20.0000 L 140.0000,17.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 140.0000,31.2000 L 460.0000,31.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 461.0000,30.6667 L 460.0000,30.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,40.8000 L 460.0000,40.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 461.0000,41.3333 L 460.0000,41.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 461.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,63.2000 L 460.0000,63.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 461.0000,62.6667 L 460.0000,62.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,72.8000 L 460.0000,72.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 463.0000,73.3333 L 460.0000,73.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 461.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,95.2000 L 460.0000,95.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 461.0000,94.6667 L 460.0000,94.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,104.8000 L 460.0000,104.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 461.0000,105.3333 L 460.0000,105.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 461.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,127.2000 L 460.0000,127.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 463.0000,126.6667 L 460.0000,126.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,136.8000 L 460.0000,136.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 461.0000,137.3333 L 460.0000,137.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 461.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,159.2000 L 460.0000,159.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 461.0000,158.6667 L 460.0000,158.6667" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,168.8000 L 460.0000,168.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 461.0000,169.3333 L 460.0000,169.3333" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,180.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 463.0000,180.0000 L 460.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 460.0000,69.9200 L 460.0000,69.9200" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 460.0000,69.9200 L 380.0000,24.4800" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 380.0000,24.4800 L 300.0000,89.1200" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 300.0000,89.1200 L 220.0000,45.6000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 220.0000,45.6000 L 140.0000,20.2133" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 460.0000,135.8400 L 460.0000,135.8400" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 460.0000,135.8400 L 380.0000,69.9200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 380.0000,69.9200 L 300.0000,83.5733" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 300.0000,83.5733 L 220.0000,21.0667" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 220.0000,21.0667 L 140.0000,150.7733" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><ellipse cx="460" cy="69.92" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_70"/><ellipse cx="380" cy="24.48" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_71"/><ellipse cx="300" cy="89.12" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_72"/><ellipse cx="220" cy="45.6" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_73"/><ellipse cx="140" cy="20.2133" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_74"/><ellipse cx="460" cy="135.84" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_75"/><ellipse cx="380" cy="69.92" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_76"/><ellipse cx="300" cy="83.5733" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><ellipse cx="220" cy="21.0667" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_78"/><ellipse cx="140" cy="150.7733" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_79"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_80"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_81"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_10"><path d=" M 99.5000,19.0000 L 99.5000,3.5000 L 152.9400,3.5000 L 152.9400,19.0000 L 99.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_82"/><text id="ezcGraphTextBox_10_text" x="100" text-length="51.94px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Samples</text></g><g id="ezcGraphTextBox_13"><path d=" M 407.5600,199.0000 L 407.5600,183.5000 L 461.0000,183.5000 L 461.0000,199.0000 L 407.5600,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_13_text" x="408.06" text-length="51.94px" y="195.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Numbers</text></g><g id="ezcGraphTextBox_16"><path d=" M 349.8200,37.0000 L 349.8200,21.5000 L 410.6800,21.5000 L 410.6800,37.0000 L 349.8200,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_16_text" x="350.32" text-length="59.36px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_19"><path d=" M 269.8200,37.0000 L 269.8200,21.5000 L 330.6800,21.5000 L 330.6800,37.0000 L 269.8200,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_19_text" x="270.32" text-length="59.36px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_22"><path d=" M 189.8200,37.0000 L 189.8200,21.5000 L 250.6800,21.5000 L 250.6800,37.0000 L 189.8200,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_22_text" x="190.32" text-length="59.36px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_25"><path d=" M 109.8200,37.0000 L 109.8200,21.5000 L 170.6800,21.5000 L 170.6800,37.0000 L 109.8200,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_25_text" x="110.32" text-length="59.36px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_26"><path d=" M 448.8200,37.0000 L 448.8200,21.5000 L 459.0000,21.5000 L 459.0000,37.0000 L 448.8200,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_88"/><text id="ezcGraphTextBox_26_text" x="449.32" text-length="8.68px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 431.4600,90.3333 L 431.4600,74.8333 L 459.0000,74.8333 L 459.0000,90.3333 L 431.4600,90.3333 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><text id="ezcGraphTextBox_37_text" x="431.96" text-length="26.04px" y="87.2333" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_48"><path d=" M 431.4600,143.6667 L 431.4600,128.1667 L 459.0000,128.1667 L 459.0000,143.6667 L 431.4600,143.6667 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_90"/><text id="ezcGraphTextBox_48_text" x="431.96" text-length="26.04px" y="140.5667" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_59"><path d=" M 431.4600,179.0000 L 431.4600,163.5000 L 459.0000,163.5000 L 459.0000,179.0000 L 431.4600,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_91"/><text id="ezcGraphTextBox_59_text" x="431.96" text-length="26.04px" y="175.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithDifferentAxisSpace.svg b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithDifferentAxisSpace.svg
index 963eb43..9f7642e 100644
--- a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithDifferentAxisSpace.svg
+++ b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithDifferentAxisSpace.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,160.0000 L 500.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,164.0000 L 500.0000,160.0000 L 492.0000,156.0000 L 492.0000,164.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 120.0000,200.0000 L 120.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 119.0000,2.0000 L 120.0000,0.0000 L 121.0000,2.0000 L 119.0000,2.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 210.0000,40.0000 L 210.0000,160.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 210.0000,157.0000 L 210.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.0000,40.0000 L 300.0000,160.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,157.0000 L 300.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 390.0000,40.0000 L 390.0000,160.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 390.0000,157.0000 L 390.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 480.0000,40.0000 L 480.0000,160.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 480.0000,157.0000 L 480.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 120.0000,152.2000 L 480.0000,152.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 120.0000,152.0000 L 121.0000,152.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 120.0000,143.2000 L 480.0000,143.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 120.0000,144.0000 L 121.0000,144.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 120.0000,136.0000 L 480.0000,136.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 120.0000,136.0000 L 121.0000,136.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 120.0000,128.8000 L 480.0000,128.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 120.0000,128.0000 L 121.0000,128.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 120.0000,119.8000 L 480.0000,119.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 120.0000,120.0000 L 123.0000,120.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 120.0000,112.6000 L 480.0000,112.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 120.0000,112.0000 L 121.0000,112.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 120.0000,103.6000 L 480.0000,103.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 120.0000,104.0000 L 121.0000,104.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 120.0000,96.4000 L 480.0000,96.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 120.0000,96.0000 L 121.0000,96.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 120.0000,87.4000 L 480.0000,87.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 120.0000,88.0000 L 121.0000,88.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 120.0000,80.2000 L 480.0000,80.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 120.0000,80.0000 L 123.0000,80.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 120.0000,71.2000 L 480.0000,71.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 120.0000,72.0000 L 121.0000,72.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 120.0000,64.0000 L 480.0000,64.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 120.0000,64.0000 L 121.0000,64.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 120.0000,56.8000 L 480.0000,56.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 120.0000,56.0000 L 121.0000,56.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 120.0000,47.8000 L 480.0000,47.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 120.0000,48.0000 L 121.0000,48.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 120.0000,40.6000 L 480.0000,40.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 120.0000,40.0000 L 123.0000,40.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 120.0000,122.5600 L 120.0000,122.5600" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 120.0000,122.5600 L 210.0000,156.6400" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 210.0000,156.6400 L 300.0000,108.1600" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 300.0000,108.1600 L 390.0000,140.8000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 390.0000,140.8000 L 480.0000,159.8400" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 120.0000,73.1200 L 120.0000,73.1200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 120.0000,73.1200 L 210.0000,122.5600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 210.0000,122.5600 L 300.0000,112.3200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 300.0000,112.3200 L 390.0000,159.2000" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 390.0000,159.2000 L 480.0000,61.9200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><ellipse cx="120" cy="122.56" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_68"/><ellipse cx="210" cy="156.64" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_69"/><ellipse cx="300" cy="108.16" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_70"/><ellipse cx="390" cy="140.8" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_71"/><ellipse cx="480" cy="159.84" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_72"/><ellipse cx="120" cy="73.12" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_73"/><ellipse cx="210" cy="122.56" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_74"/><ellipse cx="300" cy="112.32" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_75"/><ellipse cx="390" cy="159.2" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_76"/><ellipse cx="480" cy="61.92" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_78"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_79"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 192.5400,171.0000 L 192.5400,161.5000 L 227.9600,161.5000 L 227.9600,171.0000 L 192.5400,171.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_80"/><text id="ezcGraphTextBox_14_text" x="193.04" text-length="33.92px" y="168.8" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_17"><path d=" M 282.5400,171.0000 L 282.5400,161.5000 L 317.9600,161.5000 L 317.9600,171.0000 L 282.5400,171.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_81"/><text id="ezcGraphTextBox_17_text" x="283.04" text-length="33.92px" y="168.8" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_20"><path d=" M 372.5400,171.0000 L 372.5400,161.5000 L 407.9600,161.5000 L 407.9600,171.0000 L 372.5400,171.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_82"/><text id="ezcGraphTextBox_20_text" x="373.04" text-length="33.92px" y="168.8" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_23"><path d=" M 462.5400,171.0000 L 462.5400,161.5000 L 497.9600,161.5000 L 497.9600,171.0000 L 462.5400,171.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_23_text" x="463.04" text-length="33.92px" y="168.8" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_24"><path d=" M 112.5400,159.0000 L 112.5400,149.5000 L 119.0000,149.5000 L 119.0000,159.0000 L 112.5400,159.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_24_text" x="113.04" text-length="4.96px" y="156.8" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_35"><path d=" M 102.6200,119.0000 L 102.6200,109.5000 L 119.0000,109.5000 L 119.0000,119.0000 L 102.6200,119.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_35_text" x="103.12" text-length="14.88px" y="116.8" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_46"><path d=" M 102.6200,79.0000 L 102.6200,69.5000 L 119.0000,69.5000 L 119.0000,79.0000 L 102.6200,79.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_46_text" x="103.12" text-length="14.88px" y="76.8" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_57"><path d=" M 102.6200,51.0000 L 102.6200,41.5000 L 119.0000,41.5000 L 119.0000,51.0000 L 102.6200,51.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_57_text" x="103.12" text-length="14.88px" y="48.8" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,160.0000 L 500.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,164.0000 L 500.0000,160.0000 L 492.0000,156.0000 L 492.0000,164.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 120.0000,200.0000 L 120.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 119.0000,2.0000 L 120.0000,0.0000 L 121.0000,2.0000 L 119.0000,2.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 210.0000,40.0000 L 210.0000,160.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 210.0000,157.0000 L 210.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 300.0000,40.0000 L 300.0000,160.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 300.0000,157.0000 L 300.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 390.0000,40.0000 L 390.0000,160.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 390.0000,157.0000 L 390.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 480.0000,40.0000 L 480.0000,160.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 480.0000,157.0000 L 480.0000,160.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 120.0000,152.2000 L 480.0000,152.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 120.0000,152.0000 L 121.0000,152.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 120.0000,143.2000 L 480.0000,143.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 120.0000,144.0000 L 121.0000,144.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 120.0000,136.0000 L 480.0000,136.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 120.0000,136.0000 L 121.0000,136.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 120.0000,128.8000 L 480.0000,128.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 120.0000,128.0000 L 121.0000,128.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 120.0000,119.8000 L 480.0000,119.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 120.0000,120.0000 L 123.0000,120.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 120.0000,112.6000 L 480.0000,112.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 120.0000,112.0000 L 121.0000,112.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 120.0000,103.6000 L 480.0000,103.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 120.0000,104.0000 L 121.0000,104.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 120.0000,96.4000 L 480.0000,96.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 120.0000,96.0000 L 121.0000,96.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 120.0000,87.4000 L 480.0000,87.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 120.0000,88.0000 L 121.0000,88.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 120.0000,80.2000 L 480.0000,80.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 120.0000,80.0000 L 123.0000,80.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 120.0000,71.2000 L 480.0000,71.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 120.0000,72.0000 L 121.0000,72.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 120.0000,64.0000 L 480.0000,64.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 120.0000,64.0000 L 121.0000,64.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 120.0000,56.8000 L 480.0000,56.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 120.0000,56.0000 L 121.0000,56.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 120.0000,47.8000 L 480.0000,47.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 120.0000,48.0000 L 121.0000,48.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 120.0000,40.6000 L 480.0000,40.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 120.0000,40.0000 L 123.0000,40.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 120.0000,122.5600 L 120.0000,122.5600" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 120.0000,122.5600 L 210.0000,156.6400" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 210.0000,156.6400 L 300.0000,108.1600" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_60"/><path d=" M 300.0000,108.1600 L 390.0000,140.8000" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 390.0000,140.8000 L 480.0000,159.8400" style="fill: none; stroke: #729fcf; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 120.0000,73.1200 L 120.0000,73.1200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 120.0000,73.1200 L 210.0000,122.5600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 210.0000,122.5600 L 300.0000,112.3200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 300.0000,112.3200 L 390.0000,159.2000" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 390.0000,159.2000 L 480.0000,61.9200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><ellipse cx="120" cy="122.56" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_68"/><ellipse cx="210" cy="156.64" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_69"/><ellipse cx="300" cy="108.16" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_70"/><ellipse cx="390" cy="140.8" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_71"/><ellipse cx="480" cy="159.84" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_72"/><ellipse cx="120" cy="73.12" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_73"/><ellipse cx="210" cy="122.56" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_74"/><ellipse cx="300" cy="112.32" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_75"/><ellipse cx="390" cy="159.2" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_76"/><ellipse cx="480" cy="61.92" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_77"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_78"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_79"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_14"><path d=" M 192.5400,171.0000 L 192.5400,161.5000 L 227.9600,161.5000 L 227.9600,171.0000 L 192.5400,171.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_80"/><text id="ezcGraphTextBox_14_text" x="193.04" text-length="33.92px" y="168.8" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_17"><path d=" M 282.5400,171.0000 L 282.5400,161.5000 L 317.9600,161.5000 L 317.9600,171.0000 L 282.5400,171.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_81"/><text id="ezcGraphTextBox_17_text" x="283.04" text-length="33.92px" y="168.8" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_20"><path d=" M 372.5400,171.0000 L 372.5400,161.5000 L 407.9600,161.5000 L 407.9600,171.0000 L 372.5400,171.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_82"/><text id="ezcGraphTextBox_20_text" x="373.04" text-length="33.92px" y="168.8" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_23"><path d=" M 462.5400,171.0000 L 462.5400,161.5000 L 497.9600,161.5000 L 497.9600,171.0000 L 462.5400,171.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_83"/><text id="ezcGraphTextBox_23_text" x="463.04" text-length="33.92px" y="168.8" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_24"><path d=" M 112.5400,159.0000 L 112.5400,149.5000 L 119.0000,149.5000 L 119.0000,159.0000 L 112.5400,159.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_84"/><text id="ezcGraphTextBox_24_text" x="113.04" text-length="4.96px" y="156.8" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_35"><path d=" M 102.6200,119.0000 L 102.6200,109.5000 L 119.0000,109.5000 L 119.0000,119.0000 L 102.6200,119.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><text id="ezcGraphTextBox_35_text" x="103.12" text-length="14.88px" y="116.8" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_46"><path d=" M 102.6200,79.0000 L 102.6200,69.5000 L 119.0000,69.5000 L 119.0000,79.0000 L 102.6200,79.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_86"/><text id="ezcGraphTextBox_46_text" x="103.12" text-length="14.88px" y="76.8" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_57"><path d=" M 102.6200,51.0000 L 102.6200,41.5000 L 119.0000,41.5000 L 119.0000,51.0000 L 102.6200,51.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_87"/><text id="ezcGraphTextBox_57_text" x="103.12" text-length="14.88px" y="48.8" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithHighlightedData.svg b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithHighlightedData.svg
index 0690d4b..5bf0045 100644
--- a/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithHighlightedData.svg
+++ b/tests/data/compare/ezcGraphRenderer2dTest_testRenderLineChartWithHighlightedData.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,140.0000 L 500.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,144.0000 L 500.0000,140.0000 L 492.0000,136.0000 L 492.0000,144.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 204.0000,20.0000 L 204.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 204.0000,137.0000 L 204.0000,143.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 268.0000,20.0000 L 268.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 268.0000,137.0000 L 268.0000,143.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 332.0000,20.0000 L 332.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 332.0000,137.0000 L 332.0000,143.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 396.0000,20.0000 L 396.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 396.0000,137.0000 L 396.0000,143.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 460.0000,137.0000 L 460.0000,143.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 140.0000,180.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,180.0000 L 143.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,172.0000 L 460.0000,172.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,172.0000 L 141.0000,172.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,164.0000 L 460.0000,164.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,164.0000 L 141.0000,164.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,156.0000 L 460.0000,156.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,156.0000 L 141.0000,156.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,148.0000 L 141.0000,148.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 140.0000,132.0000 L 460.0000,132.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,132.0000 L 141.0000,132.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 140.0000,124.0000 L 460.0000,124.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,124.0000 L 141.0000,124.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,116.0000 L 141.0000,116.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 140.0000,108.0000 L 460.0000,108.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,108.0000 L 141.0000,108.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 140.0000,100.0000 L 460.0000,100.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,100.0000 L 143.0000,100.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 140.0000,92.0000 L 460.0000,92.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,92.0000 L 141.0000,92.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,84.0000 L 141.0000,84.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 140.0000,76.0000 L 460.0000,76.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,76.0000 L 141.0000,76.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 140.0000,68.0000 L 460.0000,68.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,68.0000 L 141.0000,68.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 140.0000,60.0000 L 460.0000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 140.0000,60.0000 L 143.0000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 140.0000,52.0000 L 141.0000,52.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 140.0000,44.0000 L 460.0000,44.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 140.0000,44.0000 L 141.0000,44.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 140.0000,36.0000 L 460.0000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 140.0000,36.0000 L 141.0000,36.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 140.0000,28.0000 L 460.0000,28.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 140.0000,28.0000 L 141.0000,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 199.2425,140.0000 L 144.7575,140.0000 L 144.7575,102.5600 L 199.2425,102.5600 L 199.2425,140.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 199.2425,140.0000 L 144.7575,140.0000 L 144.7575,102.5600 L 199.2425,102.5600 L 199.2425,140.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><path d=" M 263.2425,140.0000 L 208.7575,140.0000 L 208.7575,143.3600 L 263.2425,143.3600 L 263.2425,140.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 263.2425,140.0000 L 208.7575,140.0000 L 208.7575,143.3600 L 263.2425,143.3600 L 263.2425,140.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 327.2425,140.0000 L 272.7575,140.0000 L 272.7575,88.1600 L 327.2425,88.1600 L 327.2425,140.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 327.2425,140.0000 L 272.7575,140.0000 L 272.7575,88.1600 L 327.2425,88.1600 L 327.2425,140.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_79"/><path d=" M 391.2425,140.0000 L 336.7575,140.0000 L 336.7575,159.2000 L 391.2425,159.2000 L 391.2425,140.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 391.2425,140.0000 L 336.7575,140.0000 L 336.7575,159.2000 L 391.2425,159.2000 L 391.2425,140.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_82"/><path d=" M 455.2425,140.0000 L 400.7575,140.0000 L 400.7575,139.8400 L 455.2425,139.8400 L 455.2425,140.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 455.2425,140.0000 L 400.7575,140.0000 L 400.7575,139.8400 L 455.2425,139.8400 L 455.2425,140.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_85"/><path d=" M 172.0000,53.1200 L 172.0000,53.1200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_87"/><path d=" M 172.0000,53.1200 L 236.0000,102.5600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_88"/><path d=" M 236.0000,102.5600 L 300.0000,92.3200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_89"/><path d=" M 300.0000,92.3200 L 364.0000,139.2000" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_90"/><path d=" M 364.0000,139.2000 L 428.0000,41.9200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><ellipse cx="172" cy="53.12" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_93"/><ellipse cx="236" cy="102.56" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_94"/><ellipse cx="300" cy="92.32" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_95"/><ellipse cx="364" cy="139.2" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_96"/><ellipse cx="428" cy="41.92" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_97"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_99"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_12"><path d=" M 141.8200,157.0000 L 141.8200,141.5000 L 202.6800,141.5000 L 202.6800,157.0000 L 141.8200,157.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_100"/><text id="ezcGraphTextBox_12_text" x="142.32" text-length="59.36px" y="153.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_15"><path d=" M 205.8200,157.0000 L 205.8200,141.5000 L 266.6800,141.5000 L 266.6800,157.0000 L 205.8200,157.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_101"/><text id="ezcGraphTextBox_15_text" x="206.32" text-length="59.36px" y="153.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_18"><path d=" M 269.8200,157.0000 L 269.8200,141.5000 L 330.6800,141.5000 L 330.6800,157.0000 L 269.8200,157.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_102"/><text id="ezcGraphTextBox_18_text" x="270.32" text-length="59.36px" y="153.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_21"><path d=" M 333.8200,157.0000 L 333.8200,141.5000 L 394.6800,141.5000 L 394.6800,157.0000 L 333.8200,157.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_103"/><text id="ezcGraphTextBox_21_text" x="334.32" text-length="59.36px" y="153.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_24"><path d=" M 397.8200,157.0000 L 397.8200,141.5000 L 458.6800,141.5000 L 458.6800,157.0000 L 397.8200,157.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_104"/><text id="ezcGraphTextBox_24_text" x="398.32" text-length="59.36px" y="153.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_29"><path d=" M 102.7800,179.0000 L 102.7800,163.5000 L 139.0000,163.5000 L 139.0000,179.0000 L 102.7800,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_105"/><text id="ezcGraphTextBox_29_text" x="103.28" text-length="34.72px" y="175.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-250</text></g><g id="ezcGraphTextBox_38"><path d=" M 128.8200,139.0000 L 128.8200,123.5000 L 139.0000,123.5000 L 139.0000,139.0000 L 128.8200,139.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_106"/><text id="ezcGraphTextBox_38_text" x="129.32" text-length="8.68px" y="135.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_49"><path d=" M 111.4600,99.0000 L 111.4600,83.5000 L 139.0000,83.5000 L 139.0000,99.0000 L 111.4600,99.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_107"/><text id="ezcGraphTextBox_49_text" x="111.96" text-length="26.04px" y="95.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_60"><path d=" M 111.4600,59.0000 L 111.4600,43.5000 L 139.0000,43.5000 L 139.0000,59.0000 L 111.4600,59.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_108"/><text id="ezcGraphTextBox_60_text" x="111.96" text-length="26.04px" y="55.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_71"><path d=" M 111.4600,37.0000 L 111.4600,21.5000 L 139.0000,21.5000 L 139.0000,37.0000 L 111.4600,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_109"/><text id="ezcGraphTextBox_71_text" x="111.96" text-length="26.04px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g><g id="ezcGraphTextBox_74"><path d=" M 162.2000,96.5600 L 162.2000,85.0600 L 182.3000,85.0600 L 182.3000,96.5600 L 162.2000,96.5600 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_110"/><path d=" M 162.2000,96.5600 L 162.2000,85.0600 L 182.3000,85.0600 L 182.3000,96.5600 L 162.2000,96.5600 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_111"/><text id="ezcGraphTextBox_74_text" x="162.7" text-length="18.6px" y="94.06" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">234</text></g><g id="ezcGraphTextBox_77"><path d=" M 226.2000,161.3600 L 226.2000,149.8600 L 246.3000,149.8600 L 246.3000,161.3600 L 226.2000,161.3600 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_112"/><path d=" M 226.2000,161.3600 L 226.2000,149.8600 L 246.3000,149.8600 L 246.3000,161.3600 L 226.2000,161.3600 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_113"/><text id="ezcGraphTextBox_77_text" x="226.7" text-length="18.6px" y="158.86" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">-21</text></g><g id="ezcGraphTextBox_80"><path d=" M 290.2000,82.1600 L 290.2000,70.6600 L 310.3000,70.6600 L 310.3000,82.1600 L 290.2000,82.1600 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_114"/><path d=" M 290.2000,82.1600 L 290.2000,70.6600 L 310.3000,70.6600 L 310.3000,82.1600 L 290.2000,82.1600 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_115"/><text id="ezcGraphTextBox_80_text" x="290.7" text-length="18.6px" y="79.66" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">324</text></g><g id="ezcGraphTextBox_83"><path d=" M 351.1000,177.2000 L 351.1000,165.7000 L 377.4000,165.7000 L 377.4000,177.2000 L 351.1000,177.2000 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_116"/><path d=" M 351.1000,177.2000 L 351.1000,165.7000 L 377.4000,165.7000 L 377.4000,177.2000 L 351.1000,177.2000 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_117"/><text id="ezcGraphTextBox_83_text" x="351.6" text-length="24.8px" y="174.7" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">-120</text></g><g id="ezcGraphTextBox_86"><path d=" M 424.4000,133.8400 L 424.4000,122.3400 L 432.1000,122.3400 L 432.1000,133.8400 L 424.4000,133.8400 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_118"/><path d=" M 424.4000,133.8400 L 424.4000,122.3400 L 432.1000,122.3400 L 432.1000,133.8400 L 424.4000,133.8400 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_119"/><text id="ezcGraphTextBox_86_text" x="424.9" text-length="6.2px" y="131.34" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_92"><path d=" M 418.2000,35.9200 L 418.2000,24.4200 L 438.3000,24.4200 L 438.3000,35.9200 L 418.2000,35.9200 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_120"/><path d=" M 418.2000,35.9200 L 418.2000,24.4200 L 438.3000,24.4200 L 438.3000,35.9200 L 418.2000,35.9200 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_121"/><text id="ezcGraphTextBox_92_text" x="418.7" text-length="18.6px" y="33.42" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">613</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,140.0000 L 500.0000,140.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_8"/><path d=" M 492.0000,144.0000 L 500.0000,140.0000 L 492.0000,136.0000 L 492.0000,144.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 140.0000,200.0000 L 140.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 137.5000,5.0000 L 140.0000,0.0000 L 142.5000,5.0000 L 137.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 204.0000,20.0000 L 204.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 204.0000,137.0000 L 204.0000,143.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 268.0000,20.0000 L 268.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 268.0000,137.0000 L 268.0000,143.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 332.0000,20.0000 L 332.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 332.0000,137.0000 L 332.0000,143.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 396.0000,20.0000 L 396.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 396.0000,137.0000 L 396.0000,143.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 460.0000,20.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 460.0000,137.0000 L 460.0000,143.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 140.0000,180.0000 L 460.0000,180.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 140.0000,180.0000 L 143.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 140.0000,172.0000 L 460.0000,172.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 140.0000,172.0000 L 141.0000,172.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 140.0000,164.0000 L 460.0000,164.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 140.0000,164.0000 L 141.0000,164.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 140.0000,156.0000 L 460.0000,156.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 140.0000,156.0000 L 141.0000,156.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 140.0000,148.0000 L 460.0000,148.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 140.0000,148.0000 L 141.0000,148.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 140.0000,132.0000 L 460.0000,132.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 140.0000,132.0000 L 141.0000,132.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 140.0000,124.0000 L 460.0000,124.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 140.0000,124.0000 L 141.0000,124.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 140.0000,116.0000 L 460.0000,116.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 140.0000,116.0000 L 141.0000,116.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 140.0000,108.0000 L 460.0000,108.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 140.0000,108.0000 L 141.0000,108.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 140.0000,100.0000 L 460.0000,100.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 140.0000,100.0000 L 143.0000,100.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 140.0000,92.0000 L 460.0000,92.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 140.0000,92.0000 L 141.0000,92.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 140.0000,84.0000 L 460.0000,84.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 140.0000,84.0000 L 141.0000,84.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 140.0000,76.0000 L 460.0000,76.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 140.0000,76.0000 L 141.0000,76.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 140.0000,68.0000 L 460.0000,68.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 140.0000,68.0000 L 141.0000,68.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 140.0000,60.0000 L 460.0000,60.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 140.0000,60.0000 L 143.0000,60.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 140.0000,52.0000 L 460.0000,52.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 140.0000,52.0000 L 141.0000,52.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 140.0000,44.0000 L 460.0000,44.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 140.0000,44.0000 L 141.0000,44.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 140.0000,36.0000 L 460.0000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 140.0000,36.0000 L 141.0000,36.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 140.0000,28.0000 L 460.0000,28.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 140.0000,28.0000 L 141.0000,28.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 140.0000,20.0000 L 460.0000,20.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 140.0000,20.0000 L 143.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 199.2425,140.0000 L 144.7575,140.0000 L 144.7575,102.5600 L 199.2425,102.5600 L 199.2425,140.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 199.2425,140.0000 L 144.7575,140.0000 L 144.7575,102.5600 L 199.2425,102.5600 L 199.2425,140.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><path d=" M 263.2425,140.0000 L 208.7575,140.0000 L 208.7575,143.3600 L 263.2425,143.3600 L 263.2425,140.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 263.2425,140.0000 L 208.7575,140.0000 L 208.7575,143.3600 L 263.2425,143.3600 L 263.2425,140.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 327.2425,140.0000 L 272.7575,140.0000 L 272.7575,88.1600 L 327.2425,88.1600 L 327.2425,140.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 327.2425,140.0000 L 272.7575,140.0000 L 272.7575,88.1600 L 327.2425,88.1600 L 327.2425,140.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_79"/><path d=" M 391.2425,140.0000 L 336.7575,140.0000 L 336.7575,159.2000 L 391.2425,159.2000 L 391.2425,140.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 391.2425,140.0000 L 336.7575,140.0000 L 336.7575,159.2000 L 391.2425,159.2000 L 391.2425,140.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_82"/><path d=" M 455.2425,140.0000 L 400.7575,140.0000 L 400.7575,139.8400 L 455.2425,139.8400 L 455.2425,140.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 455.2425,140.0000 L 400.7575,140.0000 L 400.7575,139.8400 L 455.2425,139.8400 L 455.2425,140.0000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_85"/><path d=" M 172.0000,53.1200 L 172.0000,53.1200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_87"/><path d=" M 172.0000,53.1200 L 236.0000,102.5600" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_88"/><path d=" M 236.0000,102.5600 L 300.0000,92.3200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_89"/><path d=" M 300.0000,92.3200 L 364.0000,139.2000" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_90"/><path d=" M 364.0000,139.2000 L 428.0000,41.9200" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><ellipse cx="172" cy="53.12" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_93"/><ellipse cx="236" cy="102.56" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_94"/><ellipse cx="300" cy="92.32" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_95"/><ellipse cx="364" cy="139.2" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_96"/><ellipse cx="428" cy="41.92" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_97"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_99"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_12"><path d=" M 141.8200,157.0000 L 141.8200,141.5000 L 202.6800,141.5000 L 202.6800,157.0000 L 141.8200,157.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_100"/><text id="ezcGraphTextBox_12_text" x="142.32" text-length="59.36px" y="153.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_15"><path d=" M 205.8200,157.0000 L 205.8200,141.5000 L 266.6800,141.5000 L 266.6800,157.0000 L 205.8200,157.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_101"/><text id="ezcGraphTextBox_15_text" x="206.32" text-length="59.36px" y="153.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_18"><path d=" M 269.8200,157.0000 L 269.8200,141.5000 L 330.6800,141.5000 L 330.6800,157.0000 L 269.8200,157.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_102"/><text id="ezcGraphTextBox_18_text" x="270.32" text-length="59.36px" y="153.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_21"><path d=" M 333.8200,157.0000 L 333.8200,141.5000 L 394.6800,141.5000 L 394.6800,157.0000 L 333.8200,157.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_103"/><text id="ezcGraphTextBox_21_text" x="334.32" text-length="59.36px" y="153.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_24"><path d=" M 397.8200,157.0000 L 397.8200,141.5000 L 458.6800,141.5000 L 458.6800,157.0000 L 397.8200,157.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_104"/><text id="ezcGraphTextBox_24_text" x="398.32" text-length="59.36px" y="153.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_29"><path d=" M 102.7800,179.0000 L 102.7800,163.5000 L 139.0000,163.5000 L 139.0000,179.0000 L 102.7800,179.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_105"/><text id="ezcGraphTextBox_29_text" x="103.28" text-length="34.72px" y="175.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-250</text></g><g id="ezcGraphTextBox_38"><path d=" M 128.8200,139.0000 L 128.8200,123.5000 L 139.0000,123.5000 L 139.0000,139.0000 L 128.8200,139.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_106"/><text id="ezcGraphTextBox_38_text" x="129.32" text-length="8.68px" y="135.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_49"><path d=" M 111.4600,99.0000 L 111.4600,83.5000 L 139.0000,83.5000 L 139.0000,99.0000 L 111.4600,99.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_107"/><text id="ezcGraphTextBox_49_text" x="111.96" text-length="26.04px" y="95.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_60"><path d=" M 111.4600,59.0000 L 111.4600,43.5000 L 139.0000,43.5000 L 139.0000,59.0000 L 111.4600,59.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_108"/><text id="ezcGraphTextBox_60_text" x="111.96" text-length="26.04px" y="55.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_71"><path d=" M 111.4600,37.0000 L 111.4600,21.5000 L 139.0000,21.5000 L 139.0000,37.0000 L 111.4600,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_109"/><text id="ezcGraphTextBox_71_text" x="111.96" text-length="26.04px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g><g id="ezcGraphTextBox_74"><path d=" M 162.2000,96.5600 L 162.2000,85.0600 L 182.3000,85.0600 L 182.3000,96.5600 L 162.2000,96.5600 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_110"/><path d=" M 162.2000,96.5600 L 162.2000,85.0600 L 182.3000,85.0600 L 182.3000,96.5600 L 162.2000,96.5600 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_111"/><text id="ezcGraphTextBox_74_text" x="162.7" text-length="18.6px" y="94.06" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">234</text></g><g id="ezcGraphTextBox_77"><path d=" M 226.2000,161.3600 L 226.2000,149.8600 L 246.3000,149.8600 L 246.3000,161.3600 L 226.2000,161.3600 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_112"/><path d=" M 226.2000,161.3600 L 226.2000,149.8600 L 246.3000,149.8600 L 246.3000,161.3600 L 226.2000,161.3600 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_113"/><text id="ezcGraphTextBox_77_text" x="226.7" text-length="18.6px" y="158.86" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">-21</text></g><g id="ezcGraphTextBox_80"><path d=" M 290.2000,82.1600 L 290.2000,70.6600 L 310.3000,70.6600 L 310.3000,82.1600 L 290.2000,82.1600 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_114"/><path d=" M 290.2000,82.1600 L 290.2000,70.6600 L 310.3000,70.6600 L 310.3000,82.1600 L 290.2000,82.1600 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_115"/><text id="ezcGraphTextBox_80_text" x="290.7" text-length="18.6px" y="79.66" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">324</text></g><g id="ezcGraphTextBox_83"><path d=" M 351.1000,177.2000 L 351.1000,165.7000 L 377.4000,165.7000 L 377.4000,177.2000 L 351.1000,177.2000 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_116"/><path d=" M 351.1000,177.2000 L 351.1000,165.7000 L 377.4000,165.7000 L 377.4000,177.2000 L 351.1000,177.2000 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_117"/><text id="ezcGraphTextBox_83_text" x="351.6" text-length="24.8px" y="174.7" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">-120</text></g><g id="ezcGraphTextBox_86"><path d=" M 424.4000,133.8400 L 424.4000,122.3400 L 432.1000,122.3400 L 432.1000,133.8400 L 424.4000,133.8400 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_118"/><path d=" M 424.4000,133.8400 L 424.4000,122.3400 L 432.1000,122.3400 L 432.1000,133.8400 L 424.4000,133.8400 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_119"/><text id="ezcGraphTextBox_86_text" x="424.9" text-length="6.2px" y="131.34" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_92"><path d=" M 418.2000,35.9200 L 418.2000,24.4200 L 438.3000,24.4200 L 438.3000,35.9200 L 418.2000,35.9200 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_120"/><path d=" M 418.2000,35.9200 L 418.2000,24.4200 L 438.3000,24.4200 L 438.3000,35.9200 L 418.2000,35.9200 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_121"/><text id="ezcGraphTextBox_92_text" x="418.7" text-length="18.6px" y="33.42" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">613</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChart.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChart.svg
index 8199d33..2cffa1d 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChart.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChart.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_16"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_19"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_20"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_23"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 462.0000,151.9200 L 158.0000,151.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 462.0000,143.2800 L 158.0000,143.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 462.0000,123.1200 L 158.0000,123.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_49"/><path d=" M 462.0000,94.3200 L 158.0000,94.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 462.0000,85.6800 L 158.0000,85.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 462.0000,56.8800 L 158.0000,56.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_65"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 462.0000,36.7200 L 158.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 462.0000,28.0800 L 158.0000,28.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 148.0000,172.0000 L 148.0000,127.0720 L 224.0000,167.9680 L 224.0000,172.0000 L 148.0000,172.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 234.0000,162.0000 L 234.0000,157.9680 L 224.0000,167.9680 L 224.0000,172.0000 L 234.0000,162.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_84"/><path d=" M 224.0000,172.0000 L 224.0000,167.9680 L 300.0000,109.7920 L 300.0000,172.0000 L 224.0000,172.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 310.0000,162.0000 L 310.0000,99.7920 L 300.0000,109.7920 L 300.0000,172.0000 L 310.0000,162.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_88"/><path d=" M 300.0000,172.0000 L 300.0000,109.7920 L 376.0000,148.9600 L 376.0000,172.0000 L 300.0000,172.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 386.0000,162.0000 L 386.0000,138.9600 L 376.0000,148.9600 L 376.0000,172.0000 L 386.0000,162.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_90"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_92"/><path d=" M 376.0000,172.0000 L 376.0000,148.9600 L 452.0000,171.8080 L 452.0000,172.0000 L 376.0000,172.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_93"/><path d=" M 462.0000,162.0000 L 462.0000,161.8080 L 452.0000,171.8080 L 452.0000,172.0000 L 462.0000,162.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_94"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_98"/><path d=" M 138.0000,182.0000 L 138.0000,77.7440 L 214.0000,137.0720 L 214.0000,182.0000 L 138.0000,182.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_99"/><path d=" M 224.0000,172.0000 L 224.0000,127.0720 L 214.0000,137.0720 L 214.0000,182.0000 L 224.0000,172.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_101"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_102"/><path d=" M 214.0000,182.0000 L 214.0000,137.0720 L 290.0000,124.7840 L 290.0000,182.0000 L 214.0000,182.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_103"/><path d=" M 300.0000,172.0000 L 300.0000,114.7840 L 290.0000,124.7840 L 290.0000,182.0000 L 300.0000,172.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_105"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_106"/><path d=" M 290.0000,182.0000 L 290.0000,124.7840 L 366.0000,181.0400 L 366.0000,182.0000 L 290.0000,182.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_107"/><path d=" M 376.0000,172.0000 L 376.0000,171.0400 L 366.0000,181.0400 L 366.0000,182.0000 L 376.0000,172.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_108"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_109"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_110"/><path d=" M 366.0000,182.0000 L 366.0000,181.0400 L 442.0000,64.3040 L 442.0000,182.0000 L 366.0000,182.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_111"/><path d=" M 452.0000,172.0000 L 452.0000,54.3040 L 442.0000,64.3040 L 442.0000,182.0000 L 452.0000,172.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_112"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_113"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_114"/><ellipse cx="158" cy="117.072" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_115"/><ellipse cx="234" cy="157.968" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_116"/><ellipse cx="310" cy="99.792" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_117"/><ellipse cx="386" cy="138.96" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_118"/><ellipse cx="462" cy="161.808" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_119"/><ellipse cx="148" cy="67.744" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_120"/><ellipse cx="224" cy="127.072" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_121"/><ellipse cx="300" cy="114.784" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_122"/><ellipse cx="376" cy="171.04" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_123"/><ellipse cx="452" cy="54.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_124"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_125"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_126"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_127"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_128"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_129"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_130"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_131"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_132"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_17"><path d=" M 182.9720,199.2000 L 182.9720,183.3000 L 245.5280,183.3000 L 245.5280,199.2000 L 182.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_133"/><text id="ezcGraphTextBox_17_text" x="183.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_21"><path d=" M 258.9720,199.2000 L 258.9720,183.3000 L 321.5280,183.3000 L 321.5280,199.2000 L 258.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_134"/><text id="ezcGraphTextBox_21_text" x="259.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_25"><path d=" M 334.9720,199.2000 L 334.9720,183.3000 L 397.5280,183.3000 L 397.5280,199.2000 L 334.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_135"/><text id="ezcGraphTextBox_25_text" x="335.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_29"><path d=" M 410.9720,199.2000 L 410.9720,183.3000 L 473.5280,183.3000 L 473.5280,199.2000 L 410.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_136"/><text id="ezcGraphTextBox_29_text" x="411.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_30"><path d=" M 126.6720,181.2000 L 126.6720,165.3000 L 137.1000,165.3000 L 137.1000,181.2000 L 126.6720,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_137"/><text id="ezcGraphTextBox_30_text" x="127.172" text-length="8.928px" y="178.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_46"><path d=" M 108.8160,133.2000 L 108.8160,117.3000 L 137.1000,117.3000 L 137.1000,133.2000 L 108.8160,133.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_138"/><text id="ezcGraphTextBox_46_text" x="109.316" text-length="26.784px" y="130.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_62"><path d=" M 108.8160,85.2000 L 108.8160,69.3000 L 137.1000,69.3000 L 137.1000,85.2000 L 108.8160,85.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_139"/><text id="ezcGraphTextBox_62_text" x="109.316" text-length="26.784px" y="82.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_78"><path d=" M 108.8160,55.2000 L 108.8160,39.3000 L 137.1000,39.3000 L 137.1000,55.2000 L 108.8160,55.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_140"/><text id="ezcGraphTextBox_78_text" x="109.316" text-length="26.784px" y="52.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_16"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_19"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_20"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_23"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 462.0000,151.9200 L 158.0000,151.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 462.0000,143.2800 L 158.0000,143.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 462.0000,123.1200 L 158.0000,123.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_49"/><path d=" M 462.0000,94.3200 L 158.0000,94.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 462.0000,85.6800 L 158.0000,85.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 462.0000,56.8800 L 158.0000,56.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_65"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 462.0000,36.7200 L 158.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 462.0000,28.0800 L 158.0000,28.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 148.0000,172.0000 L 148.0000,127.0720 L 224.0000,167.9680 L 224.0000,172.0000 L 148.0000,172.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 234.0000,162.0000 L 234.0000,157.9680 L 224.0000,167.9680 L 224.0000,172.0000 L 234.0000,162.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_84"/><path d=" M 224.0000,172.0000 L 224.0000,167.9680 L 300.0000,109.7920 L 300.0000,172.0000 L 224.0000,172.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 310.0000,162.0000 L 310.0000,99.7920 L 300.0000,109.7920 L 300.0000,172.0000 L 310.0000,162.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_88"/><path d=" M 300.0000,172.0000 L 300.0000,109.7920 L 376.0000,148.9600 L 376.0000,172.0000 L 300.0000,172.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 386.0000,162.0000 L 386.0000,138.9600 L 376.0000,148.9600 L 376.0000,172.0000 L 386.0000,162.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_90"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_92"/><path d=" M 376.0000,172.0000 L 376.0000,148.9600 L 452.0000,171.8080 L 452.0000,172.0000 L 376.0000,172.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_93"/><path d=" M 462.0000,162.0000 L 462.0000,161.8080 L 452.0000,171.8080 L 452.0000,172.0000 L 462.0000,162.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_94"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_98"/><path d=" M 138.0000,182.0000 L 138.0000,77.7440 L 214.0000,137.0720 L 214.0000,182.0000 L 138.0000,182.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_99"/><path d=" M 224.0000,172.0000 L 224.0000,127.0720 L 214.0000,137.0720 L 214.0000,182.0000 L 224.0000,172.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_101"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_102"/><path d=" M 214.0000,182.0000 L 214.0000,137.0720 L 290.0000,124.7840 L 290.0000,182.0000 L 214.0000,182.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_103"/><path d=" M 300.0000,172.0000 L 300.0000,114.7840 L 290.0000,124.7840 L 290.0000,182.0000 L 300.0000,172.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_105"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_106"/><path d=" M 290.0000,182.0000 L 290.0000,124.7840 L 366.0000,181.0400 L 366.0000,182.0000 L 290.0000,182.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_107"/><path d=" M 376.0000,172.0000 L 376.0000,171.0400 L 366.0000,181.0400 L 366.0000,182.0000 L 376.0000,172.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_108"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_109"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_110"/><path d=" M 366.0000,182.0000 L 366.0000,181.0400 L 442.0000,64.3040 L 442.0000,182.0000 L 366.0000,182.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_111"/><path d=" M 452.0000,172.0000 L 452.0000,54.3040 L 442.0000,64.3040 L 442.0000,182.0000 L 452.0000,172.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_112"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_113"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_114"/><ellipse cx="158" cy="117.072" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_115"/><ellipse cx="234" cy="157.968" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_116"/><ellipse cx="310" cy="99.792" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_117"/><ellipse cx="386" cy="138.96" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_118"/><ellipse cx="462" cy="161.808" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_119"/><ellipse cx="148" cy="67.744" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_120"/><ellipse cx="224" cy="127.072" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_121"/><ellipse cx="300" cy="114.784" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_122"/><ellipse cx="376" cy="171.04" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_123"/><ellipse cx="452" cy="54.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_124"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_125"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_126"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_127"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_128"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_129"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_130"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_131"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_132"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_17"><path d=" M 182.9720,199.2000 L 182.9720,183.3000 L 245.5280,183.3000 L 245.5280,199.2000 L 182.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_133"/><text id="ezcGraphTextBox_17_text" x="183.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_21"><path d=" M 258.9720,199.2000 L 258.9720,183.3000 L 321.5280,183.3000 L 321.5280,199.2000 L 258.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_134"/><text id="ezcGraphTextBox_21_text" x="259.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_25"><path d=" M 334.9720,199.2000 L 334.9720,183.3000 L 397.5280,183.3000 L 397.5280,199.2000 L 334.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_135"/><text id="ezcGraphTextBox_25_text" x="335.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_29"><path d=" M 410.9720,199.2000 L 410.9720,183.3000 L 473.5280,183.3000 L 473.5280,199.2000 L 410.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_136"/><text id="ezcGraphTextBox_29_text" x="411.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_30"><path d=" M 126.6720,181.2000 L 126.6720,165.3000 L 137.1000,165.3000 L 137.1000,181.2000 L 126.6720,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_137"/><text id="ezcGraphTextBox_30_text" x="127.172" text-length="8.928px" y="178.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_46"><path d=" M 108.8160,133.2000 L 108.8160,117.3000 L 137.1000,117.3000 L 137.1000,133.2000 L 108.8160,133.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_138"/><text id="ezcGraphTextBox_46_text" x="109.316" text-length="26.784px" y="130.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_62"><path d=" M 108.8160,85.2000 L 108.8160,69.3000 L 137.1000,69.3000 L 137.1000,85.2000 L 108.8160,85.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_139"/><text id="ezcGraphTextBox_62_text" x="109.316" text-length="26.784px" y="82.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_78"><path d=" M 108.8160,55.2000 L 108.8160,39.3000 L 137.1000,39.3000 L 137.1000,55.2000 L 108.8160,55.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_140"/><text id="ezcGraphTextBox_78_text" x="109.316" text-length="26.784px" y="52.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartNonFilledAxis.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartNonFilledAxis.svg
index 4567a28..0ede00d 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartNonFilledAxis.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartNonFilledAxis.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_15"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_18"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_21"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 462.0000,151.9200 L 158.0000,151.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 462.0000,143.2800 L 158.0000,143.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_30"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_32"/><path d=" M 462.0000,123.1200 L 158.0000,123.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_34"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 462.0000,94.3200 L 158.0000,94.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_41"/><path d=" M 462.0000,85.6800 L 158.0000,85.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_43"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 462.0000,56.8800 L 158.0000,56.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 462.0000,36.7200 L 158.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_54"/><path d=" M 462.0000,28.0800 L 158.0000,28.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_56"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_65"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_67"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_68"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_69"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_74"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_75"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_79"/><ellipse cx="158" cy="117.072" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="234" cy="157.968" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="310" cy="99.792" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="386" cy="138.96" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="462" cy="161.808" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="148" cy="67.744" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><ellipse cx="224" cy="127.072" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_86"/><ellipse cx="300" cy="114.784" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_87"/><ellipse cx="376" cy="171.04" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_88"/><ellipse cx="452" cy="54.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_89"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_90"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_92"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_93"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_94"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_95"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_16"><path d=" M 182.9720,199.2000 L 182.9720,183.3000 L 245.5280,183.3000 L 245.5280,199.2000 L 182.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_16_text" x="183.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_19"><path d=" M 258.9720,199.2000 L 258.9720,183.3000 L 321.5280,183.3000 L 321.5280,199.2000 L 258.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_99"/><text id="ezcGraphTextBox_19_text" x="259.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_22"><path d=" M 334.9720,199.2000 L 334.9720,183.3000 L 397.5280,183.3000 L 397.5280,199.2000 L 334.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_100"/><text id="ezcGraphTextBox_22_text" x="335.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_25"><path d=" M 410.9720,199.2000 L 410.9720,183.3000 L 473.5280,183.3000 L 473.5280,199.2000 L 410.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_101"/><text id="ezcGraphTextBox_25_text" x="411.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_26"><path d=" M 126.6720,181.2000 L 126.6720,165.3000 L 137.1000,165.3000 L 137.1000,181.2000 L 126.6720,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_102"/><text id="ezcGraphTextBox_26_text" x="127.172" text-length="8.928px" y="178.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 108.8160,133.2000 L 108.8160,117.3000 L 137.1000,117.3000 L 137.1000,133.2000 L 108.8160,133.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_103"/><text id="ezcGraphTextBox_37_text" x="109.316" text-length="26.784px" y="130.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_48"><path d=" M 108.8160,85.2000 L 108.8160,69.3000 L 137.1000,69.3000 L 137.1000,85.2000 L 108.8160,85.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_104"/><text id="ezcGraphTextBox_48_text" x="109.316" text-length="26.784px" y="82.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_59"><path d=" M 108.8160,55.2000 L 108.8160,39.3000 L 137.1000,39.3000 L 137.1000,55.2000 L 108.8160,55.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_105"/><text id="ezcGraphTextBox_59_text" x="109.316" text-length="26.784px" y="52.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_15"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_18"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_21"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 462.0000,151.9200 L 158.0000,151.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 462.0000,143.2800 L 158.0000,143.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_30"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_32"/><path d=" M 462.0000,123.1200 L 158.0000,123.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_34"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 462.0000,94.3200 L 158.0000,94.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_41"/><path d=" M 462.0000,85.6800 L 158.0000,85.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_43"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 462.0000,56.8800 L 158.0000,56.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 462.0000,36.7200 L 158.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_54"/><path d=" M 462.0000,28.0800 L 158.0000,28.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_56"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_65"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_67"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_68"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_69"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_74"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_75"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_79"/><ellipse cx="158" cy="117.072" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_80"/><ellipse cx="234" cy="157.968" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_81"/><ellipse cx="310" cy="99.792" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_82"/><ellipse cx="386" cy="138.96" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_83"/><ellipse cx="462" cy="161.808" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_84"/><ellipse cx="148" cy="67.744" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_85"/><ellipse cx="224" cy="127.072" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_86"/><ellipse cx="300" cy="114.784" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_87"/><ellipse cx="376" cy="171.04" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_88"/><ellipse cx="452" cy="54.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_89"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_90"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_92"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_93"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_94"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_95"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_96"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_97"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_16"><path d=" M 182.9720,199.2000 L 182.9720,183.3000 L 245.5280,183.3000 L 245.5280,199.2000 L 182.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_98"/><text id="ezcGraphTextBox_16_text" x="183.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_19"><path d=" M 258.9720,199.2000 L 258.9720,183.3000 L 321.5280,183.3000 L 321.5280,199.2000 L 258.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_99"/><text id="ezcGraphTextBox_19_text" x="259.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_22"><path d=" M 334.9720,199.2000 L 334.9720,183.3000 L 397.5280,183.3000 L 397.5280,199.2000 L 334.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_100"/><text id="ezcGraphTextBox_22_text" x="335.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_25"><path d=" M 410.9720,199.2000 L 410.9720,183.3000 L 473.5280,183.3000 L 473.5280,199.2000 L 410.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_101"/><text id="ezcGraphTextBox_25_text" x="411.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_26"><path d=" M 126.6720,181.2000 L 126.6720,165.3000 L 137.1000,165.3000 L 137.1000,181.2000 L 126.6720,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_102"/><text id="ezcGraphTextBox_26_text" x="127.172" text-length="8.928px" y="178.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_37"><path d=" M 108.8160,133.2000 L 108.8160,117.3000 L 137.1000,117.3000 L 137.1000,133.2000 L 108.8160,133.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_103"/><text id="ezcGraphTextBox_37_text" x="109.316" text-length="26.784px" y="130.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_48"><path d=" M 108.8160,85.2000 L 108.8160,69.3000 L 137.1000,69.3000 L 137.1000,85.2000 L 108.8160,85.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_104"/><text id="ezcGraphTextBox_48_text" x="109.316" text-length="26.784px" y="82.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_59"><path d=" M 108.8160,55.2000 L 108.8160,39.3000 L 137.1000,39.3000 L 137.1000,55.2000 L 108.8160,55.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_105"/><text id="ezcGraphTextBox_59_text" x="109.316" text-length="26.784px" y="52.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartNonFilledGrid.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartNonFilledGrid.svg
index 370c339..b5fd419 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartNonFilledGrid.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartNonFilledGrid.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 234.0000,18.0000 L 214.0000,38.0000 L 214.0000,182.0000 L 234.0000,162.0000 L 234.0000,18.0000 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_17"/><path d=" M 310.0000,18.0000 L 290.0000,38.0000 L 290.0000,182.0000 L 310.0000,162.0000 L 310.0000,18.0000 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_19"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_21"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_22"/><path d=" M 386.0000,18.0000 L 366.0000,38.0000 L 366.0000,182.0000 L 386.0000,162.0000 L 386.0000,18.0000 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_26"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_27"/><path d=" M 462.0000,18.0000 L 442.0000,38.0000 L 442.0000,182.0000 L 462.0000,162.0000 L 462.0000,18.0000 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_29"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_31"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_32"/><path d=" M 158.0000,151.9200 L 138.0000,171.9200 L 442.0000,171.9200 L 462.0000,151.9200 L 158.0000,151.9200 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 462.0000,151.9200 L 158.0000,151.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_37"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_38"/><path d=" M 158.0000,143.2800 L 138.0000,163.2800 L 442.0000,163.2800 L 462.0000,143.2800 L 158.0000,143.2800 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_39"/><path d=" M 462.0000,143.2800 L 158.0000,143.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 158.0000,133.2000 L 138.0000,153.2000 L 442.0000,153.2000 L 462.0000,133.2000 L 158.0000,133.2000 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_45"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_46"/><path d=" M 158.0000,123.1200 L 138.0000,143.1200 L 442.0000,143.1200 L 462.0000,123.1200 L 158.0000,123.1200 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 462.0000,123.1200 L 158.0000,123.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 158.0000,114.4800 L 138.0000,134.4800 L 442.0000,134.4800 L 462.0000,114.4800 L 158.0000,114.4800 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_53"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_54"/><path d=" M 158.0000,104.4000 L 138.0000,124.4000 L 442.0000,124.4000 L 462.0000,104.4000 L 158.0000,104.4000 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_58"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_59"/><path d=" M 158.0000,94.3200 L 138.0000,114.3200 L 442.0000,114.3200 L 462.0000,94.3200 L 158.0000,94.3200 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 462.0000,94.3200 L 158.0000,94.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 158.0000,85.6800 L 138.0000,105.6800 L 442.0000,105.6800 L 462.0000,85.6800 L 158.0000,85.6800 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 462.0000,85.6800 L 158.0000,85.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_67"/><path d=" M 158.0000,75.6000 L 138.0000,95.6000 L 442.0000,95.6000 L 462.0000,75.6000 L 158.0000,75.6000 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 158.0000,65.5200 L 138.0000,85.5200 L 442.0000,85.5200 L 462.0000,65.5200 L 158.0000,65.5200 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_74"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_75"/><path d=" M 158.0000,56.8800 L 138.0000,76.8800 L 442.0000,76.8800 L 462.0000,56.8800 L 158.0000,56.8800 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_77"/><path d=" M 462.0000,56.8800 L 158.0000,56.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 158.0000,46.8000 L 138.0000,66.8000 L 442.0000,66.8000 L 462.0000,46.8000 L 158.0000,46.8000 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_82"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_84"/><path d=" M 158.0000,36.7200 L 138.0000,56.7200 L 442.0000,56.7200 L 462.0000,36.7200 L 158.0000,36.7200 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 462.0000,36.7200 L 158.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_86"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_88"/><path d=" M 158.0000,28.0800 L 138.0000,48.0800 L 442.0000,48.0800 L 462.0000,28.0800 L 158.0000,28.0800 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 462.0000,28.0800 L 158.0000,28.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_90"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_92"/><path d=" M 158.0000,18.0000 L 138.0000,38.0000 L 442.0000,38.0000 L 462.0000,18.0000 L 158.0000,18.0000 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_94"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_101"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_102"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_103"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_105"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_106"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_107"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_108"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_109"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_110"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_111"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_112"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_113"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_114"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_115"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_116"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_117"/><ellipse cx="158" cy="117.072" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_118"/><ellipse cx="234" cy="157.968" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_119"/><ellipse cx="310" cy="99.792" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_120"/><ellipse cx="386" cy="138.96" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_121"/><ellipse cx="462" cy="161.808" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_122"/><ellipse cx="148" cy="67.744" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_123"/><ellipse cx="224" cy="127.072" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_124"/><ellipse cx="300" cy="114.784" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_125"/><ellipse cx="376" cy="171.04" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_126"/><ellipse cx="452" cy="54.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_127"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_128"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_129"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_130"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_131"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_132"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_133"/><path d=" M 214.0000,38.0000 L 214.0000,182.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_134"/><path d=" M 214.0000,182.0000 L 234.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_135"/><path d=" M 234.0000,18.0000 L 214.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_136"/><path d=" M 290.0000,38.0000 L 290.0000,182.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_137"/><path d=" M 290.0000,182.0000 L 310.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_138"/><path d=" M 310.0000,18.0000 L 290.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_139"/><path d=" M 366.0000,38.0000 L 366.0000,182.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_140"/><path d=" M 366.0000,182.0000 L 386.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_141"/><path d=" M 386.0000,18.0000 L 366.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_142"/><path d=" M 442.0000,38.0000 L 442.0000,182.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_143"/><path d=" M 442.0000,182.0000 L 462.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_144"/><path d=" M 462.0000,18.0000 L 442.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_145"/><path d=" M 138.0000,171.9200 L 442.0000,171.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_146"/><path d=" M 442.0000,171.9200 L 462.0000,151.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_147"/><path d=" M 158.0000,151.9200 L 138.0000,171.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_148"/><path d=" M 138.0000,163.2800 L 442.0000,163.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_149"/><path d=" M 442.0000,163.2800 L 462.0000,143.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_150"/><path d=" M 158.0000,143.2800 L 138.0000,163.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_151"/><path d=" M 138.0000,153.2000 L 442.0000,153.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_152"/><path d=" M 442.0000,153.2000 L 462.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_153"/><path d=" M 158.0000,133.2000 L 138.0000,153.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_154"/><path d=" M 138.0000,143.1200 L 442.0000,143.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_155"/><path d=" M 442.0000,143.1200 L 462.0000,123.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_156"/><path d=" M 158.0000,123.1200 L 138.0000,143.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_157"/><path d=" M 138.0000,134.4800 L 442.0000,134.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_158"/><path d=" M 442.0000,134.4800 L 462.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_159"/><path d=" M 158.0000,114.4800 L 138.0000,134.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_160"/><path d=" M 138.0000,124.4000 L 442.0000,124.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_161"/><path d=" M 442.0000,124.4000 L 462.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_162"/><path d=" M 158.0000,104.4000 L 138.0000,124.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_163"/><path d=" M 138.0000,114.3200 L 442.0000,114.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_164"/><path d=" M 442.0000,114.3200 L 462.0000,94.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_165"/><path d=" M 158.0000,94.3200 L 138.0000,114.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_166"/><path d=" M 138.0000,105.6800 L 442.0000,105.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_167"/><path d=" M 442.0000,105.6800 L 462.0000,85.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_168"/><path d=" M 158.0000,85.6800 L 138.0000,105.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_169"/><path d=" M 138.0000,95.6000 L 442.0000,95.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_170"/><path d=" M 442.0000,95.6000 L 462.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_171"/><path d=" M 158.0000,75.6000 L 138.0000,95.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_172"/><path d=" M 138.0000,85.5200 L 442.0000,85.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_173"/><path d=" M 442.0000,85.5200 L 462.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_174"/><path d=" M 158.0000,65.5200 L 138.0000,85.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_175"/><path d=" M 138.0000,76.8800 L 442.0000,76.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_176"/><path d=" M 442.0000,76.8800 L 462.0000,56.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_177"/><path d=" M 158.0000,56.8800 L 138.0000,76.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_178"/><path d=" M 138.0000,66.8000 L 442.0000,66.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_179"/><path d=" M 442.0000,66.8000 L 462.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_180"/><path d=" M 158.0000,46.8000 L 138.0000,66.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_181"/><path d=" M 138.0000,56.7200 L 442.0000,56.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_182"/><path d=" M 442.0000,56.7200 L 462.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_183"/><path d=" M 158.0000,36.7200 L 138.0000,56.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_184"/><path d=" M 138.0000,48.0800 L 442.0000,48.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_185"/><path d=" M 442.0000,48.0800 L 462.0000,28.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_186"/><path d=" M 158.0000,28.0800 L 138.0000,48.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_187"/><path d=" M 138.0000,38.0000 L 442.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_188"/><path d=" M 442.0000,38.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_189"/><path d=" M 158.0000,18.0000 L 138.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_190"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_191"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_192"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_18"><path d=" M 182.9720,199.2000 L 182.9720,183.3000 L 245.5280,183.3000 L 245.5280,199.2000 L 182.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_193"/><text id="ezcGraphTextBox_18_text" x="183.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_23"><path d=" M 258.9720,199.2000 L 258.9720,183.3000 L 321.5280,183.3000 L 321.5280,199.2000 L 258.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_194"/><text id="ezcGraphTextBox_23_text" x="259.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_28"><path d=" M 334.9720,199.2000 L 334.9720,183.3000 L 397.5280,183.3000 L 397.5280,199.2000 L 334.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_195"/><text id="ezcGraphTextBox_28_text" x="335.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_33"><path d=" M 410.9720,199.2000 L 410.9720,183.3000 L 473.5280,183.3000 L 473.5280,199.2000 L 410.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_196"/><text id="ezcGraphTextBox_33_text" x="411.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_34"><path d=" M 126.6720,181.2000 L 126.6720,165.3000 L 137.1000,165.3000 L 137.1000,181.2000 L 126.6720,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_197"/><text id="ezcGraphTextBox_34_text" x="127.172" text-length="8.928px" y="178.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_55"><path d=" M 108.8160,133.2000 L 108.8160,117.3000 L 137.1000,117.3000 L 137.1000,133.2000 L 108.8160,133.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_198"/><text id="ezcGraphTextBox_55_text" x="109.316" text-length="26.784px" y="130.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_76"><path d=" M 108.8160,85.2000 L 108.8160,69.3000 L 137.1000,69.3000 L 137.1000,85.2000 L 108.8160,85.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_199"/><text id="ezcGraphTextBox_76_text" x="109.316" text-length="26.784px" y="82.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_97"><path d=" M 108.8160,55.2000 L 108.8160,39.3000 L 137.1000,39.3000 L 137.1000,55.2000 L 108.8160,55.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_200"/><text id="ezcGraphTextBox_97_text" x="109.316" text-length="26.784px" y="52.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 234.0000,18.0000 L 214.0000,38.0000 L 214.0000,182.0000 L 234.0000,162.0000 L 234.0000,18.0000 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_17"/><path d=" M 310.0000,18.0000 L 290.0000,38.0000 L 290.0000,182.0000 L 310.0000,162.0000 L 310.0000,18.0000 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_19"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_21"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_22"/><path d=" M 386.0000,18.0000 L 366.0000,38.0000 L 366.0000,182.0000 L 386.0000,162.0000 L 386.0000,18.0000 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_26"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_27"/><path d=" M 462.0000,18.0000 L 442.0000,38.0000 L 442.0000,182.0000 L 462.0000,162.0000 L 462.0000,18.0000 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_29"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_31"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_32"/><path d=" M 158.0000,151.9200 L 138.0000,171.9200 L 442.0000,171.9200 L 462.0000,151.9200 L 158.0000,151.9200 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 462.0000,151.9200 L 158.0000,151.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_37"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_38"/><path d=" M 158.0000,143.2800 L 138.0000,163.2800 L 442.0000,163.2800 L 462.0000,143.2800 L 158.0000,143.2800 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_39"/><path d=" M 462.0000,143.2800 L 158.0000,143.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 158.0000,133.2000 L 138.0000,153.2000 L 442.0000,153.2000 L 462.0000,133.2000 L 158.0000,133.2000 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_45"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_46"/><path d=" M 158.0000,123.1200 L 138.0000,143.1200 L 442.0000,143.1200 L 462.0000,123.1200 L 158.0000,123.1200 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 462.0000,123.1200 L 158.0000,123.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 158.0000,114.4800 L 138.0000,134.4800 L 442.0000,134.4800 L 462.0000,114.4800 L 158.0000,114.4800 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_53"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_54"/><path d=" M 158.0000,104.4000 L 138.0000,124.4000 L 442.0000,124.4000 L 462.0000,104.4000 L 158.0000,104.4000 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_58"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_59"/><path d=" M 158.0000,94.3200 L 138.0000,114.3200 L 442.0000,114.3200 L 462.0000,94.3200 L 158.0000,94.3200 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 462.0000,94.3200 L 158.0000,94.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 158.0000,85.6800 L 138.0000,105.6800 L 442.0000,105.6800 L 462.0000,85.6800 L 158.0000,85.6800 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 462.0000,85.6800 L 158.0000,85.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_67"/><path d=" M 158.0000,75.6000 L 138.0000,95.6000 L 442.0000,95.6000 L 462.0000,75.6000 L 158.0000,75.6000 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_68"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 158.0000,65.5200 L 138.0000,85.5200 L 442.0000,85.5200 L 462.0000,65.5200 L 158.0000,65.5200 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_73"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_74"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_75"/><path d=" M 158.0000,56.8800 L 138.0000,76.8800 L 442.0000,76.8800 L 462.0000,56.8800 L 158.0000,56.8800 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_77"/><path d=" M 462.0000,56.8800 L 158.0000,56.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 158.0000,46.8000 L 138.0000,66.8000 L 442.0000,66.8000 L 462.0000,46.8000 L 158.0000,46.8000 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_82"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_84"/><path d=" M 158.0000,36.7200 L 138.0000,56.7200 L 442.0000,56.7200 L 462.0000,36.7200 L 158.0000,36.7200 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 462.0000,36.7200 L 158.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_86"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_88"/><path d=" M 158.0000,28.0800 L 138.0000,48.0800 L 442.0000,48.0800 L 462.0000,28.0800 L 158.0000,28.0800 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 462.0000,28.0800 L 158.0000,28.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_90"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_92"/><path d=" M 158.0000,18.0000 L 138.0000,38.0000 L 442.0000,38.0000 L 462.0000,18.0000 L 158.0000,18.0000 z " style="fill: #888a85; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_93"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_94"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_101"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_102"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_103"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_105"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_106"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_107"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_108"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_109"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_110"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_111"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_112"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_113"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_114"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_115"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_116"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_117"/><ellipse cx="158" cy="117.072" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_118"/><ellipse cx="234" cy="157.968" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_119"/><ellipse cx="310" cy="99.792" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_120"/><ellipse cx="386" cy="138.96" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_121"/><ellipse cx="462" cy="161.808" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_122"/><ellipse cx="148" cy="67.744" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_123"/><ellipse cx="224" cy="127.072" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_124"/><ellipse cx="300" cy="114.784" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_125"/><ellipse cx="376" cy="171.04" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_126"/><ellipse cx="452" cy="54.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_127"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_128"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_129"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_130"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_131"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_132"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_133"/><path d=" M 214.0000,38.0000 L 214.0000,182.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_134"/><path d=" M 214.0000,182.0000 L 234.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_135"/><path d=" M 234.0000,18.0000 L 214.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_136"/><path d=" M 290.0000,38.0000 L 290.0000,182.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_137"/><path d=" M 290.0000,182.0000 L 310.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_138"/><path d=" M 310.0000,18.0000 L 290.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_139"/><path d=" M 366.0000,38.0000 L 366.0000,182.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_140"/><path d=" M 366.0000,182.0000 L 386.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_141"/><path d=" M 386.0000,18.0000 L 366.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_142"/><path d=" M 442.0000,38.0000 L 442.0000,182.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_143"/><path d=" M 442.0000,182.0000 L 462.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_144"/><path d=" M 462.0000,18.0000 L 442.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_145"/><path d=" M 138.0000,171.9200 L 442.0000,171.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_146"/><path d=" M 442.0000,171.9200 L 462.0000,151.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_147"/><path d=" M 158.0000,151.9200 L 138.0000,171.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_148"/><path d=" M 138.0000,163.2800 L 442.0000,163.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_149"/><path d=" M 442.0000,163.2800 L 462.0000,143.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_150"/><path d=" M 158.0000,143.2800 L 138.0000,163.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_151"/><path d=" M 138.0000,153.2000 L 442.0000,153.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_152"/><path d=" M 442.0000,153.2000 L 462.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_153"/><path d=" M 158.0000,133.2000 L 138.0000,153.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_154"/><path d=" M 138.0000,143.1200 L 442.0000,143.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_155"/><path d=" M 442.0000,143.1200 L 462.0000,123.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_156"/><path d=" M 158.0000,123.1200 L 138.0000,143.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_157"/><path d=" M 138.0000,134.4800 L 442.0000,134.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_158"/><path d=" M 442.0000,134.4800 L 462.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_159"/><path d=" M 158.0000,114.4800 L 138.0000,134.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_160"/><path d=" M 138.0000,124.4000 L 442.0000,124.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_161"/><path d=" M 442.0000,124.4000 L 462.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_162"/><path d=" M 158.0000,104.4000 L 138.0000,124.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_163"/><path d=" M 138.0000,114.3200 L 442.0000,114.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_164"/><path d=" M 442.0000,114.3200 L 462.0000,94.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_165"/><path d=" M 158.0000,94.3200 L 138.0000,114.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_166"/><path d=" M 138.0000,105.6800 L 442.0000,105.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_167"/><path d=" M 442.0000,105.6800 L 462.0000,85.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_168"/><path d=" M 158.0000,85.6800 L 138.0000,105.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_169"/><path d=" M 138.0000,95.6000 L 442.0000,95.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_170"/><path d=" M 442.0000,95.6000 L 462.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_171"/><path d=" M 158.0000,75.6000 L 138.0000,95.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_172"/><path d=" M 138.0000,85.5200 L 442.0000,85.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_173"/><path d=" M 442.0000,85.5200 L 462.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_174"/><path d=" M 158.0000,65.5200 L 138.0000,85.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_175"/><path d=" M 138.0000,76.8800 L 442.0000,76.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_176"/><path d=" M 442.0000,76.8800 L 462.0000,56.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_177"/><path d=" M 158.0000,56.8800 L 138.0000,76.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_178"/><path d=" M 138.0000,66.8000 L 442.0000,66.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_179"/><path d=" M 442.0000,66.8000 L 462.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_180"/><path d=" M 158.0000,46.8000 L 138.0000,66.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_181"/><path d=" M 138.0000,56.7200 L 442.0000,56.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_182"/><path d=" M 442.0000,56.7200 L 462.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_183"/><path d=" M 158.0000,36.7200 L 138.0000,56.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_184"/><path d=" M 138.0000,48.0800 L 442.0000,48.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_185"/><path d=" M 442.0000,48.0800 L 462.0000,28.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_186"/><path d=" M 158.0000,28.0800 L 138.0000,48.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_187"/><path d=" M 138.0000,38.0000 L 442.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_188"/><path d=" M 442.0000,38.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_189"/><path d=" M 158.0000,18.0000 L 138.0000,38.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_190"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_191"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_192"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_18"><path d=" M 182.9720,199.2000 L 182.9720,183.3000 L 245.5280,183.3000 L 245.5280,199.2000 L 182.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_193"/><text id="ezcGraphTextBox_18_text" x="183.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_23"><path d=" M 258.9720,199.2000 L 258.9720,183.3000 L 321.5280,183.3000 L 321.5280,199.2000 L 258.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_194"/><text id="ezcGraphTextBox_23_text" x="259.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_28"><path d=" M 334.9720,199.2000 L 334.9720,183.3000 L 397.5280,183.3000 L 397.5280,199.2000 L 334.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_195"/><text id="ezcGraphTextBox_28_text" x="335.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_33"><path d=" M 410.9720,199.2000 L 410.9720,183.3000 L 473.5280,183.3000 L 473.5280,199.2000 L 410.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_196"/><text id="ezcGraphTextBox_33_text" x="411.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_34"><path d=" M 126.6720,181.2000 L 126.6720,165.3000 L 137.1000,165.3000 L 137.1000,181.2000 L 126.6720,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_197"/><text id="ezcGraphTextBox_34_text" x="127.172" text-length="8.928px" y="178.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_55"><path d=" M 108.8160,133.2000 L 108.8160,117.3000 L 137.1000,117.3000 L 137.1000,133.2000 L 108.8160,133.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_198"/><text id="ezcGraphTextBox_55_text" x="109.316" text-length="26.784px" y="130.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_76"><path d=" M 108.8160,85.2000 L 108.8160,69.3000 L 137.1000,69.3000 L 137.1000,85.2000 L 108.8160,85.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_199"/><text id="ezcGraphTextBox_76_text" x="109.316" text-length="26.784px" y="82.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_97"><path d=" M 108.8160,55.2000 L 108.8160,39.3000 L 137.1000,39.3000 L 137.1000,55.2000 L 108.8160,55.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_200"/><text id="ezcGraphTextBox_97_text" x="109.316" text-length="26.784px" y="52.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartWithAxisIntersection.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartWithAxisIntersection.svg
index 59e592d..9a9d143 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartWithAxisIntersection.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartWithAxisIntersection.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,146.0000 L 120.0000,126.0000 L 500.0000,126.0000 L 480.0000,146.0000 L 100.0000,146.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,126.0000 L 500.0000,126.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,130.0000 L 500.0000,126.0000 L 492.0000,122.0000 L 492.0000,130.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 214.0000,143.3000 L 234.0000,123.3000 L 234.0000,126.0000 L 214.0000,146.0000 L 214.0000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 214.0000,143.3000 L 234.0000,123.3000 L 234.0000,126.0000 L 214.0000,146.0000 L 214.0000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_16"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 290.0000,143.3000 L 310.0000,123.3000 L 310.0000,126.0000 L 290.0000,146.0000 L 290.0000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_19"/><path d=" M 290.0000,143.3000 L 310.0000,123.3000 L 310.0000,126.0000 L 290.0000,146.0000 L 290.0000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_20"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 366.0000,143.3000 L 386.0000,123.3000 L 386.0000,126.0000 L 366.0000,146.0000 L 366.0000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_23"/><path d=" M 366.0000,143.3000 L 386.0000,123.3000 L 386.0000,126.0000 L 366.0000,146.0000 L 366.0000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 442.0000,143.3000 L 462.0000,123.3000 L 462.0000,126.0000 L 442.0000,146.0000 L 442.0000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 442.0000,143.3000 L 462.0000,123.3000 L 462.0000,126.0000 L 442.0000,146.0000 L 442.0000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 462.0000,162.0000 L 158.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 138.0000,182.0000 L 158.0000,162.0000 L 160.8500,162.0000 L 140.8500,182.0000 L 138.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_31"/><path d=" M 138.0000,182.0000 L 158.0000,162.0000 L 160.8500,162.0000 L 140.8500,182.0000 L 138.0000,182.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_32"/><path d=" M 462.0000,154.8000 L 158.0000,154.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 138.0000,174.8000 L 158.0000,154.8000 L 158.9500,154.8000 L 138.9500,174.8000 L 138.0000,174.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 138.0000,174.8000 L 158.0000,154.8000 L 158.9500,154.8000 L 138.9500,174.8000 L 138.0000,174.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 462.0000,147.6000 L 158.0000,147.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 138.0000,167.6000 L 158.0000,147.6000 L 158.9500,147.6000 L 138.9500,167.6000 L 138.0000,167.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 138.0000,167.6000 L 158.0000,147.6000 L 158.9500,147.6000 L 138.9500,167.6000 L 138.0000,167.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 462.0000,140.4000 L 158.0000,140.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.0000,160.4000 L 158.0000,140.4000 L 158.9500,140.4000 L 138.9500,160.4000 L 138.0000,160.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.0000,160.4000 L 158.0000,140.4000 L 158.9500,140.4000 L 138.9500,160.4000 L 138.0000,160.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 462.0000,118.8000 L 158.0000,118.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 138.0000,138.8000 L 158.0000,118.8000 L 158.9500,118.8000 L 138.9500,138.8000 L 138.0000,138.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 138.0000,138.8000 L 158.0000,118.8000 L 158.9500,118.8000 L 138.9500,138.8000 L 138.0000,138.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_49"/><path d=" M 462.0000,111.6000 L 158.0000,111.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 138.0000,131.6000 L 158.0000,111.6000 L 158.9500,111.6000 L 138.9500,131.6000 L 138.0000,131.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 138.0000,131.6000 L 158.0000,111.6000 L 158.9500,111.6000 L 138.9500,131.6000 L 138.0000,131.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 462.0000,97.2000 L 158.0000,97.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 138.0000,117.2000 L 158.0000,97.2000 L 158.9500,97.2000 L 138.9500,117.2000 L 138.0000,117.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 138.0000,117.2000 L 158.0000,97.2000 L 158.9500,97.2000 L 138.9500,117.2000 L 138.0000,117.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 462.0000,90.0000 L 158.0000,90.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 160.8500,90.0000 L 140.8500,110.0000 L 138.0000,110.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 160.8500,90.0000 L 140.8500,110.0000 L 138.0000,110.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 462.0000,82.8000 L 158.0000,82.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 138.0000,102.8000 L 158.0000,82.8000 L 158.9500,82.8000 L 138.9500,102.8000 L 138.0000,102.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 138.0000,102.8000 L 158.0000,82.8000 L 158.9500,82.8000 L 138.9500,102.8000 L 138.0000,102.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_65"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 462.0000,68.4000 L 158.0000,68.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.0000,88.4000 L 158.0000,68.4000 L 158.9500,68.4000 L 138.9500,88.4000 L 138.0000,88.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.0000,88.4000 L 158.0000,68.4000 L 158.9500,68.4000 L 138.9500,88.4000 L 138.0000,88.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 462.0000,61.2000 L 158.0000,61.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 138.0000,81.2000 L 158.0000,61.2000 L 158.9500,61.2000 L 138.9500,81.2000 L 138.0000,81.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 138.0000,81.2000 L 158.0000,61.2000 L 158.9500,61.2000 L 138.9500,81.2000 L 138.0000,81.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 462.0000,54.0000 L 158.0000,54.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 160.8500,54.0000 L 140.8500,74.0000 L 138.0000,74.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 160.8500,54.0000 L 140.8500,74.0000 L 138.0000,74.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_80"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_81"/><path d=" M 462.0000,39.6000 L 158.0000,39.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_82"/><path d=" M 138.0000,59.6000 L 158.0000,39.6000 L 158.9500,39.6000 L 138.9500,59.6000 L 138.0000,59.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 138.0000,59.6000 L 158.0000,39.6000 L 158.9500,39.6000 L 138.9500,59.6000 L 138.0000,59.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_84"/><path d=" M 462.0000,32.4000 L 158.0000,32.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_85"/><path d=" M 138.0000,52.4000 L 158.0000,32.4000 L 158.9500,32.4000 L 138.9500,52.4000 L 138.0000,52.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 138.0000,52.4000 L 158.0000,32.4000 L 158.9500,32.4000 L 138.9500,52.4000 L 138.0000,52.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_87"/><path d=" M 462.0000,25.2000 L 158.0000,25.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_88"/><path d=" M 138.0000,45.2000 L 158.0000,25.2000 L 158.9500,25.2000 L 138.9500,45.2000 L 138.0000,45.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 138.0000,45.2000 L 158.0000,25.2000 L 158.9500,25.2000 L 138.9500,45.2000 L 138.0000,45.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_90"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_92"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_93"/><path d=" M 158.0000,92.3040 L 148.0000,102.3040 L 148.0000,102.3040 L 158.0000,92.3040 L 158.0000,92.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 158.0000,92.3040 L 148.0000,102.3040 L 148.0000,102.3040 L 158.0000,92.3040 L 158.0000,92.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 194.1922,136.0000 L 148.0000,136.0000 L 148.0000,102.3040 L 194.1922,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 194.1922,136.0000 L 224.0000,136.0000 L 224.0000,157.7440 L 194.1922,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 234.0000,126.0000 L 234.0000,147.7440 L 224.0000,157.7440 L 224.0000,136.0000 L 234.0000,126.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_99"/><path d=" M 158.0000,92.3040 L 148.0000,102.3040 L 224.0000,157.7440 L 234.0000,147.7440 L 158.0000,92.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 158.0000,92.3040 L 148.0000,102.3040 L 224.0000,157.7440 L 234.0000,147.7440 L 158.0000,92.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_101"/><path d=" M 248.1600,136.0000 L 224.0000,136.0000 L 224.0000,157.7440 L 248.1600,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_102"/><path d=" M 248.1600,136.0000 L 300.0000,136.0000 L 300.0000,89.3440 L 248.1600,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_103"/><path d=" M 310.0000,126.0000 L 310.0000,79.3440 L 300.0000,89.3440 L 300.0000,136.0000 L 310.0000,126.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 234.0000,147.7440 L 224.0000,157.7440 L 300.0000,89.3440 L 310.0000,79.3440 L 234.0000,147.7440 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_105"/><path d=" M 234.0000,147.7440 L 224.0000,157.7440 L 300.0000,89.3440 L 310.0000,79.3440 L 234.0000,147.7440 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_106"/><path d=" M 355.4595,136.0000 L 300.0000,136.0000 L 300.0000,89.3440 L 355.4595,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_107"/><path d=" M 355.4595,136.0000 L 376.0000,136.0000 L 376.0000,153.2800 L 355.4595,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_108"/><path d=" M 386.0000,126.0000 L 386.0000,143.2800 L 376.0000,153.2800 L 376.0000,136.0000 L 386.0000,126.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_109"/><path d=" M 310.0000,79.3440 L 300.0000,89.3440 L 376.0000,153.2800 L 386.0000,143.2800 L 310.0000,79.3440 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_110"/><path d=" M 310.0000,79.3440 L 300.0000,89.3440 L 376.0000,153.2800 L 386.0000,143.2800 L 310.0000,79.3440 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_111"/><path d=" M 451.3719,136.0000 L 376.0000,136.0000 L 376.0000,153.2800 L 451.3719,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_112"/><path d=" M 451.3719,136.0000 L 452.0000,136.0000 L 452.0000,135.8560 L 451.3719,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_113"/><path d=" M 462.0000,126.0000 L 462.0000,125.8560 L 452.0000,135.8560 L 452.0000,136.0000 L 462.0000,126.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_114"/><path d=" M 386.0000,143.2800 L 376.0000,153.2800 L 452.0000,135.8560 L 462.0000,125.8560 L 386.0000,143.2800 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_115"/><path d=" M 386.0000,143.2800 L 376.0000,153.2800 L 452.0000,135.8560 L 462.0000,125.8560 L 386.0000,143.2800 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_116"/><path d=" M 148.0000,57.8080 L 138.0000,67.8080 L 138.0000,67.8080 L 148.0000,57.8080 L 148.0000,57.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_117"/><path d=" M 148.0000,57.8080 L 138.0000,67.8080 L 138.0000,67.8080 L 148.0000,57.8080 L 148.0000,57.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_118"/><path d=" M 138.0000,146.0000 L 138.0000,67.8080 L 214.0000,112.3040 L 214.0000,146.0000 L 138.0000,146.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_119"/><path d=" M 224.0000,136.0000 L 224.0000,102.3040 L 214.0000,112.3040 L 214.0000,146.0000 L 224.0000,136.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_120"/><path d=" M 148.0000,57.8080 L 138.0000,67.8080 L 214.0000,112.3040 L 224.0000,102.3040 L 148.0000,57.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_121"/><path d=" M 148.0000,57.8080 L 138.0000,67.8080 L 214.0000,112.3040 L 224.0000,102.3040 L 148.0000,57.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_122"/><path d=" M 214.0000,146.0000 L 214.0000,112.3040 L 290.0000,103.0880 L 290.0000,146.0000 L 214.0000,146.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_123"/><path d=" M 300.0000,136.0000 L 300.0000,93.0880 L 290.0000,103.0880 L 290.0000,146.0000 L 300.0000,136.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_124"/><path d=" M 224.0000,102.3040 L 214.0000,112.3040 L 290.0000,103.0880 L 300.0000,93.0880 L 224.0000,102.3040 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_125"/><path d=" M 224.0000,102.3040 L 214.0000,112.3040 L 290.0000,103.0880 L 300.0000,93.0880 L 224.0000,102.3040 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_126"/><path d=" M 364.7459,146.0000 L 290.0000,146.0000 L 290.0000,103.0880 L 364.7459,146.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_127"/><path d=" M 364.7459,146.0000 L 366.0000,146.0000 L 366.0000,146.7200 L 364.7459,146.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_128"/><path d=" M 376.0000,136.0000 L 376.0000,136.7200 L 366.0000,146.7200 L 366.0000,146.0000 L 376.0000,136.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_129"/><path d=" M 300.0000,93.0880 L 290.0000,103.0880 L 366.0000,146.7200 L 376.0000,136.7200 L 300.0000,93.0880 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_130"/><path d=" M 300.0000,93.0880 L 290.0000,103.0880 L 366.0000,146.7200 L 376.0000,136.7200 L 300.0000,93.0880 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_131"/><path d=" M 366.0000,146.0000 L 366.0000,146.7200 L 442.0000,163.8560 L 442.0000,146.0000 L 366.0000,146.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_132"/><path d=" M 452.0000,136.0000 L 452.0000,153.8560 L 442.0000,163.8560 L 442.0000,146.0000 L 452.0000,136.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_133"/><path d=" M 376.0000,136.7200 L 366.0000,146.7200 L 442.0000,163.8560 L 452.0000,153.8560 L 376.0000,136.7200 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_134"/><path d=" M 376.0000,136.7200 L 366.0000,146.7200 L 442.0000,163.8560 L 452.0000,153.8560 L 376.0000,136.7200 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_135"/><ellipse cx="158" cy="92.304" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_136"/><ellipse cx="234" cy="147.744" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_137"/><ellipse cx="310" cy="79.344" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_138"/><ellipse cx="386" cy="143.28" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_139"/><ellipse cx="462" cy="125.856" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_140"/><ellipse cx="148" cy="57.808" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_141"/><ellipse cx="224" cy="102.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_142"/><ellipse cx="300" cy="93.088" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_143"/><ellipse cx="376" cy="136.72" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_144"/><ellipse cx="452" cy="153.856" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_145"/><path d=" M 500.0000,126.0000 L 480.0000,146.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_146"/><path d=" M 480.0000,146.0000 L 100.0000,146.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_147"/><path d=" M 100.0000,146.0000 L 120.0000,126.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_148"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_149"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_150"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_151"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_152"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_153"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_17"><path d=" M 185.9400,161.8000 L 185.9400,147.3000 L 242.5600,147.3000 L 242.5600,161.8000 L 185.9400,161.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_154"/><text id="ezcGraphTextBox_17_text" x="186.44" text-length="55.12px" y="158.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_21"><path d=" M 261.9400,161.8000 L 261.9400,147.3000 L 318.5600,147.3000 L 318.5600,161.8000 L 261.9400,161.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_155"/><text id="ezcGraphTextBox_21_text" x="262.44" text-length="55.12px" y="158.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_25"><path d=" M 337.9400,161.8000 L 337.9400,147.3000 L 394.5600,147.3000 L 394.5600,161.8000 L 337.9400,161.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_156"/><text id="ezcGraphTextBox_25_text" x="338.44" text-length="55.12px" y="158.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_29"><path d=" M 413.9400,161.8000 L 413.9400,147.3000 L 470.5600,147.3000 L 470.5600,161.8000 L 413.9400,161.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_157"/><text id="ezcGraphTextBox_29_text" x="414.44" text-length="55.12px" y="158.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_33"><path d=" M 103.3600,181.2000 L 103.3600,166.7000 L 137.1000,166.7000 L 137.1000,181.2000 L 103.3600,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_158"/><text id="ezcGraphTextBox_33_text" x="103.86" text-length="32.24px" y="178.25" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-250</text></g><g id="ezcGraphTextBox_46"><path d=" M 127.5400,145.2000 L 127.5400,130.7000 L 137.1000,130.7000 L 137.1000,145.2000 L 127.5400,145.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_159"/><text id="ezcGraphTextBox_46_text" x="128.04" text-length="8.06px" y="142.25" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_62"><path d=" M 111.4200,109.2000 L 111.4200,94.7000 L 137.1000,94.7000 L 137.1000,109.2000 L 111.4200,109.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_160"/><text id="ezcGraphTextBox_62_text" x="111.92" text-length="24.18px" y="106.25" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_78"><path d=" M 111.4200,73.2000 L 111.4200,58.7000 L 137.1000,58.7000 L 137.1000,73.2000 L 111.4200,73.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_161"/><text id="ezcGraphTextBox_78_text" x="111.92" text-length="24.18px" y="70.25" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_94"><path d=" M 111.4200,53.8000 L 111.4200,39.3000 L 137.1000,39.3000 L 137.1000,53.8000 L 111.4200,53.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_162"/><text id="ezcGraphTextBox_94_text" x="111.92" text-length="24.18px" y="50.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,146.0000 L 120.0000,126.0000 L 500.0000,126.0000 L 480.0000,146.0000 L 100.0000,146.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,126.0000 L 500.0000,126.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,130.0000 L 500.0000,126.0000 L 492.0000,122.0000 L 492.0000,130.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 214.0000,143.3000 L 234.0000,123.3000 L 234.0000,126.0000 L 214.0000,146.0000 L 214.0000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 214.0000,143.3000 L 234.0000,123.3000 L 234.0000,126.0000 L 214.0000,146.0000 L 214.0000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_16"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 290.0000,143.3000 L 310.0000,123.3000 L 310.0000,126.0000 L 290.0000,146.0000 L 290.0000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_19"/><path d=" M 290.0000,143.3000 L 310.0000,123.3000 L 310.0000,126.0000 L 290.0000,146.0000 L 290.0000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_20"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 366.0000,143.3000 L 386.0000,123.3000 L 386.0000,126.0000 L 366.0000,146.0000 L 366.0000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_23"/><path d=" M 366.0000,143.3000 L 386.0000,123.3000 L 386.0000,126.0000 L 366.0000,146.0000 L 366.0000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 442.0000,143.3000 L 462.0000,123.3000 L 462.0000,126.0000 L 442.0000,146.0000 L 442.0000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 442.0000,143.3000 L 462.0000,123.3000 L 462.0000,126.0000 L 442.0000,146.0000 L 442.0000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 462.0000,162.0000 L 158.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 138.0000,182.0000 L 158.0000,162.0000 L 160.8500,162.0000 L 140.8500,182.0000 L 138.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_31"/><path d=" M 138.0000,182.0000 L 158.0000,162.0000 L 160.8500,162.0000 L 140.8500,182.0000 L 138.0000,182.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_32"/><path d=" M 462.0000,154.8000 L 158.0000,154.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 138.0000,174.8000 L 158.0000,154.8000 L 158.9500,154.8000 L 138.9500,174.8000 L 138.0000,174.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 138.0000,174.8000 L 158.0000,154.8000 L 158.9500,154.8000 L 138.9500,174.8000 L 138.0000,174.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 462.0000,147.6000 L 158.0000,147.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 138.0000,167.6000 L 158.0000,147.6000 L 158.9500,147.6000 L 138.9500,167.6000 L 138.0000,167.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 138.0000,167.6000 L 158.0000,147.6000 L 158.9500,147.6000 L 138.9500,167.6000 L 138.0000,167.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 462.0000,140.4000 L 158.0000,140.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.0000,160.4000 L 158.0000,140.4000 L 158.9500,140.4000 L 138.9500,160.4000 L 138.0000,160.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.0000,160.4000 L 158.0000,140.4000 L 158.9500,140.4000 L 138.9500,160.4000 L 138.0000,160.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 462.0000,118.8000 L 158.0000,118.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 138.0000,138.8000 L 158.0000,118.8000 L 158.9500,118.8000 L 138.9500,138.8000 L 138.0000,138.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 138.0000,138.8000 L 158.0000,118.8000 L 158.9500,118.8000 L 138.9500,138.8000 L 138.0000,138.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_49"/><path d=" M 462.0000,111.6000 L 158.0000,111.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 138.0000,131.6000 L 158.0000,111.6000 L 158.9500,111.6000 L 138.9500,131.6000 L 138.0000,131.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 138.0000,131.6000 L 158.0000,111.6000 L 158.9500,111.6000 L 138.9500,131.6000 L 138.0000,131.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 462.0000,97.2000 L 158.0000,97.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 138.0000,117.2000 L 158.0000,97.2000 L 158.9500,97.2000 L 138.9500,117.2000 L 138.0000,117.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 138.0000,117.2000 L 158.0000,97.2000 L 158.9500,97.2000 L 138.9500,117.2000 L 138.0000,117.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 462.0000,90.0000 L 158.0000,90.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 160.8500,90.0000 L 140.8500,110.0000 L 138.0000,110.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 160.8500,90.0000 L 140.8500,110.0000 L 138.0000,110.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 462.0000,82.8000 L 158.0000,82.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 138.0000,102.8000 L 158.0000,82.8000 L 158.9500,82.8000 L 138.9500,102.8000 L 138.0000,102.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 138.0000,102.8000 L 158.0000,82.8000 L 158.9500,82.8000 L 138.9500,102.8000 L 138.0000,102.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_65"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 462.0000,68.4000 L 158.0000,68.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.0000,88.4000 L 158.0000,68.4000 L 158.9500,68.4000 L 138.9500,88.4000 L 138.0000,88.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.0000,88.4000 L 158.0000,68.4000 L 158.9500,68.4000 L 138.9500,88.4000 L 138.0000,88.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 462.0000,61.2000 L 158.0000,61.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 138.0000,81.2000 L 158.0000,61.2000 L 158.9500,61.2000 L 138.9500,81.2000 L 138.0000,81.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 138.0000,81.2000 L 158.0000,61.2000 L 158.9500,61.2000 L 138.9500,81.2000 L 138.0000,81.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 462.0000,54.0000 L 158.0000,54.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 160.8500,54.0000 L 140.8500,74.0000 L 138.0000,74.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 160.8500,54.0000 L 140.8500,74.0000 L 138.0000,74.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_79"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_80"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_81"/><path d=" M 462.0000,39.6000 L 158.0000,39.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_82"/><path d=" M 138.0000,59.6000 L 158.0000,39.6000 L 158.9500,39.6000 L 138.9500,59.6000 L 138.0000,59.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 138.0000,59.6000 L 158.0000,39.6000 L 158.9500,39.6000 L 138.9500,59.6000 L 138.0000,59.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_84"/><path d=" M 462.0000,32.4000 L 158.0000,32.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_85"/><path d=" M 138.0000,52.4000 L 158.0000,32.4000 L 158.9500,32.4000 L 138.9500,52.4000 L 138.0000,52.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 138.0000,52.4000 L 158.0000,32.4000 L 158.9500,32.4000 L 138.9500,52.4000 L 138.0000,52.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_87"/><path d=" M 462.0000,25.2000 L 158.0000,25.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_88"/><path d=" M 138.0000,45.2000 L 158.0000,25.2000 L 158.9500,25.2000 L 138.9500,45.2000 L 138.0000,45.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 138.0000,45.2000 L 158.0000,25.2000 L 158.9500,25.2000 L 138.9500,45.2000 L 138.0000,45.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_90"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_92"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_93"/><path d=" M 158.0000,92.3040 L 148.0000,102.3040 L 148.0000,102.3040 L 158.0000,92.3040 L 158.0000,92.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 158.0000,92.3040 L 148.0000,102.3040 L 148.0000,102.3040 L 158.0000,92.3040 L 158.0000,92.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 194.1922,136.0000 L 148.0000,136.0000 L 148.0000,102.3040 L 194.1922,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 194.1922,136.0000 L 224.0000,136.0000 L 224.0000,157.7440 L 194.1922,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 234.0000,126.0000 L 234.0000,147.7440 L 224.0000,157.7440 L 224.0000,136.0000 L 234.0000,126.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_99"/><path d=" M 158.0000,92.3040 L 148.0000,102.3040 L 224.0000,157.7440 L 234.0000,147.7440 L 158.0000,92.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 158.0000,92.3040 L 148.0000,102.3040 L 224.0000,157.7440 L 234.0000,147.7440 L 158.0000,92.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_101"/><path d=" M 248.1600,136.0000 L 224.0000,136.0000 L 224.0000,157.7440 L 248.1600,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_102"/><path d=" M 248.1600,136.0000 L 300.0000,136.0000 L 300.0000,89.3440 L 248.1600,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_103"/><path d=" M 310.0000,126.0000 L 310.0000,79.3440 L 300.0000,89.3440 L 300.0000,136.0000 L 310.0000,126.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 234.0000,147.7440 L 224.0000,157.7440 L 300.0000,89.3440 L 310.0000,79.3440 L 234.0000,147.7440 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_105"/><path d=" M 234.0000,147.7440 L 224.0000,157.7440 L 300.0000,89.3440 L 310.0000,79.3440 L 234.0000,147.7440 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_106"/><path d=" M 355.4595,136.0000 L 300.0000,136.0000 L 300.0000,89.3440 L 355.4595,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_107"/><path d=" M 355.4595,136.0000 L 376.0000,136.0000 L 376.0000,153.2800 L 355.4595,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_108"/><path d=" M 386.0000,126.0000 L 386.0000,143.2800 L 376.0000,153.2800 L 376.0000,136.0000 L 386.0000,126.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_109"/><path d=" M 310.0000,79.3440 L 300.0000,89.3440 L 376.0000,153.2800 L 386.0000,143.2800 L 310.0000,79.3440 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_110"/><path d=" M 310.0000,79.3440 L 300.0000,89.3440 L 376.0000,153.2800 L 386.0000,143.2800 L 310.0000,79.3440 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_111"/><path d=" M 451.3719,136.0000 L 376.0000,136.0000 L 376.0000,153.2800 L 451.3719,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_112"/><path d=" M 451.3719,136.0000 L 452.0000,136.0000 L 452.0000,135.8560 L 451.3719,136.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_113"/><path d=" M 462.0000,126.0000 L 462.0000,125.8560 L 452.0000,135.8560 L 452.0000,136.0000 L 462.0000,126.0000 z " style="fill: #729fcf; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_114"/><path d=" M 386.0000,143.2800 L 376.0000,153.2800 L 452.0000,135.8560 L 462.0000,125.8560 L 386.0000,143.2800 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_115"/><path d=" M 386.0000,143.2800 L 376.0000,153.2800 L 452.0000,135.8560 L 462.0000,125.8560 L 386.0000,143.2800 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_116"/><path d=" M 148.0000,57.8080 L 138.0000,67.8080 L 138.0000,67.8080 L 148.0000,57.8080 L 148.0000,57.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_117"/><path d=" M 148.0000,57.8080 L 138.0000,67.8080 L 138.0000,67.8080 L 148.0000,57.8080 L 148.0000,57.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_118"/><path d=" M 138.0000,146.0000 L 138.0000,67.8080 L 214.0000,112.3040 L 214.0000,146.0000 L 138.0000,146.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_119"/><path d=" M 224.0000,136.0000 L 224.0000,102.3040 L 214.0000,112.3040 L 214.0000,146.0000 L 224.0000,136.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_120"/><path d=" M 148.0000,57.8080 L 138.0000,67.8080 L 214.0000,112.3040 L 224.0000,102.3040 L 148.0000,57.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_121"/><path d=" M 148.0000,57.8080 L 138.0000,67.8080 L 214.0000,112.3040 L 224.0000,102.3040 L 148.0000,57.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_122"/><path d=" M 214.0000,146.0000 L 214.0000,112.3040 L 290.0000,103.0880 L 290.0000,146.0000 L 214.0000,146.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_123"/><path d=" M 300.0000,136.0000 L 300.0000,93.0880 L 290.0000,103.0880 L 290.0000,146.0000 L 300.0000,136.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_124"/><path d=" M 224.0000,102.3040 L 214.0000,112.3040 L 290.0000,103.0880 L 300.0000,93.0880 L 224.0000,102.3040 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_125"/><path d=" M 224.0000,102.3040 L 214.0000,112.3040 L 290.0000,103.0880 L 300.0000,93.0880 L 224.0000,102.3040 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_126"/><path d=" M 364.7459,146.0000 L 290.0000,146.0000 L 290.0000,103.0880 L 364.7459,146.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_127"/><path d=" M 364.7459,146.0000 L 366.0000,146.0000 L 366.0000,146.7200 L 364.7459,146.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_128"/><path d=" M 376.0000,136.0000 L 376.0000,136.7200 L 366.0000,146.7200 L 366.0000,146.0000 L 376.0000,136.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_129"/><path d=" M 300.0000,93.0880 L 290.0000,103.0880 L 366.0000,146.7200 L 376.0000,136.7200 L 300.0000,93.0880 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_130"/><path d=" M 300.0000,93.0880 L 290.0000,103.0880 L 366.0000,146.7200 L 376.0000,136.7200 L 300.0000,93.0880 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_131"/><path d=" M 366.0000,146.0000 L 366.0000,146.7200 L 442.0000,163.8560 L 442.0000,146.0000 L 366.0000,146.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_132"/><path d=" M 452.0000,136.0000 L 452.0000,153.8560 L 442.0000,163.8560 L 442.0000,146.0000 L 452.0000,136.0000 z " style="fill: #ef2929; fill-opacity: 0.22; stroke: none;" id="ezcGraphPolygon_133"/><path d=" M 376.0000,136.7200 L 366.0000,146.7200 L 442.0000,163.8560 L 452.0000,153.8560 L 376.0000,136.7200 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_134"/><path d=" M 376.0000,136.7200 L 366.0000,146.7200 L 442.0000,163.8560 L 452.0000,153.8560 L 376.0000,136.7200 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_135"/><ellipse cx="158" cy="92.304" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_136"/><ellipse cx="234" cy="147.744" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_137"/><ellipse cx="310" cy="79.344" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_138"/><ellipse cx="386" cy="143.28" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_139"/><ellipse cx="462" cy="125.856" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_140"/><ellipse cx="148" cy="57.808" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_141"/><ellipse cx="224" cy="102.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_142"/><ellipse cx="300" cy="93.088" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_143"/><ellipse cx="376" cy="136.72" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_144"/><ellipse cx="452" cy="153.856" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_145"/><path d=" M 500.0000,126.0000 L 480.0000,146.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_146"/><path d=" M 480.0000,146.0000 L 100.0000,146.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_147"/><path d=" M 100.0000,146.0000 L 120.0000,126.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_148"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_149"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_150"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_151"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_152"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_153"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_17"><path d=" M 185.9400,161.8000 L 185.9400,147.3000 L 242.5600,147.3000 L 242.5600,161.8000 L 185.9400,161.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_154"/><text id="ezcGraphTextBox_17_text" x="186.44" text-length="55.12px" y="158.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_21"><path d=" M 261.9400,161.8000 L 261.9400,147.3000 L 318.5600,147.3000 L 318.5600,161.8000 L 261.9400,161.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_155"/><text id="ezcGraphTextBox_21_text" x="262.44" text-length="55.12px" y="158.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_25"><path d=" M 337.9400,161.8000 L 337.9400,147.3000 L 394.5600,147.3000 L 394.5600,161.8000 L 337.9400,161.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_156"/><text id="ezcGraphTextBox_25_text" x="338.44" text-length="55.12px" y="158.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_29"><path d=" M 413.9400,161.8000 L 413.9400,147.3000 L 470.5600,147.3000 L 470.5600,161.8000 L 413.9400,161.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_157"/><text id="ezcGraphTextBox_29_text" x="414.44" text-length="55.12px" y="158.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_33"><path d=" M 103.3600,181.2000 L 103.3600,166.7000 L 137.1000,166.7000 L 137.1000,181.2000 L 103.3600,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_158"/><text id="ezcGraphTextBox_33_text" x="103.86" text-length="32.24px" y="178.25" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-250</text></g><g id="ezcGraphTextBox_46"><path d=" M 127.5400,145.2000 L 127.5400,130.7000 L 137.1000,130.7000 L 137.1000,145.2000 L 127.5400,145.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_159"/><text id="ezcGraphTextBox_46_text" x="128.04" text-length="8.06px" y="142.25" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_62"><path d=" M 111.4200,109.2000 L 111.4200,94.7000 L 137.1000,94.7000 L 137.1000,109.2000 L 111.4200,109.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_160"/><text id="ezcGraphTextBox_62_text" x="111.92" text-length="24.18px" y="106.25" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_78"><path d=" M 111.4200,73.2000 L 111.4200,58.7000 L 137.1000,58.7000 L 137.1000,73.2000 L 111.4200,73.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_161"/><text id="ezcGraphTextBox_78_text" x="111.92" text-length="24.18px" y="70.25" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_94"><path d=" M 111.4200,53.8000 L 111.4200,39.3000 L 137.1000,39.3000 L 137.1000,53.8000 L 111.4200,53.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_162"/><text id="ezcGraphTextBox_94_text" x="111.92" text-length="24.18px" y="50.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartWithoutDataBorder.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartWithoutDataBorder.svg
index 72315f8..8a140eb 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartWithoutDataBorder.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dFilledLineChartWithoutDataBorder.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_16"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_19"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_20"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_23"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 462.0000,151.9200 L 158.0000,151.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 462.0000,143.2800 L 158.0000,143.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 462.0000,123.1200 L 158.0000,123.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_49"/><path d=" M 462.0000,94.3200 L 158.0000,94.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 462.0000,85.6800 L 158.0000,85.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 462.0000,56.8800 L 158.0000,56.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_65"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 462.0000,36.7200 L 158.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 462.0000,28.0800 L 158.0000,28.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_80"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_88"/><ellipse cx="158" cy="117.072" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_89"/><ellipse cx="234" cy="157.968" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_90"/><ellipse cx="310" cy="99.792" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_91"/><ellipse cx="386" cy="138.96" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_92"/><ellipse cx="462" cy="161.808" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_93"/><ellipse cx="148" cy="67.744" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_94"/><ellipse cx="224" cy="127.072" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_95"/><ellipse cx="300" cy="114.784" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_96"/><ellipse cx="376" cy="171.04" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_97"/><ellipse cx="452" cy="54.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_98"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_99"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_100"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_101"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_102"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_103"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_104"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_105"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_106"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_17"><path d=" M 182.9720,199.2000 L 182.9720,183.3000 L 245.5280,183.3000 L 245.5280,199.2000 L 182.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_107"/><text id="ezcGraphTextBox_17_text" x="183.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_21"><path d=" M 258.9720,199.2000 L 258.9720,183.3000 L 321.5280,183.3000 L 321.5280,199.2000 L 258.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_108"/><text id="ezcGraphTextBox_21_text" x="259.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_25"><path d=" M 334.9720,199.2000 L 334.9720,183.3000 L 397.5280,183.3000 L 397.5280,199.2000 L 334.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_109"/><text id="ezcGraphTextBox_25_text" x="335.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_29"><path d=" M 410.9720,199.2000 L 410.9720,183.3000 L 473.5280,183.3000 L 473.5280,199.2000 L 410.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_110"/><text id="ezcGraphTextBox_29_text" x="411.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_30"><path d=" M 126.6720,181.2000 L 126.6720,165.3000 L 137.1000,165.3000 L 137.1000,181.2000 L 126.6720,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_111"/><text id="ezcGraphTextBox_30_text" x="127.172" text-length="8.928px" y="178.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_46"><path d=" M 108.8160,133.2000 L 108.8160,117.3000 L 137.1000,117.3000 L 137.1000,133.2000 L 108.8160,133.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_112"/><text id="ezcGraphTextBox_46_text" x="109.316" text-length="26.784px" y="130.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_62"><path d=" M 108.8160,85.2000 L 108.8160,69.3000 L 137.1000,69.3000 L 137.1000,85.2000 L 108.8160,85.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_113"/><text id="ezcGraphTextBox_62_text" x="109.316" text-length="26.784px" y="82.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_78"><path d=" M 108.8160,55.2000 L 108.8160,39.3000 L 137.1000,39.3000 L 137.1000,55.2000 L 108.8160,55.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_114"/><text id="ezcGraphTextBox_78_text" x="109.316" text-length="26.784px" y="52.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_16"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_19"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_20"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_23"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 462.0000,151.9200 L 158.0000,151.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 462.0000,143.2800 L 158.0000,143.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 462.0000,123.1200 L 158.0000,123.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_49"/><path d=" M 462.0000,94.3200 L 158.0000,94.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 462.0000,85.6800 L 158.0000,85.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 462.0000,56.8800 L 158.0000,56.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_65"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 462.0000,36.7200 L 158.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 462.0000,28.0800 L 158.0000,28.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_80"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_88"/><ellipse cx="158" cy="117.072" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_89"/><ellipse cx="234" cy="157.968" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_90"/><ellipse cx="310" cy="99.792" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_91"/><ellipse cx="386" cy="138.96" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_92"/><ellipse cx="462" cy="161.808" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_93"/><ellipse cx="148" cy="67.744" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_94"/><ellipse cx="224" cy="127.072" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_95"/><ellipse cx="300" cy="114.784" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_96"/><ellipse cx="376" cy="171.04" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_97"/><ellipse cx="452" cy="54.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_98"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_99"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_100"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_101"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_102"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_103"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_104"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_105"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_106"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_17"><path d=" M 182.9720,199.2000 L 182.9720,183.3000 L 245.5280,183.3000 L 245.5280,199.2000 L 182.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_107"/><text id="ezcGraphTextBox_17_text" x="183.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_21"><path d=" M 258.9720,199.2000 L 258.9720,183.3000 L 321.5280,183.3000 L 321.5280,199.2000 L 258.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_108"/><text id="ezcGraphTextBox_21_text" x="259.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_25"><path d=" M 334.9720,199.2000 L 334.9720,183.3000 L 397.5280,183.3000 L 397.5280,199.2000 L 334.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_109"/><text id="ezcGraphTextBox_25_text" x="335.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_29"><path d=" M 410.9720,199.2000 L 410.9720,183.3000 L 473.5280,183.3000 L 473.5280,199.2000 L 410.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_110"/><text id="ezcGraphTextBox_29_text" x="411.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_30"><path d=" M 126.6720,181.2000 L 126.6720,165.3000 L 137.1000,165.3000 L 137.1000,181.2000 L 126.6720,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_111"/><text id="ezcGraphTextBox_30_text" x="127.172" text-length="8.928px" y="178.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_46"><path d=" M 108.8160,133.2000 L 108.8160,117.3000 L 137.1000,117.3000 L 137.1000,133.2000 L 108.8160,133.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_112"/><text id="ezcGraphTextBox_46_text" x="109.316" text-length="26.784px" y="130.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_62"><path d=" M 108.8160,85.2000 L 108.8160,69.3000 L 137.1000,69.3000 L 137.1000,85.2000 L 108.8160,85.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_113"/><text id="ezcGraphTextBox_62_text" x="109.316" text-length="26.784px" y="82.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_78"><path d=" M 108.8160,55.2000 L 108.8160,39.3000 L 137.1000,39.3000 L 137.1000,55.2000 L 108.8160,55.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_114"/><text id="ezcGraphTextBox_78_text" x="109.316" text-length="26.784px" y="52.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChart.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChart.svg
index 1aaf3b8..9261eec 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChart.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChart.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,19.0000 L 1.0000,1.0000 L 499.0000,1.0000 L 499.0000,19.0000 L 1.0000,19.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,18.0000 L 2.0000,2.0000 L 498.0000,2.0000 L 498.0000,18.0000 L 2.0000,18.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 1.0000,199.0000 L 1.0000,22.0000 L 99.0000,22.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_5"/><path d=" M 2.0000,198.0000 L 2.0000,23.0000 L 98.0000,23.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_6"/><ellipse cx="11" cy="32" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_7"/><ellipse cx="11" cy="50" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_9"/><path d=" M 100.0000,183.8900 L 117.9000,165.9900 L 500.0000,165.9900 L 482.1000,183.8900 L 100.0000,183.8900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 117.9000,165.9900 L 500.0000,165.9900" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 492.0000,169.9900 L 500.0000,165.9900 L 492.0000,161.9900 L 492.0000,169.9900 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 138.2100,200.0000 L 156.1100,182.1000 L 156.1100,21.0000 L 138.2100,38.9000 L 138.2100,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 156.1100,182.1000 L 156.1100,21.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 154.1100,25.0000 L 156.1100,21.0000 L 158.1100,25.0000 L 154.1100,25.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 232.5300,165.9900 L 232.5300,37.1100" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 214.6300,181.1900 L 232.5300,163.2900 L 232.5300,165.9900 L 214.6300,183.8900 L 214.6300,181.1900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_18"/><path d=" M 214.6300,181.1900 L 232.5300,163.2900 L 232.5300,165.9900 L 214.6300,183.8900 L 214.6300,181.1900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_19"/><path d=" M 308.9500,165.9900 L 308.9500,37.1100" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 291.0500,181.1900 L 308.9500,163.2900 L 308.9500,165.9900 L 291.0500,183.8900 L 291.0500,181.1900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_22"/><path d=" M 291.0500,181.1900 L 308.9500,163.2900 L 308.9500,165.9900 L 291.0500,183.8900 L 291.0500,181.1900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_23"/><path d=" M 385.3700,165.9900 L 385.3700,37.1100" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 367.4700,181.1900 L 385.3700,163.2900 L 385.3700,165.9900 L 367.4700,183.8900 L 367.4700,181.1900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_26"/><path d=" M 367.4700,181.1900 L 385.3700,163.2900 L 385.3700,165.9900 L 367.4700,183.8900 L 367.4700,181.1900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_27"/><path d=" M 461.7900,165.9900 L 461.7900,37.1100" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 443.8900,181.1900 L 461.7900,163.2900 L 461.7900,165.9900 L 443.8900,183.8900 L 443.8900,181.1900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_30"/><path d=" M 443.8900,181.1900 L 461.7900,163.2900 L 461.7900,165.9900 L 443.8900,183.8900 L 443.8900,181.1900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_31"/><path d=" M 461.7900,156.9684 L 156.1100,156.9684" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 138.2100,175.2980 L 156.1100,157.3980 L 157.0653,157.3980 L 139.1653,175.2980 L 138.2100,175.2980 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 138.2100,175.2980 L 156.1100,157.3980 L 157.0653,157.3980 L 139.1653,175.2980 L 138.2100,175.2980 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 461.7900,149.2356 L 156.1100,149.2356" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 138.2100,166.7060 L 156.1100,148.8060 L 157.0653,148.8060 L 139.1653,166.7060 L 138.2100,166.7060 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 138.2100,166.7060 L 156.1100,148.8060 L 157.0653,148.8060 L 139.1653,166.7060 L 138.2100,166.7060 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 461.7900,140.2140 L 156.1100,140.2140" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.2100,158.1140 L 156.1100,140.2140 L 157.0653,140.2140 L 139.1653,158.1140 L 138.2100,158.1140 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.2100,158.1140 L 156.1100,140.2140 L 157.0653,140.2140 L 139.1653,158.1140 L 138.2100,158.1140 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 461.7900,131.1924 L 156.1100,131.1924" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.2100,149.5220 L 156.1100,131.6220 L 157.0653,131.6220 L 139.1653,149.5220 L 138.2100,149.5220 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.2100,149.5220 L 156.1100,131.6220 L 157.0653,131.6220 L 139.1653,149.5220 L 138.2100,149.5220 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 461.7900,123.4596 L 156.1100,123.4596" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 138.2100,140.9300 L 156.1100,123.0300 L 158.9758,123.0300 L 141.0757,140.9300 L 138.2100,140.9300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 138.2100,140.9300 L 156.1100,123.0300 L 158.9758,123.0300 L 141.0757,140.9300 L 138.2100,140.9300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 461.7900,114.4380 L 156.1100,114.4380" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 138.2100,132.3380 L 156.1100,114.4380 L 157.0653,114.4380 L 139.1653,132.3380 L 138.2100,132.3380 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 138.2100,132.3380 L 156.1100,114.4380 L 157.0653,114.4380 L 139.1653,132.3380 L 138.2100,132.3380 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 461.7900,105.4164 L 156.1100,105.4164" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.2100,123.7460 L 156.1100,105.8460 L 157.0653,105.8460 L 139.1653,123.7460 L 138.2100,123.7460 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 138.2100,123.7460 L 156.1100,105.8460 L 157.0653,105.8460 L 139.1653,123.7460 L 138.2100,123.7460 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 461.7900,97.6836 L 156.1100,97.6836" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 138.2100,115.1540 L 156.1100,97.2540 L 157.0653,97.2540 L 139.1653,115.1540 L 138.2100,115.1540 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 138.2100,115.1540 L 156.1100,97.2540 L 157.0653,97.2540 L 139.1653,115.1540 L 138.2100,115.1540 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 461.7900,88.6620 L 156.1100,88.6620" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 138.2100,106.5620 L 156.1100,88.6620 L 157.0653,88.6620 L 139.1653,106.5620 L 138.2100,106.5620 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 138.2100,106.5620 L 156.1100,88.6620 L 157.0653,88.6620 L 139.1653,106.5620 L 138.2100,106.5620 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 461.7900,79.6404 L 156.1100,79.6404" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 138.2100,97.9700 L 156.1100,80.0700 L 158.9758,80.0700 L 141.0757,97.9700 L 138.2100,97.9700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 138.2100,97.9700 L 156.1100,80.0700 L 158.9758,80.0700 L 141.0757,97.9700 L 138.2100,97.9700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_64"/><path d=" M 461.7900,71.9076 L 156.1100,71.9076" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 138.2100,89.3780 L 156.1100,71.4780 L 157.0653,71.4780 L 139.1653,89.3780 L 138.2100,89.3780 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 138.2100,89.3780 L 156.1100,71.4780 L 157.0653,71.4780 L 139.1653,89.3780 L 138.2100,89.3780 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 461.7900,62.8860 L 156.1100,62.8860" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.2100,80.7860 L 156.1100,62.8860 L 157.0653,62.8860 L 139.1653,80.7860 L 138.2100,80.7860 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.2100,80.7860 L 156.1100,62.8860 L 157.0653,62.8860 L 139.1653,80.7860 L 138.2100,80.7860 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 461.7900,53.8644 L 156.1100,53.8644" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 138.2100,72.1940 L 156.1100,54.2940 L 157.0653,54.2940 L 139.1653,72.1940 L 138.2100,72.1940 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 138.2100,72.1940 L 156.1100,54.2940 L 157.0653,54.2940 L 139.1653,72.1940 L 138.2100,72.1940 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 461.7900,46.1316 L 156.1100,46.1316" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 138.2100,63.6020 L 156.1100,45.7020 L 157.0653,45.7020 L 139.1653,63.6020 L 138.2100,63.6020 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 138.2100,63.6020 L 156.1100,45.7020 L 157.0653,45.7020 L 139.1653,63.6020 L 138.2100,63.6020 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 461.7900,37.1100 L 156.1100,37.1100" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 138.2100,55.0100 L 156.1100,37.1100 L 158.9758,37.1100 L 141.0757,55.0100 L 138.2100,55.0100 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 138.2100,55.0100 L 156.1100,37.1100 L 158.9758,37.1100 L 141.0757,55.0100 L 138.2100,55.0100 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 156.1100,125.7794 L 147.1600,134.7294 L 147.1600,134.7294 L 156.1100,125.7794 L 156.1100,125.7794 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 156.1100,125.7794 L 147.1600,134.7294 L 147.1600,134.7294 L 156.1100,125.7794 L 156.1100,125.7794 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_83"/><path d=" M 156.1100,125.7794 L 147.1600,134.7294 L 223.5800,171.3314 L 232.5300,162.3814 L 156.1100,125.7794 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 156.1100,125.7794 L 147.1600,134.7294 L 223.5800,171.3314 L 232.5300,162.3814 L 156.1100,125.7794 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_85"/><path d=" M 232.5300,162.3814 L 223.5800,171.3314 L 300.0000,119.2638 L 308.9500,110.3138 L 232.5300,162.3814 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 232.5300,162.3814 L 223.5800,171.3314 L 300.0000,119.2638 L 308.9500,110.3138 L 232.5300,162.3814 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_87"/><path d=" M 308.9500,110.3138 L 300.0000,119.2638 L 376.4200,154.3192 L 385.3700,145.3692 L 308.9500,110.3138 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 308.9500,110.3138 L 300.0000,119.2638 L 376.4200,154.3192 L 385.3700,145.3692 L 308.9500,110.3138 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_89"/><path d=" M 385.3700,145.3692 L 376.4200,154.3192 L 452.8400,174.7682 L 461.7900,165.8182 L 385.3700,145.3692 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_90"/><path d=" M 385.3700,145.3692 L 376.4200,154.3192 L 452.8400,174.7682 L 461.7900,165.8182 L 385.3700,145.3692 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_91"/><path d=" M 147.1600,81.6309 L 138.2100,90.5809 L 138.2100,90.5809 L 147.1600,81.6309 L 147.1600,81.6309 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_92"/><path d=" M 147.1600,81.6309 L 138.2100,90.5809 L 138.2100,90.5809 L 147.1600,81.6309 L 147.1600,81.6309 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_93"/><path d=" M 147.1600,81.6309 L 138.2100,90.5809 L 214.6300,143.6794 L 223.5800,134.7294 L 147.1600,81.6309 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_94"/><path d=" M 147.1600,81.6309 L 138.2100,90.5809 L 214.6300,143.6794 L 223.5800,134.7294 L 147.1600,81.6309 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_95"/><path d=" M 223.5800,134.7294 L 214.6300,143.6794 L 291.0500,132.6817 L 300.0000,123.7317 L 223.5800,134.7294 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_96"/><path d=" M 223.5800,134.7294 L 214.6300,143.6794 L 291.0500,132.6817 L 300.0000,123.7317 L 223.5800,134.7294 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_97"/><path d=" M 300.0000,123.7317 L 291.0500,132.6817 L 367.4700,183.0308 L 376.4200,174.0808 L 300.0000,123.7317 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 300.0000,123.7317 L 291.0500,132.6817 L 367.4700,183.0308 L 376.4200,174.0808 L 300.0000,123.7317 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><path d=" M 376.4200,174.0808 L 367.4700,183.0308 L 443.8900,78.5521 L 452.8400,69.6021 L 376.4200,174.0808 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 376.4200,174.0808 L 367.4700,183.0308 L 443.8900,78.5521 L 452.8400,69.6021 L 376.4200,174.0808 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_101"/><ellipse cx="156.11" cy="125.7794" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_102"/><ellipse cx="232.53" cy="162.3814" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_103"/><ellipse cx="308.95" cy="110.3138" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_104"/><ellipse cx="385.37" cy="145.3692" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_105"/><ellipse cx="461.79" cy="165.8182" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_106"/><ellipse cx="147.16" cy="81.6309" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_107"/><ellipse cx="223.58" cy="134.7294" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_108"/><ellipse cx="300" cy="123.7317" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_109"/><ellipse cx="376.42" cy="174.0808" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_110"/><ellipse cx="452.84" cy="69.6021" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_111"/><path d=" M 500.0000,165.9900 L 482.1000,183.8900" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 482.1000,183.8900 L 100.0000,183.8900" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 100.0000,183.8900 L 117.9000,165.9900" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><path d=" M 156.1100,21.0000 L 138.2100,38.9000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_115"/><path d=" M 138.2100,38.9000 L 138.2100,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_116"/><path d=" M 138.2100,200.0000 L 156.1100,182.1000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_117"/><g id="ezcGraphTextBox_4"><path d=" M 190.1400,18.0000 L 190.1400,2.5000 L 310.3600,2.5000 L 310.3600,18.0000 L 190.1400,18.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_118"/><text id="ezcGraphTextBox_4_text" x="190.64" text-length="118.72px" y="14.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line chart title</text></g><g id="ezcGraphTextBox_8"><path d=" M 18.5000,40.0000 L 18.5000,24.5000 L 64.5200,24.5000 L 64.5200,40.0000 L 18.5000,40.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_119"/><text id="ezcGraphTextBox_8_text" x="19" text-length="44.52px" y="36.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_10"><path d=" M 18.5000,58.0000 L 18.5000,42.5000 L 64.5200,42.5000 L 64.5200,58.0000 L 18.5000,58.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_120"/><text id="ezcGraphTextBox_10_text" x="19" text-length="44.52px" y="54.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_20"><path d=" M 187.6088,199.2000 L 187.6088,185.1900 L 242.1512,185.1900 L 242.1512,199.2000 L 187.6088,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_121"/><text id="ezcGraphTextBox_20_text" x="188.1088" text-length="53.0424px" y="196.3235" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_24"><path d=" M 264.0288,199.2000 L 264.0288,185.1900 L 318.5712,185.1900 L 318.5712,199.2000 L 264.0288,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_122"/><text id="ezcGraphTextBox_24_text" x="264.5288" text-length="53.0424px" y="196.3235" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_28"><path d=" M 340.4488,199.2000 L 340.4488,185.1900 L 394.9912,185.1900 L 394.9912,199.2000 L 340.4488,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_123"/><text id="ezcGraphTextBox_28_text" x="340.9488" text-length="53.0424px" y="196.3235" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_32"><path d=" M 416.8688,199.2000 L 416.8688,185.1900 L 471.4112,185.1900 L 471.4112,199.2000 L 416.8688,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_124"/><text id="ezcGraphTextBox_32_text" x="417.3688" text-length="53.0424px" y="196.3235" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_33"><path d=" M 128.0433,183.0900 L 128.0433,169.0800 L 137.2995,169.0800 L 137.2995,183.0900 L 128.0433,183.0900 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_125"/><text id="ezcGraphTextBox_33_text" x="128.5433" text-length="7.7562px" y="180.2135" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_49"><path d=" M 112.5309,140.1300 L 112.5309,126.1200 L 137.2995,126.1200 L 137.2995,140.1300 L 112.5309,140.1300 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_126"/><text id="ezcGraphTextBox_49_text" x="113.0309" text-length="23.2686px" y="137.2535" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_65"><path d=" M 112.5309,97.1700 L 112.5309,83.1600 L 137.2995,83.1600 L 137.2995,97.1700 L 112.5309,97.1700 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_127"/><text id="ezcGraphTextBox_65_text" x="113.0309" text-length="23.2686px" y="94.2935" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_81"><path d=" M 112.5309,70.3200 L 112.5309,56.3100 L 137.2995,56.3100 L 137.2995,70.3200 L 112.5309,70.3200 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_128"/><text id="ezcGraphTextBox_81_text" x="113.0309" text-length="23.2686px" y="67.4435" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,19.0000 L 1.0000,1.0000 L 499.0000,1.0000 L 499.0000,19.0000 L 1.0000,19.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,19.0000 L 1.0000,1.0000 L 499.0000,1.0000 L 499.0000,19.0000 L 1.0000,19.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><path d=" M 1.0000,199.0000 L 1.0000,22.0000 L 99.0000,22.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_5"/><path d=" M 1.0000,199.0000 L 1.0000,22.0000 L 99.0000,22.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_6"/><ellipse cx="11" cy="32" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_7"/><ellipse cx="11" cy="50" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_9"/><path d=" M 100.0000,183.8900 L 117.9000,165.9900 L 500.0000,165.9900 L 482.1000,183.8900 L 100.0000,183.8900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 117.9000,165.9900 L 500.0000,165.9900" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 492.0000,169.9900 L 500.0000,165.9900 L 492.0000,161.9900 L 492.0000,169.9900 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 138.2100,200.0000 L 156.1100,182.1000 L 156.1100,21.0000 L 138.2100,38.9000 L 138.2100,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 156.1100,182.1000 L 156.1100,21.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 154.1100,25.0000 L 156.1100,21.0000 L 158.1100,25.0000 L 154.1100,25.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 232.5300,165.9900 L 232.5300,37.1100" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 214.6300,181.1900 L 232.5300,163.2900 L 232.5300,165.9900 L 214.6300,183.8900 L 214.6300,181.1900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_18"/><path d=" M 214.6300,181.1900 L 232.5300,163.2900 L 232.5300,165.9900 L 214.6300,183.8900 L 214.6300,181.1900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_19"/><path d=" M 308.9500,165.9900 L 308.9500,37.1100" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 291.0500,181.1900 L 308.9500,163.2900 L 308.9500,165.9900 L 291.0500,183.8900 L 291.0500,181.1900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_22"/><path d=" M 291.0500,181.1900 L 308.9500,163.2900 L 308.9500,165.9900 L 291.0500,183.8900 L 291.0500,181.1900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_23"/><path d=" M 385.3700,165.9900 L 385.3700,37.1100" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 367.4700,181.1900 L 385.3700,163.2900 L 385.3700,165.9900 L 367.4700,183.8900 L 367.4700,181.1900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_26"/><path d=" M 367.4700,181.1900 L 385.3700,163.2900 L 385.3700,165.9900 L 367.4700,183.8900 L 367.4700,181.1900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_27"/><path d=" M 461.7900,165.9900 L 461.7900,37.1100" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 443.8900,181.1900 L 461.7900,163.2900 L 461.7900,165.9900 L 443.8900,183.8900 L 443.8900,181.1900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_30"/><path d=" M 443.8900,181.1900 L 461.7900,163.2900 L 461.7900,165.9900 L 443.8900,183.8900 L 443.8900,181.1900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_31"/><path d=" M 461.7900,156.9684 L 156.1100,156.9684" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 138.2100,175.2980 L 156.1100,157.3980 L 157.0653,157.3980 L 139.1653,175.2980 L 138.2100,175.2980 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 138.2100,175.2980 L 156.1100,157.3980 L 157.0653,157.3980 L 139.1653,175.2980 L 138.2100,175.2980 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 461.7900,149.2356 L 156.1100,149.2356" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 138.2100,166.7060 L 156.1100,148.8060 L 157.0653,148.8060 L 139.1653,166.7060 L 138.2100,166.7060 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 138.2100,166.7060 L 156.1100,148.8060 L 157.0653,148.8060 L 139.1653,166.7060 L 138.2100,166.7060 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 461.7900,140.2140 L 156.1100,140.2140" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.2100,158.1140 L 156.1100,140.2140 L 157.0653,140.2140 L 139.1653,158.1140 L 138.2100,158.1140 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.2100,158.1140 L 156.1100,140.2140 L 157.0653,140.2140 L 139.1653,158.1140 L 138.2100,158.1140 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 461.7900,131.1924 L 156.1100,131.1924" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.2100,149.5220 L 156.1100,131.6220 L 157.0653,131.6220 L 139.1653,149.5220 L 138.2100,149.5220 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.2100,149.5220 L 156.1100,131.6220 L 157.0653,131.6220 L 139.1653,149.5220 L 138.2100,149.5220 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 461.7900,123.4596 L 156.1100,123.4596" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 138.2100,140.9300 L 156.1100,123.0300 L 158.9758,123.0300 L 141.0757,140.9300 L 138.2100,140.9300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 138.2100,140.9300 L 156.1100,123.0300 L 158.9758,123.0300 L 141.0757,140.9300 L 138.2100,140.9300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 461.7900,114.4380 L 156.1100,114.4380" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 138.2100,132.3380 L 156.1100,114.4380 L 157.0653,114.4380 L 139.1653,132.3380 L 138.2100,132.3380 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 138.2100,132.3380 L 156.1100,114.4380 L 157.0653,114.4380 L 139.1653,132.3380 L 138.2100,132.3380 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 461.7900,105.4164 L 156.1100,105.4164" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.2100,123.7460 L 156.1100,105.8460 L 157.0653,105.8460 L 139.1653,123.7460 L 138.2100,123.7460 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 138.2100,123.7460 L 156.1100,105.8460 L 157.0653,105.8460 L 139.1653,123.7460 L 138.2100,123.7460 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 461.7900,97.6836 L 156.1100,97.6836" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 138.2100,115.1540 L 156.1100,97.2540 L 157.0653,97.2540 L 139.1653,115.1540 L 138.2100,115.1540 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 138.2100,115.1540 L 156.1100,97.2540 L 157.0653,97.2540 L 139.1653,115.1540 L 138.2100,115.1540 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 461.7900,88.6620 L 156.1100,88.6620" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 138.2100,106.5620 L 156.1100,88.6620 L 157.0653,88.6620 L 139.1653,106.5620 L 138.2100,106.5620 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 138.2100,106.5620 L 156.1100,88.6620 L 157.0653,88.6620 L 139.1653,106.5620 L 138.2100,106.5620 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 461.7900,79.6404 L 156.1100,79.6404" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 138.2100,97.9700 L 156.1100,80.0700 L 158.9758,80.0700 L 141.0757,97.9700 L 138.2100,97.9700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 138.2100,97.9700 L 156.1100,80.0700 L 158.9758,80.0700 L 141.0757,97.9700 L 138.2100,97.9700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_64"/><path d=" M 461.7900,71.9076 L 156.1100,71.9076" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 138.2100,89.3780 L 156.1100,71.4780 L 157.0653,71.4780 L 139.1653,89.3780 L 138.2100,89.3780 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 138.2100,89.3780 L 156.1100,71.4780 L 157.0653,71.4780 L 139.1653,89.3780 L 138.2100,89.3780 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 461.7900,62.8860 L 156.1100,62.8860" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.2100,80.7860 L 156.1100,62.8860 L 157.0653,62.8860 L 139.1653,80.7860 L 138.2100,80.7860 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.2100,80.7860 L 156.1100,62.8860 L 157.0653,62.8860 L 139.1653,80.7860 L 138.2100,80.7860 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 461.7900,53.8644 L 156.1100,53.8644" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 138.2100,72.1940 L 156.1100,54.2940 L 157.0653,54.2940 L 139.1653,72.1940 L 138.2100,72.1940 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 138.2100,72.1940 L 156.1100,54.2940 L 157.0653,54.2940 L 139.1653,72.1940 L 138.2100,72.1940 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 461.7900,46.1316 L 156.1100,46.1316" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 138.2100,63.6020 L 156.1100,45.7020 L 157.0653,45.7020 L 139.1653,63.6020 L 138.2100,63.6020 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 138.2100,63.6020 L 156.1100,45.7020 L 157.0653,45.7020 L 139.1653,63.6020 L 138.2100,63.6020 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 461.7900,37.1100 L 156.1100,37.1100" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 138.2100,55.0100 L 156.1100,37.1100 L 158.9758,37.1100 L 141.0757,55.0100 L 138.2100,55.0100 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 138.2100,55.0100 L 156.1100,37.1100 L 158.9758,37.1100 L 141.0757,55.0100 L 138.2100,55.0100 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 156.1100,125.7794 L 147.1600,134.7294 L 147.1600,134.7294 L 156.1100,125.7794 L 156.1100,125.7794 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 156.1100,125.7794 L 147.1600,134.7294 L 147.1600,134.7294 L 156.1100,125.7794 L 156.1100,125.7794 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_83"/><path d=" M 156.1100,125.7794 L 147.1600,134.7294 L 223.5800,171.3314 L 232.5300,162.3814 L 156.1100,125.7794 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 156.1100,125.7794 L 147.1600,134.7294 L 223.5800,171.3314 L 232.5300,162.3814 L 156.1100,125.7794 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_85"/><path d=" M 232.5300,162.3814 L 223.5800,171.3314 L 300.0000,119.2638 L 308.9500,110.3138 L 232.5300,162.3814 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 232.5300,162.3814 L 223.5800,171.3314 L 300.0000,119.2638 L 308.9500,110.3138 L 232.5300,162.3814 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_87"/><path d=" M 308.9500,110.3138 L 300.0000,119.2638 L 376.4200,154.3192 L 385.3700,145.3692 L 308.9500,110.3138 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 308.9500,110.3138 L 300.0000,119.2638 L 376.4200,154.3192 L 385.3700,145.3692 L 308.9500,110.3138 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_89"/><path d=" M 385.3700,145.3692 L 376.4200,154.3192 L 452.8400,174.7682 L 461.7900,165.8182 L 385.3700,145.3692 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_90"/><path d=" M 385.3700,145.3692 L 376.4200,154.3192 L 452.8400,174.7682 L 461.7900,165.8182 L 385.3700,145.3692 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_91"/><path d=" M 147.1600,81.6309 L 138.2100,90.5809 L 138.2100,90.5809 L 147.1600,81.6309 L 147.1600,81.6309 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_92"/><path d=" M 147.1600,81.6309 L 138.2100,90.5809 L 138.2100,90.5809 L 147.1600,81.6309 L 147.1600,81.6309 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_93"/><path d=" M 147.1600,81.6309 L 138.2100,90.5809 L 214.6300,143.6794 L 223.5800,134.7294 L 147.1600,81.6309 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_94"/><path d=" M 147.1600,81.6309 L 138.2100,90.5809 L 214.6300,143.6794 L 223.5800,134.7294 L 147.1600,81.6309 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_95"/><path d=" M 223.5800,134.7294 L 214.6300,143.6794 L 291.0500,132.6817 L 300.0000,123.7317 L 223.5800,134.7294 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_96"/><path d=" M 223.5800,134.7294 L 214.6300,143.6794 L 291.0500,132.6817 L 300.0000,123.7317 L 223.5800,134.7294 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_97"/><path d=" M 300.0000,123.7317 L 291.0500,132.6817 L 367.4700,183.0308 L 376.4200,174.0808 L 300.0000,123.7317 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 300.0000,123.7317 L 291.0500,132.6817 L 367.4700,183.0308 L 376.4200,174.0808 L 300.0000,123.7317 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><path d=" M 376.4200,174.0808 L 367.4700,183.0308 L 443.8900,78.5521 L 452.8400,69.6021 L 376.4200,174.0808 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 376.4200,174.0808 L 367.4700,183.0308 L 443.8900,78.5521 L 452.8400,69.6021 L 376.4200,174.0808 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_101"/><ellipse cx="156.11" cy="125.7794" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_102"/><ellipse cx="232.53" cy="162.3814" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_103"/><ellipse cx="308.95" cy="110.3138" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_104"/><ellipse cx="385.37" cy="145.3692" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_105"/><ellipse cx="461.79" cy="165.8182" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_106"/><ellipse cx="147.16" cy="81.6309" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_107"/><ellipse cx="223.58" cy="134.7294" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_108"/><ellipse cx="300" cy="123.7317" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_109"/><ellipse cx="376.42" cy="174.0808" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_110"/><ellipse cx="452.84" cy="69.6021" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_111"/><path d=" M 500.0000,165.9900 L 482.1000,183.8900" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 482.1000,183.8900 L 100.0000,183.8900" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 100.0000,183.8900 L 117.9000,165.9900" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><path d=" M 156.1100,21.0000 L 138.2100,38.9000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_115"/><path d=" M 138.2100,38.9000 L 138.2100,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_116"/><path d=" M 138.2100,200.0000 L 156.1100,182.1000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_117"/><g id="ezcGraphTextBox_4"><path d=" M 190.1400,18.0000 L 190.1400,2.5000 L 310.3600,2.5000 L 310.3600,18.0000 L 190.1400,18.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_118"/><text id="ezcGraphTextBox_4_text" x="190.64" text-length="118.72px" y="14.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line chart title</text></g><g id="ezcGraphTextBox_8"><path d=" M 18.5000,40.0000 L 18.5000,24.5000 L 64.5200,24.5000 L 64.5200,40.0000 L 18.5000,40.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_119"/><text id="ezcGraphTextBox_8_text" x="19" text-length="44.52px" y="36.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_10"><path d=" M 18.5000,58.0000 L 18.5000,42.5000 L 64.5200,42.5000 L 64.5200,58.0000 L 18.5000,58.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_120"/><text id="ezcGraphTextBox_10_text" x="19" text-length="44.52px" y="54.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_20"><path d=" M 187.6088,199.2000 L 187.6088,185.1900 L 242.1512,185.1900 L 242.1512,199.2000 L 187.6088,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_121"/><text id="ezcGraphTextBox_20_text" x="188.1088" text-length="53.0424px" y="196.3235" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_24"><path d=" M 264.0288,199.2000 L 264.0288,185.1900 L 318.5712,185.1900 L 318.5712,199.2000 L 264.0288,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_122"/><text id="ezcGraphTextBox_24_text" x="264.5288" text-length="53.0424px" y="196.3235" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_28"><path d=" M 340.4488,199.2000 L 340.4488,185.1900 L 394.9912,185.1900 L 394.9912,199.2000 L 340.4488,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_123"/><text id="ezcGraphTextBox_28_text" x="340.9488" text-length="53.0424px" y="196.3235" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_32"><path d=" M 416.8688,199.2000 L 416.8688,185.1900 L 471.4112,185.1900 L 471.4112,199.2000 L 416.8688,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_124"/><text id="ezcGraphTextBox_32_text" x="417.3688" text-length="53.0424px" y="196.3235" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_33"><path d=" M 128.0433,183.0900 L 128.0433,169.0800 L 137.2995,169.0800 L 137.2995,183.0900 L 128.0433,183.0900 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_125"/><text id="ezcGraphTextBox_33_text" x="128.5433" text-length="7.7562px" y="180.2135" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_49"><path d=" M 112.5309,140.1300 L 112.5309,126.1200 L 137.2995,126.1200 L 137.2995,140.1300 L 112.5309,140.1300 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_126"/><text id="ezcGraphTextBox_49_text" x="113.0309" text-length="23.2686px" y="137.2535" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_65"><path d=" M 112.5309,97.1700 L 112.5309,83.1600 L 137.2995,83.1600 L 137.2995,97.1700 L 112.5309,97.1700 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_127"/><text id="ezcGraphTextBox_65_text" x="113.0309" text-length="23.2686px" y="94.2935" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_81"><path d=" M 112.5309,70.3200 L 112.5309,56.3100 L 137.2995,56.3100 L 137.2995,70.3200 L 112.5309,70.3200 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_128"/><text id="ezcGraphTextBox_81_text" x="113.0309" text-length="23.2686px" y="67.4435" style="font-size: 12px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChartBigMaxFontSize.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChartBigMaxFontSize.svg
index 191b53a..5d75c0c 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChartBigMaxFontSize.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChartBigMaxFontSize.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,35.0000 L 1.0000,1.0000 L 499.0000,1.0000 L 499.0000,35.0000 L 1.0000,35.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,34.0000 L 2.0000,2.0000 L 498.0000,2.0000 L 498.0000,34.0000 L 2.0000,34.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 1.0000,199.0000 L 1.0000,38.0000 L 99.0000,38.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_5"/><path d=" M 2.0000,198.0000 L 2.0000,39.0000 L 98.0000,39.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_6"/><ellipse cx="11" cy="48" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_7"/><ellipse cx="11" cy="66" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_9"/><path d=" M 100.0000,185.3300 L 116.3000,169.0300 L 500.0000,169.0300 L 483.7000,185.3300 L 100.0000,185.3300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 116.3000,169.0300 L 500.0000,169.0300" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 492.0000,173.0300 L 500.0000,169.0300 L 492.0000,165.0300 L 492.0000,173.0300 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 138.3700,200.0000 L 154.6700,183.7000 L 154.6700,37.0000 L 138.3700,53.3000 L 138.3700,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 154.6700,183.7000 L 154.6700,37.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 152.6700,41.0000 L 154.6700,37.0000 L 156.6700,41.0000 L 152.6700,41.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 231.4100,169.0300 L 231.4100,51.6700" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 215.1100,182.6300 L 231.4100,166.3300 L 231.4100,169.0300 L 215.1100,185.3300 L 215.1100,182.6300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_18"/><path d=" M 215.1100,182.6300 L 231.4100,166.3300 L 231.4100,169.0300 L 215.1100,185.3300 L 215.1100,182.6300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_19"/><path d=" M 308.1500,169.0300 L 308.1500,51.6700" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 291.8500,182.6300 L 308.1500,166.3300 L 308.1500,169.0300 L 291.8500,185.3300 L 291.8500,182.6300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_22"/><path d=" M 291.8500,182.6300 L 308.1500,166.3300 L 308.1500,169.0300 L 291.8500,185.3300 L 291.8500,182.6300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_23"/><path d=" M 384.8900,169.0300 L 384.8900,51.6700" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 368.5900,182.6300 L 384.8900,166.3300 L 384.8900,169.0300 L 368.5900,185.3300 L 368.5900,182.6300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_26"/><path d=" M 368.5900,182.6300 L 384.8900,166.3300 L 384.8900,169.0300 L 368.5900,185.3300 L 368.5900,182.6300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_27"/><path d=" M 461.6300,169.0300 L 461.6300,51.6700" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 445.3300,182.6300 L 461.6300,166.3300 L 461.6300,169.0300 L 445.3300,185.3300 L 445.3300,182.6300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_30"/><path d=" M 445.3300,182.6300 L 461.6300,166.3300 L 461.6300,169.0300 L 445.3300,185.3300 L 445.3300,182.6300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_31"/><path d=" M 461.6300,160.8148 L 154.6700,160.8148" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 138.3700,177.5060 L 154.6700,161.2060 L 155.6293,161.2060 L 139.3293,177.5060 L 138.3700,177.5060 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 138.3700,177.5060 L 154.6700,161.2060 L 155.6293,161.2060 L 139.3293,177.5060 L 138.3700,177.5060 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 461.6300,153.7732 L 154.6700,153.7732" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 138.3700,169.6820 L 154.6700,153.3820 L 155.6293,153.3820 L 139.3293,169.6820 L 138.3700,169.6820 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 138.3700,169.6820 L 154.6700,153.3820 L 155.6293,153.3820 L 139.3293,169.6820 L 138.3700,169.6820 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 461.6300,145.5580 L 154.6700,145.5580" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.3700,161.8580 L 154.6700,145.5580 L 155.6293,145.5580 L 139.3293,161.8580 L 138.3700,161.8580 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.3700,161.8580 L 154.6700,145.5580 L 155.6293,145.5580 L 139.3293,161.8580 L 138.3700,161.8580 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 461.6300,137.3428 L 154.6700,137.3428" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.3700,154.0340 L 154.6700,137.7340 L 155.6293,137.7340 L 139.3293,154.0340 L 138.3700,154.0340 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.3700,154.0340 L 154.6700,137.7340 L 155.6293,137.7340 L 139.3293,154.0340 L 138.3700,154.0340 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 461.6300,130.3012 L 154.6700,130.3012" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 138.3700,146.2100 L 154.6700,129.9100 L 157.5478,129.9100 L 141.2477,146.2100 L 138.3700,146.2100 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 138.3700,146.2100 L 154.6700,129.9100 L 157.5478,129.9100 L 141.2477,146.2100 L 138.3700,146.2100 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 461.6300,122.0860 L 154.6700,122.0860" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 138.3700,138.3860 L 154.6700,122.0860 L 155.6293,122.0860 L 139.3293,138.3860 L 138.3700,138.3860 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 138.3700,138.3860 L 154.6700,122.0860 L 155.6293,122.0860 L 139.3293,138.3860 L 138.3700,138.3860 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 461.6300,113.8708 L 154.6700,113.8708" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.3700,130.5620 L 154.6700,114.2620 L 155.6293,114.2620 L 139.3293,130.5620 L 138.3700,130.5620 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 138.3700,130.5620 L 154.6700,114.2620 L 155.6293,114.2620 L 139.3293,130.5620 L 138.3700,130.5620 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 461.6300,106.8292 L 154.6700,106.8292" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 138.3700,122.7380 L 154.6700,106.4380 L 155.6293,106.4380 L 139.3293,122.7380 L 138.3700,122.7380 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 138.3700,122.7380 L 154.6700,106.4380 L 155.6293,106.4380 L 139.3293,122.7380 L 138.3700,122.7380 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 461.6300,98.6140 L 154.6700,98.6140" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 138.3700,114.9140 L 154.6700,98.6140 L 155.6293,98.6140 L 139.3293,114.9140 L 138.3700,114.9140 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 138.3700,114.9140 L 154.6700,98.6140 L 155.6293,98.6140 L 139.3293,114.9140 L 138.3700,114.9140 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 461.6300,90.3988 L 154.6700,90.3988" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 138.3700,107.0900 L 154.6700,90.7900 L 157.5478,90.7900 L 141.2477,107.0900 L 138.3700,107.0900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 138.3700,107.0900 L 154.6700,90.7900 L 157.5478,90.7900 L 141.2477,107.0900 L 138.3700,107.0900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_64"/><path d=" M 461.6300,83.3572 L 154.6700,83.3572" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 138.3700,99.2660 L 154.6700,82.9660 L 155.6293,82.9660 L 139.3293,99.2660 L 138.3700,99.2660 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 138.3700,99.2660 L 154.6700,82.9660 L 155.6293,82.9660 L 139.3293,99.2660 L 138.3700,99.2660 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 461.6300,75.1420 L 154.6700,75.1420" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.3700,91.4420 L 154.6700,75.1420 L 155.6293,75.1420 L 139.3293,91.4420 L 138.3700,91.4420 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.3700,91.4420 L 154.6700,75.1420 L 155.6293,75.1420 L 139.3293,91.4420 L 138.3700,91.4420 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 461.6300,66.9268 L 154.6700,66.9268" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 138.3700,83.6180 L 154.6700,67.3180 L 155.6293,67.3180 L 139.3293,83.6180 L 138.3700,83.6180 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 138.3700,83.6180 L 154.6700,67.3180 L 155.6293,67.3180 L 139.3293,83.6180 L 138.3700,83.6180 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 461.6300,59.8852 L 154.6700,59.8852" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 138.3700,75.7940 L 154.6700,59.4940 L 155.6293,59.4940 L 139.3293,75.7940 L 138.3700,75.7940 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 138.3700,75.7940 L 154.6700,59.4940 L 155.6293,59.4940 L 139.3293,75.7940 L 138.3700,75.7940 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 461.6300,51.6700 L 154.6700,51.6700" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 138.3700,67.9700 L 154.6700,51.6700 L 157.5478,51.6700 L 141.2477,67.9700 L 138.3700,67.9700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 138.3700,67.9700 L 154.6700,51.6700 L 157.5478,51.6700 L 141.2477,67.9700 L 138.3700,67.9700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 154.6700,132.4137 L 146.5200,140.5637 L 146.5200,140.5637 L 154.6700,132.4137 L 154.6700,132.4137 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 154.6700,132.4137 L 146.5200,140.5637 L 146.5200,140.5637 L 154.6700,132.4137 L 154.6700,132.4137 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_83"/><path d=" M 154.6700,132.4137 L 146.5200,140.5637 L 223.2600,173.8939 L 231.4100,165.7439 L 154.6700,132.4137 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 154.6700,132.4137 L 146.5200,140.5637 L 223.2600,173.8939 L 231.4100,165.7439 L 154.6700,132.4137 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_85"/><path d=" M 231.4100,165.7439 L 223.2600,173.8939 L 300.0000,126.4805 L 308.1500,118.3305 L 231.4100,165.7439 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 231.4100,165.7439 L 223.2600,173.8939 L 300.0000,126.4805 L 308.1500,118.3305 L 231.4100,165.7439 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_87"/><path d=" M 308.1500,118.3305 L 300.0000,126.4805 L 376.7400,158.4024 L 384.8900,150.2524 L 308.1500,118.3305 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 308.1500,118.3305 L 300.0000,126.4805 L 376.7400,158.4024 L 384.8900,150.2524 L 308.1500,118.3305 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_89"/><path d=" M 384.8900,150.2524 L 376.7400,158.4024 L 453.4800,177.0235 L 461.6300,168.8735 L 384.8900,150.2524 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_90"/><path d=" M 384.8900,150.2524 L 376.7400,158.4024 L 453.4800,177.0235 L 461.6300,168.8735 L 384.8900,150.2524 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_91"/><path d=" M 146.5200,92.2114 L 138.3700,100.3614 L 138.3700,100.3614 L 146.5200,92.2114 L 146.5200,92.2114 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_92"/><path d=" M 146.5200,92.2114 L 138.3700,100.3614 L 138.3700,100.3614 L 146.5200,92.2114 L 146.5200,92.2114 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_93"/><path d=" M 146.5200,92.2114 L 138.3700,100.3614 L 215.1100,148.7137 L 223.2600,140.5637 L 146.5200,92.2114 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_94"/><path d=" M 146.5200,92.2114 L 138.3700,100.3614 L 215.1100,148.7137 L 223.2600,140.5637 L 146.5200,92.2114 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_95"/><path d=" M 223.2600,140.5637 L 215.1100,148.7137 L 291.8500,138.6990 L 300.0000,130.5490 L 223.2600,140.5637 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_96"/><path d=" M 223.2600,140.5637 L 215.1100,148.7137 L 291.8500,138.6990 L 300.0000,130.5490 L 223.2600,140.5637 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_97"/><path d=" M 300.0000,130.5490 L 291.8500,138.6990 L 368.5900,184.5476 L 376.7400,176.3976 L 300.0000,130.5490 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 300.0000,130.5490 L 291.8500,138.6990 L 368.5900,184.5476 L 376.7400,176.3976 L 300.0000,130.5490 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><path d=" M 376.7400,176.3976 L 368.5900,184.5476 L 445.3300,89.4078 L 453.4800,81.2578 L 376.7400,176.3976 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 376.7400,176.3976 L 368.5900,184.5476 L 445.3300,89.4078 L 453.4800,81.2578 L 376.7400,176.3976 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_101"/><ellipse cx="154.67" cy="132.4137" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_102"/><ellipse cx="231.41" cy="165.7439" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_103"/><ellipse cx="308.15" cy="118.3305" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_104"/><ellipse cx="384.89" cy="150.2524" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_105"/><ellipse cx="461.63" cy="168.8735" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_106"/><ellipse cx="146.52" cy="92.2114" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_107"/><ellipse cx="223.26" cy="140.5637" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_108"/><ellipse cx="300" cy="130.549" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_109"/><ellipse cx="376.74" cy="176.3976" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_110"/><ellipse cx="453.48" cy="81.2578" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_111"/><path d=" M 500.0000,169.0300 L 483.7000,185.3300" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 483.7000,185.3300 L 100.0000,185.3300" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 100.0000,185.3300 L 116.3000,169.0300" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><path d=" M 154.6700,37.0000 L 138.3700,53.3000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_115"/><path d=" M 138.3700,53.3000 L 138.3700,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_116"/><path d=" M 138.3700,200.0000 L 154.6700,183.7000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_117"/><g id="ezcGraphTextBox_4"><path d=" M 122.3000,34.0000 L 122.3000,2.5000 L 378.2000,2.5000 L 378.2000,34.0000 L 122.3000,34.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_118"/><text id="ezcGraphTextBox_4_text" x="122.8" text-length="254.4px" y="28.5" style="font-size: 30px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line chart title</text></g><g id="ezcGraphTextBox_8"><path d=" M 18.5000,56.0000 L 18.5000,40.5000 L 64.5200,40.5000 L 64.5200,56.0000 L 18.5000,56.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_119"/><text id="ezcGraphTextBox_8_text" x="19" text-length="44.52px" y="52.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_10"><path d=" M 18.5000,74.0000 L 18.5000,58.5000 L 64.5200,58.5000 L 64.5200,74.0000 L 18.5000,74.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_120"/><text id="ezcGraphTextBox_10_text" x="19" text-length="44.52px" y="70.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_20"><path d=" M 191.1416,199.2000 L 191.1416,186.6300 L 239.5784,186.6300 L 239.5784,199.2000 L 191.1416,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_121"/><text id="ezcGraphTextBox_20_text" x="191.6416" text-length="46.9368px" y="196.5395" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_24"><path d=" M 267.8816,199.2000 L 267.8816,186.6300 L 316.3184,186.6300 L 316.3184,199.2000 L 267.8816,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_122"/><text id="ezcGraphTextBox_24_text" x="268.3816" text-length="46.9368px" y="196.5395" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_28"><path d=" M 344.6216,199.2000 L 344.6216,186.6300 L 393.0584,186.6300 L 393.0584,199.2000 L 344.6216,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_123"/><text id="ezcGraphTextBox_28_text" x="345.1216" text-length="46.9368px" y="196.5395" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_32"><path d=" M 421.3616,199.2000 L 421.3616,186.6300 L 469.7984,186.6300 L 469.7984,199.2000 L 421.3616,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_124"/><text id="ezcGraphTextBox_32_text" x="421.8616" text-length="46.9368px" y="196.5395" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_33"><path d=" M 129.0881,184.5300 L 129.0881,171.9600 L 137.4515,171.9600 L 137.4515,184.5300 L 129.0881,184.5300 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_125"/><text id="ezcGraphTextBox_33_text" x="129.5881" text-length="6.8634px" y="181.8695" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_49"><path d=" M 115.3613,145.4100 L 115.3613,132.8400 L 137.4515,132.8400 L 137.4515,145.4100 L 115.3613,145.4100 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_126"/><text id="ezcGraphTextBox_49_text" x="115.8613" text-length="20.5902px" y="142.7495" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_65"><path d=" M 115.3613,106.2900 L 115.3613,93.7200 L 137.4515,93.7200 L 137.4515,106.2900 L 115.3613,106.2900 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_127"/><text id="ezcGraphTextBox_65_text" x="115.8613" text-length="20.5902px" y="103.6295" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_81"><path d=" M 115.3613,81.8400 L 115.3613,69.2700 L 137.4515,69.2700 L 137.4515,81.8400 L 115.3613,81.8400 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_128"/><text id="ezcGraphTextBox_81_text" x="115.8613" text-length="20.5902px" y="79.1795" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,35.0000 L 1.0000,1.0000 L 499.0000,1.0000 L 499.0000,35.0000 L 1.0000,35.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,35.0000 L 1.0000,1.0000 L 499.0000,1.0000 L 499.0000,35.0000 L 1.0000,35.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><path d=" M 1.0000,199.0000 L 1.0000,38.0000 L 99.0000,38.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_5"/><path d=" M 1.0000,199.0000 L 1.0000,38.0000 L 99.0000,38.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_6"/><ellipse cx="11" cy="48" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_7"/><ellipse cx="11" cy="66" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_9"/><path d=" M 100.0000,185.3300 L 116.3000,169.0300 L 500.0000,169.0300 L 483.7000,185.3300 L 100.0000,185.3300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 116.3000,169.0300 L 500.0000,169.0300" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 492.0000,173.0300 L 500.0000,169.0300 L 492.0000,165.0300 L 492.0000,173.0300 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 138.3700,200.0000 L 154.6700,183.7000 L 154.6700,37.0000 L 138.3700,53.3000 L 138.3700,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 154.6700,183.7000 L 154.6700,37.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 152.6700,41.0000 L 154.6700,37.0000 L 156.6700,41.0000 L 152.6700,41.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 231.4100,169.0300 L 231.4100,51.6700" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 215.1100,182.6300 L 231.4100,166.3300 L 231.4100,169.0300 L 215.1100,185.3300 L 215.1100,182.6300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_18"/><path d=" M 215.1100,182.6300 L 231.4100,166.3300 L 231.4100,169.0300 L 215.1100,185.3300 L 215.1100,182.6300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_19"/><path d=" M 308.1500,169.0300 L 308.1500,51.6700" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 291.8500,182.6300 L 308.1500,166.3300 L 308.1500,169.0300 L 291.8500,185.3300 L 291.8500,182.6300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_22"/><path d=" M 291.8500,182.6300 L 308.1500,166.3300 L 308.1500,169.0300 L 291.8500,185.3300 L 291.8500,182.6300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_23"/><path d=" M 384.8900,169.0300 L 384.8900,51.6700" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 368.5900,182.6300 L 384.8900,166.3300 L 384.8900,169.0300 L 368.5900,185.3300 L 368.5900,182.6300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_26"/><path d=" M 368.5900,182.6300 L 384.8900,166.3300 L 384.8900,169.0300 L 368.5900,185.3300 L 368.5900,182.6300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_27"/><path d=" M 461.6300,169.0300 L 461.6300,51.6700" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 445.3300,182.6300 L 461.6300,166.3300 L 461.6300,169.0300 L 445.3300,185.3300 L 445.3300,182.6300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_30"/><path d=" M 445.3300,182.6300 L 461.6300,166.3300 L 461.6300,169.0300 L 445.3300,185.3300 L 445.3300,182.6300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_31"/><path d=" M 461.6300,160.8148 L 154.6700,160.8148" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 138.3700,177.5060 L 154.6700,161.2060 L 155.6293,161.2060 L 139.3293,177.5060 L 138.3700,177.5060 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 138.3700,177.5060 L 154.6700,161.2060 L 155.6293,161.2060 L 139.3293,177.5060 L 138.3700,177.5060 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 461.6300,153.7732 L 154.6700,153.7732" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 138.3700,169.6820 L 154.6700,153.3820 L 155.6293,153.3820 L 139.3293,169.6820 L 138.3700,169.6820 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 138.3700,169.6820 L 154.6700,153.3820 L 155.6293,153.3820 L 139.3293,169.6820 L 138.3700,169.6820 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 461.6300,145.5580 L 154.6700,145.5580" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.3700,161.8580 L 154.6700,145.5580 L 155.6293,145.5580 L 139.3293,161.8580 L 138.3700,161.8580 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.3700,161.8580 L 154.6700,145.5580 L 155.6293,145.5580 L 139.3293,161.8580 L 138.3700,161.8580 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 461.6300,137.3428 L 154.6700,137.3428" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.3700,154.0340 L 154.6700,137.7340 L 155.6293,137.7340 L 139.3293,154.0340 L 138.3700,154.0340 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.3700,154.0340 L 154.6700,137.7340 L 155.6293,137.7340 L 139.3293,154.0340 L 138.3700,154.0340 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 461.6300,130.3012 L 154.6700,130.3012" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 138.3700,146.2100 L 154.6700,129.9100 L 157.5478,129.9100 L 141.2477,146.2100 L 138.3700,146.2100 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 138.3700,146.2100 L 154.6700,129.9100 L 157.5478,129.9100 L 141.2477,146.2100 L 138.3700,146.2100 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 461.6300,122.0860 L 154.6700,122.0860" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 138.3700,138.3860 L 154.6700,122.0860 L 155.6293,122.0860 L 139.3293,138.3860 L 138.3700,138.3860 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 138.3700,138.3860 L 154.6700,122.0860 L 155.6293,122.0860 L 139.3293,138.3860 L 138.3700,138.3860 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 461.6300,113.8708 L 154.6700,113.8708" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.3700,130.5620 L 154.6700,114.2620 L 155.6293,114.2620 L 139.3293,130.5620 L 138.3700,130.5620 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 138.3700,130.5620 L 154.6700,114.2620 L 155.6293,114.2620 L 139.3293,130.5620 L 138.3700,130.5620 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 461.6300,106.8292 L 154.6700,106.8292" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 138.3700,122.7380 L 154.6700,106.4380 L 155.6293,106.4380 L 139.3293,122.7380 L 138.3700,122.7380 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 138.3700,122.7380 L 154.6700,106.4380 L 155.6293,106.4380 L 139.3293,122.7380 L 138.3700,122.7380 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 461.6300,98.6140 L 154.6700,98.6140" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 138.3700,114.9140 L 154.6700,98.6140 L 155.6293,98.6140 L 139.3293,114.9140 L 138.3700,114.9140 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 138.3700,114.9140 L 154.6700,98.6140 L 155.6293,98.6140 L 139.3293,114.9140 L 138.3700,114.9140 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 461.6300,90.3988 L 154.6700,90.3988" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 138.3700,107.0900 L 154.6700,90.7900 L 157.5478,90.7900 L 141.2477,107.0900 L 138.3700,107.0900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 138.3700,107.0900 L 154.6700,90.7900 L 157.5478,90.7900 L 141.2477,107.0900 L 138.3700,107.0900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_64"/><path d=" M 461.6300,83.3572 L 154.6700,83.3572" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 138.3700,99.2660 L 154.6700,82.9660 L 155.6293,82.9660 L 139.3293,99.2660 L 138.3700,99.2660 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 138.3700,99.2660 L 154.6700,82.9660 L 155.6293,82.9660 L 139.3293,99.2660 L 138.3700,99.2660 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 461.6300,75.1420 L 154.6700,75.1420" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.3700,91.4420 L 154.6700,75.1420 L 155.6293,75.1420 L 139.3293,91.4420 L 138.3700,91.4420 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.3700,91.4420 L 154.6700,75.1420 L 155.6293,75.1420 L 139.3293,91.4420 L 138.3700,91.4420 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 461.6300,66.9268 L 154.6700,66.9268" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 138.3700,83.6180 L 154.6700,67.3180 L 155.6293,67.3180 L 139.3293,83.6180 L 138.3700,83.6180 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 138.3700,83.6180 L 154.6700,67.3180 L 155.6293,67.3180 L 139.3293,83.6180 L 138.3700,83.6180 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 461.6300,59.8852 L 154.6700,59.8852" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 138.3700,75.7940 L 154.6700,59.4940 L 155.6293,59.4940 L 139.3293,75.7940 L 138.3700,75.7940 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 138.3700,75.7940 L 154.6700,59.4940 L 155.6293,59.4940 L 139.3293,75.7940 L 138.3700,75.7940 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 461.6300,51.6700 L 154.6700,51.6700" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 138.3700,67.9700 L 154.6700,51.6700 L 157.5478,51.6700 L 141.2477,67.9700 L 138.3700,67.9700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 138.3700,67.9700 L 154.6700,51.6700 L 157.5478,51.6700 L 141.2477,67.9700 L 138.3700,67.9700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 154.6700,132.4137 L 146.5200,140.5637 L 146.5200,140.5637 L 154.6700,132.4137 L 154.6700,132.4137 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 154.6700,132.4137 L 146.5200,140.5637 L 146.5200,140.5637 L 154.6700,132.4137 L 154.6700,132.4137 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_83"/><path d=" M 154.6700,132.4137 L 146.5200,140.5637 L 223.2600,173.8939 L 231.4100,165.7439 L 154.6700,132.4137 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 154.6700,132.4137 L 146.5200,140.5637 L 223.2600,173.8939 L 231.4100,165.7439 L 154.6700,132.4137 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_85"/><path d=" M 231.4100,165.7439 L 223.2600,173.8939 L 300.0000,126.4805 L 308.1500,118.3305 L 231.4100,165.7439 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 231.4100,165.7439 L 223.2600,173.8939 L 300.0000,126.4805 L 308.1500,118.3305 L 231.4100,165.7439 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_87"/><path d=" M 308.1500,118.3305 L 300.0000,126.4805 L 376.7400,158.4024 L 384.8900,150.2524 L 308.1500,118.3305 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 308.1500,118.3305 L 300.0000,126.4805 L 376.7400,158.4024 L 384.8900,150.2524 L 308.1500,118.3305 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_89"/><path d=" M 384.8900,150.2524 L 376.7400,158.4024 L 453.4800,177.0235 L 461.6300,168.8735 L 384.8900,150.2524 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_90"/><path d=" M 384.8900,150.2524 L 376.7400,158.4024 L 453.4800,177.0235 L 461.6300,168.8735 L 384.8900,150.2524 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_91"/><path d=" M 146.5200,92.2114 L 138.3700,100.3614 L 138.3700,100.3614 L 146.5200,92.2114 L 146.5200,92.2114 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_92"/><path d=" M 146.5200,92.2114 L 138.3700,100.3614 L 138.3700,100.3614 L 146.5200,92.2114 L 146.5200,92.2114 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_93"/><path d=" M 146.5200,92.2114 L 138.3700,100.3614 L 215.1100,148.7137 L 223.2600,140.5637 L 146.5200,92.2114 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_94"/><path d=" M 146.5200,92.2114 L 138.3700,100.3614 L 215.1100,148.7137 L 223.2600,140.5637 L 146.5200,92.2114 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_95"/><path d=" M 223.2600,140.5637 L 215.1100,148.7137 L 291.8500,138.6990 L 300.0000,130.5490 L 223.2600,140.5637 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_96"/><path d=" M 223.2600,140.5637 L 215.1100,148.7137 L 291.8500,138.6990 L 300.0000,130.5490 L 223.2600,140.5637 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_97"/><path d=" M 300.0000,130.5490 L 291.8500,138.6990 L 368.5900,184.5476 L 376.7400,176.3976 L 300.0000,130.5490 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 300.0000,130.5490 L 291.8500,138.6990 L 368.5900,184.5476 L 376.7400,176.3976 L 300.0000,130.5490 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><path d=" M 376.7400,176.3976 L 368.5900,184.5476 L 445.3300,89.4078 L 453.4800,81.2578 L 376.7400,176.3976 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 376.7400,176.3976 L 368.5900,184.5476 L 445.3300,89.4078 L 453.4800,81.2578 L 376.7400,176.3976 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_101"/><ellipse cx="154.67" cy="132.4137" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_102"/><ellipse cx="231.41" cy="165.7439" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_103"/><ellipse cx="308.15" cy="118.3305" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_104"/><ellipse cx="384.89" cy="150.2524" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_105"/><ellipse cx="461.63" cy="168.8735" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_106"/><ellipse cx="146.52" cy="92.2114" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_107"/><ellipse cx="223.26" cy="140.5637" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_108"/><ellipse cx="300" cy="130.549" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_109"/><ellipse cx="376.74" cy="176.3976" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_110"/><ellipse cx="453.48" cy="81.2578" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_111"/><path d=" M 500.0000,169.0300 L 483.7000,185.3300" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 483.7000,185.3300 L 100.0000,185.3300" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 100.0000,185.3300 L 116.3000,169.0300" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><path d=" M 154.6700,37.0000 L 138.3700,53.3000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_115"/><path d=" M 138.3700,53.3000 L 138.3700,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_116"/><path d=" M 138.3700,200.0000 L 154.6700,183.7000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_117"/><g id="ezcGraphTextBox_4"><path d=" M 122.3000,34.0000 L 122.3000,2.5000 L 378.2000,2.5000 L 378.2000,34.0000 L 122.3000,34.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_118"/><text id="ezcGraphTextBox_4_text" x="122.8" text-length="254.4px" y="28.5" style="font-size: 30px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line chart title</text></g><g id="ezcGraphTextBox_8"><path d=" M 18.5000,56.0000 L 18.5000,40.5000 L 64.5200,40.5000 L 64.5200,56.0000 L 18.5000,56.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_119"/><text id="ezcGraphTextBox_8_text" x="19" text-length="44.52px" y="52.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_10"><path d=" M 18.5000,74.0000 L 18.5000,58.5000 L 64.5200,58.5000 L 64.5200,74.0000 L 18.5000,74.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_120"/><text id="ezcGraphTextBox_10_text" x="19" text-length="44.52px" y="70.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_20"><path d=" M 191.1416,199.2000 L 191.1416,186.6300 L 239.5784,186.6300 L 239.5784,199.2000 L 191.1416,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_121"/><text id="ezcGraphTextBox_20_text" x="191.6416" text-length="46.9368px" y="196.5395" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_24"><path d=" M 267.8816,199.2000 L 267.8816,186.6300 L 316.3184,186.6300 L 316.3184,199.2000 L 267.8816,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_122"/><text id="ezcGraphTextBox_24_text" x="268.3816" text-length="46.9368px" y="196.5395" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_28"><path d=" M 344.6216,199.2000 L 344.6216,186.6300 L 393.0584,186.6300 L 393.0584,199.2000 L 344.6216,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_123"/><text id="ezcGraphTextBox_28_text" x="345.1216" text-length="46.9368px" y="196.5395" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_32"><path d=" M 421.3616,199.2000 L 421.3616,186.6300 L 469.7984,186.6300 L 469.7984,199.2000 L 421.3616,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_124"/><text id="ezcGraphTextBox_32_text" x="421.8616" text-length="46.9368px" y="196.5395" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_33"><path d=" M 129.0881,184.5300 L 129.0881,171.9600 L 137.4515,171.9600 L 137.4515,184.5300 L 129.0881,184.5300 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_125"/><text id="ezcGraphTextBox_33_text" x="129.5881" text-length="6.8634px" y="181.8695" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_49"><path d=" M 115.3613,145.4100 L 115.3613,132.8400 L 137.4515,132.8400 L 137.4515,145.4100 L 115.3613,145.4100 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_126"/><text id="ezcGraphTextBox_49_text" x="115.8613" text-length="20.5902px" y="142.7495" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_65"><path d=" M 115.3613,106.2900 L 115.3613,93.7200 L 137.4515,93.7200 L 137.4515,106.2900 L 115.3613,106.2900 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_127"/><text id="ezcGraphTextBox_65_text" x="115.8613" text-length="20.5902px" y="103.6295" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_81"><path d=" M 115.3613,81.8400 L 115.3613,69.2700 L 137.4515,69.2700 L 137.4515,81.8400 L 115.3613,81.8400 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_128"/><text id="ezcGraphTextBox_81_text" x="115.8613" text-length="20.5902px" y="79.1795" style="font-size: 11px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChartSmallMaxFontSize.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChartSmallMaxFontSize.svg
index 643d326..e495920 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChartSmallMaxFontSize.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRender3dLineChartSmallMaxFontSize.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,11.0000 L 1.0000,1.0000 L 499.0000,1.0000 L 499.0000,11.0000 L 1.0000,11.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,10.0000 L 2.0000,2.0000 L 498.0000,2.0000 L 498.0000,10.0000 L 2.0000,10.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 1.0000,199.0000 L 1.0000,14.0000 L 99.0000,14.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_5"/><path d=" M 2.0000,198.0000 L 2.0000,15.0000 L 98.0000,15.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_6"/><ellipse cx="11" cy="24" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_7"/><ellipse cx="11" cy="42" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_9"/><path d=" M 100.0000,183.1700 L 118.7000,164.4700 L 500.0000,164.4700 L 481.3000,183.1700 L 100.0000,183.1700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 118.7000,164.4700 L 500.0000,164.4700" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 492.0000,168.4700 L 500.0000,164.4700 L 492.0000,160.4700 L 492.0000,168.4700 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 138.1300,200.0000 L 156.8300,181.3000 L 156.8300,13.0000 L 138.1300,31.7000 L 138.1300,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 156.8300,181.3000 L 156.8300,13.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 154.8300,17.0000 L 156.8300,13.0000 L 158.8300,17.0000 L 154.8300,17.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 233.0900,164.4700 L 233.0900,29.8300" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 214.3900,180.4700 L 233.0900,161.7700 L 233.0900,164.4700 L 214.3900,183.1700 L 214.3900,180.4700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_18"/><path d=" M 214.3900,180.4700 L 233.0900,161.7700 L 233.0900,164.4700 L 214.3900,183.1700 L 214.3900,180.4700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_19"/><path d=" M 309.3500,164.4700 L 309.3500,29.8300" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 290.6500,180.4700 L 309.3500,161.7700 L 309.3500,164.4700 L 290.6500,183.1700 L 290.6500,180.4700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_22"/><path d=" M 290.6500,180.4700 L 309.3500,161.7700 L 309.3500,164.4700 L 290.6500,183.1700 L 290.6500,180.4700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_23"/><path d=" M 385.6100,164.4700 L 385.6100,29.8300" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 366.9100,180.4700 L 385.6100,161.7700 L 385.6100,164.4700 L 366.9100,183.1700 L 366.9100,180.4700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_26"/><path d=" M 366.9100,180.4700 L 385.6100,161.7700 L 385.6100,164.4700 L 366.9100,183.1700 L 366.9100,180.4700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_27"/><path d=" M 461.8700,164.4700 L 461.8700,29.8300" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 443.1700,180.4700 L 461.8700,161.7700 L 461.8700,164.4700 L 443.1700,183.1700 L 443.1700,180.4700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_30"/><path d=" M 443.1700,180.4700 L 461.8700,161.7700 L 461.8700,164.4700 L 443.1700,183.1700 L 443.1700,180.4700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_31"/><path d=" M 461.8700,155.0452 L 156.8300,155.0452" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 138.1300,174.1940 L 156.8300,155.4940 L 157.7832,155.4940 L 139.0832,174.1940 L 138.1300,174.1940 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 138.1300,174.1940 L 156.8300,155.4940 L 157.7832,155.4940 L 139.0832,174.1940 L 138.1300,174.1940 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 461.8700,146.9668 L 156.8300,146.9668" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 138.1300,165.2180 L 156.8300,146.5180 L 157.7832,146.5180 L 139.0832,165.2180 L 138.1300,165.2180 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 138.1300,165.2180 L 156.8300,146.5180 L 157.7832,146.5180 L 139.0832,165.2180 L 138.1300,165.2180 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 461.8700,137.5420 L 156.8300,137.5420" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.1300,156.2420 L 156.8300,137.5420 L 157.7832,137.5420 L 139.0832,156.2420 L 138.1300,156.2420 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.1300,156.2420 L 156.8300,137.5420 L 157.7832,137.5420 L 139.0832,156.2420 L 138.1300,156.2420 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 461.8700,128.1172 L 156.8300,128.1172" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.1300,147.2660 L 156.8300,128.5660 L 157.7832,128.5660 L 139.0832,147.2660 L 138.1300,147.2660 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.1300,147.2660 L 156.8300,128.5660 L 157.7832,128.5660 L 139.0832,147.2660 L 138.1300,147.2660 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 461.8700,120.0388 L 156.8300,120.0388" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 138.1300,138.2900 L 156.8300,119.5900 L 159.6898,119.5900 L 140.9898,138.2900 L 138.1300,138.2900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 138.1300,138.2900 L 156.8300,119.5900 L 159.6898,119.5900 L 140.9898,138.2900 L 138.1300,138.2900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 461.8700,110.6140 L 156.8300,110.6140" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 138.1300,129.3140 L 156.8300,110.6140 L 157.7832,110.6140 L 139.0832,129.3140 L 138.1300,129.3140 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 138.1300,129.3140 L 156.8300,110.6140 L 157.7832,110.6140 L 139.0832,129.3140 L 138.1300,129.3140 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 461.8700,101.1892 L 156.8300,101.1892" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.1300,120.3380 L 156.8300,101.6380 L 157.7832,101.6380 L 139.0832,120.3380 L 138.1300,120.3380 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 138.1300,120.3380 L 156.8300,101.6380 L 157.7832,101.6380 L 139.0832,120.3380 L 138.1300,120.3380 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 461.8700,93.1108 L 156.8300,93.1108" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 138.1300,111.3620 L 156.8300,92.6620 L 157.7832,92.6620 L 139.0832,111.3620 L 138.1300,111.3620 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 138.1300,111.3620 L 156.8300,92.6620 L 157.7832,92.6620 L 139.0832,111.3620 L 138.1300,111.3620 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 461.8700,83.6860 L 156.8300,83.6860" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 138.1300,102.3860 L 156.8300,83.6860 L 157.7832,83.6860 L 139.0832,102.3860 L 138.1300,102.3860 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 138.1300,102.3860 L 156.8300,83.6860 L 157.7832,83.6860 L 139.0832,102.3860 L 138.1300,102.3860 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 461.8700,74.2612 L 156.8300,74.2612" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 138.1300,93.4100 L 156.8300,74.7100 L 159.6898,74.7100 L 140.9898,93.4100 L 138.1300,93.4100 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 138.1300,93.4100 L 156.8300,74.7100 L 159.6898,74.7100 L 140.9898,93.4100 L 138.1300,93.4100 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_64"/><path d=" M 461.8700,66.1828 L 156.8300,66.1828" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 138.1300,84.4340 L 156.8300,65.7340 L 157.7832,65.7340 L 139.0832,84.4340 L 138.1300,84.4340 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 138.1300,84.4340 L 156.8300,65.7340 L 157.7832,65.7340 L 139.0832,84.4340 L 138.1300,84.4340 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 461.8700,56.7580 L 156.8300,56.7580" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.1300,75.4580 L 156.8300,56.7580 L 157.7832,56.7580 L 139.0832,75.4580 L 138.1300,75.4580 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.1300,75.4580 L 156.8300,56.7580 L 157.7832,56.7580 L 139.0832,75.4580 L 138.1300,75.4580 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 461.8700,47.3332 L 156.8300,47.3332" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 138.1300,66.4820 L 156.8300,47.7820 L 157.7832,47.7820 L 139.0832,66.4820 L 138.1300,66.4820 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 138.1300,66.4820 L 156.8300,47.7820 L 157.7832,47.7820 L 139.0832,66.4820 L 138.1300,66.4820 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 461.8700,39.2548 L 156.8300,39.2548" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 138.1300,57.5060 L 156.8300,38.8060 L 157.7832,38.8060 L 139.0832,57.5060 L 138.1300,57.5060 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 138.1300,57.5060 L 156.8300,38.8060 L 157.7832,38.8060 L 139.0832,57.5060 L 138.1300,57.5060 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 461.8700,29.8300 L 156.8300,29.8300" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 138.1300,48.5300 L 156.8300,29.8300 L 159.6898,29.8300 L 140.9898,48.5300 L 138.1300,48.5300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 138.1300,48.5300 L 156.8300,29.8300 L 159.6898,29.8300 L 140.9898,48.5300 L 138.1300,48.5300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 156.8300,122.4623 L 147.4800,131.8123 L 147.4800,131.8123 L 156.8300,122.4623 L 156.8300,122.4623 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 156.8300,122.4623 L 147.4800,131.8123 L 147.4800,131.8123 L 156.8300,122.4623 L 156.8300,122.4623 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_83"/><path d=" M 156.8300,122.4623 L 147.4800,131.8123 L 223.7400,170.0501 L 233.0900,160.7001 L 156.8300,122.4623 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 156.8300,122.4623 L 147.4800,131.8123 L 223.7400,170.0501 L 233.0900,160.7001 L 156.8300,122.4623 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_85"/><path d=" M 233.0900,160.7001 L 223.7400,170.0501 L 300.0000,115.6555 L 309.3500,106.3055 L 233.0900,160.7001 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 233.0900,160.7001 L 223.7400,170.0501 L 300.0000,115.6555 L 309.3500,106.3055 L 233.0900,160.7001 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_87"/><path d=" M 309.3500,106.3055 L 300.0000,115.6555 L 376.2600,152.2776 L 385.6100,142.9276 L 309.3500,106.3055 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 309.3500,106.3055 L 300.0000,115.6555 L 376.2600,152.2776 L 385.6100,142.9276 L 309.3500,106.3055 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_89"/><path d=" M 385.6100,142.9276 L 376.2600,152.2776 L 452.5200,173.6405 L 461.8700,164.2905 L 385.6100,142.9276 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_90"/><path d=" M 385.6100,142.9276 L 376.2600,152.2776 L 452.5200,173.6405 L 461.8700,164.2905 L 385.6100,142.9276 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_91"/><path d=" M 147.4800,76.3406 L 138.1300,85.6906 L 138.1300,85.6906 L 147.4800,76.3406 L 147.4800,76.3406 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_92"/><path d=" M 147.4800,76.3406 L 138.1300,85.6906 L 138.1300,85.6906 L 147.4800,76.3406 L 147.4800,76.3406 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_93"/><path d=" M 147.4800,76.3406 L 138.1300,85.6906 L 214.3900,141.1623 L 223.7400,131.8123 L 147.4800,76.3406 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_94"/><path d=" M 147.4800,76.3406 L 138.1300,85.6906 L 214.3900,141.1623 L 223.7400,131.8123 L 147.4800,76.3406 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_95"/><path d=" M 223.7400,131.8123 L 214.3900,141.1623 L 290.6500,129.6730 L 300.0000,120.3230 L 223.7400,131.8123 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_96"/><path d=" M 223.7400,131.8123 L 214.3900,141.1623 L 290.6500,129.6730 L 300.0000,120.3230 L 223.7400,131.8123 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_97"/><path d=" M 300.0000,120.3230 L 290.6500,129.6730 L 366.9100,182.2724 L 376.2600,172.9224 L 300.0000,120.3230 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 300.0000,120.3230 L 290.6500,129.6730 L 366.9100,182.2724 L 376.2600,172.9224 L 300.0000,120.3230 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><path d=" M 376.2600,172.9224 L 366.9100,182.2724 L 443.1700,73.1242 L 452.5200,63.7742 L 376.2600,172.9224 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 376.2600,172.9224 L 366.9100,182.2724 L 443.1700,73.1242 L 452.5200,63.7742 L 376.2600,172.9224 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_101"/><ellipse cx="156.83" cy="122.4623" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_102"/><ellipse cx="233.09" cy="160.7001" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_103"/><ellipse cx="309.35" cy="106.3055" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_104"/><ellipse cx="385.61" cy="142.9276" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_105"/><ellipse cx="461.87" cy="164.2905" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_106"/><ellipse cx="147.48" cy="76.3406" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_107"/><ellipse cx="223.74" cy="131.8123" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_108"/><ellipse cx="300" cy="120.323" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_109"/><ellipse cx="376.26" cy="172.9224" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_110"/><ellipse cx="452.52" cy="63.7742" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_111"/><path d=" M 500.0000,164.4700 L 481.3000,183.1700" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 481.3000,183.1700 L 100.0000,183.1700" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 100.0000,183.1700 L 118.7000,164.4700" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><path d=" M 156.8300,13.0000 L 138.1300,31.7000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_115"/><path d=" M 138.1300,31.7000 L 138.1300,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_116"/><path d=" M 138.1300,200.0000 L 156.8300,181.3000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_117"/><g id="ezcGraphTextBox_4"><path d=" M 224.0600,10.0000 L 224.0600,2.5000 L 276.4400,2.5000 L 276.4400,10.0000 L 224.0600,10.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_118"/><text id="ezcGraphTextBox_4_text" x="224.56" text-length="50.88px" y="8.1" style="font-size: 6px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line chart title</text></g><g id="ezcGraphTextBox_8"><path d=" M 18.5000,32.0000 L 18.5000,16.5000 L 64.5200,16.5000 L 64.5200,32.0000 L 18.5000,32.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_119"/><text id="ezcGraphTextBox_8_text" x="19" text-length="44.52px" y="28.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_10"><path d=" M 18.5000,50.0000 L 18.5000,34.5000 L 64.5200,34.5000 L 64.5200,50.0000 L 18.5000,50.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_120"/><text id="ezcGraphTextBox_10_text" x="19" text-length="44.52px" y="46.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_20"><path d=" M 185.8424,199.2000 L 185.8424,184.4700 L 243.4376,184.4700 L 243.4376,199.2000 L 185.8424,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_121"/><text id="ezcGraphTextBox_20_text" x="186.3424" text-length="56.0952px" y="196.2155" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_24"><path d=" M 262.1024,199.2000 L 262.1024,184.4700 L 319.6976,184.4700 L 319.6976,199.2000 L 262.1024,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_122"/><text id="ezcGraphTextBox_24_text" x="262.6024" text-length="56.0952px" y="196.2155" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_28"><path d=" M 338.3624,199.2000 L 338.3624,184.4700 L 395.9576,184.4700 L 395.9576,199.2000 L 338.3624,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_123"/><text id="ezcGraphTextBox_28_text" x="338.8624" text-length="56.0952px" y="196.2155" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_32"><path d=" M 414.6224,199.2000 L 414.6224,184.4700 L 472.2176,184.4700 L 472.2176,199.2000 L 414.6224,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_124"/><text id="ezcGraphTextBox_32_text" x="415.1224" text-length="56.0952px" y="196.2155" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_33"><path d=" M 127.5209,182.3700 L 127.5209,167.6400 L 137.2235,167.6400 L 137.2235,182.3700 L 127.5209,182.3700 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_125"/><text id="ezcGraphTextBox_33_text" x="128.0209" text-length="8.2026px" y="179.3855" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_49"><path d=" M 111.1157,137.4900 L 111.1157,122.7600 L 137.2235,122.7600 L 137.2235,137.4900 L 111.1157,137.4900 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_126"/><text id="ezcGraphTextBox_49_text" x="111.6157" text-length="24.6078px" y="134.5055" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_65"><path d=" M 111.1157,92.6100 L 111.1157,77.8800 L 137.2235,77.8800 L 137.2235,92.6100 L 111.1157,92.6100 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_127"/><text id="ezcGraphTextBox_65_text" x="111.6157" text-length="24.6078px" y="89.6255" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_81"><path d=" M 111.1157,64.5600 L 111.1157,49.8300 L 137.2235,49.8300 L 137.2235,64.5600 L 111.1157,64.5600 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_128"/><text id="ezcGraphTextBox_81_text" x="111.6157" text-length="24.6078px" y="61.5755" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,11.0000 L 1.0000,1.0000 L 499.0000,1.0000 L 499.0000,11.0000 L 1.0000,11.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,11.0000 L 1.0000,1.0000 L 499.0000,1.0000 L 499.0000,11.0000 L 1.0000,11.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><path d=" M 1.0000,199.0000 L 1.0000,14.0000 L 99.0000,14.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_5"/><path d=" M 1.0000,199.0000 L 1.0000,14.0000 L 99.0000,14.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_6"/><ellipse cx="11" cy="24" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_7"/><ellipse cx="11" cy="42" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_9"/><path d=" M 100.0000,183.1700 L 118.7000,164.4700 L 500.0000,164.4700 L 481.3000,183.1700 L 100.0000,183.1700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 118.7000,164.4700 L 500.0000,164.4700" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 492.0000,168.4700 L 500.0000,164.4700 L 492.0000,160.4700 L 492.0000,168.4700 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 138.1300,200.0000 L 156.8300,181.3000 L 156.8300,13.0000 L 138.1300,31.7000 L 138.1300,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 156.8300,181.3000 L 156.8300,13.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 154.8300,17.0000 L 156.8300,13.0000 L 158.8300,17.0000 L 154.8300,17.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 233.0900,164.4700 L 233.0900,29.8300" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 214.3900,180.4700 L 233.0900,161.7700 L 233.0900,164.4700 L 214.3900,183.1700 L 214.3900,180.4700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_18"/><path d=" M 214.3900,180.4700 L 233.0900,161.7700 L 233.0900,164.4700 L 214.3900,183.1700 L 214.3900,180.4700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_19"/><path d=" M 309.3500,164.4700 L 309.3500,29.8300" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 290.6500,180.4700 L 309.3500,161.7700 L 309.3500,164.4700 L 290.6500,183.1700 L 290.6500,180.4700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_22"/><path d=" M 290.6500,180.4700 L 309.3500,161.7700 L 309.3500,164.4700 L 290.6500,183.1700 L 290.6500,180.4700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_23"/><path d=" M 385.6100,164.4700 L 385.6100,29.8300" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 366.9100,180.4700 L 385.6100,161.7700 L 385.6100,164.4700 L 366.9100,183.1700 L 366.9100,180.4700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_26"/><path d=" M 366.9100,180.4700 L 385.6100,161.7700 L 385.6100,164.4700 L 366.9100,183.1700 L 366.9100,180.4700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_27"/><path d=" M 461.8700,164.4700 L 461.8700,29.8300" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 443.1700,180.4700 L 461.8700,161.7700 L 461.8700,164.4700 L 443.1700,183.1700 L 443.1700,180.4700 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_30"/><path d=" M 443.1700,180.4700 L 461.8700,161.7700 L 461.8700,164.4700 L 443.1700,183.1700 L 443.1700,180.4700 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_31"/><path d=" M 461.8700,155.0452 L 156.8300,155.0452" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 138.1300,174.1940 L 156.8300,155.4940 L 157.7832,155.4940 L 139.0832,174.1940 L 138.1300,174.1940 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 138.1300,174.1940 L 156.8300,155.4940 L 157.7832,155.4940 L 139.0832,174.1940 L 138.1300,174.1940 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 461.8700,146.9668 L 156.8300,146.9668" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 138.1300,165.2180 L 156.8300,146.5180 L 157.7832,146.5180 L 139.0832,165.2180 L 138.1300,165.2180 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 138.1300,165.2180 L 156.8300,146.5180 L 157.7832,146.5180 L 139.0832,165.2180 L 138.1300,165.2180 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 461.8700,137.5420 L 156.8300,137.5420" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.1300,156.2420 L 156.8300,137.5420 L 157.7832,137.5420 L 139.0832,156.2420 L 138.1300,156.2420 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.1300,156.2420 L 156.8300,137.5420 L 157.7832,137.5420 L 139.0832,156.2420 L 138.1300,156.2420 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 461.8700,128.1172 L 156.8300,128.1172" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.1300,147.2660 L 156.8300,128.5660 L 157.7832,128.5660 L 139.0832,147.2660 L 138.1300,147.2660 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.1300,147.2660 L 156.8300,128.5660 L 157.7832,128.5660 L 139.0832,147.2660 L 138.1300,147.2660 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 461.8700,120.0388 L 156.8300,120.0388" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 138.1300,138.2900 L 156.8300,119.5900 L 159.6898,119.5900 L 140.9898,138.2900 L 138.1300,138.2900 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 138.1300,138.2900 L 156.8300,119.5900 L 159.6898,119.5900 L 140.9898,138.2900 L 138.1300,138.2900 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 461.8700,110.6140 L 156.8300,110.6140" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 138.1300,129.3140 L 156.8300,110.6140 L 157.7832,110.6140 L 139.0832,129.3140 L 138.1300,129.3140 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 138.1300,129.3140 L 156.8300,110.6140 L 157.7832,110.6140 L 139.0832,129.3140 L 138.1300,129.3140 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 461.8700,101.1892 L 156.8300,101.1892" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.1300,120.3380 L 156.8300,101.6380 L 157.7832,101.6380 L 139.0832,120.3380 L 138.1300,120.3380 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 138.1300,120.3380 L 156.8300,101.6380 L 157.7832,101.6380 L 139.0832,120.3380 L 138.1300,120.3380 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 461.8700,93.1108 L 156.8300,93.1108" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 138.1300,111.3620 L 156.8300,92.6620 L 157.7832,92.6620 L 139.0832,111.3620 L 138.1300,111.3620 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 138.1300,111.3620 L 156.8300,92.6620 L 157.7832,92.6620 L 139.0832,111.3620 L 138.1300,111.3620 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 461.8700,83.6860 L 156.8300,83.6860" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 138.1300,102.3860 L 156.8300,83.6860 L 157.7832,83.6860 L 139.0832,102.3860 L 138.1300,102.3860 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 138.1300,102.3860 L 156.8300,83.6860 L 157.7832,83.6860 L 139.0832,102.3860 L 138.1300,102.3860 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 461.8700,74.2612 L 156.8300,74.2612" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 138.1300,93.4100 L 156.8300,74.7100 L 159.6898,74.7100 L 140.9898,93.4100 L 138.1300,93.4100 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 138.1300,93.4100 L 156.8300,74.7100 L 159.6898,74.7100 L 140.9898,93.4100 L 138.1300,93.4100 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_64"/><path d=" M 461.8700,66.1828 L 156.8300,66.1828" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 138.1300,84.4340 L 156.8300,65.7340 L 157.7832,65.7340 L 139.0832,84.4340 L 138.1300,84.4340 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 138.1300,84.4340 L 156.8300,65.7340 L 157.7832,65.7340 L 139.0832,84.4340 L 138.1300,84.4340 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 461.8700,56.7580 L 156.8300,56.7580" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.1300,75.4580 L 156.8300,56.7580 L 157.7832,56.7580 L 139.0832,75.4580 L 138.1300,75.4580 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.1300,75.4580 L 156.8300,56.7580 L 157.7832,56.7580 L 139.0832,75.4580 L 138.1300,75.4580 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 461.8700,47.3332 L 156.8300,47.3332" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 138.1300,66.4820 L 156.8300,47.7820 L 157.7832,47.7820 L 139.0832,66.4820 L 138.1300,66.4820 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 138.1300,66.4820 L 156.8300,47.7820 L 157.7832,47.7820 L 139.0832,66.4820 L 138.1300,66.4820 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 461.8700,39.2548 L 156.8300,39.2548" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 138.1300,57.5060 L 156.8300,38.8060 L 157.7832,38.8060 L 139.0832,57.5060 L 138.1300,57.5060 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 138.1300,57.5060 L 156.8300,38.8060 L 157.7832,38.8060 L 139.0832,57.5060 L 138.1300,57.5060 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 461.8700,29.8300 L 156.8300,29.8300" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 138.1300,48.5300 L 156.8300,29.8300 L 159.6898,29.8300 L 140.9898,48.5300 L 138.1300,48.5300 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 138.1300,48.5300 L 156.8300,29.8300 L 159.6898,29.8300 L 140.9898,48.5300 L 138.1300,48.5300 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 156.8300,122.4623 L 147.4800,131.8123 L 147.4800,131.8123 L 156.8300,122.4623 L 156.8300,122.4623 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 156.8300,122.4623 L 147.4800,131.8123 L 147.4800,131.8123 L 156.8300,122.4623 L 156.8300,122.4623 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_83"/><path d=" M 156.8300,122.4623 L 147.4800,131.8123 L 223.7400,170.0501 L 233.0900,160.7001 L 156.8300,122.4623 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 156.8300,122.4623 L 147.4800,131.8123 L 223.7400,170.0501 L 233.0900,160.7001 L 156.8300,122.4623 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_85"/><path d=" M 233.0900,160.7001 L 223.7400,170.0501 L 300.0000,115.6555 L 309.3500,106.3055 L 233.0900,160.7001 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 233.0900,160.7001 L 223.7400,170.0501 L 300.0000,115.6555 L 309.3500,106.3055 L 233.0900,160.7001 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_87"/><path d=" M 309.3500,106.3055 L 300.0000,115.6555 L 376.2600,152.2776 L 385.6100,142.9276 L 309.3500,106.3055 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 309.3500,106.3055 L 300.0000,115.6555 L 376.2600,152.2776 L 385.6100,142.9276 L 309.3500,106.3055 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_89"/><path d=" M 385.6100,142.9276 L 376.2600,152.2776 L 452.5200,173.6405 L 461.8700,164.2905 L 385.6100,142.9276 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_90"/><path d=" M 385.6100,142.9276 L 376.2600,152.2776 L 452.5200,173.6405 L 461.8700,164.2905 L 385.6100,142.9276 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_91"/><path d=" M 147.4800,76.3406 L 138.1300,85.6906 L 138.1300,85.6906 L 147.4800,76.3406 L 147.4800,76.3406 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_92"/><path d=" M 147.4800,76.3406 L 138.1300,85.6906 L 138.1300,85.6906 L 147.4800,76.3406 L 147.4800,76.3406 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_93"/><path d=" M 147.4800,76.3406 L 138.1300,85.6906 L 214.3900,141.1623 L 223.7400,131.8123 L 147.4800,76.3406 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_94"/><path d=" M 147.4800,76.3406 L 138.1300,85.6906 L 214.3900,141.1623 L 223.7400,131.8123 L 147.4800,76.3406 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_95"/><path d=" M 223.7400,131.8123 L 214.3900,141.1623 L 290.6500,129.6730 L 300.0000,120.3230 L 223.7400,131.8123 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_96"/><path d=" M 223.7400,131.8123 L 214.3900,141.1623 L 290.6500,129.6730 L 300.0000,120.3230 L 223.7400,131.8123 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_97"/><path d=" M 300.0000,120.3230 L 290.6500,129.6730 L 366.9100,182.2724 L 376.2600,172.9224 L 300.0000,120.3230 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 300.0000,120.3230 L 290.6500,129.6730 L 366.9100,182.2724 L 376.2600,172.9224 L 300.0000,120.3230 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><path d=" M 376.2600,172.9224 L 366.9100,182.2724 L 443.1700,73.1242 L 452.5200,63.7742 L 376.2600,172.9224 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 376.2600,172.9224 L 366.9100,182.2724 L 443.1700,73.1242 L 452.5200,63.7742 L 376.2600,172.9224 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_101"/><ellipse cx="156.83" cy="122.4623" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_102"/><ellipse cx="233.09" cy="160.7001" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_103"/><ellipse cx="309.35" cy="106.3055" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_104"/><ellipse cx="385.61" cy="142.9276" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_105"/><ellipse cx="461.87" cy="164.2905" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_106"/><ellipse cx="147.48" cy="76.3406" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_107"/><ellipse cx="223.74" cy="131.8123" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_108"/><ellipse cx="300" cy="120.323" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_109"/><ellipse cx="376.26" cy="172.9224" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_110"/><ellipse cx="452.52" cy="63.7742" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_111"/><path d=" M 500.0000,164.4700 L 481.3000,183.1700" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 481.3000,183.1700 L 100.0000,183.1700" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 100.0000,183.1700 L 118.7000,164.4700" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><path d=" M 156.8300,13.0000 L 138.1300,31.7000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_115"/><path d=" M 138.1300,31.7000 L 138.1300,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_116"/><path d=" M 138.1300,200.0000 L 156.8300,181.3000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_117"/><g id="ezcGraphTextBox_4"><path d=" M 224.0600,10.0000 L 224.0600,2.5000 L 276.4400,2.5000 L 276.4400,10.0000 L 224.0600,10.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_118"/><text id="ezcGraphTextBox_4_text" x="224.56" text-length="50.88px" y="8.1" style="font-size: 6px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line chart title</text></g><g id="ezcGraphTextBox_8"><path d=" M 18.5000,32.0000 L 18.5000,16.5000 L 64.5200,16.5000 L 64.5200,32.0000 L 18.5000,32.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_119"/><text id="ezcGraphTextBox_8_text" x="19" text-length="44.52px" y="28.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_10"><path d=" M 18.5000,50.0000 L 18.5000,34.5000 L 64.5200,34.5000 L 64.5200,50.0000 L 18.5000,50.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_120"/><text id="ezcGraphTextBox_10_text" x="19" text-length="44.52px" y="46.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_20"><path d=" M 185.8424,199.2000 L 185.8424,184.4700 L 243.4376,184.4700 L 243.4376,199.2000 L 185.8424,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_121"/><text id="ezcGraphTextBox_20_text" x="186.3424" text-length="56.0952px" y="196.2155" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_24"><path d=" M 262.1024,199.2000 L 262.1024,184.4700 L 319.6976,184.4700 L 319.6976,199.2000 L 262.1024,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_122"/><text id="ezcGraphTextBox_24_text" x="262.6024" text-length="56.0952px" y="196.2155" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_28"><path d=" M 338.3624,199.2000 L 338.3624,184.4700 L 395.9576,184.4700 L 395.9576,199.2000 L 338.3624,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_123"/><text id="ezcGraphTextBox_28_text" x="338.8624" text-length="56.0952px" y="196.2155" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_32"><path d=" M 414.6224,199.2000 L 414.6224,184.4700 L 472.2176,184.4700 L 472.2176,199.2000 L 414.6224,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_124"/><text id="ezcGraphTextBox_32_text" x="415.1224" text-length="56.0952px" y="196.2155" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_33"><path d=" M 127.5209,182.3700 L 127.5209,167.6400 L 137.2235,167.6400 L 137.2235,182.3700 L 127.5209,182.3700 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_125"/><text id="ezcGraphTextBox_33_text" x="128.0209" text-length="8.2026px" y="179.3855" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_49"><path d=" M 111.1157,137.4900 L 111.1157,122.7600 L 137.2235,122.7600 L 137.2235,137.4900 L 111.1157,137.4900 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_126"/><text id="ezcGraphTextBox_49_text" x="111.6157" text-length="24.6078px" y="134.5055" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_65"><path d=" M 111.1157,92.6100 L 111.1157,77.8800 L 137.2235,77.8800 L 137.2235,92.6100 L 111.1157,92.6100 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_127"/><text id="ezcGraphTextBox_65_text" x="111.6157" text-length="24.6078px" y="89.6255" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_81"><path d=" M 111.1157,64.5600 L 111.1157,49.8300 L 137.2235,49.8300 L 137.2235,64.5600 L 111.1157,64.5600 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_128"/><text id="ezcGraphTextBox_81_text" x="111.6157" text-length="24.6078px" y="61.5755" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRenderBarChart.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRenderBarChart.svg
index 0c88ebb..05b10cb 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRenderBarChart.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRenderBarChart.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 4.0000,18.0000 L 4.0000,4.0000 L 18.0000,4.0000 L 18.0000,18.0000 L 4.0000,18.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_4"/><path d=" M 4.0000,36.0000 L 4.0000,22.0000 L 18.0000,22.0000 L 18.0000,36.0000 L 4.0000,36.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 218.8000,162.0000 L 218.8000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 198.8000,179.3000 L 218.8000,159.3000 L 218.8000,164.7000 L 198.8000,184.7000 L 198.8000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 198.8000,179.3000 L 218.8000,159.3000 L 218.8000,164.7000 L 198.8000,184.7000 L 198.8000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_17"/><path d=" M 279.6000,162.0000 L 279.6000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 259.6000,179.3000 L 279.6000,159.3000 L 279.6000,164.7000 L 259.6000,184.7000 L 259.6000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_20"/><path d=" M 259.6000,179.3000 L 279.6000,159.3000 L 279.6000,164.7000 L 259.6000,184.7000 L 259.6000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_21"/><path d=" M 340.4000,162.0000 L 340.4000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 320.4000,179.3000 L 340.4000,159.3000 L 340.4000,164.7000 L 320.4000,184.7000 L 320.4000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 320.4000,179.3000 L 340.4000,159.3000 L 340.4000,164.7000 L 320.4000,184.7000 L 320.4000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_25"/><path d=" M 401.2000,162.0000 L 401.2000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 381.2000,179.3000 L 401.2000,159.3000 L 401.2000,164.7000 L 381.2000,184.7000 L 381.2000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_28"/><path d=" M 381.2000,179.3000 L 401.2000,159.3000 L 401.2000,164.7000 L 381.2000,184.7000 L 381.2000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_29"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,164.7000 L 442.0000,184.7000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,164.7000 L 442.0000,184.7000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 462.0000,154.8000 L 158.0000,154.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 138.0000,174.8000 L 158.0000,154.8000 L 158.9500,154.8000 L 138.9500,174.8000 L 138.0000,174.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_36"/><path d=" M 138.0000,174.8000 L 158.0000,154.8000 L 158.9500,154.8000 L 138.9500,174.8000 L 138.0000,174.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_37"/><path d=" M 462.0000,147.6000 L 158.0000,147.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 138.0000,167.6000 L 158.0000,147.6000 L 158.9500,147.6000 L 138.9500,167.6000 L 138.0000,167.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_39"/><path d=" M 138.0000,167.6000 L 158.0000,147.6000 L 158.9500,147.6000 L 138.9500,167.6000 L 138.0000,167.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_40"/><path d=" M 462.0000,140.4000 L 158.0000,140.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 138.0000,160.4000 L 158.0000,140.4000 L 158.9500,140.4000 L 138.9500,160.4000 L 138.0000,160.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_42"/><path d=" M 138.0000,160.4000 L 158.0000,140.4000 L 158.9500,140.4000 L 138.9500,160.4000 L 138.0000,160.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_43"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 160.8500,133.2000 L 140.8500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_45"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 160.8500,133.2000 L 140.8500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_46"/><path d=" M 462.0000,126.0000 L 158.0000,126.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 138.0000,146.0000 L 158.0000,126.0000 L 158.9500,126.0000 L 138.9500,146.0000 L 138.0000,146.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 138.0000,146.0000 L 158.0000,126.0000 L 158.9500,126.0000 L 138.9500,146.0000 L 138.0000,146.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 462.0000,118.8000 L 158.0000,118.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 138.0000,138.8000 L 158.0000,118.8000 L 158.9500,118.8000 L 138.9500,138.8000 L 138.0000,138.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_52"/><path d=" M 138.0000,138.8000 L 158.0000,118.8000 L 158.9500,118.8000 L 138.9500,138.8000 L 138.0000,138.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_53"/><path d=" M 462.0000,111.6000 L 158.0000,111.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 138.0000,131.6000 L 158.0000,111.6000 L 158.9500,111.6000 L 138.9500,131.6000 L 138.0000,131.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_55"/><path d=" M 138.0000,131.6000 L 158.0000,111.6000 L 158.9500,111.6000 L 138.9500,131.6000 L 138.0000,131.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_56"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 160.8500,104.4000 L 140.8500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_58"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 160.8500,104.4000 L 140.8500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_59"/><path d=" M 462.0000,97.2000 L 158.0000,97.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 138.0000,117.2000 L 158.0000,97.2000 L 158.9500,97.2000 L 138.9500,117.2000 L 138.0000,117.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 138.0000,117.2000 L 158.0000,97.2000 L 158.9500,97.2000 L 138.9500,117.2000 L 138.0000,117.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 462.0000,90.0000 L 158.0000,90.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 158.9500,90.0000 L 138.9500,110.0000 L 138.0000,110.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_65"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 158.9500,90.0000 L 138.9500,110.0000 L 138.0000,110.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_66"/><path d=" M 462.0000,82.8000 L 158.0000,82.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 138.0000,102.8000 L 158.0000,82.8000 L 158.9500,82.8000 L 138.9500,102.8000 L 138.0000,102.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_68"/><path d=" M 138.0000,102.8000 L 158.0000,82.8000 L 158.9500,82.8000 L 138.9500,102.8000 L 138.0000,102.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_69"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 160.8500,75.6000 L 140.8500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_71"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 160.8500,75.6000 L 140.8500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_72"/><path d=" M 462.0000,68.4000 L 158.0000,68.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 138.0000,88.4000 L 158.0000,68.4000 L 158.9500,68.4000 L 138.9500,88.4000 L 138.0000,88.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 138.0000,88.4000 L 158.0000,68.4000 L 158.9500,68.4000 L 138.9500,88.4000 L 138.0000,88.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 462.0000,61.2000 L 158.0000,61.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 138.0000,81.2000 L 158.0000,61.2000 L 158.9500,61.2000 L 138.9500,81.2000 L 138.0000,81.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 138.0000,81.2000 L 158.0000,61.2000 L 158.9500,61.2000 L 138.9500,81.2000 L 138.0000,81.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_79"/><path d=" M 462.0000,54.0000 L 158.0000,54.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_80"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 158.9500,54.0000 L 138.9500,74.0000 L 138.0000,74.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 158.9500,54.0000 L 138.9500,74.0000 L 138.0000,74.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_82"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_83"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 160.8500,46.8000 L 140.8500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 160.8500,46.8000 L 140.8500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_85"/><path d=" M 462.0000,39.6000 L 158.0000,39.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_87"/><path d=" M 138.0000,59.6000 L 158.0000,39.6000 L 158.9500,39.6000 L 138.9500,59.6000 L 138.0000,59.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 138.0000,59.6000 L 158.0000,39.6000 L 158.9500,39.6000 L 138.9500,59.6000 L 138.0000,59.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_89"/><path d=" M 462.0000,32.4000 L 158.0000,32.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_90"/><path d=" M 138.0000,52.4000 L 158.0000,32.4000 L 158.9500,32.4000 L 138.9500,52.4000 L 138.0000,52.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 138.0000,52.4000 L 158.0000,32.4000 L 158.9500,32.4000 L 138.9500,52.4000 L 138.0000,52.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_92"/><path d=" M 462.0000,25.2000 L 158.0000,25.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_93"/><path d=" M 138.0000,45.2000 L 158.0000,25.2000 L 158.9500,25.2000 L 138.9500,45.2000 L 138.0000,45.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_94"/><path d=" M 138.0000,45.2000 L 158.0000,25.2000 L 158.9500,25.2000 L 138.9500,45.2000 L 138.0000,45.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_95"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_96"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_98"/><path d=" M 160.5196,39.5840 L 144.5196,55.5840 L 168.8776,55.5840 L 184.8776,39.5840 L 160.5196,39.5840 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 168.8776,180.0000 L 144.5196,180.0000 L 144.5196,55.5840 L 168.8776,55.5840 L 168.8776,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_101"/><path d=" M 184.8776,39.5840 L 168.8776,55.5840 L 168.8776,180.0000 L 184.8776,164.0000 L 184.8776,39.5840 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_102"/><path d=" M 187.9224,96.6080 L 171.9224,112.6080 L 196.2804,112.6080 L 212.2804,96.6080 L 187.9224,96.6080 z " style="fill: #8f1919; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_103"/><path d=" M 196.2804,180.0000 L 171.9224,180.0000 L 171.9224,112.6080 L 196.2804,112.6080 L 196.2804,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 212.2804,96.6080 L 196.2804,112.6080 L 196.2804,180.0000 L 212.2804,164.0000 L 212.2804,96.6080 z " style="fill: #bf2121; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_105"/><path d=" M 221.3196,151.6160 L 205.3196,167.6160 L 229.6776,167.6160 L 245.6776,151.6160 L 221.3196,151.6160 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_106"/><path d=" M 229.6776,180.0000 L 205.3196,180.0000 L 205.3196,167.6160 L 229.6776,167.6160 L 229.6776,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_107"/><path d=" M 245.6776,151.6160 L 229.6776,167.6160 L 229.6776,180.0000 L 245.6776,164.0000 L 245.6776,151.6160 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_108"/><path d=" M 248.7224,157.9520 L 232.7224,173.9520 L 257.0804,173.9520 L 273.0804,157.9520 L 248.7224,157.9520 z " style="fill: #8f1919; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_109"/><path d=" M 257.0804,180.0000 L 232.7224,180.0000 L 232.7224,173.9520 L 257.0804,173.9520 L 257.0804,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_110"/><path d=" M 273.0804,157.9520 L 257.0804,173.9520 L 257.0804,180.0000 L 273.0804,164.0000 L 273.0804,157.9520 z " style="fill: #bf2121; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_111"/><path d=" M 282.1196,145.2800 L 266.1196,161.2800 L 290.4776,161.2800 L 306.4776,145.2800 L 282.1196,145.2800 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_112"/><path d=" M 290.4776,180.0000 L 266.1196,180.0000 L 266.1196,161.2800 L 290.4776,161.2800 L 290.4776,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_113"/><path d=" M 306.4776,145.2800 L 290.4776,161.2800 L 290.4776,180.0000 L 306.4776,164.0000 L 306.4776,145.2800 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_114"/><path d=" M 309.5224,70.6880 L 293.5224,86.6880 L 317.8804,86.6880 L 333.8804,70.6880 L 309.5224,70.6880 z " style="fill: #8f1919; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_115"/><path d=" M 317.8804,180.0000 L 293.5224,180.0000 L 293.5224,86.6880 L 317.8804,86.6880 L 317.8804,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_116"/><path d=" M 333.8804,70.6880 L 317.8804,86.6880 L 317.8804,180.0000 L 333.8804,164.0000 L 333.8804,70.6880 z " style="fill: #bf2121; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_117"/><path d=" M 342.9196,136.0640 L 326.9196,152.0640 L 351.2776,152.0640 L 367.2776,136.0640 L 342.9196,136.0640 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_118"/><path d=" M 351.2776,180.0000 L 326.9196,180.0000 L 326.9196,152.0640 L 351.2776,152.0640 L 351.2776,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_119"/><path d=" M 367.2776,136.0640 L 351.2776,152.0640 L 351.2776,180.0000 L 367.2776,164.0000 L 367.2776,136.0640 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_120"/><path d=" M 370.3224,129.4400 L 354.3224,145.4400 L 378.6804,145.4400 L 394.6804,129.4400 L 370.3224,129.4400 z " style="fill: #8f1919; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_121"/><path d=" M 378.6804,180.0000 L 354.3224,180.0000 L 354.3224,145.4400 L 378.6804,145.4400 L 378.6804,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_122"/><path d=" M 394.6804,129.4400 L 378.6804,145.4400 L 378.6804,180.0000 L 394.6804,164.0000 L 394.6804,129.4400 z " style="fill: #bf2121; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_123"/><path d=" M 403.7196,119.6480 L 387.7196,135.6480 L 412.0776,135.6480 L 428.0776,119.6480 L 403.7196,119.6480 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_124"/><path d=" M 412.0776,180.0000 L 387.7196,180.0000 L 387.7196,135.6480 L 412.0776,135.6480 L 412.0776,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_125"/><path d=" M 428.0776,119.6480 L 412.0776,135.6480 L 412.0776,180.0000 L 428.0776,164.0000 L 428.0776,119.6480 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_126"/><path d=" M 431.1224,163.7120 L 415.1224,179.7120 L 439.4804,179.7120 L 455.4804,163.7120 L 431.1224,163.7120 z " style="fill: #8f1919; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_127"/><path d=" M 439.4804,180.0000 L 415.1224,180.0000 L 415.1224,179.7120 L 439.4804,179.7120 L 439.4804,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_128"/><path d=" M 455.4804,163.7120 L 439.4804,179.7120 L 439.4804,180.0000 L 455.4804,164.0000 L 455.4804,163.7120 z " style="fill: #bf2121; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_129"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_130"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_131"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_132"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_133"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_134"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_135"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_136"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 0</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_137"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_14"><path d=" M 145.0040,195.6000 L 145.0040,183.3000 L 192.2960,183.3000 L 192.2960,195.6000 L 145.0040,195.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_138"/><text id="ezcGraphTextBox_14_text" x="145.504" text-length="45.792px" y="192.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_18"><path d=" M 205.8040,195.6000 L 205.8040,183.3000 L 253.0960,183.3000 L 253.0960,195.6000 L 205.8040,195.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_139"/><text id="ezcGraphTextBox_18_text" x="206.304" text-length="45.792px" y="192.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_22"><path d=" M 266.6040,195.6000 L 266.6040,183.3000 L 313.8960,183.3000 L 313.8960,195.6000 L 266.6040,195.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_140"/><text id="ezcGraphTextBox_22_text" x="267.104" text-length="45.792px" y="192.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_26"><path d=" M 327.4040,195.6000 L 327.4040,183.3000 L 374.6960,183.3000 L 374.6960,195.6000 L 327.4040,195.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_141"/><text id="ezcGraphTextBox_26_text" x="327.904" text-length="45.792px" y="192.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_30"><path d=" M 388.2040,195.6000 L 388.2040,183.3000 L 435.4960,183.3000 L 435.4960,195.6000 L 388.2040,195.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_142"/><text id="ezcGraphTextBox_30_text" x="388.704" text-length="45.792px" y="192.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_34"><path d=" M 128.9040,181.2000 L 128.9040,168.9000 L 137.1000,168.9000 L 137.1000,181.2000 L 128.9040,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_143"/><text id="ezcGraphTextBox_34_text" x="129.404" text-length="6.696px" y="178.58" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_47"><path d=" M 115.5120,152.4000 L 115.5120,140.1000 L 137.1000,140.1000 L 137.1000,152.4000 L 115.5120,152.4000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_144"/><text id="ezcGraphTextBox_47_text" x="116.012" text-length="20.088px" y="149.78" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_60"><path d=" M 115.5120,123.6000 L 115.5120,111.3000 L 137.1000,111.3000 L 137.1000,123.6000 L 115.5120,123.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_145"/><text id="ezcGraphTextBox_60_text" x="116.012" text-length="20.088px" y="120.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_73"><path d=" M 115.5120,94.8000 L 115.5120,82.5000 L 137.1000,82.5000 L 137.1000,94.8000 L 115.5120,94.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_146"/><text id="ezcGraphTextBox_73_text" x="116.012" text-length="20.088px" y="92.18" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_86"><path d=" M 115.5120,66.0000 L 115.5120,53.7000 L 137.1000,53.7000 L 137.1000,66.0000 L 115.5120,66.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_147"/><text id="ezcGraphTextBox_86_text" x="116.012" text-length="20.088px" y="63.38" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_99"><path d=" M 115.5120,51.6000 L 115.5120,39.3000 L 137.1000,39.3000 L 137.1000,51.6000 L 115.5120,51.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_148"/><text id="ezcGraphTextBox_99_text" x="116.012" text-length="20.088px" y="48.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><path d=" M 4.0000,18.0000 L 4.0000,4.0000 L 18.0000,4.0000 L 18.0000,18.0000 L 4.0000,18.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_4"/><path d=" M 4.0000,36.0000 L 4.0000,22.0000 L 18.0000,22.0000 L 18.0000,36.0000 L 4.0000,36.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 218.8000,162.0000 L 218.8000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_15"/><path d=" M 198.8000,179.3000 L 218.8000,159.3000 L 218.8000,164.7000 L 198.8000,184.7000 L 198.8000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_16"/><path d=" M 198.8000,179.3000 L 218.8000,159.3000 L 218.8000,164.7000 L 198.8000,184.7000 L 198.8000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_17"/><path d=" M 279.6000,162.0000 L 279.6000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 259.6000,179.3000 L 279.6000,159.3000 L 279.6000,164.7000 L 259.6000,184.7000 L 259.6000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_20"/><path d=" M 259.6000,179.3000 L 279.6000,159.3000 L 279.6000,164.7000 L 259.6000,184.7000 L 259.6000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_21"/><path d=" M 340.4000,162.0000 L 340.4000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 320.4000,179.3000 L 340.4000,159.3000 L 340.4000,164.7000 L 320.4000,184.7000 L 320.4000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 320.4000,179.3000 L 340.4000,159.3000 L 340.4000,164.7000 L 320.4000,184.7000 L 320.4000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_25"/><path d=" M 401.2000,162.0000 L 401.2000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 381.2000,179.3000 L 401.2000,159.3000 L 401.2000,164.7000 L 381.2000,184.7000 L 381.2000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_28"/><path d=" M 381.2000,179.3000 L 401.2000,159.3000 L 401.2000,164.7000 L 381.2000,184.7000 L 381.2000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_29"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,164.7000 L 442.0000,184.7000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,164.7000 L 442.0000,184.7000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 462.0000,154.8000 L 158.0000,154.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 138.0000,174.8000 L 158.0000,154.8000 L 158.9500,154.8000 L 138.9500,174.8000 L 138.0000,174.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_36"/><path d=" M 138.0000,174.8000 L 158.0000,154.8000 L 158.9500,154.8000 L 138.9500,174.8000 L 138.0000,174.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_37"/><path d=" M 462.0000,147.6000 L 158.0000,147.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 138.0000,167.6000 L 158.0000,147.6000 L 158.9500,147.6000 L 138.9500,167.6000 L 138.0000,167.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_39"/><path d=" M 138.0000,167.6000 L 158.0000,147.6000 L 158.9500,147.6000 L 138.9500,167.6000 L 138.0000,167.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_40"/><path d=" M 462.0000,140.4000 L 158.0000,140.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_41"/><path d=" M 138.0000,160.4000 L 158.0000,140.4000 L 158.9500,140.4000 L 138.9500,160.4000 L 138.0000,160.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_42"/><path d=" M 138.0000,160.4000 L 158.0000,140.4000 L 158.9500,140.4000 L 138.9500,160.4000 L 138.0000,160.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_43"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_44"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 160.8500,133.2000 L 140.8500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_45"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 160.8500,133.2000 L 140.8500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_46"/><path d=" M 462.0000,126.0000 L 158.0000,126.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 138.0000,146.0000 L 158.0000,126.0000 L 158.9500,126.0000 L 138.9500,146.0000 L 138.0000,146.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 138.0000,146.0000 L 158.0000,126.0000 L 158.9500,126.0000 L 138.9500,146.0000 L 138.0000,146.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 462.0000,118.8000 L 158.0000,118.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 138.0000,138.8000 L 158.0000,118.8000 L 158.9500,118.8000 L 138.9500,138.8000 L 138.0000,138.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_52"/><path d=" M 138.0000,138.8000 L 158.0000,118.8000 L 158.9500,118.8000 L 138.9500,138.8000 L 138.0000,138.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_53"/><path d=" M 462.0000,111.6000 L 158.0000,111.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_54"/><path d=" M 138.0000,131.6000 L 158.0000,111.6000 L 158.9500,111.6000 L 138.9500,131.6000 L 138.0000,131.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_55"/><path d=" M 138.0000,131.6000 L 158.0000,111.6000 L 158.9500,111.6000 L 138.9500,131.6000 L 138.0000,131.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_56"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_57"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 160.8500,104.4000 L 140.8500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_58"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 160.8500,104.4000 L 140.8500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_59"/><path d=" M 462.0000,97.2000 L 158.0000,97.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 138.0000,117.2000 L 158.0000,97.2000 L 158.9500,97.2000 L 138.9500,117.2000 L 138.0000,117.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 138.0000,117.2000 L 158.0000,97.2000 L 158.9500,97.2000 L 138.9500,117.2000 L 138.0000,117.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 462.0000,90.0000 L 158.0000,90.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 158.9500,90.0000 L 138.9500,110.0000 L 138.0000,110.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_65"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 158.9500,90.0000 L 138.9500,110.0000 L 138.0000,110.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_66"/><path d=" M 462.0000,82.8000 L 158.0000,82.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_67"/><path d=" M 138.0000,102.8000 L 158.0000,82.8000 L 158.9500,82.8000 L 138.9500,102.8000 L 138.0000,102.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_68"/><path d=" M 138.0000,102.8000 L 158.0000,82.8000 L 158.9500,82.8000 L 138.9500,102.8000 L 138.0000,102.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_69"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_70"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 160.8500,75.6000 L 140.8500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_71"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 160.8500,75.6000 L 140.8500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_72"/><path d=" M 462.0000,68.4000 L 158.0000,68.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 138.0000,88.4000 L 158.0000,68.4000 L 158.9500,68.4000 L 138.9500,88.4000 L 138.0000,88.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 138.0000,88.4000 L 158.0000,68.4000 L 158.9500,68.4000 L 138.9500,88.4000 L 138.0000,88.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 462.0000,61.2000 L 158.0000,61.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 138.0000,81.2000 L 158.0000,61.2000 L 158.9500,61.2000 L 138.9500,81.2000 L 138.0000,81.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 138.0000,81.2000 L 158.0000,61.2000 L 158.9500,61.2000 L 138.9500,81.2000 L 138.0000,81.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_79"/><path d=" M 462.0000,54.0000 L 158.0000,54.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_80"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 158.9500,54.0000 L 138.9500,74.0000 L 138.0000,74.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 158.9500,54.0000 L 138.9500,74.0000 L 138.0000,74.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_82"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_83"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 160.8500,46.8000 L 140.8500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 160.8500,46.8000 L 140.8500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_85"/><path d=" M 462.0000,39.6000 L 158.0000,39.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_87"/><path d=" M 138.0000,59.6000 L 158.0000,39.6000 L 158.9500,39.6000 L 138.9500,59.6000 L 138.0000,59.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 138.0000,59.6000 L 158.0000,39.6000 L 158.9500,39.6000 L 138.9500,59.6000 L 138.0000,59.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_89"/><path d=" M 462.0000,32.4000 L 158.0000,32.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_90"/><path d=" M 138.0000,52.4000 L 158.0000,32.4000 L 158.9500,32.4000 L 138.9500,52.4000 L 138.0000,52.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 138.0000,52.4000 L 158.0000,32.4000 L 158.9500,32.4000 L 138.9500,52.4000 L 138.0000,52.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_92"/><path d=" M 462.0000,25.2000 L 158.0000,25.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_93"/><path d=" M 138.0000,45.2000 L 158.0000,25.2000 L 158.9500,25.2000 L 138.9500,45.2000 L 138.0000,45.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_94"/><path d=" M 138.0000,45.2000 L 158.0000,25.2000 L 158.9500,25.2000 L 138.9500,45.2000 L 138.0000,45.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_95"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_96"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_98"/><path d=" M 160.5196,39.5840 L 144.5196,55.5840 L 168.8776,55.5840 L 184.8776,39.5840 L 160.5196,39.5840 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_100"/><path d=" M 168.8776,180.0000 L 144.5196,180.0000 L 144.5196,55.5840 L 168.8776,55.5840 L 168.8776,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_101"/><path d=" M 184.8776,39.5840 L 168.8776,55.5840 L 168.8776,180.0000 L 184.8776,164.0000 L 184.8776,39.5840 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_102"/><path d=" M 187.9224,96.6080 L 171.9224,112.6080 L 196.2804,112.6080 L 212.2804,96.6080 L 187.9224,96.6080 z " style="fill: #8f1919; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_103"/><path d=" M 196.2804,180.0000 L 171.9224,180.0000 L 171.9224,112.6080 L 196.2804,112.6080 L 196.2804,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 212.2804,96.6080 L 196.2804,112.6080 L 196.2804,180.0000 L 212.2804,164.0000 L 212.2804,96.6080 z " style="fill: #bf2121; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_105"/><path d=" M 221.3196,151.6160 L 205.3196,167.6160 L 229.6776,167.6160 L 245.6776,151.6160 L 221.3196,151.6160 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_106"/><path d=" M 229.6776,180.0000 L 205.3196,180.0000 L 205.3196,167.6160 L 229.6776,167.6160 L 229.6776,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_107"/><path d=" M 245.6776,151.6160 L 229.6776,167.6160 L 229.6776,180.0000 L 245.6776,164.0000 L 245.6776,151.6160 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_108"/><path d=" M 248.7224,157.9520 L 232.7224,173.9520 L 257.0804,173.9520 L 273.0804,157.9520 L 248.7224,157.9520 z " style="fill: #8f1919; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_109"/><path d=" M 257.0804,180.0000 L 232.7224,180.0000 L 232.7224,173.9520 L 257.0804,173.9520 L 257.0804,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_110"/><path d=" M 273.0804,157.9520 L 257.0804,173.9520 L 257.0804,180.0000 L 273.0804,164.0000 L 273.0804,157.9520 z " style="fill: #bf2121; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_111"/><path d=" M 282.1196,145.2800 L 266.1196,161.2800 L 290.4776,161.2800 L 306.4776,145.2800 L 282.1196,145.2800 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_112"/><path d=" M 290.4776,180.0000 L 266.1196,180.0000 L 266.1196,161.2800 L 290.4776,161.2800 L 290.4776,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_113"/><path d=" M 306.4776,145.2800 L 290.4776,161.2800 L 290.4776,180.0000 L 306.4776,164.0000 L 306.4776,145.2800 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_114"/><path d=" M 309.5224,70.6880 L 293.5224,86.6880 L 317.8804,86.6880 L 333.8804,70.6880 L 309.5224,70.6880 z " style="fill: #8f1919; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_115"/><path d=" M 317.8804,180.0000 L 293.5224,180.0000 L 293.5224,86.6880 L 317.8804,86.6880 L 317.8804,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_116"/><path d=" M 333.8804,70.6880 L 317.8804,86.6880 L 317.8804,180.0000 L 333.8804,164.0000 L 333.8804,70.6880 z " style="fill: #bf2121; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_117"/><path d=" M 342.9196,136.0640 L 326.9196,152.0640 L 351.2776,152.0640 L 367.2776,136.0640 L 342.9196,136.0640 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_118"/><path d=" M 351.2776,180.0000 L 326.9196,180.0000 L 326.9196,152.0640 L 351.2776,152.0640 L 351.2776,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_119"/><path d=" M 367.2776,136.0640 L 351.2776,152.0640 L 351.2776,180.0000 L 367.2776,164.0000 L 367.2776,136.0640 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_120"/><path d=" M 370.3224,129.4400 L 354.3224,145.4400 L 378.6804,145.4400 L 394.6804,129.4400 L 370.3224,129.4400 z " style="fill: #8f1919; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_121"/><path d=" M 378.6804,180.0000 L 354.3224,180.0000 L 354.3224,145.4400 L 378.6804,145.4400 L 378.6804,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_122"/><path d=" M 394.6804,129.4400 L 378.6804,145.4400 L 378.6804,180.0000 L 394.6804,164.0000 L 394.6804,129.4400 z " style="fill: #bf2121; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_123"/><path d=" M 403.7196,119.6480 L 387.7196,135.6480 L 412.0776,135.6480 L 428.0776,119.6480 L 403.7196,119.6480 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_124"/><path d=" M 412.0776,180.0000 L 387.7196,180.0000 L 387.7196,135.6480 L 412.0776,135.6480 L 412.0776,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_125"/><path d=" M 428.0776,119.6480 L 412.0776,135.6480 L 412.0776,180.0000 L 428.0776,164.0000 L 428.0776,119.6480 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_126"/><path d=" M 431.1224,163.7120 L 415.1224,179.7120 L 439.4804,179.7120 L 455.4804,163.7120 L 431.1224,163.7120 z " style="fill: #8f1919; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_127"/><path d=" M 439.4804,180.0000 L 415.1224,180.0000 L 415.1224,179.7120 L 439.4804,179.7120 L 439.4804,180.0000 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_128"/><path d=" M 455.4804,163.7120 L 439.4804,179.7120 L 439.4804,180.0000 L 455.4804,164.0000 L 455.4804,163.7120 z " style="fill: #bf2121; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_129"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_130"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_131"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_132"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_133"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_134"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_135"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_136"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 0</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_137"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_14"><path d=" M 145.0040,195.6000 L 145.0040,183.3000 L 192.2960,183.3000 L 192.2960,195.6000 L 145.0040,195.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_138"/><text id="ezcGraphTextBox_14_text" x="145.504" text-length="45.792px" y="192.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_18"><path d=" M 205.8040,195.6000 L 205.8040,183.3000 L 253.0960,183.3000 L 253.0960,195.6000 L 205.8040,195.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_139"/><text id="ezcGraphTextBox_18_text" x="206.304" text-length="45.792px" y="192.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_22"><path d=" M 266.6040,195.6000 L 266.6040,183.3000 L 313.8960,183.3000 L 313.8960,195.6000 L 266.6040,195.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_140"/><text id="ezcGraphTextBox_22_text" x="267.104" text-length="45.792px" y="192.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_26"><path d=" M 327.4040,195.6000 L 327.4040,183.3000 L 374.6960,183.3000 L 374.6960,195.6000 L 327.4040,195.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_141"/><text id="ezcGraphTextBox_26_text" x="327.904" text-length="45.792px" y="192.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_30"><path d=" M 388.2040,195.6000 L 388.2040,183.3000 L 435.4960,183.3000 L 435.4960,195.6000 L 388.2040,195.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_142"/><text id="ezcGraphTextBox_30_text" x="388.704" text-length="45.792px" y="192.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_34"><path d=" M 128.9040,181.2000 L 128.9040,168.9000 L 137.1000,168.9000 L 137.1000,181.2000 L 128.9040,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_143"/><text id="ezcGraphTextBox_34_text" x="129.404" text-length="6.696px" y="178.58" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_47"><path d=" M 115.5120,152.4000 L 115.5120,140.1000 L 137.1000,140.1000 L 137.1000,152.4000 L 115.5120,152.4000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_144"/><text id="ezcGraphTextBox_47_text" x="116.012" text-length="20.088px" y="149.78" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_60"><path d=" M 115.5120,123.6000 L 115.5120,111.3000 L 137.1000,111.3000 L 137.1000,123.6000 L 115.5120,123.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_145"/><text id="ezcGraphTextBox_60_text" x="116.012" text-length="20.088px" y="120.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_73"><path d=" M 115.5120,94.8000 L 115.5120,82.5000 L 137.1000,82.5000 L 137.1000,94.8000 L 115.5120,94.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_146"/><text id="ezcGraphTextBox_73_text" x="116.012" text-length="20.088px" y="92.18" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_86"><path d=" M 115.5120,66.0000 L 115.5120,53.7000 L 137.1000,53.7000 L 137.1000,66.0000 L 115.5120,66.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_147"/><text id="ezcGraphTextBox_86_text" x="116.012" text-length="20.088px" y="63.38" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_99"><path d=" M 115.5120,51.6000 L 115.5120,39.3000 L 137.1000,39.3000 L 137.1000,51.6000 L 115.5120,51.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_148"/><text id="ezcGraphTextBox_99_text" x="116.012" text-length="20.088px" y="48.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRenderBarChartSymbols.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRenderBarChartSymbols.svg
index 749dc48..e73a0c3 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRenderBarChartSymbols.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRenderBarChartSymbols.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="700" height="200" version="1.0" id="ezcGraph"><defs><linearGradient id="Definition_LinearGradient_229_104_245_104_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_229_104_245_104_ffffffbf_0000007f" x1="229.6204" y1="104.608" x2="245.3179" y2="104.608" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_229_104_245_104_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_229_104_245_104_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_229_104_245_104_8f191900_ef292900" x1="229.6204" y1="104.608" x2="245.3179" y2="104.608" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_229_104_245_104_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_249_136_264_136_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_249_136_264_136_ffffffbf_0000007f" x1="249.0821" y1="136.288" x2="264.7796" y2="136.288" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_249_136_264_136_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_316_165_331_165_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_316_165_331_165_ffffffbf_0000007f" x1="316.0204" y1="165.952" x2="331.7179" y2="165.952" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_316_165_331_165_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_316_165_331_165_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_316_165_331_165_8f191900_ef292900" x1="316.0204" y1="165.952" x2="331.7179" y2="165.952" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_316_165_331_165_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_335_101_351_101_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_335_101_351_101_ffffffbf_0000007f" x1="335.4821" y1="101.44" x2="351.1796" y2="101.44" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_335_101_351_101_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_402_78_418_78_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_402_78_418_78_ffffffbf_0000007f" x1="402.4204" y1="78.688" x2="418.1179" y2="78.688" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_402_78_418_78_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_402_78_418_78_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_402_78_418_78_8f191900_ef292900" x1="402.4204" y1="78.688" x2="418.1179" y2="78.688" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_402_78_418_78_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_421_68_437_68_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_421_68_437_68_ffffffbf_0000007f" x1="421.8821" y1="68.032" x2="437.5796" y2="68.032" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_421_68_437_68_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_488_137_504_137_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_488_137_504_137_ffffffbf_0000007f" x1="488.8204" y1="137.44" x2="504.5179" y2="137.44" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_488_137_504_137_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_488_137_504_137_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_488_137_504_137_8f191900_ef292900" x1="488.8204" y1="137.44" x2="504.5179" y2="137.44" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_488_137_504_137_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_508_53_523_53_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_508_53_523_53_ffffffbf_0000007f" x1="508.2821" y1="53.344" x2="523.9796" y2="53.344" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_508_53_523_53_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_575_171_590_171_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_575_171_590_171_ffffffbf_0000007f" x1="575.2204" y1="171.712" x2="590.9179" y2="171.712" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_575_171_590_171_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_575_171_590_171_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_575_171_590_171_8f191900_ef292900" x1="575.2204" y1="171.712" x2="590.9179" y2="171.712" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_575_171_590_171_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_594_33_610_33_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_594_33_610_33_ffffffbf_0000007f" x1="594.6821" y1="33.76" x2="610.3796" y2="33.76" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_594_33_610_33_ffffffbf_0000007f"/></defs><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 700.0000,0.0000 L 700.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 139.0000,1.0000 L 139.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 138.0000,2.0000 L 138.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 4.0000,18.0000 L 4.0000,4.0000 L 18.0000,4.0000 L 18.0000,18.0000 L 4.0000,18.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircle_6"/><ellipse cx="11" cy="47" rx="7" ry="7" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_8"/><path d=" M 4.0000,65.0000 L 11.0000,58.0000 L 18.0000,65.0000 L 11.0000,72.0000 L 4.0000,65.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 140.0000,182.0000 L 160.0000,162.0000 L 700.0000,162.0000 L 680.0000,182.0000 L 140.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 160.0000,162.0000 L 700.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 692.0000,166.0000 L 700.0000,162.0000 L 692.0000,158.0000 L 692.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 194.0000,200.0000 L 214.0000,180.0000 L 214.0000,0.0000 L 194.0000,20.0000 L 194.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 214.0000,180.0000 L 214.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 211.5000,5.0000 L 214.0000,0.0000 L 216.5000,5.0000 L 211.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 300.4000,162.0000 L 300.4000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 280.4000,179.3000 L 300.4000,159.3000 L 300.4000,164.7000 L 280.4000,184.7000 L 280.4000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_20"/><path d=" M 280.4000,179.3000 L 300.4000,159.3000 L 300.4000,164.7000 L 280.4000,184.7000 L 280.4000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_21"/><path d=" M 386.8000,162.0000 L 386.8000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 366.8000,179.3000 L 386.8000,159.3000 L 386.8000,164.7000 L 366.8000,184.7000 L 366.8000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 366.8000,179.3000 L 386.8000,159.3000 L 386.8000,164.7000 L 366.8000,184.7000 L 366.8000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_25"/><path d=" M 473.2000,162.0000 L 473.2000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 453.2000,179.3000 L 473.2000,159.3000 L 473.2000,164.7000 L 453.2000,184.7000 L 453.2000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_28"/><path d=" M 453.2000,179.3000 L 473.2000,159.3000 L 473.2000,164.7000 L 453.2000,184.7000 L 453.2000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_29"/><path d=" M 559.6000,162.0000 L 559.6000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 539.6000,179.3000 L 559.6000,159.3000 L 559.6000,164.7000 L 539.6000,184.7000 L 539.6000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 539.6000,179.3000 L 559.6000,159.3000 L 559.6000,164.7000 L 539.6000,184.7000 L 539.6000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 646.0000,162.0000 L 646.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 626.0000,179.3000 L 646.0000,159.3000 L 646.0000,164.7000 L 626.0000,184.7000 L 626.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_36"/><path d=" M 626.0000,179.3000 L 646.0000,159.3000 L 646.0000,164.7000 L 626.0000,184.7000 L 626.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_37"/><path d=" M 646.0000,154.8000 L 214.0000,154.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 194.0000,174.8000 L 214.0000,154.8000 L 214.9643,154.8000 L 194.9643,174.8000 L 194.0000,174.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_40"/><path d=" M 194.0000,174.8000 L 214.0000,154.8000 L 214.9643,154.8000 L 194.9643,174.8000 L 194.0000,174.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_41"/><path d=" M 646.0000,147.6000 L 214.0000,147.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 194.0000,167.6000 L 214.0000,147.6000 L 214.9643,147.6000 L 194.9643,167.6000 L 194.0000,167.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 194.0000,167.6000 L 214.0000,147.6000 L 214.9643,147.6000 L 194.9643,167.6000 L 194.0000,167.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 646.0000,140.4000 L 214.0000,140.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 194.0000,160.4000 L 214.0000,140.4000 L 214.9643,140.4000 L 194.9643,160.4000 L 194.0000,160.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 194.0000,160.4000 L 214.0000,140.4000 L 214.9643,140.4000 L 194.9643,160.4000 L 194.0000,160.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 646.0000,133.2000 L 214.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 194.0000,153.2000 L 214.0000,133.2000 L 216.8929,133.2000 L 196.8929,153.2000 L 194.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 194.0000,153.2000 L 214.0000,133.2000 L 216.8929,133.2000 L 196.8929,153.2000 L 194.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 646.0000,126.0000 L 214.0000,126.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 194.0000,146.0000 L 214.0000,126.0000 L 214.9643,126.0000 L 194.9643,146.0000 L 194.0000,146.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_53"/><path d=" M 194.0000,146.0000 L 214.0000,126.0000 L 214.9643,126.0000 L 194.9643,146.0000 L 194.0000,146.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_54"/><path d=" M 646.0000,118.8000 L 214.0000,118.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 194.0000,138.8000 L 214.0000,118.8000 L 214.9643,118.8000 L 194.9643,138.8000 L 194.0000,138.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 194.0000,138.8000 L 214.0000,118.8000 L 214.9643,118.8000 L 194.9643,138.8000 L 194.0000,138.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_57"/><path d=" M 646.0000,111.6000 L 214.0000,111.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 194.0000,131.6000 L 214.0000,111.6000 L 214.9643,111.6000 L 194.9643,131.6000 L 194.0000,131.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 194.0000,131.6000 L 214.0000,111.6000 L 214.9643,111.6000 L 194.9643,131.6000 L 194.0000,131.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_60"/><path d=" M 646.0000,104.4000 L 214.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 194.0000,124.4000 L 214.0000,104.4000 L 216.8929,104.4000 L 196.8929,124.4000 L 194.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 194.0000,124.4000 L 214.0000,104.4000 L 216.8929,104.4000 L 196.8929,124.4000 L 194.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 646.0000,97.2000 L 214.0000,97.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 194.0000,117.2000 L 214.0000,97.2000 L 214.9643,97.2000 L 194.9643,117.2000 L 194.0000,117.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 194.0000,117.2000 L 214.0000,97.2000 L 214.9643,97.2000 L 194.9643,117.2000 L 194.0000,117.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_67"/><path d=" M 646.0000,90.0000 L 214.0000,90.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 194.0000,110.0000 L 214.0000,90.0000 L 214.9643,90.0000 L 194.9643,110.0000 L 194.0000,110.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 194.0000,110.0000 L 214.0000,90.0000 L 214.9643,90.0000 L 194.9643,110.0000 L 194.0000,110.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_70"/><path d=" M 646.0000,82.8000 L 214.0000,82.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 194.0000,102.8000 L 214.0000,82.8000 L 214.9643,82.8000 L 194.9643,102.8000 L 194.0000,102.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 194.0000,102.8000 L 214.0000,82.8000 L 214.9643,82.8000 L 194.9643,102.8000 L 194.0000,102.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><path d=" M 646.0000,75.6000 L 214.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 194.0000,95.6000 L 214.0000,75.6000 L 216.8929,75.6000 L 196.8929,95.6000 L 194.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 194.0000,95.6000 L 214.0000,75.6000 L 216.8929,75.6000 L 196.8929,95.6000 L 194.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 646.0000,68.4000 L 214.0000,68.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 194.0000,88.4000 L 214.0000,68.4000 L 214.9643,68.4000 L 194.9643,88.4000 L 194.0000,88.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 194.0000,88.4000 L 214.0000,68.4000 L 214.9643,68.4000 L 194.9643,88.4000 L 194.0000,88.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 646.0000,61.2000 L 214.0000,61.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_81"/><path d=" M 194.0000,81.2000 L 214.0000,61.2000 L 214.9643,61.2000 L 194.9643,81.2000 L 194.0000,81.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 194.0000,81.2000 L 214.0000,61.2000 L 214.9643,61.2000 L 194.9643,81.2000 L 194.0000,81.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_83"/><path d=" M 646.0000,54.0000 L 214.0000,54.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_84"/><path d=" M 194.0000,74.0000 L 214.0000,54.0000 L 214.9643,54.0000 L 194.9643,74.0000 L 194.0000,74.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 194.0000,74.0000 L 214.0000,54.0000 L 214.9643,54.0000 L 194.9643,74.0000 L 194.0000,74.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_86"/><path d=" M 646.0000,46.8000 L 214.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_87"/><path d=" M 194.0000,66.8000 L 214.0000,46.8000 L 216.8929,46.8000 L 196.8929,66.8000 L 194.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 194.0000,66.8000 L 214.0000,46.8000 L 216.8929,46.8000 L 196.8929,66.8000 L 194.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_89"/><path d=" M 646.0000,39.6000 L 214.0000,39.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><path d=" M 194.0000,59.6000 L 214.0000,39.6000 L 214.9643,39.6000 L 194.9643,59.6000 L 194.0000,59.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_92"/><path d=" M 194.0000,59.6000 L 214.0000,39.6000 L 214.9643,39.6000 L 194.9643,59.6000 L 194.0000,59.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_93"/><path d=" M 646.0000,32.4000 L 214.0000,32.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_94"/><path d=" M 194.0000,52.4000 L 214.0000,32.4000 L 214.9643,32.4000 L 194.9643,52.4000 L 194.0000,52.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 194.0000,52.4000 L 214.0000,32.4000 L 214.9643,32.4000 L 194.9643,52.4000 L 194.0000,52.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 646.0000,25.2000 L 214.0000,25.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_97"/><path d=" M 194.0000,45.2000 L 214.0000,25.2000 L 214.9643,25.2000 L 194.9643,45.2000 L 194.0000,45.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 194.0000,45.2000 L 214.0000,25.2000 L 214.9643,25.2000 L 194.9643,45.2000 L 194.0000,45.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><path d=" M 646.0000,18.0000 L 214.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_100"/><path d=" M 194.0000,38.0000 L 214.0000,18.0000 L 216.8929,18.0000 L 196.8929,38.0000 L 194.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_101"/><path d=" M 194.0000,38.0000 L 214.0000,18.0000 L 216.8929,18.0000 L 196.8929,38.0000 L 194.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_102"/><path d=" M 218.4390,39.5840 L 202.4390,55.5840 L 217.5759,55.5840 L 233.5759,39.5840 L 218.4390,39.5840 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 217.5759,180.0000 L 202.4390,180.0000 L 202.4390,55.5840 L 217.5759,55.5840 L 217.5759,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_105"/><path d=" M 233.5759,39.5840 L 217.5759,55.5840 L 217.5759,180.0000 L 233.5759,164.0000 L 233.5759,39.5840 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_106"/><path d="M 229.62,172.00 A 7.85,3.92 0 0,0 245.32,172.00 L 245.32,104.61 A 7.85,3.924375 0 0,1 229.62,104.61 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_107"/><path d="M 229.62,172.00 A 7.85,3.92 0 0,0 245.32,172.00 L 245.32,104.61 A 7.85,3.924375 0 0,1 229.62,104.61 z" style="fill: url(#LinearGradient_229_104_245_104_ffffffbf_0000007f); stroke: none;"/><ellipse cx="237.4692" cy="104.608" rx="7.8488" ry="3.9244" style="fill: url(#LinearGradient_229_104_245_104_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_108"/><path d="M 249.08,172.00 A 7.85,3.92 0 0,0 264.78,172.00 L 264.78,136.29 A 7.85,3.924375 0 0,1 249.08,136.29 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_109"/><path d="M 249.08,172.00 A 7.85,3.92 0 0,0 264.78,172.00 L 264.78,136.29 A 7.85,3.924375 0 0,1 249.08,136.29 z" style="fill: url(#LinearGradient_249_136_264_136_ffffffbf_0000007f); stroke: none;"/><ellipse cx="256.9308" cy="136.288" rx="7.8488" ry="3.9244" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_110"/><path d=" M 271.4199,180.0000 L 268.8241,172.0000 L 268.8241,60.5440 L 271.4199,68.5440 L 271.4199,180.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_111"/><path d=" M 268.8241,60.5440 L 271.4199,68.5440 L 283.9610,60.5440 L 281.3652,52.5440 L 268.8241,60.5440 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_112"/><path d=" M 271.4199,180.0000 L 283.9610,172.0000 L 283.9610,60.5440 L 271.4199,68.5440 L 271.4199,180.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_113"/><path d=" M 304.8390,151.6160 L 288.8390,167.6160 L 303.9759,167.6160 L 319.9759,151.6160 L 304.8390,151.6160 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_114"/><path d=" M 303.9759,180.0000 L 288.8390,180.0000 L 288.8390,167.6160 L 303.9759,167.6160 L 303.9759,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_115"/><path d=" M 319.9759,151.6160 L 303.9759,167.6160 L 303.9759,180.0000 L 319.9759,164.0000 L 319.9759,151.6160 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_116"/><path d="M 316.02,172.00 A 7.85,3.92 0 0,0 331.72,172.00 L 331.72,165.95 A 7.85,3.924375 0 0,1 316.02,165.95 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_117"/><path d="M 316.02,172.00 A 7.85,3.92 0 0,0 331.72,172.00 L 331.72,165.95 A 7.85,3.924375 0 0,1 316.02,165.95 z" style="fill: url(#LinearGradient_316_165_331_165_ffffffbf_0000007f); stroke: none;"/><ellipse cx="323.8692" cy="165.952" rx="7.8488" ry="3.9244" style="fill: url(#LinearGradient_316_165_331_165_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_118"/><path d="M 335.48,172.00 A 7.85,3.92 0 0,0 351.18,172.00 L 351.18,101.44 A 7.85,3.924375 0 0,1 335.48,101.44 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_119"/><path d="M 335.48,172.00 A 7.85,3.92 0 0,0 351.18,172.00 L 351.18,101.44 A 7.85,3.924375 0 0,1 335.48,101.44 z" style="fill: url(#LinearGradient_335_101_351_101_ffffffbf_0000007f); stroke: none;"/><ellipse cx="343.3308" cy="101.44" rx="7.8488" ry="3.9244" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_120"/><path d=" M 357.8199,180.0000 L 355.2241,172.0000 L 355.2241,96.8320 L 357.8199,104.8320 L 357.8199,180.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_121"/><path d=" M 355.2241,96.8320 L 357.8199,104.8320 L 370.3610,96.8320 L 367.7652,88.8320 L 355.2241,96.8320 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_122"/><path d=" M 357.8199,180.0000 L 370.3610,172.0000 L 370.3610,96.8320 L 357.8199,104.8320 L 357.8199,180.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_123"/><path d=" M 391.2390,145.2800 L 375.2390,161.2800 L 390.3759,161.2800 L 406.3759,145.2800 L 391.2390,145.2800 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_124"/><path d=" M 390.3759,180.0000 L 375.2390,180.0000 L 375.2390,161.2800 L 390.3759,161.2800 L 390.3759,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_125"/><path d=" M 406.3759,145.2800 L 390.3759,161.2800 L 390.3759,180.0000 L 406.3759,164.0000 L 406.3759,145.2800 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_126"/><path d="M 402.42,172.00 A 7.85,3.92 0 0,0 418.12,172.00 L 418.12,78.69 A 7.85,3.924375 0 0,1 402.42,78.69 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_127"/><path d="M 402.42,172.00 A 7.85,3.92 0 0,0 418.12,172.00 L 418.12,78.69 A 7.85,3.924375 0 0,1 402.42,78.69 z" style="fill: url(#LinearGradient_402_78_418_78_ffffffbf_0000007f); stroke: none;"/><ellipse cx="410.2692" cy="78.688" rx="7.8488" ry="3.9244" style="fill: url(#LinearGradient_402_78_418_78_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_128"/><path d="M 421.88,172.00 A 7.85,3.92 0 0,0 437.58,172.00 L 437.58,68.03 A 7.85,3.924375 0 0,1 421.88,68.03 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_129"/><path d="M 421.88,172.00 A 7.85,3.92 0 0,0 437.58,172.00 L 437.58,68.03 A 7.85,3.924375 0 0,1 421.88,68.03 z" style="fill: url(#LinearGradient_421_68_437_68_ffffffbf_0000007f); stroke: none;"/><ellipse cx="429.7308" cy="68.032" rx="7.8488" ry="3.9244" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_130"/><path d=" M 444.2199,180.0000 L 441.6241,172.0000 L 441.6241,165.0880 L 444.2199,173.0880 L 444.2199,180.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_131"/><path d=" M 441.6241,165.0880 L 444.2199,173.0880 L 456.7610,165.0880 L 454.1652,157.0880 L 441.6241,165.0880 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_132"/><path d=" M 444.2199,180.0000 L 456.7610,172.0000 L 456.7610,165.0880 L 444.2199,173.0880 L 444.2199,180.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_133"/><path d=" M 477.6390,136.0640 L 461.6390,152.0640 L 476.7759,152.0640 L 492.7759,136.0640 L 477.6390,136.0640 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_134"/><path d=" M 476.7759,180.0000 L 461.6390,180.0000 L 461.6390,152.0640 L 476.7759,152.0640 L 476.7759,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_135"/><path d=" M 492.7759,136.0640 L 476.7759,152.0640 L 476.7759,180.0000 L 492.7759,164.0000 L 492.7759,136.0640 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_136"/><path d="M 488.82,172.00 A 7.85,3.92 0 0,0 504.52,172.00 L 504.52,137.44 A 7.85,3.924375 0 0,1 488.82,137.44 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_137"/><path d="M 488.82,172.00 A 7.85,3.92 0 0,0 504.52,172.00 L 504.52,137.44 A 7.85,3.924375 0 0,1 488.82,137.44 z" style="fill: url(#LinearGradient_488_137_504_137_ffffffbf_0000007f); stroke: none;"/><ellipse cx="496.6692" cy="137.44" rx="7.8488" ry="3.9244" style="fill: url(#LinearGradient_488_137_504_137_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_138"/><path d="M 508.28,172.00 A 7.85,3.92 0 0,0 523.98,172.00 L 523.98,53.34 A 7.85,3.924375 0 0,1 508.28,53.34 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_139"/><path d="M 508.28,172.00 A 7.85,3.92 0 0,0 523.98,172.00 L 523.98,53.34 A 7.85,3.924375 0 0,1 508.28,53.34 z" style="fill: url(#LinearGradient_508_53_523_53_ffffffbf_0000007f); stroke: none;"/><ellipse cx="516.1308" cy="53.344" rx="7.8488" ry="3.9244" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_140"/><path d=" M 530.6199,180.0000 L 528.0241,172.0000 L 528.0241,155.0080 L 530.6199,163.0080 L 530.6199,180.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_141"/><path d=" M 528.0241,155.0080 L 530.6199,163.0080 L 543.1610,155.0080 L 540.5652,147.0080 L 528.0241,155.0080 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_142"/><path d=" M 530.6199,180.0000 L 543.1610,172.0000 L 543.1610,155.0080 L 530.6199,163.0080 L 530.6199,180.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_143"/><path d=" M 564.0390,119.6480 L 548.0390,135.6480 L 563.1759,135.6480 L 579.1759,119.6480 L 564.0390,119.6480 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_144"/><path d=" M 563.1759,180.0000 L 548.0390,180.0000 L 548.0390,135.6480 L 563.1759,135.6480 L 563.1759,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_145"/><path d=" M 579.1759,119.6480 L 563.1759,135.6480 L 563.1759,180.0000 L 579.1759,164.0000 L 579.1759,119.6480 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_146"/><path d="M 575.22,172.00 A 7.85,3.92 0 0,0 590.92,172.00 L 590.92,171.71 A 7.85,3.924375 0 0,1 575.22,171.71 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_147"/><path d="M 575.22,172.00 A 7.85,3.92 0 0,0 590.92,172.00 L 590.92,171.71 A 7.85,3.924375 0 0,1 575.22,171.71 z" style="fill: url(#LinearGradient_575_171_590_171_ffffffbf_0000007f); stroke: none;"/><ellipse cx="583.0692" cy="171.712" rx="7.8488" ry="3.9244" style="fill: url(#LinearGradient_575_171_590_171_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_148"/><path d="M 594.68,172.00 A 7.85,3.92 0 0,0 610.38,172.00 L 610.38,33.76 A 7.85,3.924375 0 0,1 594.68,33.76 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_149"/><path d="M 594.68,172.00 A 7.85,3.92 0 0,0 610.38,172.00 L 610.38,33.76 A 7.85,3.924375 0 0,1 594.68,33.76 z" style="fill: url(#LinearGradient_594_33_610_33_ffffffbf_0000007f); stroke: none;"/><ellipse cx="602.5308" cy="33.76" rx="7.8488" ry="3.9244" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_150"/><path d=" M 617.0199,180.0000 L 614.4241,172.0000 L 614.4241,139.7440 L 617.0199,147.7440 L 617.0199,180.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_151"/><path d=" M 614.4241,139.7440 L 617.0199,147.7440 L 629.5610,139.7440 L 626.9652,131.7440 L 614.4241,139.7440 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_152"/><path d=" M 617.0199,180.0000 L 629.5610,172.0000 L 629.5610,139.7440 L 617.0199,147.7440 L 617.0199,180.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_153"/><path d=" M 700.0000,162.0000 L 680.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_154"/><path d=" M 680.0000,182.0000 L 140.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_155"/><path d=" M 140.0000,182.0000 L 160.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_156"/><path d=" M 214.0000,0.0000 L 194.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_157"/><path d=" M 194.0000,20.0000 L 194.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_158"/><path d=" M 194.0000,200.0000 L 214.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_159"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 86.7800,3.5000 L 86.7800,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_160"/><text id="ezcGraphTextBox_5_text" x="19" text-length="66.78px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Rectangle</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_161"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Circle</text></g><g id="ezcGraphTextBox_9"><path d=" M 18.5000,55.0000 L 18.5000,39.5000 L 64.5200,39.5000 L 64.5200,55.0000 L 18.5000,55.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_162"/><text id="ezcGraphTextBox_9_text" x="19" text-length="44.52px" y="51.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Bullet</text></g><g id="ezcGraphTextBox_11"><path d=" M 18.5000,73.0000 L 18.5000,57.5000 L 71.9400,57.5000 L 71.9400,73.0000 L 18.5000,73.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_163"/><text id="ezcGraphTextBox_11_text" x="19" text-length="51.94px" y="69.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Diamond</text></g><g id="ezcGraphTextBox_18"><path d=" M 213.8040,195.6000 L 213.8040,183.3000 L 261.0960,183.3000 L 261.0960,195.6000 L 213.8040,195.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_164"/><text id="ezcGraphTextBox_18_text" x="214.304" text-length="45.792px" y="192.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_22"><path d=" M 300.2040,195.6000 L 300.2040,183.3000 L 347.4960,183.3000 L 347.4960,195.6000 L 300.2040,195.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_165"/><text id="ezcGraphTextBox_22_text" x="300.704" text-length="45.792px" y="192.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_26"><path d=" M 386.6040,195.6000 L 386.6040,183.3000 L 433.8960,183.3000 L 433.8960,195.6000 L 386.6040,195.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_166"/><text id="ezcGraphTextBox_26_text" x="387.104" text-length="45.792px" y="192.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_30"><path d=" M 473.0040,195.6000 L 473.0040,183.3000 L 520.2960,183.3000 L 520.2960,195.6000 L 473.0040,195.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_167"/><text id="ezcGraphTextBox_30_text" x="473.504" text-length="45.792px" y="192.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_34"><path d=" M 559.4040,195.6000 L 559.4040,183.3000 L 606.6960,183.3000 L 606.6960,195.6000 L 559.4040,195.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_168"/><text id="ezcGraphTextBox_34_text" x="559.904" text-length="45.792px" y="192.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_38"><path d=" M 184.8754,181.2000 L 184.8754,168.9000 L 193.0714,168.9000 L 193.0714,181.2000 L 184.8754,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_169"/><text id="ezcGraphTextBox_38_text" x="185.3754" text-length="6.696px" y="178.58" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_51"><path d=" M 171.4834,152.4000 L 171.4834,140.1000 L 193.0714,140.1000 L 193.0714,152.4000 L 171.4834,152.4000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_170"/><text id="ezcGraphTextBox_51_text" x="171.9834" text-length="20.088px" y="149.78" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_64"><path d=" M 171.4834,123.6000 L 171.4834,111.3000 L 193.0714,111.3000 L 193.0714,123.6000 L 171.4834,123.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_171"/><text id="ezcGraphTextBox_64_text" x="171.9834" text-length="20.088px" y="120.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_77"><path d=" M 171.4834,94.8000 L 171.4834,82.5000 L 193.0714,82.5000 L 193.0714,94.8000 L 171.4834,94.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_172"/><text id="ezcGraphTextBox_77_text" x="171.9834" text-length="20.088px" y="92.18" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_90"><path d=" M 171.4834,66.0000 L 171.4834,53.7000 L 193.0714,53.7000 L 193.0714,66.0000 L 171.4834,66.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_173"/><text id="ezcGraphTextBox_90_text" x="171.9834" text-length="20.088px" y="63.38" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_103"><path d=" M 171.4834,51.6000 L 171.4834,39.3000 L 193.0714,39.3000 L 193.0714,51.6000 L 171.4834,51.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_174"/><text id="ezcGraphTextBox_103_text" x="171.9834" text-length="20.088px" y="48.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="700" height="200" version="1.0" id="ezcGraph"><defs><linearGradient id="Definition_LinearGradient_229_104_245_104_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_229_104_245_104_ffffffbf_0000007f" x1="229.6204" y1="104.608" x2="245.3179" y2="104.608" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_229_104_245_104_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_229_104_245_104_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_229_104_245_104_8f191900_ef292900" x1="229.6204" y1="104.608" x2="245.3179" y2="104.608" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_229_104_245_104_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_249_136_264_136_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_249_136_264_136_ffffffbf_0000007f" x1="249.0821" y1="136.288" x2="264.7796" y2="136.288" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_249_136_264_136_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_316_165_331_165_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_316_165_331_165_ffffffbf_0000007f" x1="316.0204" y1="165.952" x2="331.7179" y2="165.952" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_316_165_331_165_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_316_165_331_165_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_316_165_331_165_8f191900_ef292900" x1="316.0204" y1="165.952" x2="331.7179" y2="165.952" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_316_165_331_165_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_335_101_351_101_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_335_101_351_101_ffffffbf_0000007f" x1="335.4821" y1="101.44" x2="351.1796" y2="101.44" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_335_101_351_101_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_402_78_418_78_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_402_78_418_78_ffffffbf_0000007f" x1="402.4204" y1="78.688" x2="418.1179" y2="78.688" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_402_78_418_78_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_402_78_418_78_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_402_78_418_78_8f191900_ef292900" x1="402.4204" y1="78.688" x2="418.1179" y2="78.688" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_402_78_418_78_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_421_68_437_68_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_421_68_437_68_ffffffbf_0000007f" x1="421.8821" y1="68.032" x2="437.5796" y2="68.032" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_421_68_437_68_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_488_137_504_137_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_488_137_504_137_ffffffbf_0000007f" x1="488.8204" y1="137.44" x2="504.5179" y2="137.44" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_488_137_504_137_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_488_137_504_137_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_488_137_504_137_8f191900_ef292900" x1="488.8204" y1="137.44" x2="504.5179" y2="137.44" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_488_137_504_137_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_508_53_523_53_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_508_53_523_53_ffffffbf_0000007f" x1="508.2821" y1="53.344" x2="523.9796" y2="53.344" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_508_53_523_53_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_575_171_590_171_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_575_171_590_171_ffffffbf_0000007f" x1="575.2204" y1="171.712" x2="590.9179" y2="171.712" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_575_171_590_171_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_575_171_590_171_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_575_171_590_171_8f191900_ef292900" x1="575.2204" y1="171.712" x2="590.9179" y2="171.712" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_575_171_590_171_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_594_33_610_33_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_594_33_610_33_ffffffbf_0000007f" x1="594.6821" y1="33.76" x2="610.3796" y2="33.76" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_594_33_610_33_ffffffbf_0000007f"/></defs><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 700.0000,0.0000 L 700.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 139.0000,1.0000 L 139.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 139.0000,1.0000 L 139.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><path d=" M 4.0000,18.0000 L 4.0000,4.0000 L 18.0000,4.0000 L 18.0000,18.0000 L 4.0000,18.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircle_6"/><ellipse cx="11" cy="47" rx="7" ry="7" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_8"/><path d=" M 4.0000,65.0000 L 11.0000,58.0000 L 18.0000,65.0000 L 11.0000,72.0000 L 4.0000,65.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 140.0000,182.0000 L 160.0000,162.0000 L 700.0000,162.0000 L 680.0000,182.0000 L 140.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 160.0000,162.0000 L 700.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 692.0000,166.0000 L 700.0000,162.0000 L 692.0000,158.0000 L 692.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 194.0000,200.0000 L 214.0000,180.0000 L 214.0000,0.0000 L 194.0000,20.0000 L 194.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 214.0000,180.0000 L 214.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 211.5000,5.0000 L 214.0000,0.0000 L 216.5000,5.0000 L 211.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 300.4000,162.0000 L 300.4000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 280.4000,179.3000 L 300.4000,159.3000 L 300.4000,164.7000 L 280.4000,184.7000 L 280.4000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_20"/><path d=" M 280.4000,179.3000 L 300.4000,159.3000 L 300.4000,164.7000 L 280.4000,184.7000 L 280.4000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_21"/><path d=" M 386.8000,162.0000 L 386.8000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 366.8000,179.3000 L 386.8000,159.3000 L 386.8000,164.7000 L 366.8000,184.7000 L 366.8000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 366.8000,179.3000 L 386.8000,159.3000 L 386.8000,164.7000 L 366.8000,184.7000 L 366.8000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_25"/><path d=" M 473.2000,162.0000 L 473.2000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 453.2000,179.3000 L 473.2000,159.3000 L 473.2000,164.7000 L 453.2000,184.7000 L 453.2000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_28"/><path d=" M 453.2000,179.3000 L 473.2000,159.3000 L 473.2000,164.7000 L 453.2000,184.7000 L 453.2000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_29"/><path d=" M 559.6000,162.0000 L 559.6000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 539.6000,179.3000 L 559.6000,159.3000 L 559.6000,164.7000 L 539.6000,184.7000 L 539.6000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 539.6000,179.3000 L 559.6000,159.3000 L 559.6000,164.7000 L 539.6000,184.7000 L 539.6000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 646.0000,162.0000 L 646.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 626.0000,179.3000 L 646.0000,159.3000 L 646.0000,164.7000 L 626.0000,184.7000 L 626.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_36"/><path d=" M 626.0000,179.3000 L 646.0000,159.3000 L 646.0000,164.7000 L 626.0000,184.7000 L 626.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_37"/><path d=" M 646.0000,154.8000 L 214.0000,154.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 194.0000,174.8000 L 214.0000,154.8000 L 214.9643,154.8000 L 194.9643,174.8000 L 194.0000,174.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_40"/><path d=" M 194.0000,174.8000 L 214.0000,154.8000 L 214.9643,154.8000 L 194.9643,174.8000 L 194.0000,174.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_41"/><path d=" M 646.0000,147.6000 L 214.0000,147.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 194.0000,167.6000 L 214.0000,147.6000 L 214.9643,147.6000 L 194.9643,167.6000 L 194.0000,167.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 194.0000,167.6000 L 214.0000,147.6000 L 214.9643,147.6000 L 194.9643,167.6000 L 194.0000,167.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 646.0000,140.4000 L 214.0000,140.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 194.0000,160.4000 L 214.0000,140.4000 L 214.9643,140.4000 L 194.9643,160.4000 L 194.0000,160.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 194.0000,160.4000 L 214.0000,140.4000 L 214.9643,140.4000 L 194.9643,160.4000 L 194.0000,160.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 646.0000,133.2000 L 214.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 194.0000,153.2000 L 214.0000,133.2000 L 216.8929,133.2000 L 196.8929,153.2000 L 194.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 194.0000,153.2000 L 214.0000,133.2000 L 216.8929,133.2000 L 196.8929,153.2000 L 194.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 646.0000,126.0000 L 214.0000,126.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 194.0000,146.0000 L 214.0000,126.0000 L 214.9643,126.0000 L 194.9643,146.0000 L 194.0000,146.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_53"/><path d=" M 194.0000,146.0000 L 214.0000,126.0000 L 214.9643,126.0000 L 194.9643,146.0000 L 194.0000,146.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_54"/><path d=" M 646.0000,118.8000 L 214.0000,118.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 194.0000,138.8000 L 214.0000,118.8000 L 214.9643,118.8000 L 194.9643,138.8000 L 194.0000,138.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 194.0000,138.8000 L 214.0000,118.8000 L 214.9643,118.8000 L 194.9643,138.8000 L 194.0000,138.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_57"/><path d=" M 646.0000,111.6000 L 214.0000,111.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 194.0000,131.6000 L 214.0000,111.6000 L 214.9643,111.6000 L 194.9643,131.6000 L 194.0000,131.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 194.0000,131.6000 L 214.0000,111.6000 L 214.9643,111.6000 L 194.9643,131.6000 L 194.0000,131.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_60"/><path d=" M 646.0000,104.4000 L 214.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 194.0000,124.4000 L 214.0000,104.4000 L 216.8929,104.4000 L 196.8929,124.4000 L 194.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 194.0000,124.4000 L 214.0000,104.4000 L 216.8929,104.4000 L 196.8929,124.4000 L 194.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 646.0000,97.2000 L 214.0000,97.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 194.0000,117.2000 L 214.0000,97.2000 L 214.9643,97.2000 L 194.9643,117.2000 L 194.0000,117.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 194.0000,117.2000 L 214.0000,97.2000 L 214.9643,97.2000 L 194.9643,117.2000 L 194.0000,117.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_67"/><path d=" M 646.0000,90.0000 L 214.0000,90.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 194.0000,110.0000 L 214.0000,90.0000 L 214.9643,90.0000 L 194.9643,110.0000 L 194.0000,110.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 194.0000,110.0000 L 214.0000,90.0000 L 214.9643,90.0000 L 194.9643,110.0000 L 194.0000,110.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_70"/><path d=" M 646.0000,82.8000 L 214.0000,82.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 194.0000,102.8000 L 214.0000,82.8000 L 214.9643,82.8000 L 194.9643,102.8000 L 194.0000,102.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 194.0000,102.8000 L 214.0000,82.8000 L 214.9643,82.8000 L 194.9643,102.8000 L 194.0000,102.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><path d=" M 646.0000,75.6000 L 214.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 194.0000,95.6000 L 214.0000,75.6000 L 216.8929,75.6000 L 196.8929,95.6000 L 194.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 194.0000,95.6000 L 214.0000,75.6000 L 216.8929,75.6000 L 196.8929,95.6000 L 194.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 646.0000,68.4000 L 214.0000,68.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 194.0000,88.4000 L 214.0000,68.4000 L 214.9643,68.4000 L 194.9643,88.4000 L 194.0000,88.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 194.0000,88.4000 L 214.0000,68.4000 L 214.9643,68.4000 L 194.9643,88.4000 L 194.0000,88.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 646.0000,61.2000 L 214.0000,61.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_81"/><path d=" M 194.0000,81.2000 L 214.0000,61.2000 L 214.9643,61.2000 L 194.9643,81.2000 L 194.0000,81.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 194.0000,81.2000 L 214.0000,61.2000 L 214.9643,61.2000 L 194.9643,81.2000 L 194.0000,81.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_83"/><path d=" M 646.0000,54.0000 L 214.0000,54.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_84"/><path d=" M 194.0000,74.0000 L 214.0000,54.0000 L 214.9643,54.0000 L 194.9643,74.0000 L 194.0000,74.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 194.0000,74.0000 L 214.0000,54.0000 L 214.9643,54.0000 L 194.9643,74.0000 L 194.0000,74.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_86"/><path d=" M 646.0000,46.8000 L 214.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_87"/><path d=" M 194.0000,66.8000 L 214.0000,46.8000 L 216.8929,46.8000 L 196.8929,66.8000 L 194.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 194.0000,66.8000 L 214.0000,46.8000 L 216.8929,46.8000 L 196.8929,66.8000 L 194.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_89"/><path d=" M 646.0000,39.6000 L 214.0000,39.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><path d=" M 194.0000,59.6000 L 214.0000,39.6000 L 214.9643,39.6000 L 194.9643,59.6000 L 194.0000,59.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_92"/><path d=" M 194.0000,59.6000 L 214.0000,39.6000 L 214.9643,39.6000 L 194.9643,59.6000 L 194.0000,59.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_93"/><path d=" M 646.0000,32.4000 L 214.0000,32.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_94"/><path d=" M 194.0000,52.4000 L 214.0000,32.4000 L 214.9643,32.4000 L 194.9643,52.4000 L 194.0000,52.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 194.0000,52.4000 L 214.0000,32.4000 L 214.9643,32.4000 L 194.9643,52.4000 L 194.0000,52.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 646.0000,25.2000 L 214.0000,25.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_97"/><path d=" M 194.0000,45.2000 L 214.0000,25.2000 L 214.9643,25.2000 L 194.9643,45.2000 L 194.0000,45.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 194.0000,45.2000 L 214.0000,25.2000 L 214.9643,25.2000 L 194.9643,45.2000 L 194.0000,45.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><path d=" M 646.0000,18.0000 L 214.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_100"/><path d=" M 194.0000,38.0000 L 214.0000,18.0000 L 216.8929,18.0000 L 196.8929,38.0000 L 194.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_101"/><path d=" M 194.0000,38.0000 L 214.0000,18.0000 L 216.8929,18.0000 L 196.8929,38.0000 L 194.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_102"/><path d=" M 218.4390,39.5840 L 202.4390,55.5840 L 217.5759,55.5840 L 233.5759,39.5840 L 218.4390,39.5840 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 217.5759,180.0000 L 202.4390,180.0000 L 202.4390,55.5840 L 217.5759,55.5840 L 217.5759,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_105"/><path d=" M 233.5759,39.5840 L 217.5759,55.5840 L 217.5759,180.0000 L 233.5759,164.0000 L 233.5759,39.5840 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_106"/><path d="M 229.62,172.00 A 7.85,3.92 0 0,0 245.32,172.00 L 245.32,104.61 A 7.85,3.924375 0 0,1 229.62,104.61 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_107"/><path d="M 229.62,172.00 A 7.85,3.92 0 0,0 245.32,172.00 L 245.32,104.61 A 7.85,3.924375 0 0,1 229.62,104.61 z" style="fill: url(#LinearGradient_229_104_245_104_ffffffbf_0000007f); stroke: none;"/><ellipse cx="237.4692" cy="104.608" rx="7.8488" ry="3.9244" style="fill: url(#LinearGradient_229_104_245_104_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_108"/><path d="M 249.08,172.00 A 7.85,3.92 0 0,0 264.78,172.00 L 264.78,136.29 A 7.85,3.924375 0 0,1 249.08,136.29 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_109"/><path d="M 249.08,172.00 A 7.85,3.92 0 0,0 264.78,172.00 L 264.78,136.29 A 7.85,3.924375 0 0,1 249.08,136.29 z" style="fill: url(#LinearGradient_249_136_264_136_ffffffbf_0000007f); stroke: none;"/><ellipse cx="256.9308" cy="136.288" rx="7.8488" ry="3.9244" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_110"/><path d=" M 271.4199,180.0000 L 268.8241,172.0000 L 268.8241,60.5440 L 271.4199,68.5440 L 271.4199,180.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_111"/><path d=" M 268.8241,60.5440 L 271.4199,68.5440 L 283.9610,60.5440 L 281.3652,52.5440 L 268.8241,60.5440 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_112"/><path d=" M 271.4199,180.0000 L 283.9610,172.0000 L 283.9610,60.5440 L 271.4199,68.5440 L 271.4199,180.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_113"/><path d=" M 304.8390,151.6160 L 288.8390,167.6160 L 303.9759,167.6160 L 319.9759,151.6160 L 304.8390,151.6160 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_114"/><path d=" M 303.9759,180.0000 L 288.8390,180.0000 L 288.8390,167.6160 L 303.9759,167.6160 L 303.9759,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_115"/><path d=" M 319.9759,151.6160 L 303.9759,167.6160 L 303.9759,180.0000 L 319.9759,164.0000 L 319.9759,151.6160 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_116"/><path d="M 316.02,172.00 A 7.85,3.92 0 0,0 331.72,172.00 L 331.72,165.95 A 7.85,3.924375 0 0,1 316.02,165.95 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_117"/><path d="M 316.02,172.00 A 7.85,3.92 0 0,0 331.72,172.00 L 331.72,165.95 A 7.85,3.924375 0 0,1 316.02,165.95 z" style="fill: url(#LinearGradient_316_165_331_165_ffffffbf_0000007f); stroke: none;"/><ellipse cx="323.8692" cy="165.952" rx="7.8488" ry="3.9244" style="fill: url(#LinearGradient_316_165_331_165_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_118"/><path d="M 335.48,172.00 A 7.85,3.92 0 0,0 351.18,172.00 L 351.18,101.44 A 7.85,3.924375 0 0,1 335.48,101.44 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_119"/><path d="M 335.48,172.00 A 7.85,3.92 0 0,0 351.18,172.00 L 351.18,101.44 A 7.85,3.924375 0 0,1 335.48,101.44 z" style="fill: url(#LinearGradient_335_101_351_101_ffffffbf_0000007f); stroke: none;"/><ellipse cx="343.3308" cy="101.44" rx="7.8488" ry="3.9244" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_120"/><path d=" M 357.8199,180.0000 L 355.2241,172.0000 L 355.2241,96.8320 L 357.8199,104.8320 L 357.8199,180.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_121"/><path d=" M 355.2241,96.8320 L 357.8199,104.8320 L 370.3610,96.8320 L 367.7652,88.8320 L 355.2241,96.8320 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_122"/><path d=" M 357.8199,180.0000 L 370.3610,172.0000 L 370.3610,96.8320 L 357.8199,104.8320 L 357.8199,180.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_123"/><path d=" M 391.2390,145.2800 L 375.2390,161.2800 L 390.3759,161.2800 L 406.3759,145.2800 L 391.2390,145.2800 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_124"/><path d=" M 390.3759,180.0000 L 375.2390,180.0000 L 375.2390,161.2800 L 390.3759,161.2800 L 390.3759,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_125"/><path d=" M 406.3759,145.2800 L 390.3759,161.2800 L 390.3759,180.0000 L 406.3759,164.0000 L 406.3759,145.2800 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_126"/><path d="M 402.42,172.00 A 7.85,3.92 0 0,0 418.12,172.00 L 418.12,78.69 A 7.85,3.924375 0 0,1 402.42,78.69 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_127"/><path d="M 402.42,172.00 A 7.85,3.92 0 0,0 418.12,172.00 L 418.12,78.69 A 7.85,3.924375 0 0,1 402.42,78.69 z" style="fill: url(#LinearGradient_402_78_418_78_ffffffbf_0000007f); stroke: none;"/><ellipse cx="410.2692" cy="78.688" rx="7.8488" ry="3.9244" style="fill: url(#LinearGradient_402_78_418_78_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_128"/><path d="M 421.88,172.00 A 7.85,3.92 0 0,0 437.58,172.00 L 437.58,68.03 A 7.85,3.924375 0 0,1 421.88,68.03 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_129"/><path d="M 421.88,172.00 A 7.85,3.92 0 0,0 437.58,172.00 L 437.58,68.03 A 7.85,3.924375 0 0,1 421.88,68.03 z" style="fill: url(#LinearGradient_421_68_437_68_ffffffbf_0000007f); stroke: none;"/><ellipse cx="429.7308" cy="68.032" rx="7.8488" ry="3.9244" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_130"/><path d=" M 444.2199,180.0000 L 441.6241,172.0000 L 441.6241,165.0880 L 444.2199,173.0880 L 444.2199,180.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_131"/><path d=" M 441.6241,165.0880 L 444.2199,173.0880 L 456.7610,165.0880 L 454.1652,157.0880 L 441.6241,165.0880 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_132"/><path d=" M 444.2199,180.0000 L 456.7610,172.0000 L 456.7610,165.0880 L 444.2199,173.0880 L 444.2199,180.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_133"/><path d=" M 477.6390,136.0640 L 461.6390,152.0640 L 476.7759,152.0640 L 492.7759,136.0640 L 477.6390,136.0640 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_134"/><path d=" M 476.7759,180.0000 L 461.6390,180.0000 L 461.6390,152.0640 L 476.7759,152.0640 L 476.7759,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_135"/><path d=" M 492.7759,136.0640 L 476.7759,152.0640 L 476.7759,180.0000 L 492.7759,164.0000 L 492.7759,136.0640 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_136"/><path d="M 488.82,172.00 A 7.85,3.92 0 0,0 504.52,172.00 L 504.52,137.44 A 7.85,3.924375 0 0,1 488.82,137.44 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_137"/><path d="M 488.82,172.00 A 7.85,3.92 0 0,0 504.52,172.00 L 504.52,137.44 A 7.85,3.924375 0 0,1 488.82,137.44 z" style="fill: url(#LinearGradient_488_137_504_137_ffffffbf_0000007f); stroke: none;"/><ellipse cx="496.6692" cy="137.44" rx="7.8488" ry="3.9244" style="fill: url(#LinearGradient_488_137_504_137_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_138"/><path d="M 508.28,172.00 A 7.85,3.92 0 0,0 523.98,172.00 L 523.98,53.34 A 7.85,3.924375 0 0,1 508.28,53.34 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_139"/><path d="M 508.28,172.00 A 7.85,3.92 0 0,0 523.98,172.00 L 523.98,53.34 A 7.85,3.924375 0 0,1 508.28,53.34 z" style="fill: url(#LinearGradient_508_53_523_53_ffffffbf_0000007f); stroke: none;"/><ellipse cx="516.1308" cy="53.344" rx="7.8488" ry="3.9244" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_140"/><path d=" M 530.6199,180.0000 L 528.0241,172.0000 L 528.0241,155.0080 L 530.6199,163.0080 L 530.6199,180.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_141"/><path d=" M 528.0241,155.0080 L 530.6199,163.0080 L 543.1610,155.0080 L 540.5652,147.0080 L 528.0241,155.0080 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_142"/><path d=" M 530.6199,180.0000 L 543.1610,172.0000 L 543.1610,155.0080 L 530.6199,163.0080 L 530.6199,180.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_143"/><path d=" M 564.0390,119.6480 L 548.0390,135.6480 L 563.1759,135.6480 L 579.1759,119.6480 L 564.0390,119.6480 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_144"/><path d=" M 563.1759,180.0000 L 548.0390,180.0000 L 548.0390,135.6480 L 563.1759,135.6480 L 563.1759,180.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_145"/><path d=" M 579.1759,119.6480 L 563.1759,135.6480 L 563.1759,180.0000 L 579.1759,164.0000 L 579.1759,119.6480 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_146"/><path d="M 575.22,172.00 A 7.85,3.92 0 0,0 590.92,172.00 L 590.92,171.71 A 7.85,3.924375 0 0,1 575.22,171.71 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_147"/><path d="M 575.22,172.00 A 7.85,3.92 0 0,0 590.92,172.00 L 590.92,171.71 A 7.85,3.924375 0 0,1 575.22,171.71 z" style="fill: url(#LinearGradient_575_171_590_171_ffffffbf_0000007f); stroke: none;"/><ellipse cx="583.0692" cy="171.712" rx="7.8488" ry="3.9244" style="fill: url(#LinearGradient_575_171_590_171_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_148"/><path d="M 594.68,172.00 A 7.85,3.92 0 0,0 610.38,172.00 L 610.38,33.76 A 7.85,3.924375 0 0,1 594.68,33.76 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_149"/><path d="M 594.68,172.00 A 7.85,3.92 0 0,0 610.38,172.00 L 610.38,33.76 A 7.85,3.924375 0 0,1 594.68,33.76 z" style="fill: url(#LinearGradient_594_33_610_33_ffffffbf_0000007f); stroke: none;"/><ellipse cx="602.5308" cy="33.76" rx="7.8488" ry="3.9244" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_150"/><path d=" M 617.0199,180.0000 L 614.4241,172.0000 L 614.4241,139.7440 L 617.0199,147.7440 L 617.0199,180.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_151"/><path d=" M 614.4241,139.7440 L 617.0199,147.7440 L 629.5610,139.7440 L 626.9652,131.7440 L 614.4241,139.7440 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_152"/><path d=" M 617.0199,180.0000 L 629.5610,172.0000 L 629.5610,139.7440 L 617.0199,147.7440 L 617.0199,180.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_153"/><path d=" M 700.0000,162.0000 L 680.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_154"/><path d=" M 680.0000,182.0000 L 140.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_155"/><path d=" M 140.0000,182.0000 L 160.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_156"/><path d=" M 214.0000,0.0000 L 194.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_157"/><path d=" M 194.0000,20.0000 L 194.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_158"/><path d=" M 194.0000,200.0000 L 214.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_159"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 86.7800,3.5000 L 86.7800,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_160"/><text id="ezcGraphTextBox_5_text" x="19" text-length="66.78px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Rectangle</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_161"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Circle</text></g><g id="ezcGraphTextBox_9"><path d=" M 18.5000,55.0000 L 18.5000,39.5000 L 64.5200,39.5000 L 64.5200,55.0000 L 18.5000,55.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_162"/><text id="ezcGraphTextBox_9_text" x="19" text-length="44.52px" y="51.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Bullet</text></g><g id="ezcGraphTextBox_11"><path d=" M 18.5000,73.0000 L 18.5000,57.5000 L 71.9400,57.5000 L 71.9400,73.0000 L 18.5000,73.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_163"/><text id="ezcGraphTextBox_11_text" x="19" text-length="51.94px" y="69.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Diamond</text></g><g id="ezcGraphTextBox_18"><path d=" M 213.8040,195.6000 L 213.8040,183.3000 L 261.0960,183.3000 L 261.0960,195.6000 L 213.8040,195.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_164"/><text id="ezcGraphTextBox_18_text" x="214.304" text-length="45.792px" y="192.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_22"><path d=" M 300.2040,195.6000 L 300.2040,183.3000 L 347.4960,183.3000 L 347.4960,195.6000 L 300.2040,195.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_165"/><text id="ezcGraphTextBox_22_text" x="300.704" text-length="45.792px" y="192.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_26"><path d=" M 386.6040,195.6000 L 386.6040,183.3000 L 433.8960,183.3000 L 433.8960,195.6000 L 386.6040,195.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_166"/><text id="ezcGraphTextBox_26_text" x="387.104" text-length="45.792px" y="192.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_30"><path d=" M 473.0040,195.6000 L 473.0040,183.3000 L 520.2960,183.3000 L 520.2960,195.6000 L 473.0040,195.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_167"/><text id="ezcGraphTextBox_30_text" x="473.504" text-length="45.792px" y="192.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_34"><path d=" M 559.4040,195.6000 L 559.4040,183.3000 L 606.6960,183.3000 L 606.6960,195.6000 L 559.4040,195.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_168"/><text id="ezcGraphTextBox_34_text" x="559.904" text-length="45.792px" y="192.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_38"><path d=" M 184.8754,181.2000 L 184.8754,168.9000 L 193.0714,168.9000 L 193.0714,181.2000 L 184.8754,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_169"/><text id="ezcGraphTextBox_38_text" x="185.3754" text-length="6.696px" y="178.58" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_51"><path d=" M 171.4834,152.4000 L 171.4834,140.1000 L 193.0714,140.1000 L 193.0714,152.4000 L 171.4834,152.4000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_170"/><text id="ezcGraphTextBox_51_text" x="171.9834" text-length="20.088px" y="149.78" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_64"><path d=" M 171.4834,123.6000 L 171.4834,111.3000 L 193.0714,111.3000 L 193.0714,123.6000 L 171.4834,123.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_171"/><text id="ezcGraphTextBox_64_text" x="171.9834" text-length="20.088px" y="120.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_77"><path d=" M 171.4834,94.8000 L 171.4834,82.5000 L 193.0714,82.5000 L 193.0714,94.8000 L 171.4834,94.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_172"/><text id="ezcGraphTextBox_77_text" x="171.9834" text-length="20.088px" y="92.18" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_90"><path d=" M 171.4834,66.0000 L 171.4834,53.7000 L 193.0714,53.7000 L 193.0714,66.0000 L 171.4834,66.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_173"/><text id="ezcGraphTextBox_90_text" x="171.9834" text-length="20.088px" y="63.38" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g><g id="ezcGraphTextBox_103"><path d=" M 171.4834,51.6000 L 171.4834,39.3000 L 193.0714,39.3000 L 193.0714,51.6000 L 171.4834,51.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_174"/><text id="ezcGraphTextBox_103_text" x="171.9834" text-length="20.088px" y="48.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartToOutput.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartToOutput.svg
index 21aab5f..740fe11 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartToOutput.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartToOutput.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_6"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_7"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_14"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_18"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_21"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_22"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_26"/><path d=" M 462.0000,153.3600 L 158.0000,153.3600" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 138.0000,173.0000 L 158.0000,153.0000 L 158.9500,153.0000 L 138.9500,173.0000 L 138.0000,173.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_30"/><path d=" M 138.0000,173.0000 L 158.0000,153.0000 L 158.9500,153.0000 L 138.9500,173.0000 L 138.0000,173.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_31"/><path d=" M 462.0000,143.2800 L 158.0000,144.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 138.0000,164.0000 L 158.0000,144.0000 L 158.9500,144.0000 L 138.9500,164.0000 L 138.0000,164.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_33"/><path d=" M 138.0000,164.0000 L 158.0000,144.0000 L 158.9500,144.0000 L 138.9500,164.0000 L 138.0000,164.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_34"/><path d=" M 462.0000,134.6400 L 158.0000,134.6400" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 138.0000,155.0000 L 158.0000,135.0000 L 158.9500,135.0000 L 138.9500,155.0000 L 138.0000,155.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_36"/><path d=" M 138.0000,155.0000 L 158.0000,135.0000 L 158.9500,135.0000 L 138.9500,155.0000 L 138.0000,155.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_37"/><path d=" M 462.0000,126.0000 L 158.0000,126.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 138.0000,146.0000 L 158.0000,126.0000 L 160.8500,126.0000 L 140.8500,146.0000 L 138.0000,146.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_39"/><path d=" M 138.0000,146.0000 L 158.0000,126.0000 L 160.8500,126.0000 L 140.8500,146.0000 L 138.0000,146.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_40"/><path d=" M 462.0000,117.3600 L 158.0000,117.3600" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 138.0000,137.0000 L 158.0000,117.0000 L 158.9500,117.0000 L 138.9500,137.0000 L 138.0000,137.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 138.0000,137.0000 L 158.0000,117.0000 L 158.9500,117.0000 L 138.9500,137.0000 L 138.0000,137.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 462.0000,107.2800 L 158.0000,108.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 138.0000,128.0000 L 158.0000,108.0000 L 158.9500,108.0000 L 138.9500,128.0000 L 138.0000,128.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 138.0000,128.0000 L 158.0000,108.0000 L 158.9500,108.0000 L 138.9500,128.0000 L 138.0000,128.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 462.0000,98.6400 L 158.0000,98.6400" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 138.0000,119.0000 L 158.0000,99.0000 L 158.9500,99.0000 L 138.9500,119.0000 L 138.0000,119.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 138.0000,119.0000 L 158.0000,99.0000 L 158.9500,99.0000 L 138.9500,119.0000 L 138.0000,119.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 462.0000,90.0000 L 158.0000,90.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 160.8500,90.0000 L 140.8500,110.0000 L 138.0000,110.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_52"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 160.8500,90.0000 L 140.8500,110.0000 L 138.0000,110.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_53"/><path d=" M 462.0000,81.3600 L 158.0000,81.3600" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 138.0000,101.0000 L 158.0000,81.0000 L 158.9500,81.0000 L 138.9500,101.0000 L 138.0000,101.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 138.0000,101.0000 L 158.0000,81.0000 L 158.9500,81.0000 L 138.9500,101.0000 L 138.0000,101.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_57"/><path d=" M 462.0000,71.2800 L 158.0000,72.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 138.0000,92.0000 L 158.0000,72.0000 L 158.9500,72.0000 L 138.9500,92.0000 L 138.0000,92.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 138.0000,92.0000 L 158.0000,72.0000 L 158.9500,72.0000 L 138.9500,92.0000 L 138.0000,92.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_60"/><path d=" M 462.0000,62.6400 L 158.0000,62.6400" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 138.0000,83.0000 L 158.0000,63.0000 L 158.9500,63.0000 L 138.9500,83.0000 L 138.0000,83.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 138.0000,83.0000 L 158.0000,63.0000 L 158.9500,63.0000 L 138.9500,83.0000 L 138.0000,83.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 462.0000,54.0000 L 158.0000,54.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 160.8500,54.0000 L 140.8500,74.0000 L 138.0000,74.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_65"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 160.8500,54.0000 L 140.8500,74.0000 L 138.0000,74.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_66"/><path d=" M 462.0000,45.3600 L 158.0000,45.3600" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 138.0000,65.0000 L 158.0000,45.0000 L 158.9500,45.0000 L 138.9500,65.0000 L 138.0000,65.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 138.0000,65.0000 L 158.0000,45.0000 L 158.9500,45.0000 L 138.9500,65.0000 L 138.0000,65.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_70"/><path d=" M 462.0000,35.2800 L 158.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 138.0000,56.0000 L 158.0000,36.0000 L 158.9500,36.0000 L 138.9500,56.0000 L 138.0000,56.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 138.0000,56.0000 L 158.0000,36.0000 L 158.9500,36.0000 L 138.9500,56.0000 L 138.0000,56.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><path d=" M 462.0000,26.6400 L 158.0000,26.6400" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 138.0000,47.0000 L 158.0000,27.0000 L 158.9500,27.0000 L 138.9500,47.0000 L 138.0000,47.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 138.0000,47.0000 L 158.0000,27.0000 L 158.9500,27.0000 L 138.9500,47.0000 L 138.0000,47.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_79"/><path d=" M 158.0000,77.7600 L 138.0000,97.7600 L 138.0000,97.7600 L 158.0000,77.7600 L 158.0000,77.7600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 158.0000,77.7600 L 138.0000,97.7600 L 138.0000,97.7600 L 158.0000,77.7600 L 158.0000,77.7600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_82"/><path d=" M 158.0000,77.7600 L 138.0000,97.7600 L 214.0000,174.4400 L 234.0000,154.4400 L 158.0000,77.7600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 158.0000,77.7600 L 138.0000,97.7600 L 214.0000,174.4400 L 234.0000,154.4400 L 158.0000,77.7600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_84"/><path d=" M 234.0000,154.4400 L 214.0000,174.4400 L 290.0000,65.3600 L 310.0000,45.3600 L 234.0000,154.4400 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 234.0000,154.4400 L 214.0000,174.4400 L 290.0000,65.3600 L 310.0000,45.3600 L 234.0000,154.4400 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_86"/><path d=" M 310.0000,45.3600 L 290.0000,65.3600 L 366.0000,138.8000 L 386.0000,118.8000 L 310.0000,45.3600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 310.0000,45.3600 L 290.0000,65.3600 L 366.0000,138.8000 L 386.0000,118.8000 L 310.0000,45.3600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_88"/><path d=" M 386.0000,118.8000 L 366.0000,138.8000 L 442.0000,181.6400 L 462.0000,161.6400 L 386.0000,118.8000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 386.0000,118.8000 L 366.0000,138.8000 L 442.0000,181.6400 L 462.0000,161.6400 L 386.0000,118.8000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_90"/><ellipse cx="158" cy="77.76" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_91"/><ellipse cx="234" cy="154.44" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_92"/><ellipse cx="310" cy="45.36" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_93"/><ellipse cx="386" cy="118.8" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_94"/><ellipse cx="462" cy="161.64" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_95"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_96"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_97"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_98"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_99"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_100"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_101"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_102"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_15"><path d=" M 182.9720,199.2000 L 182.9720,183.3000 L 245.5280,183.3000 L 245.5280,199.2000 L 182.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_103"/><text id="ezcGraphTextBox_15_text" x="183.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_19"><path d=" M 258.9720,199.2000 L 258.9720,183.3000 L 321.5280,183.3000 L 321.5280,199.2000 L 258.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_104"/><text id="ezcGraphTextBox_19_text" x="259.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_23"><path d=" M 334.9720,199.2000 L 334.9720,183.3000 L 397.5280,183.3000 L 397.5280,199.2000 L 334.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_105"/><text id="ezcGraphTextBox_23_text" x="335.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_27"><path d=" M 410.9720,199.2000 L 410.9720,183.3000 L 473.5280,183.3000 L 473.5280,199.2000 L 410.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_106"/><text id="ezcGraphTextBox_27_text" x="411.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_28"><path d=" M 126.6720,181.2000 L 126.6720,165.3000 L 137.1000,165.3000 L 137.1000,181.2000 L 126.6720,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_107"/><text id="ezcGraphTextBox_28_text" x="127.172" text-length="8.928px" y="178.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_41"><path d=" M 108.8160,145.2000 L 108.8160,129.3000 L 137.1000,129.3000 L 137.1000,145.2000 L 108.8160,145.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_108"/><text id="ezcGraphTextBox_41_text" x="109.316" text-length="26.784px" y="142.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_54"><path d=" M 108.8160,109.2000 L 108.8160,93.3000 L 137.1000,93.3000 L 137.1000,109.2000 L 108.8160,109.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_109"/><text id="ezcGraphTextBox_54_text" x="109.316" text-length="26.784px" y="106.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_67"><path d=" M 108.8160,73.2000 L 108.8160,57.3000 L 137.1000,57.3000 L 137.1000,73.2000 L 108.8160,73.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_110"/><text id="ezcGraphTextBox_67_text" x="109.316" text-length="26.784px" y="70.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_80"><path d=" M 108.8160,55.2000 L 108.8160,39.3000 L 137.1000,39.3000 L 137.1000,55.2000 L 108.8160,55.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_111"/><text id="ezcGraphTextBox_80_text" x="109.316" text-length="26.784px" y="52.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_6"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_7"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_9"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_10"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_14"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_18"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_21"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_22"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_26"/><path d=" M 462.0000,153.3600 L 158.0000,153.3600" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 138.0000,173.0000 L 158.0000,153.0000 L 158.9500,153.0000 L 138.9500,173.0000 L 138.0000,173.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_30"/><path d=" M 138.0000,173.0000 L 158.0000,153.0000 L 158.9500,153.0000 L 138.9500,173.0000 L 138.0000,173.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_31"/><path d=" M 462.0000,143.2800 L 158.0000,144.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_32"/><path d=" M 138.0000,164.0000 L 158.0000,144.0000 L 158.9500,144.0000 L 138.9500,164.0000 L 138.0000,164.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_33"/><path d=" M 138.0000,164.0000 L 158.0000,144.0000 L 158.9500,144.0000 L 138.9500,164.0000 L 138.0000,164.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_34"/><path d=" M 462.0000,134.6400 L 158.0000,134.6400" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 138.0000,155.0000 L 158.0000,135.0000 L 158.9500,135.0000 L 138.9500,155.0000 L 138.0000,155.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_36"/><path d=" M 138.0000,155.0000 L 158.0000,135.0000 L 158.9500,135.0000 L 138.9500,155.0000 L 138.0000,155.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_37"/><path d=" M 462.0000,126.0000 L 158.0000,126.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 138.0000,146.0000 L 158.0000,126.0000 L 160.8500,126.0000 L 140.8500,146.0000 L 138.0000,146.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_39"/><path d=" M 138.0000,146.0000 L 158.0000,126.0000 L 160.8500,126.0000 L 140.8500,146.0000 L 138.0000,146.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_40"/><path d=" M 462.0000,117.3600 L 158.0000,117.3600" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 138.0000,137.0000 L 158.0000,117.0000 L 158.9500,117.0000 L 138.9500,137.0000 L 138.0000,137.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 138.0000,137.0000 L 158.0000,117.0000 L 158.9500,117.0000 L 138.9500,137.0000 L 138.0000,137.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 462.0000,107.2800 L 158.0000,108.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 138.0000,128.0000 L 158.0000,108.0000 L 158.9500,108.0000 L 138.9500,128.0000 L 138.0000,128.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 138.0000,128.0000 L 158.0000,108.0000 L 158.9500,108.0000 L 138.9500,128.0000 L 138.0000,128.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 462.0000,98.6400 L 158.0000,98.6400" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 138.0000,119.0000 L 158.0000,99.0000 L 158.9500,99.0000 L 138.9500,119.0000 L 138.0000,119.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 138.0000,119.0000 L 158.0000,99.0000 L 158.9500,99.0000 L 138.9500,119.0000 L 138.0000,119.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 462.0000,90.0000 L 158.0000,90.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 160.8500,90.0000 L 140.8500,110.0000 L 138.0000,110.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_52"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 160.8500,90.0000 L 140.8500,110.0000 L 138.0000,110.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_53"/><path d=" M 462.0000,81.3600 L 158.0000,81.3600" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 138.0000,101.0000 L 158.0000,81.0000 L 158.9500,81.0000 L 138.9500,101.0000 L 138.0000,101.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 138.0000,101.0000 L 158.0000,81.0000 L 158.9500,81.0000 L 138.9500,101.0000 L 138.0000,101.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_57"/><path d=" M 462.0000,71.2800 L 158.0000,72.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 138.0000,92.0000 L 158.0000,72.0000 L 158.9500,72.0000 L 138.9500,92.0000 L 138.0000,92.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 138.0000,92.0000 L 158.0000,72.0000 L 158.9500,72.0000 L 138.9500,92.0000 L 138.0000,92.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_60"/><path d=" M 462.0000,62.6400 L 158.0000,62.6400" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 138.0000,83.0000 L 158.0000,63.0000 L 158.9500,63.0000 L 138.9500,83.0000 L 138.0000,83.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 138.0000,83.0000 L 158.0000,63.0000 L 158.9500,63.0000 L 138.9500,83.0000 L 138.0000,83.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 462.0000,54.0000 L 158.0000,54.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 160.8500,54.0000 L 140.8500,74.0000 L 138.0000,74.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_65"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 160.8500,54.0000 L 140.8500,74.0000 L 138.0000,74.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_66"/><path d=" M 462.0000,45.3600 L 158.0000,45.3600" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 138.0000,65.0000 L 158.0000,45.0000 L 158.9500,45.0000 L 138.9500,65.0000 L 138.0000,65.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 138.0000,65.0000 L 158.0000,45.0000 L 158.9500,45.0000 L 138.9500,65.0000 L 138.0000,65.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_70"/><path d=" M 462.0000,35.2800 L 158.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 138.0000,56.0000 L 158.0000,36.0000 L 158.9500,36.0000 L 138.9500,56.0000 L 138.0000,56.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 138.0000,56.0000 L 158.0000,36.0000 L 158.9500,36.0000 L 138.9500,56.0000 L 138.0000,56.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><path d=" M 462.0000,26.6400 L 158.0000,26.6400" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 138.0000,47.0000 L 158.0000,27.0000 L 158.9500,27.0000 L 138.9500,47.0000 L 138.0000,47.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 138.0000,47.0000 L 158.0000,27.0000 L 158.9500,27.0000 L 138.9500,47.0000 L 138.0000,47.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_79"/><path d=" M 158.0000,77.7600 L 138.0000,97.7600 L 138.0000,97.7600 L 158.0000,77.7600 L 158.0000,77.7600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 158.0000,77.7600 L 138.0000,97.7600 L 138.0000,97.7600 L 158.0000,77.7600 L 158.0000,77.7600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_82"/><path d=" M 158.0000,77.7600 L 138.0000,97.7600 L 214.0000,174.4400 L 234.0000,154.4400 L 158.0000,77.7600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 158.0000,77.7600 L 138.0000,97.7600 L 214.0000,174.4400 L 234.0000,154.4400 L 158.0000,77.7600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_84"/><path d=" M 234.0000,154.4400 L 214.0000,174.4400 L 290.0000,65.3600 L 310.0000,45.3600 L 234.0000,154.4400 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 234.0000,154.4400 L 214.0000,174.4400 L 290.0000,65.3600 L 310.0000,45.3600 L 234.0000,154.4400 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_86"/><path d=" M 310.0000,45.3600 L 290.0000,65.3600 L 366.0000,138.8000 L 386.0000,118.8000 L 310.0000,45.3600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 310.0000,45.3600 L 290.0000,65.3600 L 366.0000,138.8000 L 386.0000,118.8000 L 310.0000,45.3600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_88"/><path d=" M 386.0000,118.8000 L 366.0000,138.8000 L 442.0000,181.6400 L 462.0000,161.6400 L 386.0000,118.8000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 386.0000,118.8000 L 366.0000,138.8000 L 442.0000,181.6400 L 462.0000,161.6400 L 386.0000,118.8000 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_90"/><ellipse cx="158" cy="77.76" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_91"/><ellipse cx="234" cy="154.44" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_92"/><ellipse cx="310" cy="45.36" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_93"/><ellipse cx="386" cy="118.8" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_94"/><ellipse cx="462" cy="161.64" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_95"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_96"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_97"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_98"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_99"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_100"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_101"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_102"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_15"><path d=" M 182.9720,199.2000 L 182.9720,183.3000 L 245.5280,183.3000 L 245.5280,199.2000 L 182.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_103"/><text id="ezcGraphTextBox_15_text" x="183.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_19"><path d=" M 258.9720,199.2000 L 258.9720,183.3000 L 321.5280,183.3000 L 321.5280,199.2000 L 258.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_104"/><text id="ezcGraphTextBox_19_text" x="259.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_23"><path d=" M 334.9720,199.2000 L 334.9720,183.3000 L 397.5280,183.3000 L 397.5280,199.2000 L 334.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_105"/><text id="ezcGraphTextBox_23_text" x="335.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_27"><path d=" M 410.9720,199.2000 L 410.9720,183.3000 L 473.5280,183.3000 L 473.5280,199.2000 L 410.9720,199.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_106"/><text id="ezcGraphTextBox_27_text" x="411.472" text-length="61.056px" y="196.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_28"><path d=" M 126.6720,181.2000 L 126.6720,165.3000 L 137.1000,165.3000 L 137.1000,181.2000 L 126.6720,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_107"/><text id="ezcGraphTextBox_28_text" x="127.172" text-length="8.928px" y="178.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_41"><path d=" M 108.8160,145.2000 L 108.8160,129.3000 L 137.1000,129.3000 L 137.1000,145.2000 L 108.8160,145.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_108"/><text id="ezcGraphTextBox_41_text" x="109.316" text-length="26.784px" y="142.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">100</text></g><g id="ezcGraphTextBox_54"><path d=" M 108.8160,109.2000 L 108.8160,93.3000 L 137.1000,93.3000 L 137.1000,109.2000 L 108.8160,109.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_109"/><text id="ezcGraphTextBox_54_text" x="109.316" text-length="26.784px" y="106.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">200</text></g><g id="ezcGraphTextBox_67"><path d=" M 108.8160,73.2000 L 108.8160,57.3000 L 137.1000,57.3000 L 137.1000,73.2000 L 108.8160,73.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_110"/><text id="ezcGraphTextBox_67_text" x="109.316" text-length="26.784px" y="70.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">300</text></g><g id="ezcGraphTextBox_80"><path d=" M 108.8160,55.2000 L 108.8160,39.3000 L 137.1000,39.3000 L 137.1000,55.2000 L 108.8160,55.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_111"/><text id="ezcGraphTextBox_80_text" x="109.316" text-length="26.784px" y="52.04" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">400</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithAxisLabels.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithAxisLabels.svg
index 3400f66..8f36f53 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithAxisLabels.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithAxisLabels.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_18"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_21"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_22"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_26"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_29"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_30"/><path d=" M 462.0000,151.9200 L 158.0000,151.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_34"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_35"/><path d=" M 462.0000,143.2800 L 158.0000,143.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_37"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_38"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_40"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_41"/><path d=" M 462.0000,123.1200 L 158.0000,123.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_50"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_51"/><path d=" M 462.0000,94.3200 L 158.0000,94.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_53"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_54"/><path d=" M 462.0000,85.6800 L 158.0000,85.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_57"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_60"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 462.0000,56.8800 L 158.0000,56.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_67"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_70"/><path d=" M 462.0000,36.7200 L 158.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><path d=" M 462.0000,28.0800 L 158.0000,28.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_79"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_82"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_84"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_86"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_88"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_90"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_92"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_93"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_94"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_98"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_99"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_100"/><ellipse cx="158" cy="117.072" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_101"/><ellipse cx="234" cy="157.968" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_102"/><ellipse cx="310" cy="99.792" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_103"/><ellipse cx="386" cy="138.96" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_104"/><ellipse cx="462" cy="161.808" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_105"/><ellipse cx="148" cy="67.744" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_106"/><ellipse cx="224" cy="127.072" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_107"/><ellipse cx="300" cy="114.784" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_108"/><ellipse cx="376" cy="171.04" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_109"/><ellipse cx="452" cy="54.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_110"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_111"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_115"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_116"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_117"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_118"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_11"><path d=" M 445.5600,161.0000 L 445.5600,145.5000 L 499.0000,145.5000 L 499.0000,161.0000 L 445.5600,161.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_119"/><text id="ezcGraphTextBox_11_text" x="446.06" text-length="51.94px" y="157.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Samples</text></g><g id="ezcGraphTextBox_15"><path d=" M 159.5000,17.0000 L 159.5000,1.5000 L 212.9400,1.5000 L 212.9400,17.0000 L 159.5000,17.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_120"/><text id="ezcGraphTextBox_15_text" x="160" text-length="51.94px" y="13.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Numbers</text></g><g id="ezcGraphTextBox_19"><path d=" M 183.8200,198.8000 L 183.8200,183.3000 L 244.6800,183.3000 L 244.6800,198.8000 L 183.8200,198.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_121"/><text id="ezcGraphTextBox_19_text" x="184.32" text-length="59.36px" y="195.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_23"><path d=" M 259.8200,198.8000 L 259.8200,183.3000 L 320.6800,183.3000 L 320.6800,198.8000 L 259.8200,198.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_122"/><text id="ezcGraphTextBox_23_text" x="260.32" text-length="59.36px" y="195.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_27"><path d=" M 335.8200,198.8000 L 335.8200,183.3000 L 396.6800,183.3000 L 396.6800,198.8000 L 335.8200,198.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_123"/><text id="ezcGraphTextBox_27_text" x="336.32" text-length="59.36px" y="195.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_31"><path d=" M 411.8200,198.8000 L 411.8200,183.3000 L 472.6800,183.3000 L 472.6800,198.8000 L 411.8200,198.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_124"/><text id="ezcGraphTextBox_31_text" x="412.32" text-length="59.36px" y="195.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_32"><path d=" M 126.9200,181.2000 L 126.9200,165.7000 L 137.1000,165.7000 L 137.1000,181.2000 L 126.9200,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_125"/><text id="ezcGraphTextBox_32_text" x="127.42" text-length="8.68px" y="178.1" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_48"><path d=" M 109.5600,133.2000 L 109.5600,117.7000 L 137.1000,117.7000 L 137.1000,133.2000 L 109.5600,133.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_126"/><text id="ezcGraphTextBox_48_text" x="110.06" text-length="26.04px" y="130.1" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_64"><path d=" M 109.5600,85.2000 L 109.5600,69.7000 L 137.1000,69.7000 L 137.1000,85.2000 L 109.5600,85.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_127"/><text id="ezcGraphTextBox_64_text" x="110.06" text-length="26.04px" y="82.1" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_80"><path d=" M 109.5600,54.8000 L 109.5600,39.3000 L 137.1000,39.3000 L 137.1000,54.8000 L 109.5600,54.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_128"/><text id="ezcGraphTextBox_80_text" x="110.06" text-length="26.04px" y="51.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000 L 500.0000,162.0000 L 480.0000,182.0000 L 100.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,162.0000 L 500.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,166.0000 L 500.0000,162.0000 L 492.0000,158.0000 L 492.0000,166.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 214.0000,179.3000 L 234.0000,159.3000 L 234.0000,162.0000 L 214.0000,182.0000 L 214.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_18"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_21"/><path d=" M 290.0000,179.3000 L 310.0000,159.3000 L 310.0000,162.0000 L 290.0000,182.0000 L 290.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_22"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 366.0000,179.3000 L 386.0000,159.3000 L 386.0000,162.0000 L 366.0000,182.0000 L 366.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_26"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_29"/><path d=" M 442.0000,179.3000 L 462.0000,159.3000 L 462.0000,162.0000 L 442.0000,182.0000 L 442.0000,179.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_30"/><path d=" M 462.0000,151.9200 L 158.0000,151.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_34"/><path d=" M 138.0000,172.4000 L 158.0000,152.4000 L 158.9500,152.4000 L 138.9500,172.4000 L 138.0000,172.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_35"/><path d=" M 462.0000,143.2800 L 158.0000,143.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_37"/><path d=" M 138.0000,162.8000 L 158.0000,142.8000 L 158.9500,142.8000 L 138.9500,162.8000 L 138.0000,162.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_38"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_40"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_41"/><path d=" M 462.0000,123.1200 L 158.0000,123.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 138.0000,143.6000 L 158.0000,123.6000 L 158.9500,123.6000 L 138.9500,143.6000 L 138.0000,143.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 138.0000,134.0000 L 158.0000,114.0000 L 160.8500,114.0000 L 140.8500,134.0000 L 138.0000,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_50"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_51"/><path d=" M 462.0000,94.3200 L 158.0000,94.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_53"/><path d=" M 138.0000,114.8000 L 158.0000,94.8000 L 158.9500,94.8000 L 138.9500,114.8000 L 138.0000,114.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_54"/><path d=" M 462.0000,85.6800 L 158.0000,85.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 138.0000,105.2000 L 158.0000,85.2000 L 158.9500,85.2000 L 138.9500,105.2000 L 138.0000,105.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_57"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_60"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 138.0000,86.0000 L 158.0000,66.0000 L 160.8500,66.0000 L 140.8500,86.0000 L 138.0000,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 462.0000,56.8800 L 158.0000,56.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 138.0000,76.4000 L 158.0000,56.4000 L 158.9500,56.4000 L 138.9500,76.4000 L 138.0000,76.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_67"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_70"/><path d=" M 462.0000,36.7200 L 158.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 138.0000,57.2000 L 158.0000,37.2000 L 158.9500,37.2000 L 138.9500,57.2000 L 138.0000,57.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><path d=" M 462.0000,28.0800 L 158.0000,28.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 138.0000,47.6000 L 158.0000,27.6000 L 158.9500,27.6000 L 138.9500,47.6000 L 138.0000,47.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_79"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 148.0000,127.0720 L 158.0000,117.0720 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_82"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 158.0000,117.0720 L 148.0000,127.0720 L 224.0000,167.9680 L 234.0000,157.9680 L 158.0000,117.0720 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_84"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 234.0000,157.9680 L 224.0000,167.9680 L 300.0000,109.7920 L 310.0000,99.7920 L 234.0000,157.9680 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_86"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 310.0000,99.7920 L 300.0000,109.7920 L 376.0000,148.9600 L 386.0000,138.9600 L 310.0000,99.7920 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_88"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 386.0000,138.9600 L 376.0000,148.9600 L 452.0000,171.8080 L 462.0000,161.8080 L 386.0000,138.9600 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_90"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 138.0000,77.7440 L 148.0000,67.7440 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_92"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_93"/><path d=" M 148.0000,67.7440 L 138.0000,77.7440 L 214.0000,137.0720 L 224.0000,127.0720 L 148.0000,67.7440 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_94"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 224.0000,127.0720 L 214.0000,137.0720 L 290.0000,124.7840 L 300.0000,114.7840 L 224.0000,127.0720 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 300.0000,114.7840 L 290.0000,124.7840 L 366.0000,181.0400 L 376.0000,171.0400 L 300.0000,114.7840 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_98"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_99"/><path d=" M 376.0000,171.0400 L 366.0000,181.0400 L 442.0000,64.3040 L 452.0000,54.3040 L 376.0000,171.0400 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_100"/><ellipse cx="158" cy="117.072" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_101"/><ellipse cx="234" cy="157.968" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_102"/><ellipse cx="310" cy="99.792" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_103"/><ellipse cx="386" cy="138.96" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_104"/><ellipse cx="462" cy="161.808" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_105"/><ellipse cx="148" cy="67.744" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_106"/><ellipse cx="224" cy="127.072" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_107"/><ellipse cx="300" cy="114.784" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_108"/><ellipse cx="376" cy="171.04" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_109"/><ellipse cx="452" cy="54.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_110"/><path d=" M 500.0000,162.0000 L 480.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_111"/><path d=" M 480.0000,182.0000 L 100.0000,182.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 100.0000,182.0000 L 120.0000,162.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_115"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_116"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_117"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_118"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_11"><path d=" M 445.5600,161.0000 L 445.5600,145.5000 L 499.0000,145.5000 L 499.0000,161.0000 L 445.5600,161.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_119"/><text id="ezcGraphTextBox_11_text" x="446.06" text-length="51.94px" y="157.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Samples</text></g><g id="ezcGraphTextBox_15"><path d=" M 159.5000,17.0000 L 159.5000,1.5000 L 212.9400,1.5000 L 212.9400,17.0000 L 159.5000,17.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_120"/><text id="ezcGraphTextBox_15_text" x="160" text-length="51.94px" y="13.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Numbers</text></g><g id="ezcGraphTextBox_19"><path d=" M 183.8200,198.8000 L 183.8200,183.3000 L 244.6800,183.3000 L 244.6800,198.8000 L 183.8200,198.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_121"/><text id="ezcGraphTextBox_19_text" x="184.32" text-length="59.36px" y="195.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_23"><path d=" M 259.8200,198.8000 L 259.8200,183.3000 L 320.6800,183.3000 L 320.6800,198.8000 L 259.8200,198.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_122"/><text id="ezcGraphTextBox_23_text" x="260.32" text-length="59.36px" y="195.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_27"><path d=" M 335.8200,198.8000 L 335.8200,183.3000 L 396.6800,183.3000 L 396.6800,198.8000 L 335.8200,198.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_123"/><text id="ezcGraphTextBox_27_text" x="336.32" text-length="59.36px" y="195.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_31"><path d=" M 411.8200,198.8000 L 411.8200,183.3000 L 472.6800,183.3000 L 472.6800,198.8000 L 411.8200,198.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_124"/><text id="ezcGraphTextBox_31_text" x="412.32" text-length="59.36px" y="195.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_32"><path d=" M 126.9200,181.2000 L 126.9200,165.7000 L 137.1000,165.7000 L 137.1000,181.2000 L 126.9200,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_125"/><text id="ezcGraphTextBox_32_text" x="127.42" text-length="8.68px" y="178.1" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_48"><path d=" M 109.5600,133.2000 L 109.5600,117.7000 L 137.1000,117.7000 L 137.1000,133.2000 L 109.5600,133.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_126"/><text id="ezcGraphTextBox_48_text" x="110.06" text-length="26.04px" y="130.1" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_64"><path d=" M 109.5600,85.2000 L 109.5600,69.7000 L 137.1000,69.7000 L 137.1000,85.2000 L 109.5600,85.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_127"/><text id="ezcGraphTextBox_64_text" x="110.06" text-length="26.04px" y="82.1" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_80"><path d=" M 109.5600,54.8000 L 109.5600,39.3000 L 137.1000,39.3000 L 137.1000,54.8000 L 109.5600,54.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_128"/><text id="ezcGraphTextBox_80_text" x="110.06" text-length="26.04px" y="51.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithAxisLabelsReversedAxis.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithAxisLabelsReversedAxis.svg
index d021fff..4a98e25 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithAxisLabelsReversedAxis.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithAxisLabelsReversedAxis.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 480.0000,38.0000 L 500.0000,18.0000 L 120.0000,18.0000 L 100.0000,38.0000 L 480.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 500.0000,18.0000 L 120.0000,18.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 128.0000,14.0000 L 120.0000,18.0000 L 128.0000,22.0000 L 128.0000,14.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 442.0000,20.0000 L 462.0000,0.0000 L 462.0000,180.0000 L 442.0000,200.0000 L 442.0000,20.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 462.0000,0.0000 L 462.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 464.5000,175.0000 L 462.0000,180.0000 L 459.5000,175.0000 L 464.5000,175.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 366.0000,38.0000 L 386.0000,18.0000 L 386.0000,15.3000 L 366.0000,35.3000 L 366.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 366.0000,38.0000 L 386.0000,18.0000 L 386.0000,15.3000 L 366.0000,35.3000 L 366.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_18"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 290.0000,38.0000 L 310.0000,18.0000 L 310.0000,15.3000 L 290.0000,35.3000 L 290.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_21"/><path d=" M 290.0000,38.0000 L 310.0000,18.0000 L 310.0000,15.3000 L 290.0000,35.3000 L 290.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_22"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 214.0000,38.0000 L 234.0000,18.0000 L 234.0000,15.3000 L 214.0000,35.3000 L 214.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 214.0000,38.0000 L 234.0000,18.0000 L 234.0000,15.3000 L 214.0000,35.3000 L 214.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_26"/><path d=" M 158.0000,162.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 158.0000,15.3000 L 138.0000,35.3000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_29"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 158.0000,15.3000 L 138.0000,35.3000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_30"/><path d=" M 462.0000,28.0800 L 158.0000,28.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 442.9500,47.6000 L 462.9500,27.6000 L 462.0000,27.6000 L 442.0000,47.6000 L 442.9500,47.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_34"/><path d=" M 442.9500,47.6000 L 462.9500,27.6000 L 462.0000,27.6000 L 442.0000,47.6000 L 442.9500,47.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_35"/><path d=" M 462.0000,36.7200 L 158.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 442.9500,57.2000 L 462.9500,37.2000 L 462.0000,37.2000 L 442.0000,57.2000 L 442.9500,57.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_37"/><path d=" M 442.9500,57.2000 L 462.9500,37.2000 L 462.0000,37.2000 L 442.0000,57.2000 L 442.9500,57.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_38"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 442.9500,66.8000 L 462.9500,46.8000 L 462.0000,46.8000 L 442.0000,66.8000 L 442.9500,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_40"/><path d=" M 442.9500,66.8000 L 462.9500,46.8000 L 462.0000,46.8000 L 442.0000,66.8000 L 442.9500,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_41"/><path d=" M 462.0000,56.8800 L 158.0000,56.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 442.9500,76.4000 L 462.9500,56.4000 L 462.0000,56.4000 L 442.0000,76.4000 L 442.9500,76.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 442.9500,76.4000 L 462.9500,56.4000 L 462.0000,56.4000 L 442.0000,76.4000 L 442.9500,76.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 444.8500,86.0000 L 464.8500,66.0000 L 462.0000,66.0000 L 442.0000,86.0000 L 444.8500,86.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 444.8500,86.0000 L 464.8500,66.0000 L 462.0000,66.0000 L 442.0000,86.0000 L 444.8500,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 442.9500,95.6000 L 462.9500,75.6000 L 462.0000,75.6000 L 442.0000,95.6000 L 442.9500,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_50"/><path d=" M 442.9500,95.6000 L 462.9500,75.6000 L 462.0000,75.6000 L 442.0000,95.6000 L 442.9500,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_51"/><path d=" M 462.0000,85.6800 L 158.0000,85.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 442.9500,105.2000 L 462.9500,85.2000 L 462.0000,85.2000 L 442.0000,105.2000 L 442.9500,105.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_53"/><path d=" M 442.9500,105.2000 L 462.9500,85.2000 L 462.0000,85.2000 L 442.0000,105.2000 L 442.9500,105.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_54"/><path d=" M 462.0000,94.3200 L 158.0000,94.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 442.9500,114.8000 L 462.9500,94.8000 L 462.0000,94.8000 L 442.0000,114.8000 L 442.9500,114.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 442.9500,114.8000 L 462.9500,94.8000 L 462.0000,94.8000 L 442.0000,114.8000 L 442.9500,114.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_57"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 442.9500,124.4000 L 462.9500,104.4000 L 462.0000,104.4000 L 442.0000,124.4000 L 442.9500,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 442.9500,124.4000 L 462.9500,104.4000 L 462.0000,104.4000 L 442.0000,124.4000 L 442.9500,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_60"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 444.8500,134.0000 L 464.8500,114.0000 L 462.0000,114.0000 L 442.0000,134.0000 L 444.8500,134.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 444.8500,134.0000 L 464.8500,114.0000 L 462.0000,114.0000 L 442.0000,134.0000 L 444.8500,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 462.0000,123.1200 L 158.0000,123.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 442.9500,143.6000 L 462.9500,123.6000 L 462.0000,123.6000 L 442.0000,143.6000 L 442.9500,143.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 442.9500,143.6000 L 462.9500,123.6000 L 462.0000,123.6000 L 442.0000,143.6000 L 442.9500,143.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_67"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 442.9500,153.2000 L 462.9500,133.2000 L 462.0000,133.2000 L 442.0000,153.2000 L 442.9500,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 442.9500,153.2000 L 462.9500,133.2000 L 462.0000,133.2000 L 442.0000,153.2000 L 442.9500,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_70"/><path d=" M 462.0000,143.2800 L 158.0000,143.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 442.9500,162.8000 L 462.9500,142.8000 L 462.0000,142.8000 L 442.0000,162.8000 L 442.9500,162.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 442.9500,162.8000 L 462.9500,142.8000 L 462.0000,142.8000 L 442.0000,162.8000 L 442.9500,162.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><path d=" M 462.0000,151.9200 L 158.0000,151.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 442.9500,172.4000 L 462.9500,152.4000 L 462.0000,152.4000 L 442.0000,172.4000 L 442.9500,172.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 442.9500,172.4000 L 462.9500,152.4000 L 462.0000,152.4000 L 442.0000,172.4000 L 442.9500,172.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 462.0000,162.0000 L 158.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 444.8500,182.0000 L 464.8500,162.0000 L 462.0000,162.0000 L 442.0000,182.0000 L 444.8500,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 444.8500,182.0000 L 464.8500,162.0000 L 462.0000,162.0000 L 442.0000,182.0000 L 444.8500,182.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_79"/><path d=" M 462.0000,62.9280 L 452.0000,72.9280 L 452.0000,72.9280 L 462.0000,62.9280 L 462.0000,62.9280 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 462.0000,62.9280 L 452.0000,72.9280 L 452.0000,72.9280 L 462.0000,62.9280 L 462.0000,62.9280 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_82"/><path d=" M 462.0000,62.9280 L 452.0000,72.9280 L 376.0000,32.0320 L 386.0000,22.0320 L 462.0000,62.9280 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 462.0000,62.9280 L 452.0000,72.9280 L 376.0000,32.0320 L 386.0000,22.0320 L 462.0000,62.9280 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_84"/><path d=" M 386.0000,22.0320 L 376.0000,32.0320 L 300.0000,90.2080 L 310.0000,80.2080 L 386.0000,22.0320 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 386.0000,22.0320 L 376.0000,32.0320 L 300.0000,90.2080 L 310.0000,80.2080 L 386.0000,22.0320 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_86"/><path d=" M 310.0000,80.2080 L 300.0000,90.2080 L 224.0000,51.0400 L 234.0000,41.0400 L 310.0000,80.2080 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 310.0000,80.2080 L 300.0000,90.2080 L 224.0000,51.0400 L 234.0000,41.0400 L 310.0000,80.2080 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_88"/><path d=" M 234.0000,41.0400 L 224.0000,51.0400 L 148.0000,28.1920 L 158.0000,18.1920 L 234.0000,41.0400 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 234.0000,41.0400 L 224.0000,51.0400 L 148.0000,28.1920 L 158.0000,18.1920 L 234.0000,41.0400 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_90"/><path d=" M 452.0000,132.2560 L 442.0000,142.2560 L 442.0000,142.2560 L 452.0000,132.2560 L 452.0000,132.2560 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 452.0000,132.2560 L 442.0000,142.2560 L 442.0000,142.2560 L 452.0000,132.2560 L 452.0000,132.2560 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_92"/><path d=" M 452.0000,132.2560 L 442.0000,142.2560 L 366.0000,82.9280 L 376.0000,72.9280 L 452.0000,132.2560 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_93"/><path d=" M 452.0000,132.2560 L 442.0000,142.2560 L 366.0000,82.9280 L 376.0000,72.9280 L 452.0000,132.2560 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_94"/><path d=" M 376.0000,72.9280 L 366.0000,82.9280 L 290.0000,95.2160 L 300.0000,85.2160 L 376.0000,72.9280 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 376.0000,72.9280 L 366.0000,82.9280 L 290.0000,95.2160 L 300.0000,85.2160 L 376.0000,72.9280 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 300.0000,85.2160 L 290.0000,95.2160 L 214.0000,38.9600 L 224.0000,28.9600 L 300.0000,85.2160 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 300.0000,85.2160 L 290.0000,95.2160 L 214.0000,38.9600 L 224.0000,28.9600 L 300.0000,85.2160 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_98"/><path d=" M 224.0000,28.9600 L 214.0000,38.9600 L 138.0000,155.6960 L 148.0000,145.6960 L 224.0000,28.9600 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_99"/><path d=" M 224.0000,28.9600 L 214.0000,38.9600 L 138.0000,155.6960 L 148.0000,145.6960 L 224.0000,28.9600 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_100"/><ellipse cx="462" cy="62.928" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_101"/><ellipse cx="386" cy="22.032" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_102"/><ellipse cx="310" cy="80.208" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_103"/><ellipse cx="234" cy="41.04" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_104"/><ellipse cx="158" cy="18.192" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_105"/><ellipse cx="452" cy="132.256" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_106"/><ellipse cx="376" cy="72.928" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_107"/><ellipse cx="300" cy="85.216" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_108"/><ellipse cx="224" cy="28.96" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_109"/><ellipse cx="148" cy="145.696" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_110"/><path d=" M 120.0000,18.0000 L 100.0000,38.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_111"/><path d=" M 100.0000,38.0000 L 480.0000,38.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 480.0000,38.0000 L 500.0000,18.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 462.0000,180.0000 L 442.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><path d=" M 442.0000,200.0000 L 442.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_115"/><path d=" M 442.0000,20.0000 L 462.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_116"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_117"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_118"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_11"><path d=" M 119.5000,17.0000 L 119.5000,1.5000 L 172.9400,1.5000 L 172.9400,17.0000 L 119.5000,17.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_119"/><text id="ezcGraphTextBox_11_text" x="120" text-length="51.94px" y="13.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Samples</text></g><g id="ezcGraphTextBox_15"><path d=" M 389.5600,199.0000 L 389.5600,183.5000 L 443.0000,183.5000 L 443.0000,199.0000 L 389.5600,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_120"/><text id="ezcGraphTextBox_15_text" x="390.06" text-length="51.94px" y="195.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Numbers</text></g><g id="ezcGraphTextBox_19"><path d=" M 335.8200,54.8000 L 335.8200,39.3000 L 396.6800,39.3000 L 396.6800,54.8000 L 335.8200,54.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_121"/><text id="ezcGraphTextBox_19_text" x="336.32" text-length="59.36px" y="51.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_23"><path d=" M 259.8200,54.8000 L 259.8200,39.3000 L 320.6800,39.3000 L 320.6800,54.8000 L 259.8200,54.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_122"/><text id="ezcGraphTextBox_23_text" x="260.32" text-length="59.36px" y="51.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_27"><path d=" M 183.8200,54.8000 L 183.8200,39.3000 L 244.6800,39.3000 L 244.6800,54.8000 L 183.8200,54.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_123"/><text id="ezcGraphTextBox_27_text" x="184.32" text-length="59.36px" y="51.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_31"><path d=" M 107.8200,54.8000 L 107.8200,39.3000 L 168.6800,39.3000 L 168.6800,54.8000 L 107.8200,54.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_124"/><text id="ezcGraphTextBox_31_text" x="108.32" text-length="59.36px" y="51.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_32"><path d=" M 430.9200,54.8000 L 430.9200,39.3000 L 441.1000,39.3000 L 441.1000,54.8000 L 430.9200,54.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_125"/><text id="ezcGraphTextBox_32_text" x="431.42" text-length="8.68px" y="51.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_48"><path d=" M 413.5600,102.8000 L 413.5600,87.3000 L 441.1000,87.3000 L 441.1000,102.8000 L 413.5600,102.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_126"/><text id="ezcGraphTextBox_48_text" x="414.06" text-length="26.04px" y="99.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_64"><path d=" M 413.5600,150.8000 L 413.5600,135.3000 L 441.1000,135.3000 L 441.1000,150.8000 L 413.5600,150.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_127"/><text id="ezcGraphTextBox_64_text" x="414.06" text-length="26.04px" y="147.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_80"><path d=" M 413.5600,181.2000 L 413.5600,165.7000 L 441.1000,165.7000 L 441.1000,181.2000 L 413.5600,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_128"/><text id="ezcGraphTextBox_80_text" x="414.06" text-length="26.04px" y="178.1" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 480.0000,38.0000 L 500.0000,18.0000 L 120.0000,18.0000 L 100.0000,38.0000 L 480.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 500.0000,18.0000 L 120.0000,18.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 128.0000,14.0000 L 120.0000,18.0000 L 128.0000,22.0000 L 128.0000,14.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 442.0000,20.0000 L 462.0000,0.0000 L 462.0000,180.0000 L 442.0000,200.0000 L 442.0000,20.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 462.0000,0.0000 L 462.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 464.5000,175.0000 L 462.0000,180.0000 L 459.5000,175.0000 L 464.5000,175.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 386.0000,162.0000 L 386.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 366.0000,38.0000 L 386.0000,18.0000 L 386.0000,15.3000 L 366.0000,35.3000 L 366.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 366.0000,38.0000 L 386.0000,18.0000 L 386.0000,15.3000 L 366.0000,35.3000 L 366.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_18"/><path d=" M 310.0000,162.0000 L 310.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_20"/><path d=" M 290.0000,38.0000 L 310.0000,18.0000 L 310.0000,15.3000 L 290.0000,35.3000 L 290.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_21"/><path d=" M 290.0000,38.0000 L 310.0000,18.0000 L 310.0000,15.3000 L 290.0000,35.3000 L 290.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_22"/><path d=" M 234.0000,162.0000 L 234.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_24"/><path d=" M 214.0000,38.0000 L 234.0000,18.0000 L 234.0000,15.3000 L 214.0000,35.3000 L 214.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_25"/><path d=" M 214.0000,38.0000 L 234.0000,18.0000 L 234.0000,15.3000 L 214.0000,35.3000 L 214.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_26"/><path d=" M 158.0000,162.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_28"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 158.0000,15.3000 L 138.0000,35.3000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_29"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 158.0000,15.3000 L 138.0000,35.3000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_30"/><path d=" M 462.0000,28.0800 L 158.0000,28.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 442.9500,47.6000 L 462.9500,27.6000 L 462.0000,27.6000 L 442.0000,47.6000 L 442.9500,47.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_34"/><path d=" M 442.9500,47.6000 L 462.9500,27.6000 L 462.0000,27.6000 L 442.0000,47.6000 L 442.9500,47.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_35"/><path d=" M 462.0000,36.7200 L 158.0000,36.7200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 442.9500,57.2000 L 462.9500,37.2000 L 462.0000,37.2000 L 442.0000,57.2000 L 442.9500,57.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_37"/><path d=" M 442.9500,57.2000 L 462.9500,37.2000 L 462.0000,37.2000 L 442.0000,57.2000 L 442.9500,57.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_38"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_39"/><path d=" M 442.9500,66.8000 L 462.9500,46.8000 L 462.0000,46.8000 L 442.0000,66.8000 L 442.9500,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_40"/><path d=" M 442.9500,66.8000 L 462.9500,46.8000 L 462.0000,46.8000 L 442.0000,66.8000 L 442.9500,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_41"/><path d=" M 462.0000,56.8800 L 158.0000,56.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 442.9500,76.4000 L 462.9500,56.4000 L 462.0000,56.4000 L 442.0000,76.4000 L 442.9500,76.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 442.9500,76.4000 L 462.9500,56.4000 L 462.0000,56.4000 L 442.0000,76.4000 L 442.9500,76.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 462.0000,65.5200 L 158.0000,65.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 444.8500,86.0000 L 464.8500,66.0000 L 462.0000,66.0000 L 442.0000,86.0000 L 444.8500,86.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 444.8500,86.0000 L 464.8500,66.0000 L 462.0000,66.0000 L 442.0000,86.0000 L 444.8500,86.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 442.9500,95.6000 L 462.9500,75.6000 L 462.0000,75.6000 L 442.0000,95.6000 L 442.9500,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_50"/><path d=" M 442.9500,95.6000 L 462.9500,75.6000 L 462.0000,75.6000 L 442.0000,95.6000 L 442.9500,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_51"/><path d=" M 462.0000,85.6800 L 158.0000,85.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_52"/><path d=" M 442.9500,105.2000 L 462.9500,85.2000 L 462.0000,85.2000 L 442.0000,105.2000 L 442.9500,105.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_53"/><path d=" M 442.9500,105.2000 L 462.9500,85.2000 L 462.0000,85.2000 L 442.0000,105.2000 L 442.9500,105.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_54"/><path d=" M 462.0000,94.3200 L 158.0000,94.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 442.9500,114.8000 L 462.9500,94.8000 L 462.0000,94.8000 L 442.0000,114.8000 L 442.9500,114.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 442.9500,114.8000 L 462.9500,94.8000 L 462.0000,94.8000 L 442.0000,114.8000 L 442.9500,114.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_57"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 442.9500,124.4000 L 462.9500,104.4000 L 462.0000,104.4000 L 442.0000,124.4000 L 442.9500,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 442.9500,124.4000 L 462.9500,104.4000 L 462.0000,104.4000 L 442.0000,124.4000 L 442.9500,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_60"/><path d=" M 462.0000,114.4800 L 158.0000,114.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 444.8500,134.0000 L 464.8500,114.0000 L 462.0000,114.0000 L 442.0000,134.0000 L 444.8500,134.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 444.8500,134.0000 L 464.8500,114.0000 L 462.0000,114.0000 L 442.0000,134.0000 L 444.8500,134.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 462.0000,123.1200 L 158.0000,123.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 442.9500,143.6000 L 462.9500,123.6000 L 462.0000,123.6000 L 442.0000,143.6000 L 442.9500,143.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 442.9500,143.6000 L 462.9500,123.6000 L 462.0000,123.6000 L 442.0000,143.6000 L 442.9500,143.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_67"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 442.9500,153.2000 L 462.9500,133.2000 L 462.0000,133.2000 L 442.0000,153.2000 L 442.9500,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 442.9500,153.2000 L 462.9500,133.2000 L 462.0000,133.2000 L 442.0000,153.2000 L 442.9500,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_70"/><path d=" M 462.0000,143.2800 L 158.0000,143.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 442.9500,162.8000 L 462.9500,142.8000 L 462.0000,142.8000 L 442.0000,162.8000 L 442.9500,162.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 442.9500,162.8000 L 462.9500,142.8000 L 462.0000,142.8000 L 442.0000,162.8000 L 442.9500,162.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><path d=" M 462.0000,151.9200 L 158.0000,151.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 442.9500,172.4000 L 462.9500,152.4000 L 462.0000,152.4000 L 442.0000,172.4000 L 442.9500,172.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 442.9500,172.4000 L 462.9500,152.4000 L 462.0000,152.4000 L 442.0000,172.4000 L 442.9500,172.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 462.0000,162.0000 L 158.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 444.8500,182.0000 L 464.8500,162.0000 L 462.0000,162.0000 L 442.0000,182.0000 L 444.8500,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 444.8500,182.0000 L 464.8500,162.0000 L 462.0000,162.0000 L 442.0000,182.0000 L 444.8500,182.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_79"/><path d=" M 462.0000,62.9280 L 452.0000,72.9280 L 452.0000,72.9280 L 462.0000,62.9280 L 462.0000,62.9280 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 462.0000,62.9280 L 452.0000,72.9280 L 452.0000,72.9280 L 462.0000,62.9280 L 462.0000,62.9280 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_82"/><path d=" M 462.0000,62.9280 L 452.0000,72.9280 L 376.0000,32.0320 L 386.0000,22.0320 L 462.0000,62.9280 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 462.0000,62.9280 L 452.0000,72.9280 L 376.0000,32.0320 L 386.0000,22.0320 L 462.0000,62.9280 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_84"/><path d=" M 386.0000,22.0320 L 376.0000,32.0320 L 300.0000,90.2080 L 310.0000,80.2080 L 386.0000,22.0320 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 386.0000,22.0320 L 376.0000,32.0320 L 300.0000,90.2080 L 310.0000,80.2080 L 386.0000,22.0320 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_86"/><path d=" M 310.0000,80.2080 L 300.0000,90.2080 L 224.0000,51.0400 L 234.0000,41.0400 L 310.0000,80.2080 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 310.0000,80.2080 L 300.0000,90.2080 L 224.0000,51.0400 L 234.0000,41.0400 L 310.0000,80.2080 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_88"/><path d=" M 234.0000,41.0400 L 224.0000,51.0400 L 148.0000,28.1920 L 158.0000,18.1920 L 234.0000,41.0400 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 234.0000,41.0400 L 224.0000,51.0400 L 148.0000,28.1920 L 158.0000,18.1920 L 234.0000,41.0400 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_90"/><path d=" M 452.0000,132.2560 L 442.0000,142.2560 L 442.0000,142.2560 L 452.0000,132.2560 L 452.0000,132.2560 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 452.0000,132.2560 L 442.0000,142.2560 L 442.0000,142.2560 L 452.0000,132.2560 L 452.0000,132.2560 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_92"/><path d=" M 452.0000,132.2560 L 442.0000,142.2560 L 366.0000,82.9280 L 376.0000,72.9280 L 452.0000,132.2560 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_93"/><path d=" M 452.0000,132.2560 L 442.0000,142.2560 L 366.0000,82.9280 L 376.0000,72.9280 L 452.0000,132.2560 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_94"/><path d=" M 376.0000,72.9280 L 366.0000,82.9280 L 290.0000,95.2160 L 300.0000,85.2160 L 376.0000,72.9280 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 376.0000,72.9280 L 366.0000,82.9280 L 290.0000,95.2160 L 300.0000,85.2160 L 376.0000,72.9280 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 300.0000,85.2160 L 290.0000,95.2160 L 214.0000,38.9600 L 224.0000,28.9600 L 300.0000,85.2160 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 300.0000,85.2160 L 290.0000,95.2160 L 214.0000,38.9600 L 224.0000,28.9600 L 300.0000,85.2160 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_98"/><path d=" M 224.0000,28.9600 L 214.0000,38.9600 L 138.0000,155.6960 L 148.0000,145.6960 L 224.0000,28.9600 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_99"/><path d=" M 224.0000,28.9600 L 214.0000,38.9600 L 138.0000,155.6960 L 148.0000,145.6960 L 224.0000,28.9600 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_100"/><ellipse cx="462" cy="62.928" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_101"/><ellipse cx="386" cy="22.032" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_102"/><ellipse cx="310" cy="80.208" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_103"/><ellipse cx="234" cy="41.04" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_104"/><ellipse cx="158" cy="18.192" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_105"/><ellipse cx="452" cy="132.256" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_106"/><ellipse cx="376" cy="72.928" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_107"/><ellipse cx="300" cy="85.216" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_108"/><ellipse cx="224" cy="28.96" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_109"/><ellipse cx="148" cy="145.696" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_110"/><path d=" M 120.0000,18.0000 L 100.0000,38.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_111"/><path d=" M 100.0000,38.0000 L 480.0000,38.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 480.0000,38.0000 L 500.0000,18.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 462.0000,180.0000 L 442.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><path d=" M 442.0000,200.0000 L 442.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_115"/><path d=" M 442.0000,20.0000 L 462.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_116"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_117"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_118"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_11"><path d=" M 119.5000,17.0000 L 119.5000,1.5000 L 172.9400,1.5000 L 172.9400,17.0000 L 119.5000,17.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_119"/><text id="ezcGraphTextBox_11_text" x="120" text-length="51.94px" y="13.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Samples</text></g><g id="ezcGraphTextBox_15"><path d=" M 389.5600,199.0000 L 389.5600,183.5000 L 443.0000,183.5000 L 443.0000,199.0000 L 389.5600,199.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_120"/><text id="ezcGraphTextBox_15_text" x="390.06" text-length="51.94px" y="195.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Numbers</text></g><g id="ezcGraphTextBox_19"><path d=" M 335.8200,54.8000 L 335.8200,39.3000 L 396.6800,39.3000 L 396.6800,54.8000 L 335.8200,54.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_121"/><text id="ezcGraphTextBox_19_text" x="336.32" text-length="59.36px" y="51.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_23"><path d=" M 259.8200,54.8000 L 259.8200,39.3000 L 320.6800,39.3000 L 320.6800,54.8000 L 259.8200,54.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_122"/><text id="ezcGraphTextBox_23_text" x="260.32" text-length="59.36px" y="51.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_27"><path d=" M 183.8200,54.8000 L 183.8200,39.3000 L 244.6800,39.3000 L 244.6800,54.8000 L 183.8200,54.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_123"/><text id="ezcGraphTextBox_27_text" x="184.32" text-length="59.36px" y="51.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_31"><path d=" M 107.8200,54.8000 L 107.8200,39.3000 L 168.6800,39.3000 L 168.6800,54.8000 L 107.8200,54.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_124"/><text id="ezcGraphTextBox_31_text" x="108.32" text-length="59.36px" y="51.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_32"><path d=" M 430.9200,54.8000 L 430.9200,39.3000 L 441.1000,39.3000 L 441.1000,54.8000 L 430.9200,54.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_125"/><text id="ezcGraphTextBox_32_text" x="431.42" text-length="8.68px" y="51.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_48"><path d=" M 413.5600,102.8000 L 413.5600,87.3000 L 441.1000,87.3000 L 441.1000,102.8000 L 413.5600,102.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_126"/><text id="ezcGraphTextBox_48_text" x="414.06" text-length="26.04px" y="99.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_64"><path d=" M 413.5600,150.8000 L 413.5600,135.3000 L 441.1000,135.3000 L 441.1000,150.8000 L 413.5600,150.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_127"/><text id="ezcGraphTextBox_64_text" x="414.06" text-length="26.04px" y="147.7" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_80"><path d=" M 413.5600,181.2000 L 413.5600,165.7000 L 441.1000,165.7000 L 441.1000,181.2000 L 413.5600,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_128"/><text id="ezcGraphTextBox_80_text" x="414.06" text-length="26.04px" y="178.1" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithDifferentAxisSpace.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithDifferentAxisSpace.svg
index 28520a6..bdcfbde 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithDifferentAxisSpace.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithDifferentAxisSpace.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,164.0000 L 120.0000,144.0000 L 500.0000,144.0000 L 480.0000,164.0000 L 100.0000,164.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,144.0000 L 500.0000,144.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,148.0000 L 500.0000,144.0000 L 492.0000,140.0000 L 492.0000,148.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 119.0000,200.0000 L 139.0000,180.0000 L 139.0000,0.0000 L 119.0000,20.0000 L 119.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 139.0000,180.0000 L 139.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 138.0000,2.0000 L 139.0000,0.0000 L 140.0000,2.0000 L 138.0000,2.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 224.5000,144.0000 L 224.5000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 204.5000,161.3000 L 224.5000,141.3000 L 224.5000,144.0000 L 204.5000,164.0000 L 204.5000,161.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 204.5000,161.3000 L 224.5000,141.3000 L 224.5000,144.0000 L 204.5000,164.0000 L 204.5000,161.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_16"/><path d=" M 310.0000,144.0000 L 310.0000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 290.0000,161.3000 L 310.0000,141.3000 L 310.0000,144.0000 L 290.0000,164.0000 L 290.0000,161.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_19"/><path d=" M 290.0000,161.3000 L 310.0000,141.3000 L 310.0000,144.0000 L 290.0000,164.0000 L 290.0000,161.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_20"/><path d=" M 395.5000,144.0000 L 395.5000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 375.5000,161.3000 L 395.5000,141.3000 L 395.5000,144.0000 L 375.5000,164.0000 L 375.5000,161.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_23"/><path d=" M 375.5000,161.3000 L 395.5000,141.3000 L 395.5000,144.0000 L 375.5000,164.0000 L 375.5000,161.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 481.0000,144.0000 L 481.0000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 461.0000,161.3000 L 481.0000,141.3000 L 481.0000,144.0000 L 461.0000,164.0000 L 461.0000,161.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 461.0000,161.3000 L 481.0000,141.3000 L 481.0000,144.0000 L 461.0000,164.0000 L 461.0000,161.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 481.0000,136.9800 L 139.0000,136.9800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 119.0000,156.8000 L 139.0000,136.8000 L 139.9500,136.8000 L 119.9500,156.8000 L 119.0000,156.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 119.0000,156.8000 L 139.0000,136.8000 L 139.9500,136.8000 L 119.9500,156.8000 L 119.0000,156.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 481.0000,128.8800 L 139.0000,128.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 119.0000,149.6000 L 139.0000,129.6000 L 139.9500,129.6000 L 119.9500,149.6000 L 119.0000,149.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 119.0000,149.6000 L 139.0000,129.6000 L 139.9500,129.6000 L 119.9500,149.6000 L 119.0000,149.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 481.0000,122.4000 L 139.0000,122.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 119.0000,142.4000 L 139.0000,122.4000 L 139.9500,122.4000 L 119.9500,142.4000 L 119.0000,142.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 119.0000,142.4000 L 139.0000,122.4000 L 139.9500,122.4000 L 119.9500,142.4000 L 119.0000,142.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 481.0000,115.9200 L 139.0000,115.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 119.0000,135.2000 L 139.0000,115.2000 L 139.9500,115.2000 L 119.9500,135.2000 L 119.0000,135.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 119.0000,135.2000 L 139.0000,115.2000 L 139.9500,115.2000 L 119.9500,135.2000 L 119.0000,135.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 481.0000,107.8200 L 139.0000,107.8200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 119.0000,128.0000 L 139.0000,108.0000 L 141.8500,108.0000 L 121.8500,128.0000 L 119.0000,128.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 119.0000,128.0000 L 139.0000,108.0000 L 141.8500,108.0000 L 121.8500,128.0000 L 119.0000,128.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 481.0000,101.3400 L 139.0000,101.3400" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 119.0000,120.8000 L 139.0000,100.8000 L 139.9500,100.8000 L 119.9500,120.8000 L 119.0000,120.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 119.0000,120.8000 L 139.0000,100.8000 L 139.9500,100.8000 L 119.9500,120.8000 L 119.0000,120.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_49"/><path d=" M 481.0000,93.2400 L 139.0000,93.2400" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 119.0000,113.6000 L 139.0000,93.6000 L 139.9500,93.6000 L 119.9500,113.6000 L 119.0000,113.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 119.0000,113.6000 L 139.0000,93.6000 L 139.9500,93.6000 L 119.9500,113.6000 L 119.0000,113.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 481.0000,86.7600 L 139.0000,86.7600" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 119.0000,106.4000 L 139.0000,86.4000 L 139.9500,86.4000 L 119.9500,106.4000 L 119.0000,106.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 119.0000,106.4000 L 139.0000,86.4000 L 139.9500,86.4000 L 119.9500,106.4000 L 119.0000,106.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 481.0000,78.6600 L 139.0000,78.6600" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 119.0000,99.2000 L 139.0000,79.2000 L 139.9500,79.2000 L 119.9500,99.2000 L 119.0000,99.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 119.0000,99.2000 L 139.0000,79.2000 L 139.9500,79.2000 L 119.9500,99.2000 L 119.0000,99.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 481.0000,72.1800 L 139.0000,72.1800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 119.0000,92.0000 L 139.0000,72.0000 L 141.8500,72.0000 L 121.8500,92.0000 L 119.0000,92.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 119.0000,92.0000 L 139.0000,72.0000 L 141.8500,72.0000 L 121.8500,92.0000 L 119.0000,92.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 481.0000,64.0800 L 139.0000,64.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 119.0000,84.8000 L 139.0000,64.8000 L 139.9500,64.8000 L 119.9500,84.8000 L 119.0000,84.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 119.0000,84.8000 L 139.0000,64.8000 L 139.9500,64.8000 L 119.9500,84.8000 L 119.0000,84.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_65"/><path d=" M 481.0000,57.6000 L 139.0000,57.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 119.0000,77.6000 L 139.0000,57.6000 L 139.9500,57.6000 L 119.9500,77.6000 L 119.0000,77.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 119.0000,77.6000 L 139.0000,57.6000 L 139.9500,57.6000 L 119.9500,77.6000 L 119.0000,77.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 481.0000,51.1200 L 139.0000,51.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 119.0000,70.4000 L 139.0000,50.4000 L 139.9500,50.4000 L 119.9500,70.4000 L 119.0000,70.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 119.0000,70.4000 L 139.0000,50.4000 L 139.9500,50.4000 L 119.9500,70.4000 L 119.0000,70.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 481.0000,43.0200 L 139.0000,43.0200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 119.0000,63.2000 L 139.0000,43.2000 L 139.9500,43.2000 L 119.9500,63.2000 L 119.0000,63.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 119.0000,63.2000 L 139.0000,43.2000 L 139.9500,43.2000 L 119.9500,63.2000 L 119.0000,63.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 481.0000,36.5400 L 139.0000,36.5400" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 119.0000,56.0000 L 139.0000,36.0000 L 141.8500,36.0000 L 121.8500,56.0000 L 119.0000,56.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 119.0000,56.0000 L 139.0000,36.0000 L 141.8500,36.0000 L 121.8500,56.0000 L 119.0000,56.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 139.0000,110.3040 L 129.0000,120.3040 L 129.0000,120.3040 L 139.0000,110.3040 L 139.0000,110.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 139.0000,110.3040 L 129.0000,120.3040 L 129.0000,120.3040 L 139.0000,110.3040 L 139.0000,110.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 139.0000,110.3040 L 129.0000,120.3040 L 214.5000,150.9760 L 224.5000,140.9760 L 139.0000,110.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 139.0000,110.3040 L 129.0000,120.3040 L 214.5000,150.9760 L 224.5000,140.9760 L 139.0000,110.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_82"/><path d=" M 224.5000,140.9760 L 214.5000,150.9760 L 300.0000,107.3440 L 310.0000,97.3440 L 224.5000,140.9760 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 224.5000,140.9760 L 214.5000,150.9760 L 300.0000,107.3440 L 310.0000,97.3440 L 224.5000,140.9760 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_84"/><path d=" M 310.0000,97.3440 L 300.0000,107.3440 L 385.5000,136.7200 L 395.5000,126.7200 L 310.0000,97.3440 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 310.0000,97.3440 L 300.0000,107.3440 L 385.5000,136.7200 L 395.5000,126.7200 L 310.0000,97.3440 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_86"/><path d=" M 395.5000,126.7200 L 385.5000,136.7200 L 471.0000,153.8560 L 481.0000,143.8560 L 395.5000,126.7200 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 395.5000,126.7200 L 385.5000,136.7200 L 471.0000,153.8560 L 481.0000,143.8560 L 395.5000,126.7200 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_88"/><path d=" M 129.0000,75.8080 L 119.0000,85.8080 L 119.0000,85.8080 L 129.0000,75.8080 L 129.0000,75.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 129.0000,75.8080 L 119.0000,85.8080 L 119.0000,85.8080 L 129.0000,75.8080 L 129.0000,75.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_90"/><path d=" M 129.0000,75.8080 L 119.0000,85.8080 L 204.5000,130.3040 L 214.5000,120.3040 L 129.0000,75.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 129.0000,75.8080 L 119.0000,85.8080 L 204.5000,130.3040 L 214.5000,120.3040 L 129.0000,75.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_92"/><path d=" M 214.5000,120.3040 L 204.5000,130.3040 L 290.0000,121.0880 L 300.0000,111.0880 L 214.5000,120.3040 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_93"/><path d=" M 214.5000,120.3040 L 204.5000,130.3040 L 290.0000,121.0880 L 300.0000,111.0880 L 214.5000,120.3040 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_94"/><path d=" M 300.0000,111.0880 L 290.0000,121.0880 L 375.5000,163.2800 L 385.5000,153.2800 L 300.0000,111.0880 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 300.0000,111.0880 L 290.0000,121.0880 L 375.5000,163.2800 L 385.5000,153.2800 L 300.0000,111.0880 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 385.5000,153.2800 L 375.5000,163.2800 L 461.0000,75.7280 L 471.0000,65.7280 L 385.5000,153.2800 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 385.5000,153.2800 L 375.5000,163.2800 L 461.0000,75.7280 L 471.0000,65.7280 L 385.5000,153.2800 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_98"/><ellipse cx="139" cy="110.304" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_99"/><ellipse cx="224.5" cy="140.976" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_100"/><ellipse cx="310" cy="97.344" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_101"/><ellipse cx="395.5" cy="126.72" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_102"/><ellipse cx="481" cy="143.856" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_103"/><ellipse cx="129" cy="75.808" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_104"/><ellipse cx="214.5" cy="120.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_105"/><ellipse cx="300" cy="111.088" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_106"/><ellipse cx="385.5" cy="153.28" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_107"/><ellipse cx="471" cy="65.728" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_108"/><path d=" M 500.0000,144.0000 L 480.0000,164.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_109"/><path d=" M 480.0000,164.0000 L 100.0000,164.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_110"/><path d=" M 100.0000,164.0000 L 120.0000,144.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_111"/><path d=" M 139.0000,0.0000 L 119.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 119.0000,20.0000 L 119.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 119.0000,200.0000 L 139.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_115"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_116"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_17"><path d=" M 187.0400,174.8000 L 187.0400,165.3000 L 222.4600,165.3000 L 222.4600,174.8000 L 187.0400,174.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_117"/><text id="ezcGraphTextBox_17_text" x="187.54" text-length="33.92px" y="172.6" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_21"><path d=" M 272.5400,174.8000 L 272.5400,165.3000 L 307.9600,165.3000 L 307.9600,174.8000 L 272.5400,174.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_118"/><text id="ezcGraphTextBox_21_text" x="273.04" text-length="33.92px" y="172.6" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_25"><path d=" M 358.0400,174.8000 L 358.0400,165.3000 L 393.4600,165.3000 L 393.4600,174.8000 L 358.0400,174.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_119"/><text id="ezcGraphTextBox_25_text" x="358.54" text-length="33.92px" y="172.6" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_29"><path d=" M 443.5400,174.8000 L 443.5400,165.3000 L 478.9600,165.3000 L 478.9600,174.8000 L 443.5400,174.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_120"/><text id="ezcGraphTextBox_29_text" x="444.04" text-length="33.92px" y="172.6" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_30"><path d=" M 111.6400,163.2000 L 111.6400,153.7000 L 118.1000,153.7000 L 118.1000,163.2000 L 111.6400,163.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_121"/><text id="ezcGraphTextBox_30_text" x="112.14" text-length="4.96px" y="161" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_46"><path d=" M 101.7200,127.2000 L 101.7200,117.7000 L 118.1000,117.7000 L 118.1000,127.2000 L 101.7200,127.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_122"/><text id="ezcGraphTextBox_46_text" x="102.22" text-length="14.88px" y="125" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_62"><path d=" M 101.7200,91.2000 L 101.7200,81.7000 L 118.1000,81.7000 L 118.1000,91.2000 L 101.7200,91.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_123"/><text id="ezcGraphTextBox_62_text" x="102.22" text-length="14.88px" y="89" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_78"><path d=" M 101.7200,66.8000 L 101.7200,57.3000 L 118.1000,57.3000 L 118.1000,66.8000 L 101.7200,66.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_124"/><text id="ezcGraphTextBox_78_text" x="102.22" text-length="14.88px" y="64.6" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs/><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_6"/><path d=" M 100.0000,164.0000 L 120.0000,144.0000 L 500.0000,144.0000 L 480.0000,164.0000 L 100.0000,164.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_8"/><path d=" M 120.0000,144.0000 L 500.0000,144.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_9"/><path d=" M 492.0000,148.0000 L 500.0000,144.0000 L 492.0000,140.0000 L 492.0000,148.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 119.0000,200.0000 L 139.0000,180.0000 L 139.0000,0.0000 L 119.0000,20.0000 L 119.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_11"/><path d=" M 139.0000,180.0000 L 139.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_12"/><path d=" M 138.0000,2.0000 L 139.0000,0.0000 L 140.0000,2.0000 L 138.0000,2.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 224.5000,144.0000 L 224.5000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 204.5000,161.3000 L 224.5000,141.3000 L 224.5000,144.0000 L 204.5000,164.0000 L 204.5000,161.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 204.5000,161.3000 L 224.5000,141.3000 L 224.5000,144.0000 L 204.5000,164.0000 L 204.5000,161.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_16"/><path d=" M 310.0000,144.0000 L 310.0000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_18"/><path d=" M 290.0000,161.3000 L 310.0000,141.3000 L 310.0000,144.0000 L 290.0000,164.0000 L 290.0000,161.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_19"/><path d=" M 290.0000,161.3000 L 310.0000,141.3000 L 310.0000,144.0000 L 290.0000,164.0000 L 290.0000,161.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_20"/><path d=" M 395.5000,144.0000 L 395.5000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 375.5000,161.3000 L 395.5000,141.3000 L 395.5000,144.0000 L 375.5000,164.0000 L 375.5000,161.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_23"/><path d=" M 375.5000,161.3000 L 395.5000,141.3000 L 395.5000,144.0000 L 375.5000,164.0000 L 375.5000,161.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 481.0000,144.0000 L 481.0000,36.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 461.0000,161.3000 L 481.0000,141.3000 L 481.0000,144.0000 L 461.0000,164.0000 L 461.0000,161.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 461.0000,161.3000 L 481.0000,141.3000 L 481.0000,144.0000 L 461.0000,164.0000 L 461.0000,161.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 481.0000,136.9800 L 139.0000,136.9800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 119.0000,156.8000 L 139.0000,136.8000 L 139.9500,136.8000 L 119.9500,156.8000 L 119.0000,156.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 119.0000,156.8000 L 139.0000,136.8000 L 139.9500,136.8000 L 119.9500,156.8000 L 119.0000,156.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 481.0000,128.8800 L 139.0000,128.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_34"/><path d=" M 119.0000,149.6000 L 139.0000,129.6000 L 139.9500,129.6000 L 119.9500,149.6000 L 119.0000,149.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_35"/><path d=" M 119.0000,149.6000 L 139.0000,129.6000 L 139.9500,129.6000 L 119.9500,149.6000 L 119.0000,149.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_36"/><path d=" M 481.0000,122.4000 L 139.0000,122.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 119.0000,142.4000 L 139.0000,122.4000 L 139.9500,122.4000 L 119.9500,142.4000 L 119.0000,142.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 119.0000,142.4000 L 139.0000,122.4000 L 139.9500,122.4000 L 119.9500,142.4000 L 119.0000,142.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 481.0000,115.9200 L 139.0000,115.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 119.0000,135.2000 L 139.0000,115.2000 L 139.9500,115.2000 L 119.9500,135.2000 L 119.0000,135.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 119.0000,135.2000 L 139.0000,115.2000 L 139.9500,115.2000 L 119.9500,135.2000 L 119.0000,135.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 481.0000,107.8200 L 139.0000,107.8200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 119.0000,128.0000 L 139.0000,108.0000 L 141.8500,108.0000 L 121.8500,128.0000 L 119.0000,128.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 119.0000,128.0000 L 139.0000,108.0000 L 141.8500,108.0000 L 121.8500,128.0000 L 119.0000,128.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 481.0000,101.3400 L 139.0000,101.3400" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_47"/><path d=" M 119.0000,120.8000 L 139.0000,100.8000 L 139.9500,100.8000 L 119.9500,120.8000 L 119.0000,120.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_48"/><path d=" M 119.0000,120.8000 L 139.0000,100.8000 L 139.9500,100.8000 L 119.9500,120.8000 L 119.0000,120.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_49"/><path d=" M 481.0000,93.2400 L 139.0000,93.2400" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 119.0000,113.6000 L 139.0000,93.6000 L 139.9500,93.6000 L 119.9500,113.6000 L 119.0000,113.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 119.0000,113.6000 L 139.0000,93.6000 L 139.9500,93.6000 L 119.9500,113.6000 L 119.0000,113.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 481.0000,86.7600 L 139.0000,86.7600" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 119.0000,106.4000 L 139.0000,86.4000 L 139.9500,86.4000 L 119.9500,106.4000 L 119.0000,106.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 119.0000,106.4000 L 139.0000,86.4000 L 139.9500,86.4000 L 119.9500,106.4000 L 119.0000,106.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 481.0000,78.6600 L 139.0000,78.6600" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 119.0000,99.2000 L 139.0000,79.2000 L 139.9500,79.2000 L 119.9500,99.2000 L 119.0000,99.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 119.0000,99.2000 L 139.0000,79.2000 L 139.9500,79.2000 L 119.9500,99.2000 L 119.0000,99.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 481.0000,72.1800 L 139.0000,72.1800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 119.0000,92.0000 L 139.0000,72.0000 L 141.8500,72.0000 L 121.8500,92.0000 L 119.0000,92.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 119.0000,92.0000 L 139.0000,72.0000 L 141.8500,72.0000 L 121.8500,92.0000 L 119.0000,92.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 481.0000,64.0800 L 139.0000,64.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_63"/><path d=" M 119.0000,84.8000 L 139.0000,64.8000 L 139.9500,64.8000 L 119.9500,84.8000 L 119.0000,84.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_64"/><path d=" M 119.0000,84.8000 L 139.0000,64.8000 L 139.9500,64.8000 L 119.9500,84.8000 L 119.0000,84.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_65"/><path d=" M 481.0000,57.6000 L 139.0000,57.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 119.0000,77.6000 L 139.0000,57.6000 L 139.9500,57.6000 L 119.9500,77.6000 L 119.0000,77.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 119.0000,77.6000 L 139.0000,57.6000 L 139.9500,57.6000 L 119.9500,77.6000 L 119.0000,77.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 481.0000,51.1200 L 139.0000,51.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 119.0000,70.4000 L 139.0000,50.4000 L 139.9500,50.4000 L 119.9500,70.4000 L 119.0000,70.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 119.0000,70.4000 L 139.0000,50.4000 L 139.9500,50.4000 L 119.9500,70.4000 L 119.0000,70.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 481.0000,43.0200 L 139.0000,43.0200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 119.0000,63.2000 L 139.0000,43.2000 L 139.9500,43.2000 L 119.9500,63.2000 L 119.0000,63.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 119.0000,63.2000 L 139.0000,43.2000 L 139.9500,43.2000 L 119.9500,63.2000 L 119.0000,63.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 481.0000,36.5400 L 139.0000,36.5400" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 119.0000,56.0000 L 139.0000,36.0000 L 141.8500,36.0000 L 121.8500,56.0000 L 119.0000,56.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 119.0000,56.0000 L 139.0000,36.0000 L 141.8500,36.0000 L 121.8500,56.0000 L 119.0000,56.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 139.0000,110.3040 L 129.0000,120.3040 L 129.0000,120.3040 L 139.0000,110.3040 L 139.0000,110.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 139.0000,110.3040 L 129.0000,120.3040 L 129.0000,120.3040 L 139.0000,110.3040 L 139.0000,110.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 139.0000,110.3040 L 129.0000,120.3040 L 214.5000,150.9760 L 224.5000,140.9760 L 139.0000,110.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_81"/><path d=" M 139.0000,110.3040 L 129.0000,120.3040 L 214.5000,150.9760 L 224.5000,140.9760 L 139.0000,110.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_82"/><path d=" M 224.5000,140.9760 L 214.5000,150.9760 L 300.0000,107.3440 L 310.0000,97.3440 L 224.5000,140.9760 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 224.5000,140.9760 L 214.5000,150.9760 L 300.0000,107.3440 L 310.0000,97.3440 L 224.5000,140.9760 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_84"/><path d=" M 310.0000,97.3440 L 300.0000,107.3440 L 385.5000,136.7200 L 395.5000,126.7200 L 310.0000,97.3440 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 310.0000,97.3440 L 300.0000,107.3440 L 385.5000,136.7200 L 395.5000,126.7200 L 310.0000,97.3440 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_86"/><path d=" M 395.5000,126.7200 L 385.5000,136.7200 L 471.0000,153.8560 L 481.0000,143.8560 L 395.5000,126.7200 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_87"/><path d=" M 395.5000,126.7200 L 385.5000,136.7200 L 471.0000,153.8560 L 481.0000,143.8560 L 395.5000,126.7200 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_88"/><path d=" M 129.0000,75.8080 L 119.0000,85.8080 L 119.0000,85.8080 L 129.0000,75.8080 L 129.0000,75.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 129.0000,75.8080 L 119.0000,85.8080 L 119.0000,85.8080 L 129.0000,75.8080 L 129.0000,75.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_90"/><path d=" M 129.0000,75.8080 L 119.0000,85.8080 L 204.5000,130.3040 L 214.5000,120.3040 L 129.0000,75.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 129.0000,75.8080 L 119.0000,85.8080 L 204.5000,130.3040 L 214.5000,120.3040 L 129.0000,75.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_92"/><path d=" M 214.5000,120.3040 L 204.5000,130.3040 L 290.0000,121.0880 L 300.0000,111.0880 L 214.5000,120.3040 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_93"/><path d=" M 214.5000,120.3040 L 204.5000,130.3040 L 290.0000,121.0880 L 300.0000,111.0880 L 214.5000,120.3040 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_94"/><path d=" M 300.0000,111.0880 L 290.0000,121.0880 L 375.5000,163.2800 L 385.5000,153.2800 L 300.0000,111.0880 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 300.0000,111.0880 L 290.0000,121.0880 L 375.5000,163.2800 L 385.5000,153.2800 L 300.0000,111.0880 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 385.5000,153.2800 L 375.5000,163.2800 L 461.0000,75.7280 L 471.0000,65.7280 L 385.5000,153.2800 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 385.5000,153.2800 L 375.5000,163.2800 L 461.0000,75.7280 L 471.0000,65.7280 L 385.5000,153.2800 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_98"/><ellipse cx="139" cy="110.304" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_99"/><ellipse cx="224.5" cy="140.976" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_100"/><ellipse cx="310" cy="97.344" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_101"/><ellipse cx="395.5" cy="126.72" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_102"/><ellipse cx="481" cy="143.856" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_103"/><ellipse cx="129" cy="75.808" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_104"/><ellipse cx="214.5" cy="120.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_105"/><ellipse cx="300" cy="111.088" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_106"/><ellipse cx="385.5" cy="153.28" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_107"/><ellipse cx="471" cy="65.728" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_108"/><path d=" M 500.0000,144.0000 L 480.0000,164.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_109"/><path d=" M 480.0000,164.0000 L 100.0000,164.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_110"/><path d=" M 100.0000,164.0000 L 120.0000,144.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_111"/><path d=" M 139.0000,0.0000 L 119.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_112"/><path d=" M 119.0000,20.0000 L 119.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_113"/><path d=" M 119.0000,200.0000 L 139.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_114"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_115"/><text id="ezcGraphTextBox_5_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_116"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_17"><path d=" M 187.0400,174.8000 L 187.0400,165.3000 L 222.4600,165.3000 L 222.4600,174.8000 L 187.0400,174.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_117"/><text id="ezcGraphTextBox_17_text" x="187.54" text-length="33.92px" y="172.6" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_21"><path d=" M 272.5400,174.8000 L 272.5400,165.3000 L 307.9600,165.3000 L 307.9600,174.8000 L 272.5400,174.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_118"/><text id="ezcGraphTextBox_21_text" x="273.04" text-length="33.92px" y="172.6" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_25"><path d=" M 358.0400,174.8000 L 358.0400,165.3000 L 393.4600,165.3000 L 393.4600,174.8000 L 358.0400,174.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_119"/><text id="ezcGraphTextBox_25_text" x="358.54" text-length="33.92px" y="172.6" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_29"><path d=" M 443.5400,174.8000 L 443.5400,165.3000 L 478.9600,165.3000 L 478.9600,174.8000 L 443.5400,174.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_120"/><text id="ezcGraphTextBox_29_text" x="444.04" text-length="33.92px" y="172.6" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_30"><path d=" M 111.6400,163.2000 L 111.6400,153.7000 L 118.1000,153.7000 L 118.1000,163.2000 L 111.6400,163.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_121"/><text id="ezcGraphTextBox_30_text" x="112.14" text-length="4.96px" y="161" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_46"><path d=" M 101.7200,127.2000 L 101.7200,117.7000 L 118.1000,117.7000 L 118.1000,127.2000 L 101.7200,127.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_122"/><text id="ezcGraphTextBox_46_text" x="102.22" text-length="14.88px" y="125" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_62"><path d=" M 101.7200,91.2000 L 101.7200,81.7000 L 118.1000,81.7000 L 118.1000,91.2000 L 101.7200,91.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_123"/><text id="ezcGraphTextBox_62_text" x="102.22" text-length="14.88px" y="89" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_78"><path d=" M 101.7200,66.8000 L 101.7200,57.3000 L 118.1000,57.3000 L 118.1000,66.8000 L 101.7200,66.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_124"/><text id="ezcGraphTextBox_78_text" x="102.22" text-length="14.88px" y="64.6" style="font-size: 8px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithHighlightedData.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithHighlightedData.svg
index ce9e9ce..4b9c1c8 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithHighlightedData.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRenderLineChartWithHighlightedData.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs><linearGradient id="Definition_LinearGradient_8_8_13_13_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_8_8_13_13_abefff00_39506800" x1="8.1005" y1="8.1005" x2="13.8995" y2="13.8995" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_8_8_13_13_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_8_26_13_31_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_8_26_13_31_ff3e3e00_78151500" x1="8.1005" y1="26.1005" x2="13.8995" y2="31.8995" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_8_26_13_31_ff3e3e00_78151500"/><linearGradient id="Definition_LinearGradient_187_91_189_93_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_187_91_189_93_abefff00_39506800" x1="187.1574" y1="91.0614" x2="189.6426" y2="93.5466" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_187_91_189_93_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_247_127_250_130_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_247_127_250_130_abefff00_39506800" x1="247.9574" y1="127.7814" x2="250.4426" y2="130.2666" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_247_127_250_130_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_308_78_311_80_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_308_78_311_80_abefff00_39506800" x1="308.7574" y1="78.1014" x2="311.2426" y2="80.5866" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_308_78_311_80_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_369_142_372_144_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_369_142_372_144_abefff00_39506800" x1="369.5574" y1="142.0374" x2="372.0426" y2="144.5226" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_369_142_372_144_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_430_124_432_127_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_430_124_432_127_abefff00_39506800" x1="430.3574" y1="124.6134" x2="432.8426" y2="127.0986" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_430_124_432_127_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_177_56_179_59_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_177_56_179_59_ff3e3e00_78151500" x1="177.1574" y1="56.5654" x2="179.6426" y2="59.0506" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_177_56_179_59_ff3e3e00_78151500"/><linearGradient id="Definition_LinearGradient_237_101_240_103_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_237_101_240_103_ff3e3e00_78151500" x1="237.9574" y1="101.0614" x2="240.4426" y2="103.5466" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_237_101_240_103_ff3e3e00_78151500"/><linearGradient id="Definition_LinearGradient_298_91_301_94_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_298_91_301_94_ff3e3e00_78151500" x1="298.7574" y1="91.8454" x2="301.2426" y2="94.3306" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_298_91_301_94_ff3e3e00_78151500"/><linearGradient id="Definition_LinearGradient_359_134_362_136_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_359_134_362_136_ff3e3e00_78151500" x1="359.5574" y1="134.0374" x2="362.0426" y2="136.5226" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_359_134_362_136_ff3e3e00_78151500"/><linearGradient id="Definition_LinearGradient_420_46_422_48_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_420_46_422_48_ff3e3e00_78151500" x1="420.3574" y1="46.4854" x2="422.8426" y2="48.9706" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_420_46_422_48_ff3e3e00_78151500"/></defs><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 98.0000,2.0000 L 98.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="11" rx="6.3" ry="6.3" style="fill: url(#LinearGradient_8_8_13_13_abefff00_39506800); stroke: none;" id="ezcGraphCircle_5"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_7"/><ellipse cx="11" cy="29" rx="6.3" ry="6.3" style="fill: url(#LinearGradient_8_26_13_31_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_8"/><path d=" M 100.0000,146.0000 L 120.0000,126.0000 L 500.0000,126.0000 L 480.0000,146.0000 L 100.0000,146.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 120.0000,126.0000 L 500.0000,126.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 492.0000,130.0000 L 500.0000,126.0000 L 492.0000,122.0000 L 492.0000,130.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 218.8000,162.0000 L 218.8000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 198.8000,143.3000 L 218.8000,123.3000 L 218.8000,128.7000 L 198.8000,148.7000 L 198.8000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_18"/><path d=" M 198.8000,143.3000 L 218.8000,123.3000 L 218.8000,128.7000 L 198.8000,148.7000 L 198.8000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_19"/><path d=" M 279.6000,162.0000 L 279.6000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 259.6000,143.3000 L 279.6000,123.3000 L 279.6000,128.7000 L 259.6000,148.7000 L 259.6000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_22"/><path d=" M 259.6000,143.3000 L 279.6000,123.3000 L 279.6000,128.7000 L 259.6000,148.7000 L 259.6000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_23"/><path d=" M 340.4000,162.0000 L 340.4000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 320.4000,143.3000 L 340.4000,123.3000 L 340.4000,128.7000 L 320.4000,148.7000 L 320.4000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_26"/><path d=" M 320.4000,143.3000 L 340.4000,123.3000 L 340.4000,128.7000 L 320.4000,148.7000 L 320.4000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_27"/><path d=" M 401.2000,162.0000 L 401.2000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 381.2000,143.3000 L 401.2000,123.3000 L 401.2000,128.7000 L 381.2000,148.7000 L 381.2000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_30"/><path d=" M 381.2000,143.3000 L 401.2000,123.3000 L 401.2000,128.7000 L 381.2000,148.7000 L 381.2000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_31"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 442.0000,143.3000 L 462.0000,123.3000 L 462.0000,128.7000 L 442.0000,148.7000 L 442.0000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_34"/><path d=" M 442.0000,143.3000 L 462.0000,123.3000 L 462.0000,128.7000 L 442.0000,148.7000 L 442.0000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_35"/><path d=" M 462.0000,162.0000 L 158.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 138.0000,182.0000 L 158.0000,162.0000 L 160.8500,162.0000 L 140.8500,182.0000 L 138.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_37"/><path d=" M 138.0000,182.0000 L 158.0000,162.0000 L 160.8500,162.0000 L 140.8500,182.0000 L 138.0000,182.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_38"/><path d=" M 462.0000,154.8000 L 158.0000,154.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.0000,174.8000 L 158.0000,154.8000 L 158.9500,154.8000 L 138.9500,174.8000 L 138.0000,174.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.0000,174.8000 L 158.0000,154.8000 L 158.9500,154.8000 L 138.9500,174.8000 L 138.0000,174.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 462.0000,147.6000 L 158.0000,147.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.0000,167.6000 L 158.0000,147.6000 L 158.9500,147.6000 L 138.9500,167.6000 L 138.0000,167.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.0000,167.6000 L 158.0000,147.6000 L 158.9500,147.6000 L 138.9500,167.6000 L 138.0000,167.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 462.0000,140.4000 L 158.0000,140.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 138.0000,160.4000 L 158.0000,140.4000 L 158.9500,140.4000 L 138.9500,160.4000 L 138.0000,160.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 138.0000,160.4000 L 158.0000,140.4000 L 158.9500,140.4000 L 138.9500,160.4000 L 138.0000,160.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_50"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_51"/><path d=" M 462.0000,118.8000 L 158.0000,118.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.0000,138.8000 L 158.0000,118.8000 L 158.9500,118.8000 L 138.9500,138.8000 L 138.0000,138.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 138.0000,138.8000 L 158.0000,118.8000 L 158.9500,118.8000 L 138.9500,138.8000 L 138.0000,138.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 462.0000,111.6000 L 158.0000,111.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 138.0000,131.6000 L 158.0000,111.6000 L 158.9500,111.6000 L 138.9500,131.6000 L 138.0000,131.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 138.0000,131.6000 L 158.0000,111.6000 L 158.9500,111.6000 L 138.9500,131.6000 L 138.0000,131.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 462.0000,97.2000 L 158.0000,97.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 138.0000,117.2000 L 158.0000,97.2000 L 158.9500,97.2000 L 138.9500,117.2000 L 138.0000,117.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 138.0000,117.2000 L 158.0000,97.2000 L 158.9500,97.2000 L 138.9500,117.2000 L 138.0000,117.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_64"/><path d=" M 462.0000,90.0000 L 158.0000,90.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 160.8500,90.0000 L 140.8500,110.0000 L 138.0000,110.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 160.8500,90.0000 L 140.8500,110.0000 L 138.0000,110.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_67"/><path d=" M 462.0000,82.8000 L 158.0000,82.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.0000,102.8000 L 158.0000,82.8000 L 158.9500,82.8000 L 138.9500,102.8000 L 138.0000,102.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.0000,102.8000 L 158.0000,82.8000 L 158.9500,82.8000 L 138.9500,102.8000 L 138.0000,102.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 462.0000,68.4000 L 158.0000,68.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 138.0000,88.4000 L 158.0000,68.4000 L 158.9500,68.4000 L 138.9500,88.4000 L 138.0000,88.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 138.0000,88.4000 L 158.0000,68.4000 L 158.9500,68.4000 L 138.9500,88.4000 L 138.0000,88.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 462.0000,61.2000 L 158.0000,61.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 138.0000,81.2000 L 158.0000,61.2000 L 158.9500,61.2000 L 138.9500,81.2000 L 138.0000,81.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 138.0000,81.2000 L 158.0000,61.2000 L 158.9500,61.2000 L 138.9500,81.2000 L 138.0000,81.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 462.0000,54.0000 L 158.0000,54.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_81"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 160.8500,54.0000 L 140.8500,74.0000 L 138.0000,74.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 160.8500,54.0000 L 140.8500,74.0000 L 138.0000,74.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_83"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_85"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_87"/><path d=" M 462.0000,39.6000 L 158.0000,39.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_88"/><path d=" M 138.0000,59.6000 L 158.0000,39.6000 L 158.9500,39.6000 L 138.9500,59.6000 L 138.0000,59.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 138.0000,59.6000 L 158.0000,39.6000 L 158.9500,39.6000 L 138.9500,59.6000 L 138.0000,59.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_90"/><path d=" M 462.0000,32.4000 L 158.0000,32.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><path d=" M 138.0000,52.4000 L 158.0000,32.4000 L 158.9500,32.4000 L 138.9500,52.4000 L 138.0000,52.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_92"/><path d=" M 138.0000,52.4000 L 158.0000,32.4000 L 158.9500,32.4000 L 138.9500,52.4000 L 138.0000,52.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_93"/><path d=" M 462.0000,25.2000 L 158.0000,25.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_94"/><path d=" M 138.0000,45.2000 L 158.0000,25.2000 L 158.9500,25.2000 L 138.9500,45.2000 L 138.0000,45.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 138.0000,45.2000 L 158.0000,25.2000 L 158.9500,25.2000 L 138.9500,45.2000 L 138.0000,45.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_97"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><path d=" M 188.4000,92.3040 L 178.4000,102.3040 L 178.4000,102.3040 L 188.4000,92.3040 L 188.4000,92.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_101"/><path d=" M 188.4000,92.3040 L 178.4000,102.3040 L 178.4000,102.3040 L 188.4000,92.3040 L 188.4000,92.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_102"/><path d=" M 188.4000,92.3040 L 178.4000,102.3040 L 239.2000,139.0240 L 249.2000,129.0240 L 188.4000,92.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 188.4000,92.3040 L 178.4000,102.3040 L 239.2000,139.0240 L 249.2000,129.0240 L 188.4000,92.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_105"/><path d=" M 249.2000,129.0240 L 239.2000,139.0240 L 300.0000,89.3440 L 310.0000,79.3440 L 249.2000,129.0240 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_107"/><path d=" M 249.2000,129.0240 L 239.2000,139.0240 L 300.0000,89.3440 L 310.0000,79.3440 L 249.2000,129.0240 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_108"/><path d=" M 310.0000,79.3440 L 300.0000,89.3440 L 360.8000,153.2800 L 370.8000,143.2800 L 310.0000,79.3440 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_110"/><path d=" M 310.0000,79.3440 L 300.0000,89.3440 L 360.8000,153.2800 L 370.8000,143.2800 L 310.0000,79.3440 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_111"/><path d=" M 370.8000,143.2800 L 360.8000,153.2800 L 421.6000,135.8560 L 431.6000,125.8560 L 370.8000,143.2800 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_113"/><path d=" M 370.8000,143.2800 L 360.8000,153.2800 L 421.6000,135.8560 L 431.6000,125.8560 L 370.8000,143.2800 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_114"/><path d=" M 178.4000,57.8080 L 168.4000,67.8080 L 168.4000,67.8080 L 178.4000,57.8080 L 178.4000,57.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_116"/><path d=" M 178.4000,57.8080 L 168.4000,67.8080 L 168.4000,67.8080 L 178.4000,57.8080 L 178.4000,57.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_117"/><path d=" M 178.4000,57.8080 L 168.4000,67.8080 L 229.2000,112.3040 L 239.2000,102.3040 L 178.4000,57.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_118"/><path d=" M 178.4000,57.8080 L 168.4000,67.8080 L 229.2000,112.3040 L 239.2000,102.3040 L 178.4000,57.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_119"/><path d=" M 239.2000,102.3040 L 229.2000,112.3040 L 290.0000,103.0880 L 300.0000,93.0880 L 239.2000,102.3040 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_120"/><path d=" M 239.2000,102.3040 L 229.2000,112.3040 L 290.0000,103.0880 L 300.0000,93.0880 L 239.2000,102.3040 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_121"/><path d=" M 300.0000,93.0880 L 290.0000,103.0880 L 350.8000,145.2800 L 360.8000,135.2800 L 300.0000,93.0880 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_122"/><path d=" M 300.0000,93.0880 L 290.0000,103.0880 L 350.8000,145.2800 L 360.8000,135.2800 L 300.0000,93.0880 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_123"/><path d=" M 360.8000,135.2800 L 350.8000,145.2800 L 411.6000,57.7280 L 421.6000,47.7280 L 360.8000,135.2800 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_124"/><path d=" M 360.8000,135.2800 L 350.8000,145.2800 L 411.6000,57.7280 L 421.6000,47.7280 L 360.8000,135.2800 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_125"/><ellipse cx="188.4" cy="92.304" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_127"/><ellipse cx="188.4" cy="92.304" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_187_91_189_93_abefff00_39506800); stroke: none;" id="ezcGraphCircle_128"/><ellipse cx="249.2" cy="129.024" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_129"/><ellipse cx="249.2" cy="129.024" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_247_127_250_130_abefff00_39506800); stroke: none;" id="ezcGraphCircle_130"/><ellipse cx="310" cy="79.344" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_131"/><ellipse cx="310" cy="79.344" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_308_78_311_80_abefff00_39506800); stroke: none;" id="ezcGraphCircle_132"/><ellipse cx="370.8" cy="143.28" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_133"/><ellipse cx="370.8" cy="143.28" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_369_142_372_144_abefff00_39506800); stroke: none;" id="ezcGraphCircle_134"/><ellipse cx="431.6" cy="125.856" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_135"/><ellipse cx="431.6" cy="125.856" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_430_124_432_127_abefff00_39506800); stroke: none;" id="ezcGraphCircle_136"/><ellipse cx="178.4" cy="57.808" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_137"/><ellipse cx="178.4" cy="57.808" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_177_56_179_59_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_138"/><ellipse cx="239.2" cy="102.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_139"/><ellipse cx="239.2" cy="102.304" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_237_101_240_103_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_140"/><ellipse cx="300" cy="93.088" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_141"/><ellipse cx="300" cy="93.088" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_298_91_301_94_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_142"/><ellipse cx="360.8" cy="135.28" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_143"/><ellipse cx="360.8" cy="135.28" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_359_134_362_136_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_144"/><ellipse cx="421.6" cy="47.728" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_145"/><ellipse cx="421.6" cy="47.728" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_420_46_422_48_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_146"/><path d=" M 500.0000,126.0000 L 480.0000,146.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_147"/><path d=" M 480.0000,146.0000 L 100.0000,146.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_148"/><path d=" M 100.0000,146.0000 L 120.0000,126.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_149"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_150"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_151"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_152"/><g id="ezcGraphTextBox_6"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_153"/><text id="ezcGraphTextBox_6_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_9"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_154"/><text id="ezcGraphTextBox_9_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_16"><path d=" M 140.3400,161.8000 L 140.3400,147.3000 L 196.9600,147.3000 L 196.9600,161.8000 L 140.3400,161.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_155"/><text id="ezcGraphTextBox_16_text" x="140.84" text-length="55.12px" y="158.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_20"><path d=" M 201.1400,161.8000 L 201.1400,147.3000 L 257.7600,147.3000 L 257.7600,161.8000 L 201.1400,161.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_156"/><text id="ezcGraphTextBox_20_text" x="201.64" text-length="55.12px" y="158.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_24"><path d=" M 261.9400,161.8000 L 261.9400,147.3000 L 318.5600,147.3000 L 318.5600,161.8000 L 261.9400,161.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_157"/><text id="ezcGraphTextBox_24_text" x="262.44" text-length="55.12px" y="158.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_28"><path d=" M 322.7400,161.8000 L 322.7400,147.3000 L 379.3600,147.3000 L 379.3600,161.8000 L 322.7400,161.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_158"/><text id="ezcGraphTextBox_28_text" x="323.24" text-length="55.12px" y="158.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_32"><path d=" M 383.5400,161.8000 L 383.5400,147.3000 L 440.1600,147.3000 L 440.1600,161.8000 L 383.5400,161.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_159"/><text id="ezcGraphTextBox_32_text" x="384.04" text-length="55.12px" y="158.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_39"><path d=" M 103.3600,181.2000 L 103.3600,166.7000 L 137.1000,166.7000 L 137.1000,181.2000 L 103.3600,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_160"/><text id="ezcGraphTextBox_39_text" x="103.86" text-length="32.24px" y="178.25" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-250</text></g><g id="ezcGraphTextBox_52"><path d=" M 127.5400,145.2000 L 127.5400,130.7000 L 137.1000,130.7000 L 137.1000,145.2000 L 127.5400,145.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_161"/><text id="ezcGraphTextBox_52_text" x="128.04" text-length="8.06px" y="142.25" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_68"><path d=" M 111.4200,109.2000 L 111.4200,94.7000 L 137.1000,94.7000 L 137.1000,109.2000 L 111.4200,109.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_162"/><text id="ezcGraphTextBox_68_text" x="111.92" text-length="24.18px" y="106.25" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_84"><path d=" M 111.4200,73.2000 L 111.4200,58.7000 L 137.1000,58.7000 L 137.1000,73.2000 L 111.4200,73.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_163"/><text id="ezcGraphTextBox_84_text" x="111.92" text-length="24.18px" y="70.25" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_100"><path d=" M 111.4200,53.8000 L 111.4200,39.3000 L 137.1000,39.3000 L 137.1000,53.8000 L 111.4200,53.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_164"/><text id="ezcGraphTextBox_100_text" x="111.92" text-length="24.18px" y="50.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g><g id="ezcGraphTextBox_103"><path d=" M 178.6000,88.1040 L 178.6000,76.6040 L 198.7000,76.6040 L 198.7000,88.1040 L 178.6000,88.1040 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_165"/><path d=" M 178.6000,88.1040 L 178.6000,76.6040 L 198.7000,76.6040 L 198.7000,88.1040 L 178.6000,88.1040 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_166"/><text id="ezcGraphTextBox_103_text" x="179.1" text-length="18.6px" y="85.604" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">234</text></g><g id="ezcGraphTextBox_106"><path d=" M 239.4000,146.4240 L 239.4000,134.9240 L 259.5000,134.9240 L 259.5000,146.4240 L 239.4000,146.4240 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_167"/><path d=" M 239.4000,146.4240 L 239.4000,134.9240 L 259.5000,134.9240 L 259.5000,146.4240 L 239.4000,146.4240 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_168"/><text id="ezcGraphTextBox_106_text" x="239.9" text-length="18.6px" y="143.924" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">-21</text></g><g id="ezcGraphTextBox_109"><path d=" M 300.2000,75.1440 L 300.2000,63.6440 L 320.3000,63.6440 L 320.3000,75.1440 L 300.2000,75.1440 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_169"/><path d=" M 300.2000,75.1440 L 300.2000,63.6440 L 320.3000,63.6440 L 320.3000,75.1440 L 300.2000,75.1440 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_170"/><text id="ezcGraphTextBox_109_text" x="300.7" text-length="18.6px" y="72.644" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">324</text></g><g id="ezcGraphTextBox_112"><path d=" M 357.9000,160.6800 L 357.9000,149.1800 L 384.2000,149.1800 L 384.2000,160.6800 L 357.9000,160.6800 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_171"/><path d=" M 357.9000,160.6800 L 357.9000,149.1800 L 384.2000,149.1800 L 384.2000,160.6800 L 357.9000,160.6800 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_172"/><text id="ezcGraphTextBox_112_text" x="358.4" text-length="24.8px" y="158.18" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">-120</text></g><g id="ezcGraphTextBox_115"><path d=" M 428.0000,121.6560 L 428.0000,110.1560 L 435.7000,110.1560 L 435.7000,121.6560 L 428.0000,121.6560 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_173"/><path d=" M 428.0000,121.6560 L 428.0000,110.1560 L 435.7000,110.1560 L 435.7000,121.6560 L 428.0000,121.6560 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_174"/><text id="ezcGraphTextBox_115_text" x="428.5" text-length="6.2px" y="119.156" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_126"><path d=" M 411.8000,43.5280 L 411.8000,32.0280 L 431.9000,32.0280 L 431.9000,43.5280 L 411.8000,43.5280 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_175"/><path d=" M 411.8000,43.5280 L 411.8000,32.0280 L 431.9000,32.0280 L 431.9000,43.5280 L 411.8000,43.5280 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_176"/><text id="ezcGraphTextBox_126_text" x="412.3" text-length="18.6px" y="41.028" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">613</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200" version="1.0" id="ezcGraph"><defs><linearGradient id="Definition_LinearGradient_8_8_13_13_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_8_8_13_13_abefff00_39506800" x1="8.1005" y1="8.1005" x2="13.8995" y2="13.8995" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_8_8_13_13_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_8_26_13_31_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_8_26_13_31_ff3e3e00_78151500" x1="8.1005" y1="26.1005" x2="13.8995" y2="31.8995" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_8_26_13_31_ff3e3e00_78151500"/><linearGradient id="Definition_LinearGradient_187_91_189_93_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_187_91_189_93_abefff00_39506800" x1="187.1574" y1="91.0614" x2="189.6426" y2="93.5466" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_187_91_189_93_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_247_127_250_130_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_247_127_250_130_abefff00_39506800" x1="247.9574" y1="127.7814" x2="250.4426" y2="130.2666" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_247_127_250_130_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_308_78_311_80_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_308_78_311_80_abefff00_39506800" x1="308.7574" y1="78.1014" x2="311.2426" y2="80.5866" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_308_78_311_80_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_369_142_372_144_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_369_142_372_144_abefff00_39506800" x1="369.5574" y1="142.0374" x2="372.0426" y2="144.5226" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_369_142_372_144_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_430_124_432_127_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_430_124_432_127_abefff00_39506800" x1="430.3574" y1="124.6134" x2="432.8426" y2="127.0986" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_430_124_432_127_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_177_56_179_59_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_177_56_179_59_ff3e3e00_78151500" x1="177.1574" y1="56.5654" x2="179.6426" y2="59.0506" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_177_56_179_59_ff3e3e00_78151500"/><linearGradient id="Definition_LinearGradient_237_101_240_103_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_237_101_240_103_ff3e3e00_78151500" x1="237.9574" y1="101.0614" x2="240.4426" y2="103.5466" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_237_101_240_103_ff3e3e00_78151500"/><linearGradient id="Definition_LinearGradient_298_91_301_94_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_298_91_301_94_ff3e3e00_78151500" x1="298.7574" y1="91.8454" x2="301.2426" y2="94.3306" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_298_91_301_94_ff3e3e00_78151500"/><linearGradient id="Definition_LinearGradient_359_134_362_136_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_359_134_362_136_ff3e3e00_78151500" x1="359.5574" y1="134.0374" x2="362.0426" y2="136.5226" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_359_134_362_136_ff3e3e00_78151500"/><linearGradient id="Definition_LinearGradient_420_46_422_48_ff3e3e00_78151500"><stop offset="0" style="stop-color: #ff3e3e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #781515; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_420_46_422_48_ff3e3e00_78151500" x1="420.3574" y1="46.4854" x2="422.8426" y2="48.9706" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_420_46_422_48_ff3e3e00_78151500"/></defs><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 500.0000,0.0000 L 500.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 99.0000,1.0000 L 99.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><ellipse cx="11" cy="11" rx="7" ry="7" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_4"/><ellipse cx="11" cy="11" rx="6.3" ry="6.3" style="fill: url(#LinearGradient_8_8_13_13_abefff00_39506800); stroke: none;" id="ezcGraphCircle_5"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_7"/><ellipse cx="11" cy="29" rx="6.3" ry="6.3" style="fill: url(#LinearGradient_8_26_13_31_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_8"/><path d=" M 100.0000,146.0000 L 120.0000,126.0000 L 500.0000,126.0000 L 480.0000,146.0000 L 100.0000,146.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 120.0000,126.0000 L 500.0000,126.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_11"/><path d=" M 492.0000,130.0000 L 500.0000,126.0000 L 492.0000,122.0000 L 492.0000,130.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000 L 158.0000,0.0000 L 138.0000,20.0000 L 138.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 158.0000,180.0000 L 158.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_14"/><path d=" M 155.5000,5.0000 L 158.0000,0.0000 L 160.5000,5.0000 L 155.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 218.8000,162.0000 L 218.8000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_17"/><path d=" M 198.8000,143.3000 L 218.8000,123.3000 L 218.8000,128.7000 L 198.8000,148.7000 L 198.8000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_18"/><path d=" M 198.8000,143.3000 L 218.8000,123.3000 L 218.8000,128.7000 L 198.8000,148.7000 L 198.8000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_19"/><path d=" M 279.6000,162.0000 L 279.6000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_21"/><path d=" M 259.6000,143.3000 L 279.6000,123.3000 L 279.6000,128.7000 L 259.6000,148.7000 L 259.6000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_22"/><path d=" M 259.6000,143.3000 L 279.6000,123.3000 L 279.6000,128.7000 L 259.6000,148.7000 L 259.6000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_23"/><path d=" M 340.4000,162.0000 L 340.4000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_25"/><path d=" M 320.4000,143.3000 L 340.4000,123.3000 L 340.4000,128.7000 L 320.4000,148.7000 L 320.4000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_26"/><path d=" M 320.4000,143.3000 L 340.4000,123.3000 L 340.4000,128.7000 L 320.4000,148.7000 L 320.4000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_27"/><path d=" M 401.2000,162.0000 L 401.2000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_29"/><path d=" M 381.2000,143.3000 L 401.2000,123.3000 L 401.2000,128.7000 L 381.2000,148.7000 L 381.2000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_30"/><path d=" M 381.2000,143.3000 L 401.2000,123.3000 L 401.2000,128.7000 L 381.2000,148.7000 L 381.2000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_31"/><path d=" M 462.0000,162.0000 L 462.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 442.0000,143.3000 L 462.0000,123.3000 L 462.0000,128.7000 L 442.0000,148.7000 L 442.0000,143.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_34"/><path d=" M 442.0000,143.3000 L 462.0000,123.3000 L 462.0000,128.7000 L 442.0000,148.7000 L 442.0000,143.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_35"/><path d=" M 462.0000,162.0000 L 158.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_36"/><path d=" M 138.0000,182.0000 L 158.0000,162.0000 L 160.8500,162.0000 L 140.8500,182.0000 L 138.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_37"/><path d=" M 138.0000,182.0000 L 158.0000,162.0000 L 160.8500,162.0000 L 140.8500,182.0000 L 138.0000,182.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_38"/><path d=" M 462.0000,154.8000 L 158.0000,154.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 138.0000,174.8000 L 158.0000,154.8000 L 158.9500,154.8000 L 138.9500,174.8000 L 138.0000,174.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 138.0000,174.8000 L 158.0000,154.8000 L 158.9500,154.8000 L 138.9500,174.8000 L 138.0000,174.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 462.0000,147.6000 L 158.0000,147.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 138.0000,167.6000 L 158.0000,147.6000 L 158.9500,147.6000 L 138.9500,167.6000 L 138.0000,167.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 138.0000,167.6000 L 158.0000,147.6000 L 158.9500,147.6000 L 138.9500,167.6000 L 138.0000,167.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 462.0000,140.4000 L 158.0000,140.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 138.0000,160.4000 L 158.0000,140.4000 L 158.9500,140.4000 L 138.9500,160.4000 L 138.0000,160.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 138.0000,160.4000 L 158.0000,140.4000 L 158.9500,140.4000 L 138.9500,160.4000 L 138.0000,160.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 462.0000,133.2000 L 158.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_49"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_50"/><path d=" M 138.0000,153.2000 L 158.0000,133.2000 L 158.9500,133.2000 L 138.9500,153.2000 L 138.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_51"/><path d=" M 462.0000,118.8000 L 158.0000,118.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 138.0000,138.8000 L 158.0000,118.8000 L 158.9500,118.8000 L 138.9500,138.8000 L 138.0000,138.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 138.0000,138.8000 L 158.0000,118.8000 L 158.9500,118.8000 L 138.9500,138.8000 L 138.0000,138.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 462.0000,111.6000 L 158.0000,111.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 138.0000,131.6000 L 158.0000,111.6000 L 158.9500,111.6000 L 138.9500,131.6000 L 138.0000,131.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 138.0000,131.6000 L 158.0000,111.6000 L 158.9500,111.6000 L 138.9500,131.6000 L 138.0000,131.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 462.0000,104.4000 L 158.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 138.0000,124.4000 L 158.0000,104.4000 L 158.9500,104.4000 L 138.9500,124.4000 L 138.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 462.0000,97.2000 L 158.0000,97.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 138.0000,117.2000 L 158.0000,97.2000 L 158.9500,97.2000 L 138.9500,117.2000 L 138.0000,117.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 138.0000,117.2000 L 158.0000,97.2000 L 158.9500,97.2000 L 138.9500,117.2000 L 138.0000,117.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_64"/><path d=" M 462.0000,90.0000 L 158.0000,90.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_65"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 160.8500,90.0000 L 140.8500,110.0000 L 138.0000,110.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_66"/><path d=" M 138.0000,110.0000 L 158.0000,90.0000 L 160.8500,90.0000 L 140.8500,110.0000 L 138.0000,110.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_67"/><path d=" M 462.0000,82.8000 L 158.0000,82.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 138.0000,102.8000 L 158.0000,82.8000 L 158.9500,82.8000 L 138.9500,102.8000 L 138.0000,102.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 138.0000,102.8000 L 158.0000,82.8000 L 158.9500,82.8000 L 138.9500,102.8000 L 138.0000,102.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 462.0000,75.6000 L 158.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 138.0000,95.6000 L 158.0000,75.6000 L 158.9500,75.6000 L 138.9500,95.6000 L 138.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 462.0000,68.4000 L 158.0000,68.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 138.0000,88.4000 L 158.0000,68.4000 L 158.9500,68.4000 L 138.9500,88.4000 L 138.0000,88.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 138.0000,88.4000 L 158.0000,68.4000 L 158.9500,68.4000 L 138.9500,88.4000 L 138.0000,88.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 462.0000,61.2000 L 158.0000,61.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 138.0000,81.2000 L 158.0000,61.2000 L 158.9500,61.2000 L 138.9500,81.2000 L 138.0000,81.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 138.0000,81.2000 L 158.0000,61.2000 L 158.9500,61.2000 L 138.9500,81.2000 L 138.0000,81.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 462.0000,54.0000 L 158.0000,54.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_81"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 160.8500,54.0000 L 140.8500,74.0000 L 138.0000,74.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 138.0000,74.0000 L 158.0000,54.0000 L 160.8500,54.0000 L 140.8500,74.0000 L 138.0000,74.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_83"/><path d=" M 462.0000,46.8000 L 158.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_85"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_86"/><path d=" M 138.0000,66.8000 L 158.0000,46.8000 L 158.9500,46.8000 L 138.9500,66.8000 L 138.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_87"/><path d=" M 462.0000,39.6000 L 158.0000,39.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_88"/><path d=" M 138.0000,59.6000 L 158.0000,39.6000 L 158.9500,39.6000 L 138.9500,59.6000 L 138.0000,59.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_89"/><path d=" M 138.0000,59.6000 L 158.0000,39.6000 L 158.9500,39.6000 L 138.9500,59.6000 L 138.0000,59.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_90"/><path d=" M 462.0000,32.4000 L 158.0000,32.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_91"/><path d=" M 138.0000,52.4000 L 158.0000,32.4000 L 158.9500,32.4000 L 138.9500,52.4000 L 138.0000,52.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_92"/><path d=" M 138.0000,52.4000 L 158.0000,32.4000 L 158.9500,32.4000 L 138.9500,52.4000 L 138.0000,52.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_93"/><path d=" M 462.0000,25.2000 L 158.0000,25.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_94"/><path d=" M 138.0000,45.2000 L 158.0000,25.2000 L 158.9500,25.2000 L 138.9500,45.2000 L 138.0000,45.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 138.0000,45.2000 L 158.0000,25.2000 L 158.9500,25.2000 L 138.9500,45.2000 L 138.0000,45.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 462.0000,18.0000 L 158.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_97"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 138.0000,38.0000 L 158.0000,18.0000 L 160.8500,18.0000 L 140.8500,38.0000 L 138.0000,38.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><path d=" M 188.4000,92.3040 L 178.4000,102.3040 L 178.4000,102.3040 L 188.4000,92.3040 L 188.4000,92.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_101"/><path d=" M 188.4000,92.3040 L 178.4000,102.3040 L 178.4000,102.3040 L 188.4000,92.3040 L 188.4000,92.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_102"/><path d=" M 188.4000,92.3040 L 178.4000,102.3040 L 239.2000,139.0240 L 249.2000,129.0240 L 188.4000,92.3040 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 188.4000,92.3040 L 178.4000,102.3040 L 239.2000,139.0240 L 249.2000,129.0240 L 188.4000,92.3040 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_105"/><path d=" M 249.2000,129.0240 L 239.2000,139.0240 L 300.0000,89.3440 L 310.0000,79.3440 L 249.2000,129.0240 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_107"/><path d=" M 249.2000,129.0240 L 239.2000,139.0240 L 300.0000,89.3440 L 310.0000,79.3440 L 249.2000,129.0240 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_108"/><path d=" M 310.0000,79.3440 L 300.0000,89.3440 L 360.8000,153.2800 L 370.8000,143.2800 L 310.0000,79.3440 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_110"/><path d=" M 310.0000,79.3440 L 300.0000,89.3440 L 360.8000,153.2800 L 370.8000,143.2800 L 310.0000,79.3440 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_111"/><path d=" M 370.8000,143.2800 L 360.8000,153.2800 L 421.6000,135.8560 L 431.6000,125.8560 L 370.8000,143.2800 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_113"/><path d=" M 370.8000,143.2800 L 360.8000,153.2800 L 421.6000,135.8560 L 431.6000,125.8560 L 370.8000,143.2800 z " style="fill: none; stroke: #395068; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_114"/><path d=" M 178.4000,57.8080 L 168.4000,67.8080 L 168.4000,67.8080 L 178.4000,57.8080 L 178.4000,57.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_116"/><path d=" M 178.4000,57.8080 L 168.4000,67.8080 L 168.4000,67.8080 L 178.4000,57.8080 L 178.4000,57.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_117"/><path d=" M 178.4000,57.8080 L 168.4000,67.8080 L 229.2000,112.3040 L 239.2000,102.3040 L 178.4000,57.8080 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_118"/><path d=" M 178.4000,57.8080 L 168.4000,67.8080 L 229.2000,112.3040 L 239.2000,102.3040 L 178.4000,57.8080 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_119"/><path d=" M 239.2000,102.3040 L 229.2000,112.3040 L 290.0000,103.0880 L 300.0000,93.0880 L 239.2000,102.3040 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_120"/><path d=" M 239.2000,102.3040 L 229.2000,112.3040 L 290.0000,103.0880 L 300.0000,93.0880 L 239.2000,102.3040 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_121"/><path d=" M 300.0000,93.0880 L 290.0000,103.0880 L 350.8000,145.2800 L 360.8000,135.2800 L 300.0000,93.0880 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_122"/><path d=" M 300.0000,93.0880 L 290.0000,103.0880 L 350.8000,145.2800 L 360.8000,135.2800 L 300.0000,93.0880 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_123"/><path d=" M 360.8000,135.2800 L 350.8000,145.2800 L 411.6000,57.7280 L 421.6000,47.7280 L 360.8000,135.2800 z " style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_124"/><path d=" M 360.8000,135.2800 L 350.8000,145.2800 L 411.6000,57.7280 L 421.6000,47.7280 L 360.8000,135.2800 z " style="fill: none; stroke: #781515; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_125"/><ellipse cx="188.4" cy="92.304" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_127"/><ellipse cx="188.4" cy="92.304" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_187_91_189_93_abefff00_39506800); stroke: none;" id="ezcGraphCircle_128"/><ellipse cx="249.2" cy="129.024" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_129"/><ellipse cx="249.2" cy="129.024" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_247_127_250_130_abefff00_39506800); stroke: none;" id="ezcGraphCircle_130"/><ellipse cx="310" cy="79.344" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_131"/><ellipse cx="310" cy="79.344" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_308_78_311_80_abefff00_39506800); stroke: none;" id="ezcGraphCircle_132"/><ellipse cx="370.8" cy="143.28" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_133"/><ellipse cx="370.8" cy="143.28" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_369_142_372_144_abefff00_39506800); stroke: none;" id="ezcGraphCircle_134"/><ellipse cx="431.6" cy="125.856" rx="3" ry="3" style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_135"/><ellipse cx="431.6" cy="125.856" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_430_124_432_127_abefff00_39506800); stroke: none;" id="ezcGraphCircle_136"/><ellipse cx="178.4" cy="57.808" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_137"/><ellipse cx="178.4" cy="57.808" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_177_56_179_59_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_138"/><ellipse cx="239.2" cy="102.304" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_139"/><ellipse cx="239.2" cy="102.304" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_237_101_240_103_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_140"/><ellipse cx="300" cy="93.088" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_141"/><ellipse cx="300" cy="93.088" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_298_91_301_94_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_142"/><ellipse cx="360.8" cy="135.28" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_143"/><ellipse cx="360.8" cy="135.28" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_359_134_362_136_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_144"/><ellipse cx="421.6" cy="47.728" rx="3" ry="3" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_145"/><ellipse cx="421.6" cy="47.728" rx="2.7" ry="2.7" style="fill: url(#LinearGradient_420_46_422_48_ff3e3e00_78151500); stroke: none;" id="ezcGraphCircle_146"/><path d=" M 500.0000,126.0000 L 480.0000,146.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_147"/><path d=" M 480.0000,146.0000 L 100.0000,146.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_148"/><path d=" M 100.0000,146.0000 L 120.0000,126.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_149"/><path d=" M 158.0000,0.0000 L 138.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_150"/><path d=" M 138.0000,20.0000 L 138.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_151"/><path d=" M 138.0000,200.0000 L 158.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_152"/><g id="ezcGraphTextBox_6"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 64.5200,3.5000 L 64.5200,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_153"/><text id="ezcGraphTextBox_6_text" x="19" text-length="44.52px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 1</text></g><g id="ezcGraphTextBox_9"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_154"/><text id="ezcGraphTextBox_9_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Line 2</text></g><g id="ezcGraphTextBox_16"><path d=" M 140.3400,161.8000 L 140.3400,147.3000 L 196.9600,147.3000 L 196.9600,161.8000 L 140.3400,161.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_155"/><text id="ezcGraphTextBox_16_text" x="140.84" text-length="55.12px" y="158.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_20"><path d=" M 201.1400,161.8000 L 201.1400,147.3000 L 257.7600,147.3000 L 257.7600,161.8000 L 201.1400,161.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_156"/><text id="ezcGraphTextBox_20_text" x="201.64" text-length="55.12px" y="158.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_24"><path d=" M 261.9400,161.8000 L 261.9400,147.3000 L 318.5600,147.3000 L 318.5600,161.8000 L 261.9400,161.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_157"/><text id="ezcGraphTextBox_24_text" x="262.44" text-length="55.12px" y="158.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_28"><path d=" M 322.7400,161.8000 L 322.7400,147.3000 L 379.3600,147.3000 L 379.3600,161.8000 L 322.7400,161.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_158"/><text id="ezcGraphTextBox_28_text" x="323.24" text-length="55.12px" y="158.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 4</text></g><g id="ezcGraphTextBox_32"><path d=" M 383.5400,161.8000 L 383.5400,147.3000 L 440.1600,147.3000 L 440.1600,161.8000 L 383.5400,161.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_159"/><text id="ezcGraphTextBox_32_text" x="384.04" text-length="55.12px" y="158.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 5</text></g><g id="ezcGraphTextBox_39"><path d=" M 103.3600,181.2000 L 103.3600,166.7000 L 137.1000,166.7000 L 137.1000,181.2000 L 103.3600,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_160"/><text id="ezcGraphTextBox_39_text" x="103.86" text-length="32.24px" y="178.25" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-250</text></g><g id="ezcGraphTextBox_52"><path d=" M 127.5400,145.2000 L 127.5400,130.7000 L 137.1000,130.7000 L 137.1000,145.2000 L 127.5400,145.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_161"/><text id="ezcGraphTextBox_52_text" x="128.04" text-length="8.06px" y="142.25" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_68"><path d=" M 111.4200,109.2000 L 111.4200,94.7000 L 137.1000,94.7000 L 137.1000,109.2000 L 111.4200,109.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_162"/><text id="ezcGraphTextBox_68_text" x="111.92" text-length="24.18px" y="106.25" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_84"><path d=" M 111.4200,73.2000 L 111.4200,58.7000 L 137.1000,58.7000 L 137.1000,73.2000 L 111.4200,73.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_163"/><text id="ezcGraphTextBox_84_text" x="111.92" text-length="24.18px" y="70.25" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g><g id="ezcGraphTextBox_100"><path d=" M 111.4200,53.8000 L 111.4200,39.3000 L 137.1000,39.3000 L 137.1000,53.8000 L 111.4200,53.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_164"/><text id="ezcGraphTextBox_100_text" x="111.92" text-length="24.18px" y="50.85" style="font-size: 13px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">750</text></g><g id="ezcGraphTextBox_103"><path d=" M 178.6000,88.1040 L 178.6000,76.6040 L 198.7000,76.6040 L 198.7000,88.1040 L 178.6000,88.1040 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_165"/><path d=" M 178.6000,88.1040 L 178.6000,76.6040 L 198.7000,76.6040 L 198.7000,88.1040 L 178.6000,88.1040 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_166"/><text id="ezcGraphTextBox_103_text" x="179.1" text-length="18.6px" y="85.604" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">234</text></g><g id="ezcGraphTextBox_106"><path d=" M 239.4000,146.4240 L 239.4000,134.9240 L 259.5000,134.9240 L 259.5000,146.4240 L 239.4000,146.4240 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_167"/><path d=" M 239.4000,146.4240 L 239.4000,134.9240 L 259.5000,134.9240 L 259.5000,146.4240 L 239.4000,146.4240 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_168"/><text id="ezcGraphTextBox_106_text" x="239.9" text-length="18.6px" y="143.924" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">-21</text></g><g id="ezcGraphTextBox_109"><path d=" M 300.2000,75.1440 L 300.2000,63.6440 L 320.3000,63.6440 L 320.3000,75.1440 L 300.2000,75.1440 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_169"/><path d=" M 300.2000,75.1440 L 300.2000,63.6440 L 320.3000,63.6440 L 320.3000,75.1440 L 300.2000,75.1440 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_170"/><text id="ezcGraphTextBox_109_text" x="300.7" text-length="18.6px" y="72.644" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">324</text></g><g id="ezcGraphTextBox_112"><path d=" M 357.9000,160.6800 L 357.9000,149.1800 L 384.2000,149.1800 L 384.2000,160.6800 L 357.9000,160.6800 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_171"/><path d=" M 357.9000,160.6800 L 357.9000,149.1800 L 384.2000,149.1800 L 384.2000,160.6800 L 357.9000,160.6800 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_172"/><text id="ezcGraphTextBox_112_text" x="358.4" text-length="24.8px" y="158.18" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">-120</text></g><g id="ezcGraphTextBox_115"><path d=" M 428.0000,121.6560 L 428.0000,110.1560 L 435.7000,110.1560 L 435.7000,121.6560 L 428.0000,121.6560 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_173"/><path d=" M 428.0000,121.6560 L 428.0000,110.1560 L 435.7000,110.1560 L 435.7000,121.6560 L 428.0000,121.6560 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_174"/><text id="ezcGraphTextBox_115_text" x="428.5" text-length="6.2px" y="119.156" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">1</text></g><g id="ezcGraphTextBox_126"><path d=" M 411.8000,43.5280 L 411.8000,32.0280 L 431.9000,32.0280 L 431.9000,43.5280 L 411.8000,43.5280 z " style="fill: #d3d7cf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_175"/><path d=" M 411.8000,43.5280 L 411.8000,32.0280 L 431.9000,32.0280 L 431.9000,43.5280 L 411.8000,43.5280 z " style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_176"/><text id="ezcGraphTextBox_126_text" x="412.3" text-length="18.6px" y="41.028" style="font-size: 10px; font-family: sans-serif; fill: #3465a4; fill-opacity: 1.00; stroke: none;">613</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRenderNegativeBarChartSymbols.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRenderNegativeBarChartSymbols.svg
index 29a8147..92d5c81 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRenderNegativeBarChartSymbols.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRenderNegativeBarChartSymbols.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="700" height="200" version="1.0" id="ezcGraph"><defs><linearGradient id="Definition_LinearGradient_229_28_245_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_229_28_245_28_ffffffbf_0000007f" x1="229.6204" y1="28" x2="245.3179" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_229_28_245_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_229_28_245_28_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_229_28_245_28_8f191900_ef292900" x1="229.6204" y1="28" x2="245.3179" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_229_28_245_28_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_249_28_264_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_249_28_264_28_ffffffbf_0000007f" x1="249.0821" y1="28" x2="264.7796" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_249_28_264_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_316_28_331_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_316_28_331_28_ffffffbf_0000007f" x1="316.0204" y1="28" x2="331.7179" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_316_28_331_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_316_28_331_28_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_316_28_331_28_8f191900_ef292900" x1="316.0204" y1="28" x2="331.7179" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_316_28_331_28_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_335_28_351_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_335_28_351_28_ffffffbf_0000007f" x1="335.4821" y1="28" x2="351.1796" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_335_28_351_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_402_28_418_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_402_28_418_28_ffffffbf_0000007f" x1="402.4204" y1="28" x2="418.1179" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_402_28_418_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_402_28_418_28_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_402_28_418_28_8f191900_ef292900" x1="402.4204" y1="28" x2="418.1179" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_402_28_418_28_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_421_28_437_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_421_28_437_28_ffffffbf_0000007f" x1="421.8821" y1="28" x2="437.5796" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_421_28_437_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_488_28_504_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_488_28_504_28_ffffffbf_0000007f" x1="488.8204" y1="28" x2="504.5179" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_488_28_504_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_488_28_504_28_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_488_28_504_28_8f191900_ef292900" x1="488.8204" y1="28" x2="504.5179" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_488_28_504_28_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_508_28_523_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_508_28_523_28_ffffffbf_0000007f" x1="508.2821" y1="28" x2="523.9796" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_508_28_523_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_575_28_590_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_575_28_590_28_ffffffbf_0000007f" x1="575.2204" y1="28" x2="590.9179" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_575_28_590_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_575_28_590_28_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_575_28_590_28_8f191900_ef292900" x1="575.2204" y1="28" x2="590.9179" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_575_28_590_28_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_594_28_610_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_594_28_610_28_ffffffbf_0000007f" x1="594.6821" y1="28" x2="610.3796" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_594_28_610_28_ffffffbf_0000007f"/></defs><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 700.0000,0.0000 L 700.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 139.0000,1.0000 L 139.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,198.0000 L 2.0000,2.0000 L 138.0000,2.0000 L 138.0000,198.0000 L 2.0000,198.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 4.0000,18.0000 L 4.0000,4.0000 L 18.0000,4.0000 L 18.0000,18.0000 L 4.0000,18.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircle_6"/><ellipse cx="11" cy="47" rx="7" ry="7" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_8"/><path d=" M 4.0000,65.0000 L 11.0000,58.0000 L 18.0000,65.0000 L 11.0000,72.0000 L 4.0000,65.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 140.0000,38.0000 L 160.0000,18.0000 L 700.0000,18.0000 L 680.0000,38.0000 L 140.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 160.0000,18.0000 L 700.0000,18.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 692.0000,22.0000 L 700.0000,18.0000 L 692.0000,14.0000 L 692.0000,22.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 194.0000,200.0000 L 214.0000,180.0000 L 214.0000,0.0000 L 194.0000,20.0000 L 194.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 214.0000,180.0000 L 214.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 211.5000,5.0000 L 214.0000,0.0000 L 216.5000,5.0000 L 211.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 300.4000,162.0000 L 300.4000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 280.4000,35.3000 L 300.4000,15.3000 L 300.4000,20.7000 L 280.4000,40.7000 L 280.4000,35.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_20"/><path d=" M 280.4000,35.3000 L 300.4000,15.3000 L 300.4000,20.7000 L 280.4000,40.7000 L 280.4000,35.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_21"/><path d=" M 386.8000,162.0000 L 386.8000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 366.8000,35.3000 L 386.8000,15.3000 L 386.8000,20.7000 L 366.8000,40.7000 L 366.8000,35.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 366.8000,35.3000 L 386.8000,15.3000 L 386.8000,20.7000 L 366.8000,40.7000 L 366.8000,35.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_25"/><path d=" M 473.2000,162.0000 L 473.2000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 453.2000,35.3000 L 473.2000,15.3000 L 473.2000,20.7000 L 453.2000,40.7000 L 453.2000,35.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_28"/><path d=" M 453.2000,35.3000 L 473.2000,15.3000 L 473.2000,20.7000 L 453.2000,40.7000 L 453.2000,35.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_29"/><path d=" M 559.6000,162.0000 L 559.6000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 539.6000,35.3000 L 559.6000,15.3000 L 559.6000,20.7000 L 539.6000,40.7000 L 539.6000,35.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 539.6000,35.3000 L 559.6000,15.3000 L 559.6000,20.7000 L 539.6000,40.7000 L 539.6000,35.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 646.0000,162.0000 L 646.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 626.0000,35.3000 L 646.0000,15.3000 L 646.0000,20.7000 L 626.0000,40.7000 L 626.0000,35.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_36"/><path d=" M 626.0000,35.3000 L 646.0000,15.3000 L 646.0000,20.7000 L 626.0000,40.7000 L 626.0000,35.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_37"/><path d=" M 646.0000,162.0000 L 214.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 194.0000,182.0000 L 214.0000,162.0000 L 216.8929,162.0000 L 196.8929,182.0000 L 194.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_39"/><path d=" M 194.0000,182.0000 L 214.0000,162.0000 L 216.8929,162.0000 L 196.8929,182.0000 L 194.0000,182.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_40"/><path d=" M 646.0000,154.8000 L 214.0000,154.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 194.0000,174.8000 L 214.0000,154.8000 L 214.9643,154.8000 L 194.9643,174.8000 L 194.0000,174.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 194.0000,174.8000 L 214.0000,154.8000 L 214.9643,154.8000 L 194.9643,174.8000 L 194.0000,174.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 646.0000,147.6000 L 214.0000,147.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 194.0000,167.6000 L 214.0000,147.6000 L 214.9643,147.6000 L 194.9643,167.6000 L 194.0000,167.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 194.0000,167.6000 L 214.0000,147.6000 L 214.9643,147.6000 L 194.9643,167.6000 L 194.0000,167.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 646.0000,140.4000 L 214.0000,140.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 194.0000,160.4000 L 214.0000,140.4000 L 214.9643,140.4000 L 194.9643,160.4000 L 194.0000,160.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 194.0000,160.4000 L 214.0000,140.4000 L 214.9643,140.4000 L 194.9643,160.4000 L 194.0000,160.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 646.0000,133.2000 L 214.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 194.0000,153.2000 L 214.0000,133.2000 L 216.8929,133.2000 L 196.8929,153.2000 L 194.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_52"/><path d=" M 194.0000,153.2000 L 214.0000,133.2000 L 216.8929,133.2000 L 196.8929,153.2000 L 194.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_53"/><path d=" M 646.0000,126.0000 L 214.0000,126.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 194.0000,146.0000 L 214.0000,126.0000 L 214.9643,126.0000 L 194.9643,146.0000 L 194.0000,146.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 194.0000,146.0000 L 214.0000,126.0000 L 214.9643,126.0000 L 194.9643,146.0000 L 194.0000,146.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_57"/><path d=" M 646.0000,118.8000 L 214.0000,118.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 194.0000,138.8000 L 214.0000,118.8000 L 214.9643,118.8000 L 194.9643,138.8000 L 194.0000,138.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 194.0000,138.8000 L 214.0000,118.8000 L 214.9643,118.8000 L 194.9643,138.8000 L 194.0000,138.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_60"/><path d=" M 646.0000,111.6000 L 214.0000,111.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 194.0000,131.6000 L 214.0000,111.6000 L 214.9643,111.6000 L 194.9643,131.6000 L 194.0000,131.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 194.0000,131.6000 L 214.0000,111.6000 L 214.9643,111.6000 L 194.9643,131.6000 L 194.0000,131.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 646.0000,104.4000 L 214.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 194.0000,124.4000 L 214.0000,104.4000 L 216.8929,104.4000 L 196.8929,124.4000 L 194.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_65"/><path d=" M 194.0000,124.4000 L 214.0000,104.4000 L 216.8929,104.4000 L 196.8929,124.4000 L 194.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_66"/><path d=" M 646.0000,97.2000 L 214.0000,97.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 194.0000,117.2000 L 214.0000,97.2000 L 214.9643,97.2000 L 194.9643,117.2000 L 194.0000,117.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 194.0000,117.2000 L 214.0000,97.2000 L 214.9643,97.2000 L 194.9643,117.2000 L 194.0000,117.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_70"/><path d=" M 646.0000,90.0000 L 214.0000,90.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 194.0000,110.0000 L 214.0000,90.0000 L 214.9643,90.0000 L 194.9643,110.0000 L 194.0000,110.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 194.0000,110.0000 L 214.0000,90.0000 L 214.9643,90.0000 L 194.9643,110.0000 L 194.0000,110.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><path d=" M 646.0000,82.8000 L 214.0000,82.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 194.0000,102.8000 L 214.0000,82.8000 L 214.9643,82.8000 L 194.9643,102.8000 L 194.0000,102.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 194.0000,102.8000 L 214.0000,82.8000 L 214.9643,82.8000 L 194.9643,102.8000 L 194.0000,102.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 646.0000,75.6000 L 214.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 194.0000,95.6000 L 214.0000,75.6000 L 216.8929,75.6000 L 196.8929,95.6000 L 194.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 194.0000,95.6000 L 214.0000,75.6000 L 216.8929,75.6000 L 196.8929,95.6000 L 194.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_79"/><path d=" M 646.0000,68.4000 L 214.0000,68.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_81"/><path d=" M 194.0000,88.4000 L 214.0000,68.4000 L 214.9643,68.4000 L 194.9643,88.4000 L 194.0000,88.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 194.0000,88.4000 L 214.0000,68.4000 L 214.9643,68.4000 L 194.9643,88.4000 L 194.0000,88.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_83"/><path d=" M 646.0000,61.2000 L 214.0000,61.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_84"/><path d=" M 194.0000,81.2000 L 214.0000,61.2000 L 214.9643,61.2000 L 194.9643,81.2000 L 194.0000,81.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 194.0000,81.2000 L 214.0000,61.2000 L 214.9643,61.2000 L 194.9643,81.2000 L 194.0000,81.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_86"/><path d=" M 646.0000,54.0000 L 214.0000,54.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_87"/><path d=" M 194.0000,74.0000 L 214.0000,54.0000 L 214.9643,54.0000 L 194.9643,74.0000 L 194.0000,74.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 194.0000,74.0000 L 214.0000,54.0000 L 214.9643,54.0000 L 194.9643,74.0000 L 194.0000,74.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_89"/><path d=" M 646.0000,46.8000 L 214.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_90"/><path d=" M 194.0000,66.8000 L 214.0000,46.8000 L 216.8929,46.8000 L 196.8929,66.8000 L 194.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 194.0000,66.8000 L 214.0000,46.8000 L 216.8929,46.8000 L 196.8929,66.8000 L 194.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_92"/><path d=" M 646.0000,39.6000 L 214.0000,39.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_94"/><path d=" M 194.0000,59.6000 L 214.0000,39.6000 L 214.9643,39.6000 L 194.9643,59.6000 L 194.0000,59.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 194.0000,59.6000 L 214.0000,39.6000 L 214.9643,39.6000 L 194.9643,59.6000 L 194.0000,59.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 646.0000,32.4000 L 214.0000,32.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_97"/><path d=" M 194.0000,52.4000 L 214.0000,32.4000 L 214.9643,32.4000 L 194.9643,52.4000 L 194.0000,52.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 194.0000,52.4000 L 214.0000,32.4000 L 214.9643,32.4000 L 194.9643,52.4000 L 194.0000,52.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><path d=" M 646.0000,25.2000 L 214.0000,25.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_100"/><path d=" M 194.0000,45.2000 L 214.0000,25.2000 L 214.9643,25.2000 L 194.9643,45.2000 L 194.0000,45.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_101"/><path d=" M 194.0000,45.2000 L 214.0000,25.2000 L 214.9643,25.2000 L 194.9643,45.2000 L 194.0000,45.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_102"/><path d=" M 217.5759,36.0000 L 202.4390,36.0000 L 202.4390,160.4160 L 217.5759,160.4160 L 217.5759,36.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 218.4390,20.0000 L 202.4390,36.0000 L 217.5759,36.0000 L 233.5759,20.0000 L 218.4390,20.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_105"/><path d=" M 233.5759,144.4160 L 217.5759,160.4160 L 217.5759,36.0000 L 233.5759,20.0000 L 233.5759,144.4160 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_106"/><path d="M 229.62,95.39 A 7.85,3.92 0 0,0 245.32,95.39 L 245.32,28.00 A 7.85,3.924375 0 0,1 229.62,28.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_107"/><path d="M 229.62,95.39 A 7.85,3.92 0 0,0 245.32,95.39 L 245.32,28.00 A 7.85,3.924375 0 0,1 229.62,28.00 z" style="fill: url(#LinearGradient_229_28_245_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="237.4692" cy="28" rx="7.8488" ry="3.9244" style="fill: url(#LinearGradient_229_28_245_28_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_108"/><path d="M 249.08,63.71 A 7.85,3.92 0 0,0 264.78,63.71 L 264.78,28.00 A 7.85,3.924375 0 0,1 249.08,28.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_109"/><path d="M 249.08,63.71 A 7.85,3.92 0 0,0 264.78,63.71 L 264.78,28.00 A 7.85,3.924375 0 0,1 249.08,28.00 z" style="fill: url(#LinearGradient_249_28_264_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="256.9308" cy="28" rx="7.8488" ry="3.9244" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_110"/><path d=" M 271.4199,36.0000 L 268.8241,28.0000 L 268.8241,139.4560 L 271.4199,147.4560 L 271.4199,36.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_111"/><path d=" M 268.8241,28.0000 L 271.4199,36.0000 L 283.9610,28.0000 L 281.3652,20.0000 L 268.8241,28.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_112"/><path d=" M 271.4199,36.0000 L 283.9610,28.0000 L 283.9610,139.4560 L 271.4199,147.4560 L 271.4199,36.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_113"/><path d=" M 303.9759,36.0000 L 288.8390,36.0000 L 288.8390,48.3840 L 303.9759,48.3840 L 303.9759,36.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_114"/><path d=" M 304.8390,20.0000 L 288.8390,36.0000 L 303.9759,36.0000 L 319.9759,20.0000 L 304.8390,20.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_115"/><path d=" M 319.9759,32.3840 L 303.9759,48.3840 L 303.9759,36.0000 L 319.9759,20.0000 L 319.9759,32.3840 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_116"/><path d="M 316.02,34.05 A 7.85,3.92 0 0,0 331.72,34.05 L 331.72,28.00 A 7.85,3.924375 0 0,1 316.02,28.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_117"/><path d="M 316.02,34.05 A 7.85,3.92 0 0,0 331.72,34.05 L 331.72,28.00 A 7.85,3.924375 0 0,1 316.02,28.00 z" style="fill: url(#LinearGradient_316_28_331_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="323.8692" cy="28" rx="7.8488" ry="3.9244" style="fill: url(#LinearGradient_316_28_331_28_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_118"/><path d="M 335.48,98.56 A 7.85,3.92 0 0,0 351.18,98.56 L 351.18,28.00 A 7.85,3.924375 0 0,1 335.48,28.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_119"/><path d="M 335.48,98.56 A 7.85,3.92 0 0,0 351.18,98.56 L 351.18,28.00 A 7.85,3.924375 0 0,1 335.48,28.00 z" style="fill: url(#LinearGradient_335_28_351_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="343.3308" cy="28" rx="7.8488" ry="3.9244" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_120"/><path d=" M 357.8199,36.0000 L 355.2241,28.0000 L 355.2241,103.1680 L 357.8199,111.1680 L 357.8199,36.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_121"/><path d=" M 355.2241,28.0000 L 357.8199,36.0000 L 370.3610,28.0000 L 367.7652,20.0000 L 355.2241,28.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_122"/><path d=" M 357.8199,36.0000 L 370.3610,28.0000 L 370.3610,103.1680 L 357.8199,111.1680 L 357.8199,36.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_123"/><path d=" M 390.3759,36.0000 L 375.2390,36.0000 L 375.2390,54.7200 L 390.3759,54.7200 L 390.3759,36.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_124"/><path d=" M 391.2390,20.0000 L 375.2390,36.0000 L 390.3759,36.0000 L 406.3759,20.0000 L 391.2390,20.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_125"/><path d=" M 406.3759,38.7200 L 390.3759,54.7200 L 390.3759,36.0000 L 406.3759,20.0000 L 406.3759,38.7200 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_126"/><path d="M 402.42,121.31 A 7.85,3.92 0 0,0 418.12,121.31 L 418.12,28.00 A 7.85,3.924375 0 0,1 402.42,28.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_127"/><path d="M 402.42,121.31 A 7.85,3.92 0 0,0 418.12,121.31 L 418.12,28.00 A 7.85,3.924375 0 0,1 402.42,28.00 z" style="fill: url(#LinearGradient_402_28_418_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="410.2692" cy="28" rx="7.8488" ry="3.9244" style="fill: url(#LinearGradient_402_28_418_28_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_128"/><path d="M 421.88,131.97 A 7.85,3.92 0 0,0 437.58,131.97 L 437.58,28.00 A 7.85,3.924375 0 0,1 421.88,28.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_129"/><path d="M 421.88,131.97 A 7.85,3.92 0 0,0 437.58,131.97 L 437.58,28.00 A 7.85,3.924375 0 0,1 421.88,28.00 z" style="fill: url(#LinearGradient_421_28_437_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="429.7308" cy="28" rx="7.8488" ry="3.9244" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_130"/><path d=" M 444.2199,36.0000 L 441.6241,28.0000 L 441.6241,34.9120 L 444.2199,42.9120 L 444.2199,36.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_131"/><path d=" M 441.6241,28.0000 L 444.2199,36.0000 L 456.7610,28.0000 L 454.1652,20.0000 L 441.6241,28.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_132"/><path d=" M 444.2199,36.0000 L 456.7610,28.0000 L 456.7610,34.9120 L 444.2199,42.9120 L 444.2199,36.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_133"/><path d=" M 476.7759,36.0000 L 461.6390,36.0000 L 461.6390,63.9360 L 476.7759,63.9360 L 476.7759,36.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_134"/><path d=" M 477.6390,20.0000 L 461.6390,36.0000 L 476.7759,36.0000 L 492.7759,20.0000 L 477.6390,20.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_135"/><path d=" M 492.7759,47.9360 L 476.7759,63.9360 L 476.7759,36.0000 L 492.7759,20.0000 L 492.7759,47.9360 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_136"/><path d="M 488.82,62.56 A 7.85,3.92 0 0,0 504.52,62.56 L 504.52,28.00 A 7.85,3.924375 0 0,1 488.82,28.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_137"/><path d="M 488.82,62.56 A 7.85,3.92 0 0,0 504.52,62.56 L 504.52,28.00 A 7.85,3.924375 0 0,1 488.82,28.00 z" style="fill: url(#LinearGradient_488_28_504_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="496.6692" cy="28" rx="7.8488" ry="3.9244" style="fill: url(#LinearGradient_488_28_504_28_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_138"/><path d="M 508.28,146.66 A 7.85,3.92 0 0,0 523.98,146.66 L 523.98,28.00 A 7.85,3.924375 0 0,1 508.28,28.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_139"/><path d="M 508.28,146.66 A 7.85,3.92 0 0,0 523.98,146.66 L 523.98,28.00 A 7.85,3.924375 0 0,1 508.28,28.00 z" style="fill: url(#LinearGradient_508_28_523_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="516.1308" cy="28" rx="7.8488" ry="3.9244" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_140"/><path d=" M 530.6199,36.0000 L 528.0241,28.0000 L 528.0241,44.9920 L 530.6199,52.9920 L 530.6199,36.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_141"/><path d=" M 528.0241,28.0000 L 530.6199,36.0000 L 543.1610,28.0000 L 540.5652,20.0000 L 528.0241,28.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_142"/><path d=" M 530.6199,36.0000 L 543.1610,28.0000 L 543.1610,44.9920 L 530.6199,52.9920 L 530.6199,36.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_143"/><path d=" M 563.1759,36.0000 L 548.0390,36.0000 L 548.0390,80.3520 L 563.1759,80.3520 L 563.1759,36.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_144"/><path d=" M 564.0390,20.0000 L 548.0390,36.0000 L 563.1759,36.0000 L 579.1759,20.0000 L 564.0390,20.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_145"/><path d=" M 579.1759,64.3520 L 563.1759,80.3520 L 563.1759,36.0000 L 579.1759,20.0000 L 579.1759,64.3520 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_146"/><path d="M 575.22,28.29 A 7.85,3.92 0 0,0 590.92,28.29 L 590.92,28.00 A 7.85,3.924375 0 0,1 575.22,28.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_147"/><path d="M 575.22,28.29 A 7.85,3.92 0 0,0 590.92,28.29 L 590.92,28.00 A 7.85,3.924375 0 0,1 575.22,28.00 z" style="fill: url(#LinearGradient_575_28_590_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="583.0692" cy="28" rx="7.8488" ry="3.9244" style="fill: url(#LinearGradient_575_28_590_28_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_148"/><path d="M 594.68,166.24 A 7.85,3.92 0 0,0 610.38,166.24 L 610.38,28.00 A 7.85,3.924375 0 0,1 594.68,28.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_149"/><path d="M 594.68,166.24 A 7.85,3.92 0 0,0 610.38,166.24 L 610.38,28.00 A 7.85,3.924375 0 0,1 594.68,28.00 z" style="fill: url(#LinearGradient_594_28_610_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="602.5308" cy="28" rx="7.8488" ry="3.9244" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_150"/><path d=" M 617.0199,36.0000 L 614.4241,28.0000 L 614.4241,60.2560 L 617.0199,68.2560 L 617.0199,36.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_151"/><path d=" M 614.4241,28.0000 L 617.0199,36.0000 L 629.5610,28.0000 L 626.9652,20.0000 L 614.4241,28.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_152"/><path d=" M 617.0199,36.0000 L 629.5610,28.0000 L 629.5610,60.2560 L 617.0199,68.2560 L 617.0199,36.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_153"/><path d=" M 700.0000,18.0000 L 680.0000,38.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_154"/><path d=" M 680.0000,38.0000 L 140.0000,38.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_155"/><path d=" M 140.0000,38.0000 L 160.0000,18.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_156"/><path d=" M 214.0000,0.0000 L 194.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_157"/><path d=" M 194.0000,20.0000 L 194.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_158"/><path d=" M 194.0000,200.0000 L 214.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_159"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 86.7800,3.5000 L 86.7800,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_160"/><text id="ezcGraphTextBox_5_text" x="19" text-length="66.78px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Rectangle</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_161"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Circle</text></g><g id="ezcGraphTextBox_9"><path d=" M 18.5000,55.0000 L 18.5000,39.5000 L 64.5200,39.5000 L 64.5200,55.0000 L 18.5000,55.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_162"/><text id="ezcGraphTextBox_9_text" x="19" text-length="44.52px" y="51.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Bullet</text></g><g id="ezcGraphTextBox_11"><path d=" M 18.5000,73.0000 L 18.5000,57.5000 L 71.9400,57.5000 L 71.9400,73.0000 L 18.5000,73.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_163"/><text id="ezcGraphTextBox_11_text" x="19" text-length="51.94px" y="69.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Diamond</text></g><g id="ezcGraphTextBox_18"><path d=" M 210.9420,51.6000 L 210.9420,39.3000 L 263.9580,39.3000 L 263.9580,51.6000 L 210.9420,51.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_164"/><text id="ezcGraphTextBox_18_text" x="211.442" text-length="51.516px" y="48.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample -1</text></g><g id="ezcGraphTextBox_22"><path d=" M 297.3420,51.6000 L 297.3420,39.3000 L 350.3580,39.3000 L 350.3580,51.6000 L 297.3420,51.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_165"/><text id="ezcGraphTextBox_22_text" x="297.842" text-length="51.516px" y="48.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample -2</text></g><g id="ezcGraphTextBox_26"><path d=" M 383.7420,51.6000 L 383.7420,39.3000 L 436.7580,39.3000 L 436.7580,51.6000 L 383.7420,51.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_166"/><text id="ezcGraphTextBox_26_text" x="384.242" text-length="51.516px" y="48.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample -3</text></g><g id="ezcGraphTextBox_30"><path d=" M 470.1420,51.6000 L 470.1420,39.3000 L 523.1580,39.3000 L 523.1580,51.6000 L 470.1420,51.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_167"/><text id="ezcGraphTextBox_30_text" x="470.642" text-length="51.516px" y="48.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample -4</text></g><g id="ezcGraphTextBox_34"><path d=" M 556.5420,51.6000 L 556.5420,39.3000 L 609.5580,39.3000 L 609.5580,51.6000 L 556.5420,51.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_168"/><text id="ezcGraphTextBox_34_text" x="557.042" text-length="51.516px" y="48.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample -5</text></g><g id="ezcGraphTextBox_41"><path d=" M 164.7874,181.2000 L 164.7874,168.9000 L 193.0714,168.9000 L 193.0714,181.2000 L 164.7874,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_169"/><text id="ezcGraphTextBox_41_text" x="165.2874" text-length="26.784px" y="178.58" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-500</text></g><g id="ezcGraphTextBox_54"><path d=" M 164.7874,152.4000 L 164.7874,140.1000 L 193.0714,140.1000 L 193.0714,152.4000 L 164.7874,152.4000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_170"/><text id="ezcGraphTextBox_54_text" x="165.2874" text-length="26.784px" y="149.78" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-400</text></g><g id="ezcGraphTextBox_67"><path d=" M 164.7874,123.6000 L 164.7874,111.3000 L 193.0714,111.3000 L 193.0714,123.6000 L 164.7874,123.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_171"/><text id="ezcGraphTextBox_67_text" x="165.2874" text-length="26.784px" y="120.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-300</text></g><g id="ezcGraphTextBox_80"><path d=" M 164.7874,94.8000 L 164.7874,82.5000 L 193.0714,82.5000 L 193.0714,94.8000 L 164.7874,94.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_172"/><text id="ezcGraphTextBox_80_text" x="165.2874" text-length="26.784px" y="92.18" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-200</text></g><g id="ezcGraphTextBox_93"><path d=" M 164.7874,66.0000 L 164.7874,53.7000 L 193.0714,53.7000 L 193.0714,66.0000 L 164.7874,66.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_173"/><text id="ezcGraphTextBox_93_text" x="165.2874" text-length="26.784px" y="63.38" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-100</text></g><g id="ezcGraphTextBox_103"><path d=" M 184.8754,51.6000 L 184.8754,39.3000 L 193.0714,39.3000 L 193.0714,51.6000 L 184.8754,51.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_174"/><text id="ezcGraphTextBox_103_text" x="185.3754" text-length="6.696px" y="48.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="700" height="200" version="1.0" id="ezcGraph"><defs><linearGradient id="Definition_LinearGradient_229_28_245_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_229_28_245_28_ffffffbf_0000007f" x1="229.6204" y1="28" x2="245.3179" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_229_28_245_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_229_28_245_28_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_229_28_245_28_8f191900_ef292900" x1="229.6204" y1="28" x2="245.3179" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_229_28_245_28_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_249_28_264_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_249_28_264_28_ffffffbf_0000007f" x1="249.0821" y1="28" x2="264.7796" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_249_28_264_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_316_28_331_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_316_28_331_28_ffffffbf_0000007f" x1="316.0204" y1="28" x2="331.7179" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_316_28_331_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_316_28_331_28_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_316_28_331_28_8f191900_ef292900" x1="316.0204" y1="28" x2="331.7179" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_316_28_331_28_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_335_28_351_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_335_28_351_28_ffffffbf_0000007f" x1="335.4821" y1="28" x2="351.1796" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_335_28_351_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_402_28_418_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_402_28_418_28_ffffffbf_0000007f" x1="402.4204" y1="28" x2="418.1179" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_402_28_418_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_402_28_418_28_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_402_28_418_28_8f191900_ef292900" x1="402.4204" y1="28" x2="418.1179" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_402_28_418_28_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_421_28_437_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_421_28_437_28_ffffffbf_0000007f" x1="421.8821" y1="28" x2="437.5796" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_421_28_437_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_488_28_504_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_488_28_504_28_ffffffbf_0000007f" x1="488.8204" y1="28" x2="504.5179" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_488_28_504_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_488_28_504_28_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_488_28_504_28_8f191900_ef292900" x1="488.8204" y1="28" x2="504.5179" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_488_28_504_28_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_508_28_523_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_508_28_523_28_ffffffbf_0000007f" x1="508.2821" y1="28" x2="523.9796" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_508_28_523_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_575_28_590_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_575_28_590_28_ffffffbf_0000007f" x1="575.2204" y1="28" x2="590.9179" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_575_28_590_28_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_575_28_590_28_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_575_28_590_28_8f191900_ef292900" x1="575.2204" y1="28" x2="590.9179" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_575_28_590_28_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_594_28_610_28_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_594_28_610_28_ffffffbf_0000007f" x1="594.6821" y1="28" x2="610.3796" y2="28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_594_28_610_28_ffffffbf_0000007f"/></defs><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,200.0000 L 0.0000,0.0000 L 700.0000,0.0000 L 700.0000,200.0000 L 0.0000,200.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 139.0000,1.0000 L 139.0000,199.0000 L 1.0000,199.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,199.0000 L 1.0000,1.0000 L 139.0000,1.0000 L 139.0000,199.0000 L 1.0000,199.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><path d=" M 4.0000,18.0000 L 4.0000,4.0000 L 18.0000,4.0000 L 18.0000,18.0000 L 4.0000,18.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_4"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircle_6"/><ellipse cx="11" cy="47" rx="7" ry="7" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_8"/><path d=" M 4.0000,65.0000 L 11.0000,58.0000 L 18.0000,65.0000 L 11.0000,72.0000 L 4.0000,65.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_10"/><path d=" M 140.0000,38.0000 L 160.0000,18.0000 L 700.0000,18.0000 L 680.0000,38.0000 L 140.0000,38.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 160.0000,18.0000 L 700.0000,18.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_13"/><path d=" M 692.0000,22.0000 L 700.0000,18.0000 L 692.0000,14.0000 L 692.0000,22.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_14"/><path d=" M 194.0000,200.0000 L 214.0000,180.0000 L 214.0000,0.0000 L 194.0000,20.0000 L 194.0000,200.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 214.0000,180.0000 L 214.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 211.5000,5.0000 L 214.0000,0.0000 L 216.5000,5.0000 L 211.5000,5.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 300.4000,162.0000 L 300.4000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 280.4000,35.3000 L 300.4000,15.3000 L 300.4000,20.7000 L 280.4000,40.7000 L 280.4000,35.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_20"/><path d=" M 280.4000,35.3000 L 300.4000,15.3000 L 300.4000,20.7000 L 280.4000,40.7000 L 280.4000,35.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_21"/><path d=" M 386.8000,162.0000 L 386.8000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_23"/><path d=" M 366.8000,35.3000 L 386.8000,15.3000 L 386.8000,20.7000 L 366.8000,40.7000 L 366.8000,35.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_24"/><path d=" M 366.8000,35.3000 L 386.8000,15.3000 L 386.8000,20.7000 L 366.8000,40.7000 L 366.8000,35.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_25"/><path d=" M 473.2000,162.0000 L 473.2000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_27"/><path d=" M 453.2000,35.3000 L 473.2000,15.3000 L 473.2000,20.7000 L 453.2000,40.7000 L 453.2000,35.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_28"/><path d=" M 453.2000,35.3000 L 473.2000,15.3000 L 473.2000,20.7000 L 453.2000,40.7000 L 453.2000,35.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_29"/><path d=" M 559.6000,162.0000 L 559.6000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_31"/><path d=" M 539.6000,35.3000 L 559.6000,15.3000 L 559.6000,20.7000 L 539.6000,40.7000 L 539.6000,35.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_32"/><path d=" M 539.6000,35.3000 L 559.6000,15.3000 L 559.6000,20.7000 L 539.6000,40.7000 L 539.6000,35.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_33"/><path d=" M 646.0000,162.0000 L 646.0000,18.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_35"/><path d=" M 626.0000,35.3000 L 646.0000,15.3000 L 646.0000,20.7000 L 626.0000,40.7000 L 626.0000,35.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_36"/><path d=" M 626.0000,35.3000 L 646.0000,15.3000 L 646.0000,20.7000 L 626.0000,40.7000 L 626.0000,35.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_37"/><path d=" M 646.0000,162.0000 L 214.0000,162.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_38"/><path d=" M 194.0000,182.0000 L 214.0000,162.0000 L 216.8929,162.0000 L 196.8929,182.0000 L 194.0000,182.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_39"/><path d=" M 194.0000,182.0000 L 214.0000,162.0000 L 216.8929,162.0000 L 196.8929,182.0000 L 194.0000,182.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_40"/><path d=" M 646.0000,154.8000 L 214.0000,154.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_42"/><path d=" M 194.0000,174.8000 L 214.0000,154.8000 L 214.9643,154.8000 L 194.9643,174.8000 L 194.0000,174.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_43"/><path d=" M 194.0000,174.8000 L 214.0000,154.8000 L 214.9643,154.8000 L 194.9643,174.8000 L 194.0000,174.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_44"/><path d=" M 646.0000,147.6000 L 214.0000,147.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_45"/><path d=" M 194.0000,167.6000 L 214.0000,147.6000 L 214.9643,147.6000 L 194.9643,167.6000 L 194.0000,167.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_46"/><path d=" M 194.0000,167.6000 L 214.0000,147.6000 L 214.9643,147.6000 L 194.9643,167.6000 L 194.0000,167.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_47"/><path d=" M 646.0000,140.4000 L 214.0000,140.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_48"/><path d=" M 194.0000,160.4000 L 214.0000,140.4000 L 214.9643,140.4000 L 194.9643,160.4000 L 194.0000,160.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_49"/><path d=" M 194.0000,160.4000 L 214.0000,140.4000 L 214.9643,140.4000 L 194.9643,160.4000 L 194.0000,160.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_50"/><path d=" M 646.0000,133.2000 L 214.0000,133.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_51"/><path d=" M 194.0000,153.2000 L 214.0000,133.2000 L 216.8929,133.2000 L 196.8929,153.2000 L 194.0000,153.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_52"/><path d=" M 194.0000,153.2000 L 214.0000,133.2000 L 216.8929,133.2000 L 196.8929,153.2000 L 194.0000,153.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_53"/><path d=" M 646.0000,126.0000 L 214.0000,126.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_55"/><path d=" M 194.0000,146.0000 L 214.0000,126.0000 L 214.9643,126.0000 L 194.9643,146.0000 L 194.0000,146.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_56"/><path d=" M 194.0000,146.0000 L 214.0000,126.0000 L 214.9643,126.0000 L 194.9643,146.0000 L 194.0000,146.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_57"/><path d=" M 646.0000,118.8000 L 214.0000,118.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_58"/><path d=" M 194.0000,138.8000 L 214.0000,118.8000 L 214.9643,118.8000 L 194.9643,138.8000 L 194.0000,138.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_59"/><path d=" M 194.0000,138.8000 L 214.0000,118.8000 L 214.9643,118.8000 L 194.9643,138.8000 L 194.0000,138.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_60"/><path d=" M 646.0000,111.6000 L 214.0000,111.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_61"/><path d=" M 194.0000,131.6000 L 214.0000,111.6000 L 214.9643,111.6000 L 194.9643,131.6000 L 194.0000,131.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_62"/><path d=" M 194.0000,131.6000 L 214.0000,111.6000 L 214.9643,111.6000 L 194.9643,131.6000 L 194.0000,131.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_63"/><path d=" M 646.0000,104.4000 L 214.0000,104.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_64"/><path d=" M 194.0000,124.4000 L 214.0000,104.4000 L 216.8929,104.4000 L 196.8929,124.4000 L 194.0000,124.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_65"/><path d=" M 194.0000,124.4000 L 214.0000,104.4000 L 216.8929,104.4000 L 196.8929,124.4000 L 194.0000,124.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_66"/><path d=" M 646.0000,97.2000 L 214.0000,97.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_68"/><path d=" M 194.0000,117.2000 L 214.0000,97.2000 L 214.9643,97.2000 L 194.9643,117.2000 L 194.0000,117.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_69"/><path d=" M 194.0000,117.2000 L 214.0000,97.2000 L 214.9643,97.2000 L 194.9643,117.2000 L 194.0000,117.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_70"/><path d=" M 646.0000,90.0000 L 214.0000,90.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_71"/><path d=" M 194.0000,110.0000 L 214.0000,90.0000 L 214.9643,90.0000 L 194.9643,110.0000 L 194.0000,110.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_72"/><path d=" M 194.0000,110.0000 L 214.0000,90.0000 L 214.9643,90.0000 L 194.9643,110.0000 L 194.0000,110.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_73"/><path d=" M 646.0000,82.8000 L 214.0000,82.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_74"/><path d=" M 194.0000,102.8000 L 214.0000,82.8000 L 214.9643,82.8000 L 194.9643,102.8000 L 194.0000,102.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_75"/><path d=" M 194.0000,102.8000 L 214.0000,82.8000 L 214.9643,82.8000 L 194.9643,102.8000 L 194.0000,102.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_76"/><path d=" M 646.0000,75.6000 L 214.0000,75.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_77"/><path d=" M 194.0000,95.6000 L 214.0000,75.6000 L 216.8929,75.6000 L 196.8929,95.6000 L 194.0000,95.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_78"/><path d=" M 194.0000,95.6000 L 214.0000,75.6000 L 216.8929,75.6000 L 196.8929,95.6000 L 194.0000,95.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_79"/><path d=" M 646.0000,68.4000 L 214.0000,68.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_81"/><path d=" M 194.0000,88.4000 L 214.0000,68.4000 L 214.9643,68.4000 L 194.9643,88.4000 L 194.0000,88.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 194.0000,88.4000 L 214.0000,68.4000 L 214.9643,68.4000 L 194.9643,88.4000 L 194.0000,88.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_83"/><path d=" M 646.0000,61.2000 L 214.0000,61.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_84"/><path d=" M 194.0000,81.2000 L 214.0000,61.2000 L 214.9643,61.2000 L 194.9643,81.2000 L 194.0000,81.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 194.0000,81.2000 L 214.0000,61.2000 L 214.9643,61.2000 L 194.9643,81.2000 L 194.0000,81.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_86"/><path d=" M 646.0000,54.0000 L 214.0000,54.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_87"/><path d=" M 194.0000,74.0000 L 214.0000,54.0000 L 214.9643,54.0000 L 194.9643,74.0000 L 194.0000,74.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_88"/><path d=" M 194.0000,74.0000 L 214.0000,54.0000 L 214.9643,54.0000 L 194.9643,74.0000 L 194.0000,74.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_89"/><path d=" M 646.0000,46.8000 L 214.0000,46.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_90"/><path d=" M 194.0000,66.8000 L 214.0000,46.8000 L 216.8929,46.8000 L 196.8929,66.8000 L 194.0000,66.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 194.0000,66.8000 L 214.0000,46.8000 L 216.8929,46.8000 L 196.8929,66.8000 L 194.0000,66.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_92"/><path d=" M 646.0000,39.6000 L 214.0000,39.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_94"/><path d=" M 194.0000,59.6000 L 214.0000,39.6000 L 214.9643,39.6000 L 194.9643,59.6000 L 194.0000,59.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 194.0000,59.6000 L 214.0000,39.6000 L 214.9643,39.6000 L 194.9643,59.6000 L 194.0000,59.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_96"/><path d=" M 646.0000,32.4000 L 214.0000,32.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_97"/><path d=" M 194.0000,52.4000 L 214.0000,32.4000 L 214.9643,32.4000 L 194.9643,52.4000 L 194.0000,52.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 194.0000,52.4000 L 214.0000,32.4000 L 214.9643,32.4000 L 194.9643,52.4000 L 194.0000,52.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_99"/><path d=" M 646.0000,25.2000 L 214.0000,25.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_100"/><path d=" M 194.0000,45.2000 L 214.0000,25.2000 L 214.9643,25.2000 L 194.9643,45.2000 L 194.0000,45.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_101"/><path d=" M 194.0000,45.2000 L 214.0000,25.2000 L 214.9643,25.2000 L 194.9643,45.2000 L 194.0000,45.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_102"/><path d=" M 217.5759,36.0000 L 202.4390,36.0000 L 202.4390,160.4160 L 217.5759,160.4160 L 217.5759,36.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 218.4390,20.0000 L 202.4390,36.0000 L 217.5759,36.0000 L 233.5759,20.0000 L 218.4390,20.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_105"/><path d=" M 233.5759,144.4160 L 217.5759,160.4160 L 217.5759,36.0000 L 233.5759,20.0000 L 233.5759,144.4160 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_106"/><path d="M 229.62,95.39 A 7.85,3.92 0 0,0 245.32,95.39 L 245.32,28.00 A 7.85,3.924375 0 0,1 229.62,28.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_107"/><path d="M 229.62,95.39 A 7.85,3.92 0 0,0 245.32,95.39 L 245.32,28.00 A 7.85,3.924375 0 0,1 229.62,28.00 z" style="fill: url(#LinearGradient_229_28_245_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="237.4692" cy="28" rx="7.8488" ry="3.9244" style="fill: url(#LinearGradient_229_28_245_28_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_108"/><path d="M 249.08,63.71 A 7.85,3.92 0 0,0 264.78,63.71 L 264.78,28.00 A 7.85,3.924375 0 0,1 249.08,28.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_109"/><path d="M 249.08,63.71 A 7.85,3.92 0 0,0 264.78,63.71 L 264.78,28.00 A 7.85,3.924375 0 0,1 249.08,28.00 z" style="fill: url(#LinearGradient_249_28_264_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="256.9308" cy="28" rx="7.8488" ry="3.9244" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_110"/><path d=" M 271.4199,36.0000 L 268.8241,28.0000 L 268.8241,139.4560 L 271.4199,147.4560 L 271.4199,36.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_111"/><path d=" M 268.8241,28.0000 L 271.4199,36.0000 L 283.9610,28.0000 L 281.3652,20.0000 L 268.8241,28.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_112"/><path d=" M 271.4199,36.0000 L 283.9610,28.0000 L 283.9610,139.4560 L 271.4199,147.4560 L 271.4199,36.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_113"/><path d=" M 303.9759,36.0000 L 288.8390,36.0000 L 288.8390,48.3840 L 303.9759,48.3840 L 303.9759,36.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_114"/><path d=" M 304.8390,20.0000 L 288.8390,36.0000 L 303.9759,36.0000 L 319.9759,20.0000 L 304.8390,20.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_115"/><path d=" M 319.9759,32.3840 L 303.9759,48.3840 L 303.9759,36.0000 L 319.9759,20.0000 L 319.9759,32.3840 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_116"/><path d="M 316.02,34.05 A 7.85,3.92 0 0,0 331.72,34.05 L 331.72,28.00 A 7.85,3.924375 0 0,1 316.02,28.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_117"/><path d="M 316.02,34.05 A 7.85,3.92 0 0,0 331.72,34.05 L 331.72,28.00 A 7.85,3.924375 0 0,1 316.02,28.00 z" style="fill: url(#LinearGradient_316_28_331_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="323.8692" cy="28" rx="7.8488" ry="3.9244" style="fill: url(#LinearGradient_316_28_331_28_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_118"/><path d="M 335.48,98.56 A 7.85,3.92 0 0,0 351.18,98.56 L 351.18,28.00 A 7.85,3.924375 0 0,1 335.48,28.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_119"/><path d="M 335.48,98.56 A 7.85,3.92 0 0,0 351.18,98.56 L 351.18,28.00 A 7.85,3.924375 0 0,1 335.48,28.00 z" style="fill: url(#LinearGradient_335_28_351_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="343.3308" cy="28" rx="7.8488" ry="3.9244" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_120"/><path d=" M 357.8199,36.0000 L 355.2241,28.0000 L 355.2241,103.1680 L 357.8199,111.1680 L 357.8199,36.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_121"/><path d=" M 355.2241,28.0000 L 357.8199,36.0000 L 370.3610,28.0000 L 367.7652,20.0000 L 355.2241,28.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_122"/><path d=" M 357.8199,36.0000 L 370.3610,28.0000 L 370.3610,103.1680 L 357.8199,111.1680 L 357.8199,36.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_123"/><path d=" M 390.3759,36.0000 L 375.2390,36.0000 L 375.2390,54.7200 L 390.3759,54.7200 L 390.3759,36.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_124"/><path d=" M 391.2390,20.0000 L 375.2390,36.0000 L 390.3759,36.0000 L 406.3759,20.0000 L 391.2390,20.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_125"/><path d=" M 406.3759,38.7200 L 390.3759,54.7200 L 390.3759,36.0000 L 406.3759,20.0000 L 406.3759,38.7200 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_126"/><path d="M 402.42,121.31 A 7.85,3.92 0 0,0 418.12,121.31 L 418.12,28.00 A 7.85,3.924375 0 0,1 402.42,28.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_127"/><path d="M 402.42,121.31 A 7.85,3.92 0 0,0 418.12,121.31 L 418.12,28.00 A 7.85,3.924375 0 0,1 402.42,28.00 z" style="fill: url(#LinearGradient_402_28_418_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="410.2692" cy="28" rx="7.8488" ry="3.9244" style="fill: url(#LinearGradient_402_28_418_28_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_128"/><path d="M 421.88,131.97 A 7.85,3.92 0 0,0 437.58,131.97 L 437.58,28.00 A 7.85,3.924375 0 0,1 421.88,28.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_129"/><path d="M 421.88,131.97 A 7.85,3.92 0 0,0 437.58,131.97 L 437.58,28.00 A 7.85,3.924375 0 0,1 421.88,28.00 z" style="fill: url(#LinearGradient_421_28_437_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="429.7308" cy="28" rx="7.8488" ry="3.9244" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_130"/><path d=" M 444.2199,36.0000 L 441.6241,28.0000 L 441.6241,34.9120 L 444.2199,42.9120 L 444.2199,36.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_131"/><path d=" M 441.6241,28.0000 L 444.2199,36.0000 L 456.7610,28.0000 L 454.1652,20.0000 L 441.6241,28.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_132"/><path d=" M 444.2199,36.0000 L 456.7610,28.0000 L 456.7610,34.9120 L 444.2199,42.9120 L 444.2199,36.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_133"/><path d=" M 476.7759,36.0000 L 461.6390,36.0000 L 461.6390,63.9360 L 476.7759,63.9360 L 476.7759,36.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_134"/><path d=" M 477.6390,20.0000 L 461.6390,36.0000 L 476.7759,36.0000 L 492.7759,20.0000 L 477.6390,20.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_135"/><path d=" M 492.7759,47.9360 L 476.7759,63.9360 L 476.7759,36.0000 L 492.7759,20.0000 L 492.7759,47.9360 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_136"/><path d="M 488.82,62.56 A 7.85,3.92 0 0,0 504.52,62.56 L 504.52,28.00 A 7.85,3.924375 0 0,1 488.82,28.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_137"/><path d="M 488.82,62.56 A 7.85,3.92 0 0,0 504.52,62.56 L 504.52,28.00 A 7.85,3.924375 0 0,1 488.82,28.00 z" style="fill: url(#LinearGradient_488_28_504_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="496.6692" cy="28" rx="7.8488" ry="3.9244" style="fill: url(#LinearGradient_488_28_504_28_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_138"/><path d="M 508.28,146.66 A 7.85,3.92 0 0,0 523.98,146.66 L 523.98,28.00 A 7.85,3.924375 0 0,1 508.28,28.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_139"/><path d="M 508.28,146.66 A 7.85,3.92 0 0,0 523.98,146.66 L 523.98,28.00 A 7.85,3.924375 0 0,1 508.28,28.00 z" style="fill: url(#LinearGradient_508_28_523_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="516.1308" cy="28" rx="7.8488" ry="3.9244" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_140"/><path d=" M 530.6199,36.0000 L 528.0241,28.0000 L 528.0241,44.9920 L 530.6199,52.9920 L 530.6199,36.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_141"/><path d=" M 528.0241,28.0000 L 530.6199,36.0000 L 543.1610,28.0000 L 540.5652,20.0000 L 528.0241,28.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_142"/><path d=" M 530.6199,36.0000 L 543.1610,28.0000 L 543.1610,44.9920 L 530.6199,52.9920 L 530.6199,36.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_143"/><path d=" M 563.1759,36.0000 L 548.0390,36.0000 L 548.0390,80.3520 L 563.1759,80.3520 L 563.1759,36.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_144"/><path d=" M 564.0390,20.0000 L 548.0390,36.0000 L 563.1759,36.0000 L 579.1759,20.0000 L 564.0390,20.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_145"/><path d=" M 579.1759,64.3520 L 563.1759,80.3520 L 563.1759,36.0000 L 579.1759,20.0000 L 579.1759,64.3520 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_146"/><path d="M 575.22,28.29 A 7.85,3.92 0 0,0 590.92,28.29 L 590.92,28.00 A 7.85,3.924375 0 0,1 575.22,28.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_147"/><path d="M 575.22,28.29 A 7.85,3.92 0 0,0 590.92,28.29 L 590.92,28.00 A 7.85,3.924375 0 0,1 575.22,28.00 z" style="fill: url(#LinearGradient_575_28_590_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="583.0692" cy="28" rx="7.8488" ry="3.9244" style="fill: url(#LinearGradient_575_28_590_28_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_148"/><path d="M 594.68,166.24 A 7.85,3.92 0 0,0 610.38,166.24 L 610.38,28.00 A 7.85,3.924375 0 0,1 594.68,28.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_149"/><path d="M 594.68,166.24 A 7.85,3.92 0 0,0 610.38,166.24 L 610.38,28.00 A 7.85,3.924375 0 0,1 594.68,28.00 z" style="fill: url(#LinearGradient_594_28_610_28_ffffffbf_0000007f); stroke: none;"/><ellipse cx="602.5308" cy="28" rx="7.8488" ry="3.9244" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_150"/><path d=" M 617.0199,36.0000 L 614.4241,28.0000 L 614.4241,60.2560 L 617.0199,68.2560 L 617.0199,36.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_151"/><path d=" M 614.4241,28.0000 L 617.0199,36.0000 L 629.5610,28.0000 L 626.9652,20.0000 L 614.4241,28.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_152"/><path d=" M 617.0199,36.0000 L 629.5610,28.0000 L 629.5610,60.2560 L 617.0199,68.2560 L 617.0199,36.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_153"/><path d=" M 700.0000,18.0000 L 680.0000,38.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_154"/><path d=" M 680.0000,38.0000 L 140.0000,38.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_155"/><path d=" M 140.0000,38.0000 L 160.0000,18.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_156"/><path d=" M 214.0000,0.0000 L 194.0000,20.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_157"/><path d=" M 194.0000,20.0000 L 194.0000,200.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_158"/><path d=" M 194.0000,200.0000 L 214.0000,180.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_159"/><g id="ezcGraphTextBox_5"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 86.7800,3.5000 L 86.7800,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_160"/><text id="ezcGraphTextBox_5_text" x="19" text-length="66.78px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Rectangle</text></g><g id="ezcGraphTextBox_7"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_161"/><text id="ezcGraphTextBox_7_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Circle</text></g><g id="ezcGraphTextBox_9"><path d=" M 18.5000,55.0000 L 18.5000,39.5000 L 64.5200,39.5000 L 64.5200,55.0000 L 18.5000,55.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_162"/><text id="ezcGraphTextBox_9_text" x="19" text-length="44.52px" y="51.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Bullet</text></g><g id="ezcGraphTextBox_11"><path d=" M 18.5000,73.0000 L 18.5000,57.5000 L 71.9400,57.5000 L 71.9400,73.0000 L 18.5000,73.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_163"/><text id="ezcGraphTextBox_11_text" x="19" text-length="51.94px" y="69.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Diamond</text></g><g id="ezcGraphTextBox_18"><path d=" M 210.9420,51.6000 L 210.9420,39.3000 L 263.9580,39.3000 L 263.9580,51.6000 L 210.9420,51.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_164"/><text id="ezcGraphTextBox_18_text" x="211.442" text-length="51.516px" y="48.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample -1</text></g><g id="ezcGraphTextBox_22"><path d=" M 297.3420,51.6000 L 297.3420,39.3000 L 350.3580,39.3000 L 350.3580,51.6000 L 297.3420,51.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_165"/><text id="ezcGraphTextBox_22_text" x="297.842" text-length="51.516px" y="48.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample -2</text></g><g id="ezcGraphTextBox_26"><path d=" M 383.7420,51.6000 L 383.7420,39.3000 L 436.7580,39.3000 L 436.7580,51.6000 L 383.7420,51.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_166"/><text id="ezcGraphTextBox_26_text" x="384.242" text-length="51.516px" y="48.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample -3</text></g><g id="ezcGraphTextBox_30"><path d=" M 470.1420,51.6000 L 470.1420,39.3000 L 523.1580,39.3000 L 523.1580,51.6000 L 470.1420,51.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_167"/><text id="ezcGraphTextBox_30_text" x="470.642" text-length="51.516px" y="48.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample -4</text></g><g id="ezcGraphTextBox_34"><path d=" M 556.5420,51.6000 L 556.5420,39.3000 L 609.5580,39.3000 L 609.5580,51.6000 L 556.5420,51.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_168"/><text id="ezcGraphTextBox_34_text" x="557.042" text-length="51.516px" y="48.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample -5</text></g><g id="ezcGraphTextBox_41"><path d=" M 164.7874,181.2000 L 164.7874,168.9000 L 193.0714,168.9000 L 193.0714,181.2000 L 164.7874,181.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_169"/><text id="ezcGraphTextBox_41_text" x="165.2874" text-length="26.784px" y="178.58" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-500</text></g><g id="ezcGraphTextBox_54"><path d=" M 164.7874,152.4000 L 164.7874,140.1000 L 193.0714,140.1000 L 193.0714,152.4000 L 164.7874,152.4000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_170"/><text id="ezcGraphTextBox_54_text" x="165.2874" text-length="26.784px" y="149.78" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-400</text></g><g id="ezcGraphTextBox_67"><path d=" M 164.7874,123.6000 L 164.7874,111.3000 L 193.0714,111.3000 L 193.0714,123.6000 L 164.7874,123.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_171"/><text id="ezcGraphTextBox_67_text" x="165.2874" text-length="26.784px" y="120.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-300</text></g><g id="ezcGraphTextBox_80"><path d=" M 164.7874,94.8000 L 164.7874,82.5000 L 193.0714,82.5000 L 193.0714,94.8000 L 164.7874,94.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_172"/><text id="ezcGraphTextBox_80_text" x="165.2874" text-length="26.784px" y="92.18" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-200</text></g><g id="ezcGraphTextBox_93"><path d=" M 164.7874,66.0000 L 164.7874,53.7000 L 193.0714,53.7000 L 193.0714,66.0000 L 164.7874,66.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_173"/><text id="ezcGraphTextBox_93_text" x="165.2874" text-length="26.784px" y="63.38" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-100</text></g><g id="ezcGraphTextBox_103"><path d=" M 184.8754,51.6000 L 184.8754,39.3000 L 193.0714,39.3000 L 193.0714,51.6000 L 184.8754,51.6000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_174"/><text id="ezcGraphTextBox_103_text" x="185.3754" text-length="6.696px" y="48.98" style="font-size: 10px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g></g></svg>
diff --git a/tests/data/compare/ezcGraphRenderer3dTest_testRenderPimpedBarChart.svg b/tests/data/compare/ezcGraphRenderer3dTest_testRenderPimpedBarChart.svg
index d3908ab..19bdfdf 100644
--- a/tests/data/compare/ezcGraphRenderer3dTest_testRenderPimpedBarChart.svg
+++ b/tests/data/compare/ezcGraphRenderer3dTest_testRenderPimpedBarChart.svg
@@ -1,2 +1,2 @@
<?xml version="1.0"?>
-<svg xmlns="http://www.w3.org/2000/svg" width="700" height="300" version="1.0" id="ezcGraph"><defs><linearGradient id="Definition_LinearGradient_5_5_16_16_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_5_5_16_16_abefff00_39506800" x1="5.4" y1="5.4" x2="16.6" y2="16.6" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_5_5_16_16_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_8_44_13_49_ffff7700_7e752800"><stop offset="0" style="stop-color: #ffff77; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #7e7528; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_8_44_13_49_ffff7700_7e752800" x1="8.1005" y1="44.1005" x2="13.8995" y2="49.8995" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_8_44_13_49_ffff7700_7e752800"/><linearGradient id="Definition_LinearGradient_8_62_13_67_cfff4e00_45711a00"><stop offset="0" style="stop-color: #cfff4e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #45711a; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_8_62_13_67_cfff4e00_45711a00" x1="8.9497" y1="62.9497" x2="13.0503" y2="67.0503" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_8_62_13_67_cfff4e00_45711a00"/><linearGradient id="Definition_LinearGradient_255_49_206_73_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_255_49_206_73_ffffffff_ffffff7f" x1="255.2939" y1="49.584" x2="206.533" y2="73.584" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_255_49_206_73_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_231_198_206_73_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_231_198_206_73_ffffffff_ffffff7f" x1="231.2939" y1="198" x2="206.533" y2="73.584" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_231_198_206_73_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_249_118_275_118_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_249_118_275_118_ffffffbf_0000007f" x1="249.6677" y1="118.608" x2="275.8302" y2="118.608" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_249_118_275_118_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_249_118_275_118_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_249_118_275_118_8f191900_ef292900" x1="249.6677" y1="118.608" x2="275.8302" y2="118.608" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_249_118_275_118_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_281_150_307_150_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_281_150_307_150_ffffffbf_0000007f" x1="281.5032" y1="150.288" x2="307.6657" y2="150.288" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_281_150_307_150_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_338_74_314_74_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_338_74_314_74_ffffffff_ffffff7f" x1="338.8004" y1="74.544" x2="314.0394" y2="74.544" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_338_74_314_74_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_372_198_347_210_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_372_198_347_210_ffffffff_ffffff7f" x1="372.6272" y1="198" x2="347.8663" y2="210.384" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_372_198_347_210_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_396_174_347_198_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_396_174_347_198_ffffffff_ffffff7f" x1="396.6272" y1="174" x2="347.8663" y2="198" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_396_174_347_198_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_391_186_417_186_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_391_186_417_186_ffffffbf_0000007f" x1="391.001" y1="186" x2="417.1635" y2="186" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_391_186_417_186_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_391_186_417_186_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_391_186_417_186_8f191900_ef292900" x1="391.001" y1="186" x2="417.1635" y2="186" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_391_186_417_186_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_422_186_448_186_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_422_186_448_186_ffffffbf_0000007f" x1="422.8365" y1="186" x2="448.999" y2="186" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_422_186_448_186_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_480_186_455_186_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_480_186_455_186_ffffffff_ffffff7f" x1="480.1337" y1="186" x2="455.3728" y2="186" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_480_186_455_186_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_537_155_489_179_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_537_155_489_179_ffffffff_ffffff7f" x1="537.9606" y1="155.28" x2="489.1996" y2="179.28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_537_155_489_179_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_513_198_489_179_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_513_198_489_179_ffffffff_ffffff7f" x1="513.9606" y1="198" x2="489.1996" y2="179.28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_513_198_489_179_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_532_92_558_92_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_532_92_558_92_ffffffbf_0000007f" x1="532.3343" y1="92.688" x2="558.4968" y2="92.688" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_532_92_558_92_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_532_92_558_92_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_532_92_558_92_8f191900_ef292900" x1="532.3343" y1="92.688" x2="558.4968" y2="92.688" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_532_92_558_92_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_564_82_590_82_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_564_82_590_82_ffffffbf_0000007f" x1="564.1698" y1="82.032" x2="590.3323" y2="82.032" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_564_82_590_82_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_621_179_596_179_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_621_179_596_179_ffffffff_ffffff7f" x1="621.467" y1="179.088" x2="596.7061" y2="179.088" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_621_179_596_179_ffffffff_ffffff7f"/></defs><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,300.0000 L 0.0000,0.0000 L 700.0000,0.0000 L 700.0000,300.0000 L 0.0000,300.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,299.0000 L 1.0000,1.0000 L 139.0000,1.0000 L 139.0000,299.0000 L 1.0000,299.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_2"/><path d=" M 2.0000,298.0000 L 2.0000,2.0000 L 138.0000,2.0000 L 138.0000,298.0000 L 2.0000,298.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_3"/><path d=" M 4.0000,18.0000 L 4.0000,4.0000 L 18.0000,4.0000 L 18.0000,18.0000 L 4.0000,18.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_4"/><path d=" M 16.6000,5.4000 L 16.6000,16.6000 L 5.4000,16.6000 L 5.4000,5.4000 L 16.6000,5.4000 z " style="fill: url(#LinearGradient_5_5_16_16_abefff00_39506800); stroke: none;" id="ezcGraphPolygon_5"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircle_7"/><ellipse cx="11" cy="47" rx="7" ry="7" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_9"/><ellipse cx="11" cy="47" rx="6.3" ry="6.3" style="fill: url(#LinearGradient_8_44_13_49_ffff7700_7e752800); stroke: none;" id="ezcGraphCircle_10"/><path d=" M 4.0000,65.0000 L 11.0000,58.0000 L 18.0000,65.0000 L 11.0000,72.0000 L 4.0000,65.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 16.6000,65.0000 L 11.0000,70.6000 L 5.4000,65.0000 L 11.0000,59.4000 L 16.6000,65.0000 z " style="fill: url(#LinearGradient_8_62_13_67_cfff4e00_45711a00); stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 140.0000,201.0000 L 170.0000,171.0000 L 700.0000,171.0000 L 670.0000,201.0000 L 140.0000,201.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 170.0000,171.0000 L 700.0000,171.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 692.0000,175.0000 L 700.0000,171.0000 L 692.0000,167.0000 L 692.0000,175.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 193.0000,300.0000 L 223.0000,270.0000 L 223.0000,0.0000 L 193.0000,30.0000 L 193.0000,300.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_18"/><path d=" M 223.0000,270.0000 L 223.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 219.5000,7.0000 L 223.0000,0.0000 L 226.5000,7.0000 L 219.5000,7.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_20"/><path d=" M 362.9200,243.0000 L 362.9200,27.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 334.3333,198.3000 L 364.3333,168.3000 L 364.3333,173.7000 L 334.3333,203.7000 L 334.3333,198.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_23"/><path d=" M 334.3333,198.3000 L 364.3333,168.3000 L 364.3333,173.7000 L 334.3333,203.7000 L 334.3333,198.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 507.0800,243.0000 L 507.0800,27.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 475.6667,198.3000 L 505.6667,168.3000 L 505.6667,173.7000 L 475.6667,203.7000 L 475.6667,198.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 475.6667,198.3000 L 505.6667,168.3000 L 505.6667,173.7000 L 475.6667,203.7000 L 475.6667,198.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 647.0000,243.0000 L 647.0000,27.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 617.0000,198.3000 L 647.0000,168.3000 L 647.0000,173.7000 L 617.0000,203.7000 L 617.0000,198.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_31"/><path d=" M 617.0000,198.3000 L 647.0000,168.3000 L 647.0000,173.7000 L 617.0000,203.7000 L 617.0000,198.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_32"/><path d=" M 647.0000,243.0000 L 223.0000,243.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 193.0000,273.0000 L 223.0000,243.0000 L 225.8393,243.0000 L 195.8393,273.0000 L 193.0000,273.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_34"/><path d=" M 193.0000,273.0000 L 223.0000,243.0000 L 225.8393,243.0000 L 195.8393,273.0000 L 193.0000,273.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_35"/><path d=" M 647.0000,227.8800 L 223.0000,227.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 193.0000,258.6000 L 223.0000,228.6000 L 223.9464,228.6000 L 193.9464,258.6000 L 193.0000,258.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 193.0000,258.6000 L 223.0000,228.6000 L 223.9464,228.6000 L 193.9464,258.6000 L 193.0000,258.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 647.0000,214.9200 L 223.0000,214.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 193.0000,244.2000 L 223.0000,214.2000 L 223.9464,214.2000 L 193.9464,244.2000 L 193.0000,244.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 193.0000,244.2000 L 223.0000,214.2000 L 223.9464,214.2000 L 193.9464,244.2000 L 193.0000,244.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 647.0000,199.8000 L 223.0000,199.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 193.0000,229.8000 L 223.0000,199.8000 L 223.9464,199.8000 L 193.9464,229.8000 L 193.0000,229.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 193.0000,229.8000 L 223.0000,199.8000 L 223.9464,199.8000 L 193.9464,229.8000 L 193.0000,229.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 647.0000,184.6800 L 223.0000,184.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 193.0000,215.4000 L 223.0000,185.4000 L 223.9464,185.4000 L 193.9464,215.4000 L 193.0000,215.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 193.0000,215.4000 L 223.0000,185.4000 L 223.9464,185.4000 L 193.9464,215.4000 L 193.0000,215.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 647.0000,156.6000 L 223.0000,156.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 193.0000,186.6000 L 223.0000,156.6000 L 223.9464,156.6000 L 193.9464,186.6000 L 193.0000,186.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 193.0000,186.6000 L 223.0000,156.6000 L 223.9464,156.6000 L 193.9464,186.6000 L 193.0000,186.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 647.0000,141.4800 L 223.0000,141.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 193.0000,172.2000 L 223.0000,142.2000 L 223.9464,142.2000 L 193.9464,172.2000 L 193.0000,172.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 193.0000,172.2000 L 223.0000,142.2000 L 223.9464,142.2000 L 193.9464,172.2000 L 193.0000,172.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 647.0000,128.5200 L 223.0000,128.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 193.0000,157.8000 L 223.0000,127.8000 L 223.9464,127.8000 L 193.9464,157.8000 L 193.0000,157.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 193.0000,157.8000 L 223.0000,127.8000 L 223.9464,127.8000 L 193.9464,157.8000 L 193.0000,157.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 647.0000,113.4000 L 223.0000,113.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 193.0000,143.4000 L 223.0000,113.4000 L 223.9464,113.4000 L 193.9464,143.4000 L 193.0000,143.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 193.0000,143.4000 L 223.0000,113.4000 L 223.9464,113.4000 L 193.9464,143.4000 L 193.0000,143.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 647.0000,98.2800 L 223.0000,98.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 193.0000,129.0000 L 223.0000,99.0000 L 225.8393,99.0000 L 195.8393,129.0000 L 193.0000,129.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 193.0000,129.0000 L 223.0000,99.0000 L 225.8393,99.0000 L 195.8393,129.0000 L 193.0000,129.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_64"/><path d=" M 647.0000,85.3200 L 223.0000,85.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 193.0000,114.6000 L 223.0000,84.6000 L 223.9464,84.6000 L 193.9464,114.6000 L 193.0000,114.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 193.0000,114.6000 L 223.0000,84.6000 L 223.9464,84.6000 L 193.9464,114.6000 L 193.0000,114.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 647.0000,70.2000 L 223.0000,70.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 193.0000,100.2000 L 223.0000,70.2000 L 223.9464,70.2000 L 193.9464,100.2000 L 193.0000,100.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 193.0000,100.2000 L 223.0000,70.2000 L 223.9464,70.2000 L 193.9464,100.2000 L 193.0000,100.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 647.0000,55.0800 L 223.0000,55.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 193.0000,85.8000 L 223.0000,55.8000 L 223.9464,55.8000 L 193.9464,85.8000 L 193.0000,85.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 193.0000,85.8000 L 223.0000,55.8000 L 223.9464,55.8000 L 193.9464,85.8000 L 193.0000,85.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 647.0000,42.1200 L 223.0000,42.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 193.0000,71.4000 L 223.0000,41.4000 L 223.9464,41.4000 L 193.9464,71.4000 L 193.0000,71.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 193.0000,71.4000 L 223.0000,41.4000 L 223.9464,41.4000 L 193.9464,71.4000 L 193.0000,71.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 647.0000,27.0000 L 223.0000,27.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 193.0000,57.0000 L 223.0000,27.0000 L 225.8393,27.0000 L 195.8393,57.0000 L 193.0000,57.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 193.0000,57.0000 L 223.0000,27.0000 L 225.8393,27.0000 L 195.8393,57.0000 L 193.0000,57.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 230.5330,49.5840 L 206.5330,73.5840 L 231.2939,73.5840 L 255.2939,49.5840 L 230.5330,49.5840 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 231.2939,198.0000 L 206.5330,198.0000 L 206.5330,73.5840 L 231.2939,73.5840 L 231.2939,198.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 230.5330,49.5840 L 206.5330,73.5840 L 231.2939,73.5840 L 255.2939,49.5840 L 230.5330,49.5840 z " style="fill: url(#LinearGradient_255_49_206_73_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 231.2939,198.0000 L 206.5330,198.0000 L 206.5330,73.5840 L 231.2939,73.5840 L 231.2939,198.0000 z " style="fill: url(#LinearGradient_231_198_206_73_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 255.2939,49.5840 L 231.2939,73.5840 L 231.2939,198.0000 L 255.2939,174.0000 L 255.2939,49.5840 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_86"/><path d="M 249.67,186.00 A 13.08,6.54 0 0,0 275.83,186.00 L 275.83,118.61 A 13.08,6.540625 0 0,1 249.67,118.61 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_87"/><path d="M 249.67,186.00 A 13.08,6.54 0 0,0 275.83,186.00 L 275.83,118.61 A 13.08,6.540625 0 0,1 249.67,118.61 z" style="fill: url(#LinearGradient_249_118_275_118_ffffffbf_0000007f); stroke: none;"/><ellipse cx="262.7489" cy="118.608" rx="13.0813" ry="6.5406" style="fill: url(#LinearGradient_249_118_275_118_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_88"/><path d="M 281.50,186.00 A 13.08,6.54 0 0,0 307.67,186.00 L 307.67,150.29 A 13.08,6.540625 0 0,1 281.50,150.29 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_89"/><path d="M 281.50,186.00 A 13.08,6.54 0 0,0 307.67,186.00 L 307.67,150.29 A 13.08,6.540625 0 0,1 281.50,150.29 z" style="fill: url(#LinearGradient_281_150_307_150_ffffffbf_0000007f); stroke: none;"/><ellipse cx="294.5844" cy="150.288" rx="13.0813" ry="6.5406" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_90"/><path d=" M 319.3721,198.0000 L 314.0394,186.0000 L 314.0394,74.5440 L 319.3721,86.5440 L 319.3721,198.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 314.0394,74.5440 L 319.3721,86.5440 L 338.8004,74.5440 L 333.4677,62.5440 L 314.0394,74.5440 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_92"/><path d=" M 314.0394,74.5440 L 319.3721,86.5440 L 338.8004,74.5440 L 333.4677,62.5440 L 314.0394,74.5440 z " style="fill: url(#LinearGradient_338_74_314_74_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_93"/><path d=" M 319.3721,198.0000 L 338.8004,186.0000 L 338.8004,74.5440 L 319.3721,86.5440 L 319.3721,198.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_94"/><path d=" M 372.6272,198.0000 L 347.8663,198.0000 L 347.8663,210.3840 L 372.6272,210.3840 L 372.6272,198.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 371.8663,174.0000 L 347.8663,198.0000 L 372.6272,198.0000 L 396.6272,174.0000 L 371.8663,174.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_96"/><path d=" M 372.6272,198.0000 L 347.8663,198.0000 L 347.8663,210.3840 L 372.6272,210.3840 L 372.6272,198.0000 z " style="fill: url(#LinearGradient_372_198_347_210_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 371.8663,174.0000 L 347.8663,198.0000 L 372.6272,198.0000 L 396.6272,174.0000 L 371.8663,174.0000 z " style="fill: url(#LinearGradient_396_174_347_198_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 396.6272,186.3840 L 372.6272,210.3840 L 372.6272,198.0000 L 396.6272,174.0000 L 396.6272,186.3840 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_99"/><path d="M 391.00,192.05 A 13.08,6.54 0 0,0 417.16,192.05 L 417.16,186.00 A 13.08,6.540625 0 0,1 391.00,186.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_100"/><path d="M 391.00,192.05 A 13.08,6.54 0 0,0 417.16,192.05 L 417.16,186.00 A 13.08,6.540625 0 0,1 391.00,186.00 z" style="fill: url(#LinearGradient_391_186_417_186_ffffffbf_0000007f); stroke: none;"/><ellipse cx="404.0823" cy="186" rx="13.0813" ry="6.5406" style="fill: url(#LinearGradient_391_186_417_186_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_101"/><path d="M 422.84,256.56 A 13.08,6.54 0 0,0 449.00,256.56 L 449.00,186.00 A 13.08,6.540625 0 0,1 422.84,186.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_102"/><path d="M 422.84,256.56 A 13.08,6.54 0 0,0 449.00,256.56 L 449.00,186.00 A 13.08,6.540625 0 0,1 422.84,186.00 z" style="fill: url(#LinearGradient_422_186_448_186_ffffffbf_0000007f); stroke: none;"/><ellipse cx="435.9177" cy="186" rx="13.0813" ry="6.5406" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_103"/><path d=" M 460.7054,198.0000 L 455.3728,186.0000 L 455.3728,247.3440 L 460.7054,259.3440 L 460.7054,198.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 455.3728,186.0000 L 460.7054,198.0000 L 480.1337,186.0000 L 474.8010,174.0000 L 455.3728,186.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_105"/><path d=" M 455.3728,186.0000 L 460.7054,198.0000 L 480.1337,186.0000 L 474.8010,174.0000 L 455.3728,186.0000 z " style="fill: url(#LinearGradient_480_186_455_186_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_106"/><path d=" M 460.7054,198.0000 L 480.1337,186.0000 L 480.1337,247.3440 L 460.7054,259.3440 L 460.7054,198.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_107"/><path d=" M 513.1996,155.2800 L 489.1996,179.2800 L 513.9606,179.2800 L 537.9606,155.2800 L 513.1996,155.2800 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_108"/><path d=" M 513.9606,198.0000 L 489.1996,198.0000 L 489.1996,179.2800 L 513.9606,179.2800 L 513.9606,198.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_109"/><path d=" M 513.1996,155.2800 L 489.1996,179.2800 L 513.9606,179.2800 L 537.9606,155.2800 L 513.1996,155.2800 z " style="fill: url(#LinearGradient_537_155_489_179_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_110"/><path d=" M 513.9606,198.0000 L 489.1996,198.0000 L 489.1996,179.2800 L 513.9606,179.2800 L 513.9606,198.0000 z " style="fill: url(#LinearGradient_513_198_489_179_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_111"/><path d=" M 537.9606,155.2800 L 513.9606,179.2800 L 513.9606,198.0000 L 537.9606,174.0000 L 537.9606,155.2800 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_112"/><path d="M 532.33,186.00 A 13.08,6.54 0 0,0 558.50,186.00 L 558.50,92.69 A 13.08,6.540625 0 0,1 532.33,92.69 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_113"/><path d="M 532.33,186.00 A 13.08,6.54 0 0,0 558.50,186.00 L 558.50,92.69 A 13.08,6.540625 0 0,1 532.33,92.69 z" style="fill: url(#LinearGradient_532_92_558_92_ffffffbf_0000007f); stroke: none;"/><ellipse cx="545.4156" cy="92.688" rx="13.0813" ry="6.5406" style="fill: url(#LinearGradient_532_92_558_92_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_114"/><path d="M 564.17,186.00 A 13.08,6.54 0 0,0 590.33,186.00 L 590.33,82.03 A 13.08,6.540625 0 0,1 564.17,82.03 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_115"/><path d="M 564.17,186.00 A 13.08,6.54 0 0,0 590.33,186.00 L 590.33,82.03 A 13.08,6.540625 0 0,1 564.17,82.03 z" style="fill: url(#LinearGradient_564_82_590_82_ffffffbf_0000007f); stroke: none;"/><ellipse cx="577.2511" cy="82.032" rx="13.0813" ry="6.5406" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_116"/><path d=" M 602.0388,198.0000 L 596.7061,186.0000 L 596.7061,179.0880 L 602.0388,191.0880 L 602.0388,198.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_117"/><path d=" M 596.7061,179.0880 L 602.0388,191.0880 L 621.4670,179.0880 L 616.1344,167.0880 L 596.7061,179.0880 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_118"/><path d=" M 596.7061,179.0880 L 602.0388,191.0880 L 621.4670,179.0880 L 616.1344,167.0880 L 596.7061,179.0880 z " style="fill: url(#LinearGradient_621_179_596_179_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_119"/><path d=" M 602.0388,198.0000 L 621.4670,186.0000 L 621.4670,179.0880 L 602.0388,191.0880 L 602.0388,198.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_120"/><path d=" M 700.0000,171.0000 L 670.0000,201.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_121"/><path d=" M 670.0000,201.0000 L 140.0000,201.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_122"/><path d=" M 140.0000,201.0000 L 170.0000,171.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_123"/><path d=" M 223.0000,0.0000 L 193.0000,30.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_124"/><path d=" M 193.0000,30.0000 L 193.0000,300.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_125"/><path d=" M 193.0000,300.0000 L 223.0000,270.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_126"/><g id="ezcGraphTextBox_6"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 86.7800,3.5000 L 86.7800,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_127"/><text id="ezcGraphTextBox_6_text" x="19" text-length="66.78px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Rectangle</text></g><g id="ezcGraphTextBox_8"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_128"/><text id="ezcGraphTextBox_8_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Circle</text></g><g id="ezcGraphTextBox_11"><path d=" M 18.5000,55.0000 L 18.5000,39.5000 L 64.5200,39.5000 L 64.5200,55.0000 L 18.5000,55.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_129"/><text id="ezcGraphTextBox_11_text" x="19" text-length="44.52px" y="51.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Bullet</text></g><g id="ezcGraphTextBox_14"><path d=" M 18.5000,73.0000 L 18.5000,57.5000 L 71.9400,57.5000 L 71.9400,73.0000 L 18.5000,73.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_130"/><text id="ezcGraphTextBox_14_text" x="19" text-length="51.94px" y="69.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Diamond</text></g><g id="ezcGraphTextBox_21"><path d=" M 205.2200,222.8000 L 205.2200,202.3000 L 287.2800,202.3000 L 287.2800,222.8000 L 205.2200,222.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_131"/><text id="ezcGraphTextBox_21_text" x="205.72" text-length="80.56px" y="218.95" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_25"><path d=" M 346.5533,222.8000 L 346.5533,202.3000 L 428.6133,202.3000 L 428.6133,222.8000 L 346.5533,222.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_132"/><text id="ezcGraphTextBox_25_text" x="347.0533" text-length="80.56px" y="218.95" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_29"><path d=" M 487.8867,222.8000 L 487.8867,202.3000 L 569.9467,202.3000 L 569.9467,222.8000 L 487.8867,222.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_133"/><text id="ezcGraphTextBox_29_text" x="488.3867" text-length="80.56px" y="218.95" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_36"><path d=" M 143.4871,272.2000 L 143.4871,251.7000 L 192.1071,251.7000 L 192.1071,272.2000 L 143.4871,272.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_134"/><text id="ezcGraphTextBox_36_text" x="143.9871" text-length="47.12px" y="268.35" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-250</text></g><g id="ezcGraphTextBox_49"><path d=" M 178.8271,200.2000 L 178.8271,179.7000 L 192.1071,179.7000 L 192.1071,200.2000 L 178.8271,200.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_135"/><text id="ezcGraphTextBox_49_text" x="179.3271" text-length="11.78px" y="196.35" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_65"><path d=" M 155.2671,128.2000 L 155.2671,107.7000 L 192.1071,107.7000 L 192.1071,128.2000 L 155.2671,128.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_136"/><text id="ezcGraphTextBox_65_text" x="155.7671" text-length="35.34px" y="124.35" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_81"><path d=" M 155.2671,78.8000 L 155.2671,58.3000 L 192.1071,58.3000 L 192.1071,78.8000 L 155.2671,78.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_137"/><text id="ezcGraphTextBox_81_text" x="155.7671" text-length="35.34px" y="74.95" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg>
+<svg xmlns="http://www.w3.org/2000/svg" width="700" height="300" version="1.0" id="ezcGraph"><defs><linearGradient id="Definition_LinearGradient_5_5_16_16_abefff00_39506800"><stop offset="0" style="stop-color: #abefff; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #395068; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_5_5_16_16_abefff00_39506800" x1="5.4" y1="5.4" x2="16.6" y2="16.6" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_5_5_16_16_abefff00_39506800"/><linearGradient id="Definition_LinearGradient_8_44_13_49_ffff7700_7e752800"><stop offset="0" style="stop-color: #ffff77; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #7e7528; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_8_44_13_49_ffff7700_7e752800" x1="8.1005" y1="44.1005" x2="13.8995" y2="49.8995" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_8_44_13_49_ffff7700_7e752800"/><linearGradient id="Definition_LinearGradient_8_62_13_67_cfff4e00_45711a00"><stop offset="0" style="stop-color: #cfff4e; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #45711a; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_8_62_13_67_cfff4e00_45711a00" x1="8.9497" y1="62.9497" x2="13.0503" y2="67.0503" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_8_62_13_67_cfff4e00_45711a00"/><linearGradient id="Definition_LinearGradient_255_49_206_73_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_255_49_206_73_ffffffff_ffffff7f" x1="255.2939" y1="49.584" x2="206.533" y2="73.584" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_255_49_206_73_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_231_198_206_73_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_231_198_206_73_ffffffff_ffffff7f" x1="231.2939" y1="198" x2="206.533" y2="73.584" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_231_198_206_73_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_249_118_275_118_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_249_118_275_118_ffffffbf_0000007f" x1="249.6677" y1="118.608" x2="275.8302" y2="118.608" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_249_118_275_118_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_249_118_275_118_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_249_118_275_118_8f191900_ef292900" x1="249.6677" y1="118.608" x2="275.8302" y2="118.608" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_249_118_275_118_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_281_150_307_150_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_281_150_307_150_ffffffbf_0000007f" x1="281.5032" y1="150.288" x2="307.6657" y2="150.288" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_281_150_307_150_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_338_74_314_74_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_338_74_314_74_ffffffff_ffffff7f" x1="338.8004" y1="74.544" x2="314.0394" y2="74.544" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_338_74_314_74_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_372_198_347_210_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_372_198_347_210_ffffffff_ffffff7f" x1="372.6272" y1="198" x2="347.8663" y2="210.384" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_372_198_347_210_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_396_174_347_198_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_396_174_347_198_ffffffff_ffffff7f" x1="396.6272" y1="174" x2="347.8663" y2="198" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_396_174_347_198_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_391_186_417_186_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_391_186_417_186_ffffffbf_0000007f" x1="391.001" y1="186" x2="417.1635" y2="186" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_391_186_417_186_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_391_186_417_186_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_391_186_417_186_8f191900_ef292900" x1="391.001" y1="186" x2="417.1635" y2="186" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_391_186_417_186_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_422_186_448_186_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_422_186_448_186_ffffffbf_0000007f" x1="422.8365" y1="186" x2="448.999" y2="186" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_422_186_448_186_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_480_186_455_186_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_480_186_455_186_ffffffff_ffffff7f" x1="480.1337" y1="186" x2="455.3728" y2="186" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_480_186_455_186_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_537_155_489_179_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_537_155_489_179_ffffffff_ffffff7f" x1="537.9606" y1="155.28" x2="489.1996" y2="179.28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_537_155_489_179_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_513_198_489_179_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_513_198_489_179_ffffffff_ffffff7f" x1="513.9606" y1="198" x2="489.1996" y2="179.28" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_513_198_489_179_ffffffff_ffffff7f"/><linearGradient id="Definition_LinearGradient_532_92_558_92_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_532_92_558_92_ffffffbf_0000007f" x1="532.3343" y1="92.688" x2="558.4968" y2="92.688" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_532_92_558_92_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_532_92_558_92_8f191900_ef292900"><stop offset="0" style="stop-color: #8f1919; stop-opacity: 1.00;"/><stop offset="1" style="stop-color: #ef2929; stop-opacity: 1.00;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_532_92_558_92_8f191900_ef292900" x1="532.3343" y1="92.688" x2="558.4968" y2="92.688" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_532_92_558_92_8f191900_ef292900"/><linearGradient id="Definition_LinearGradient_564_82_590_82_ffffffbf_0000007f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.25;"/><stop offset="1" style="stop-color: #000000; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_564_82_590_82_ffffffbf_0000007f" x1="564.1698" y1="82.032" x2="590.3323" y2="82.032" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_564_82_590_82_ffffffbf_0000007f"/><linearGradient id="Definition_LinearGradient_621_179_596_179_ffffffff_ffffff7f"><stop offset="0" style="stop-color: #ffffff; stop-opacity: 0.00;"/><stop offset="1" style="stop-color: #ffffff; stop-opacity: 0.50;"/></linearGradient><linearGradient xmlns:xlink="http://www.w3.org/1999/xlink" id="LinearGradient_621_179_596_179_ffffffff_ffffff7f" x1="621.467" y1="179.088" x2="596.7061" y2="179.088" gradientUnits="userSpaceOnUse" xlink:href="#Definition_LinearGradient_621_179_596_179_ffffffff_ffffff7f"/></defs><g id="ezcGraphChart" color-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="optimizeLegibility"><path d=" M 0.0000,300.0000 L 0.0000,0.0000 L 700.0000,0.0000 L 700.0000,300.0000 L 0.0000,300.0000 z " style="fill: #2e3436; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_1"/><path d=" M 1.0000,299.0000 L 1.0000,1.0000 L 139.0000,1.0000 L 139.0000,299.0000 L 1.0000,299.0000 z " style="fill: #000000; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_2"/><path d=" M 1.0000,299.0000 L 1.0000,1.0000 L 139.0000,1.0000 L 139.0000,299.0000 L 1.0000,299.0000 z " style="fill: none; stroke: #555753; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_3"/><path d=" M 4.0000,18.0000 L 4.0000,4.0000 L 18.0000,4.0000 L 18.0000,18.0000 L 4.0000,18.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_4"/><path d=" M 16.6000,5.4000 L 16.6000,16.6000 L 5.4000,16.6000 L 5.4000,5.4000 L 16.6000,5.4000 z " style="fill: url(#LinearGradient_5_5_16_16_abefff00_39506800); stroke: none;" id="ezcGraphPolygon_5"/><ellipse cx="11" cy="29" rx="7" ry="7" style="fill: none; stroke: #ef2929; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphCircle_7"/><ellipse cx="11" cy="47" rx="7" ry="7" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_9"/><ellipse cx="11" cy="47" rx="6.3" ry="6.3" style="fill: url(#LinearGradient_8_44_13_49_ffff7700_7e752800); stroke: none;" id="ezcGraphCircle_10"/><path d=" M 4.0000,65.0000 L 11.0000,58.0000 L 18.0000,65.0000 L 11.0000,72.0000 L 4.0000,65.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_12"/><path d=" M 16.6000,65.0000 L 11.0000,70.6000 L 5.4000,65.0000 L 11.0000,59.4000 L 16.6000,65.0000 z " style="fill: url(#LinearGradient_8_62_13_67_cfff4e00_45711a00); stroke: none;" id="ezcGraphPolygon_13"/><path d=" M 140.0000,201.0000 L 170.0000,171.0000 L 700.0000,171.0000 L 670.0000,201.0000 L 140.0000,201.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_15"/><path d=" M 170.0000,171.0000 L 700.0000,171.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_16"/><path d=" M 692.0000,175.0000 L 700.0000,171.0000 L 692.0000,167.0000 L 692.0000,175.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_17"/><path d=" M 193.0000,300.0000 L 223.0000,270.0000 L 223.0000,0.0000 L 193.0000,30.0000 L 193.0000,300.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_18"/><path d=" M 223.0000,270.0000 L 223.0000,0.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_19"/><path d=" M 219.5000,7.0000 L 223.0000,0.0000 L 226.5000,7.0000 L 219.5000,7.0000 z " style="fill: #eeeeec; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_20"/><path d=" M 362.9200,243.0000 L 362.9200,27.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_22"/><path d=" M 334.3333,198.3000 L 364.3333,168.3000 L 364.3333,173.7000 L 334.3333,203.7000 L 334.3333,198.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_23"/><path d=" M 334.3333,198.3000 L 364.3333,168.3000 L 364.3333,173.7000 L 334.3333,203.7000 L 334.3333,198.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_24"/><path d=" M 507.0800,243.0000 L 507.0800,27.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_26"/><path d=" M 475.6667,198.3000 L 505.6667,168.3000 L 505.6667,173.7000 L 475.6667,203.7000 L 475.6667,198.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_27"/><path d=" M 475.6667,198.3000 L 505.6667,168.3000 L 505.6667,173.7000 L 475.6667,203.7000 L 475.6667,198.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_28"/><path d=" M 647.0000,243.0000 L 647.0000,27.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_30"/><path d=" M 617.0000,198.3000 L 647.0000,168.3000 L 647.0000,173.7000 L 617.0000,203.7000 L 617.0000,198.3000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_31"/><path d=" M 617.0000,198.3000 L 647.0000,168.3000 L 647.0000,173.7000 L 617.0000,203.7000 L 617.0000,198.3000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_32"/><path d=" M 647.0000,243.0000 L 223.0000,243.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_33"/><path d=" M 193.0000,273.0000 L 223.0000,243.0000 L 225.8393,243.0000 L 195.8393,273.0000 L 193.0000,273.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_34"/><path d=" M 193.0000,273.0000 L 223.0000,243.0000 L 225.8393,243.0000 L 195.8393,273.0000 L 193.0000,273.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_35"/><path d=" M 647.0000,227.8800 L 223.0000,227.8800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_37"/><path d=" M 193.0000,258.6000 L 223.0000,228.6000 L 223.9464,228.6000 L 193.9464,258.6000 L 193.0000,258.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_38"/><path d=" M 193.0000,258.6000 L 223.0000,228.6000 L 223.9464,228.6000 L 193.9464,258.6000 L 193.0000,258.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_39"/><path d=" M 647.0000,214.9200 L 223.0000,214.9200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_40"/><path d=" M 193.0000,244.2000 L 223.0000,214.2000 L 223.9464,214.2000 L 193.9464,244.2000 L 193.0000,244.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_41"/><path d=" M 193.0000,244.2000 L 223.0000,214.2000 L 223.9464,214.2000 L 193.9464,244.2000 L 193.0000,244.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_42"/><path d=" M 647.0000,199.8000 L 223.0000,199.8000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_43"/><path d=" M 193.0000,229.8000 L 223.0000,199.8000 L 223.9464,199.8000 L 193.9464,229.8000 L 193.0000,229.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_44"/><path d=" M 193.0000,229.8000 L 223.0000,199.8000 L 223.9464,199.8000 L 193.9464,229.8000 L 193.0000,229.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_45"/><path d=" M 647.0000,184.6800 L 223.0000,184.6800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_46"/><path d=" M 193.0000,215.4000 L 223.0000,185.4000 L 223.9464,185.4000 L 193.9464,215.4000 L 193.0000,215.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_47"/><path d=" M 193.0000,215.4000 L 223.0000,185.4000 L 223.9464,185.4000 L 193.9464,215.4000 L 193.0000,215.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_48"/><path d=" M 647.0000,156.6000 L 223.0000,156.6000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_50"/><path d=" M 193.0000,186.6000 L 223.0000,156.6000 L 223.9464,156.6000 L 193.9464,186.6000 L 193.0000,186.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_51"/><path d=" M 193.0000,186.6000 L 223.0000,156.6000 L 223.9464,156.6000 L 193.9464,186.6000 L 193.0000,186.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_52"/><path d=" M 647.0000,141.4800 L 223.0000,141.4800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_53"/><path d=" M 193.0000,172.2000 L 223.0000,142.2000 L 223.9464,142.2000 L 193.9464,172.2000 L 193.0000,172.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_54"/><path d=" M 193.0000,172.2000 L 223.0000,142.2000 L 223.9464,142.2000 L 193.9464,172.2000 L 193.0000,172.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_55"/><path d=" M 647.0000,128.5200 L 223.0000,128.5200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_56"/><path d=" M 193.0000,157.8000 L 223.0000,127.8000 L 223.9464,127.8000 L 193.9464,157.8000 L 193.0000,157.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_57"/><path d=" M 193.0000,157.8000 L 223.0000,127.8000 L 223.9464,127.8000 L 193.9464,157.8000 L 193.0000,157.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_58"/><path d=" M 647.0000,113.4000 L 223.0000,113.4000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_59"/><path d=" M 193.0000,143.4000 L 223.0000,113.4000 L 223.9464,113.4000 L 193.9464,143.4000 L 193.0000,143.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_60"/><path d=" M 193.0000,143.4000 L 223.0000,113.4000 L 223.9464,113.4000 L 193.9464,143.4000 L 193.0000,143.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_61"/><path d=" M 647.0000,98.2800 L 223.0000,98.2800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_62"/><path d=" M 193.0000,129.0000 L 223.0000,99.0000 L 225.8393,99.0000 L 195.8393,129.0000 L 193.0000,129.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_63"/><path d=" M 193.0000,129.0000 L 223.0000,99.0000 L 225.8393,99.0000 L 195.8393,129.0000 L 193.0000,129.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_64"/><path d=" M 647.0000,85.3200 L 223.0000,85.3200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_66"/><path d=" M 193.0000,114.6000 L 223.0000,84.6000 L 223.9464,84.6000 L 193.9464,114.6000 L 193.0000,114.6000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_67"/><path d=" M 193.0000,114.6000 L 223.0000,84.6000 L 223.9464,84.6000 L 193.9464,114.6000 L 193.0000,114.6000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_68"/><path d=" M 647.0000,70.2000 L 223.0000,70.2000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_69"/><path d=" M 193.0000,100.2000 L 223.0000,70.2000 L 223.9464,70.2000 L 193.9464,100.2000 L 193.0000,100.2000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_70"/><path d=" M 193.0000,100.2000 L 223.0000,70.2000 L 223.9464,70.2000 L 193.9464,100.2000 L 193.0000,100.2000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_71"/><path d=" M 647.0000,55.0800 L 223.0000,55.0800" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_72"/><path d=" M 193.0000,85.8000 L 223.0000,55.8000 L 223.9464,55.8000 L 193.9464,85.8000 L 193.0000,85.8000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_73"/><path d=" M 193.0000,85.8000 L 223.0000,55.8000 L 223.9464,55.8000 L 193.9464,85.8000 L 193.0000,85.8000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_74"/><path d=" M 647.0000,42.1200 L 223.0000,42.1200" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 0.47; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_75"/><path d=" M 193.0000,71.4000 L 223.0000,41.4000 L 223.9464,41.4000 L 193.9464,71.4000 L 193.0000,71.4000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_76"/><path d=" M 193.0000,71.4000 L 223.0000,41.4000 L 223.9464,41.4000 L 193.9464,71.4000 L 193.0000,71.4000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_77"/><path d=" M 647.0000,27.0000 L 223.0000,27.0000" style="fill: none; stroke: #888a85; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_78"/><path d=" M 193.0000,57.0000 L 223.0000,27.0000 L 225.8393,27.0000 L 195.8393,57.0000 L 193.0000,57.0000 z " style="fill: #eeeeec; fill-opacity: 0.20; stroke: none;" id="ezcGraphPolygon_79"/><path d=" M 193.0000,57.0000 L 223.0000,27.0000 L 225.8393,27.0000 L 195.8393,57.0000 L 193.0000,57.0000 z " style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphPolygon_80"/><path d=" M 230.5330,49.5840 L 206.5330,73.5840 L 231.2939,73.5840 L 255.2939,49.5840 L 230.5330,49.5840 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_82"/><path d=" M 231.2939,198.0000 L 206.5330,198.0000 L 206.5330,73.5840 L 231.2939,73.5840 L 231.2939,198.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_83"/><path d=" M 230.5330,49.5840 L 206.5330,73.5840 L 231.2939,73.5840 L 255.2939,49.5840 L 230.5330,49.5840 z " style="fill: url(#LinearGradient_255_49_206_73_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_84"/><path d=" M 231.2939,198.0000 L 206.5330,198.0000 L 206.5330,73.5840 L 231.2939,73.5840 L 231.2939,198.0000 z " style="fill: url(#LinearGradient_231_198_206_73_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_85"/><path d=" M 255.2939,49.5840 L 231.2939,73.5840 L 231.2939,198.0000 L 255.2939,174.0000 L 255.2939,49.5840 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_86"/><path d="M 249.67,186.00 A 13.08,6.54 0 0,0 275.83,186.00 L 275.83,118.61 A 13.08,6.540625 0 0,1 249.67,118.61 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_87"/><path d="M 249.67,186.00 A 13.08,6.54 0 0,0 275.83,186.00 L 275.83,118.61 A 13.08,6.540625 0 0,1 249.67,118.61 z" style="fill: url(#LinearGradient_249_118_275_118_ffffffbf_0000007f); stroke: none;"/><ellipse cx="262.7489" cy="118.608" rx="13.0813" ry="6.5406" style="fill: url(#LinearGradient_249_118_275_118_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_88"/><path d="M 281.50,186.00 A 13.08,6.54 0 0,0 307.67,186.00 L 307.67,150.29 A 13.08,6.540625 0 0,1 281.50,150.29 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_89"/><path d="M 281.50,186.00 A 13.08,6.54 0 0,0 307.67,186.00 L 307.67,150.29 A 13.08,6.540625 0 0,1 281.50,150.29 z" style="fill: url(#LinearGradient_281_150_307_150_ffffffbf_0000007f); stroke: none;"/><ellipse cx="294.5844" cy="150.288" rx="13.0813" ry="6.5406" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_90"/><path d=" M 319.3721,198.0000 L 314.0394,186.0000 L 314.0394,74.5440 L 319.3721,86.5440 L 319.3721,198.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_91"/><path d=" M 314.0394,74.5440 L 319.3721,86.5440 L 338.8004,74.5440 L 333.4677,62.5440 L 314.0394,74.5440 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_92"/><path d=" M 314.0394,74.5440 L 319.3721,86.5440 L 338.8004,74.5440 L 333.4677,62.5440 L 314.0394,74.5440 z " style="fill: url(#LinearGradient_338_74_314_74_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_93"/><path d=" M 319.3721,198.0000 L 338.8004,186.0000 L 338.8004,74.5440 L 319.3721,86.5440 L 319.3721,198.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_94"/><path d=" M 372.6272,198.0000 L 347.8663,198.0000 L 347.8663,210.3840 L 372.6272,210.3840 L 372.6272,198.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_95"/><path d=" M 371.8663,174.0000 L 347.8663,198.0000 L 372.6272,198.0000 L 396.6272,174.0000 L 371.8663,174.0000 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_96"/><path d=" M 372.6272,198.0000 L 347.8663,198.0000 L 347.8663,210.3840 L 372.6272,210.3840 L 372.6272,198.0000 z " style="fill: url(#LinearGradient_372_198_347_210_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_97"/><path d=" M 371.8663,174.0000 L 347.8663,198.0000 L 372.6272,198.0000 L 396.6272,174.0000 L 371.8663,174.0000 z " style="fill: url(#LinearGradient_396_174_347_198_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_98"/><path d=" M 396.6272,186.3840 L 372.6272,210.3840 L 372.6272,198.0000 L 396.6272,174.0000 L 396.6272,186.3840 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_99"/><path d="M 391.00,192.05 A 13.08,6.54 0 0,0 417.16,192.05 L 417.16,186.00 A 13.08,6.540625 0 0,1 391.00,186.00 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_100"/><path d="M 391.00,192.05 A 13.08,6.54 0 0,0 417.16,192.05 L 417.16,186.00 A 13.08,6.540625 0 0,1 391.00,186.00 z" style="fill: url(#LinearGradient_391_186_417_186_ffffffbf_0000007f); stroke: none;"/><ellipse cx="404.0823" cy="186" rx="13.0813" ry="6.5406" style="fill: url(#LinearGradient_391_186_417_186_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_101"/><path d="M 422.84,256.56 A 13.08,6.54 0 0,0 449.00,256.56 L 449.00,186.00 A 13.08,6.540625 0 0,1 422.84,186.00 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_102"/><path d="M 422.84,256.56 A 13.08,6.54 0 0,0 449.00,256.56 L 449.00,186.00 A 13.08,6.540625 0 0,1 422.84,186.00 z" style="fill: url(#LinearGradient_422_186_448_186_ffffffbf_0000007f); stroke: none;"/><ellipse cx="435.9177" cy="186" rx="13.0813" ry="6.5406" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_103"/><path d=" M 460.7054,198.0000 L 455.3728,186.0000 L 455.3728,247.3440 L 460.7054,259.3440 L 460.7054,198.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_104"/><path d=" M 455.3728,186.0000 L 460.7054,198.0000 L 480.1337,186.0000 L 474.8010,174.0000 L 455.3728,186.0000 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_105"/><path d=" M 455.3728,186.0000 L 460.7054,198.0000 L 480.1337,186.0000 L 474.8010,174.0000 L 455.3728,186.0000 z " style="fill: url(#LinearGradient_480_186_455_186_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_106"/><path d=" M 460.7054,198.0000 L 480.1337,186.0000 L 480.1337,247.3440 L 460.7054,259.3440 L 460.7054,198.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_107"/><path d=" M 513.1996,155.2800 L 489.1996,179.2800 L 513.9606,179.2800 L 537.9606,155.2800 L 513.1996,155.2800 z " style="fill: #445f7c; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_108"/><path d=" M 513.9606,198.0000 L 489.1996,198.0000 L 489.1996,179.2800 L 513.9606,179.2800 L 513.9606,198.0000 z " style="fill: #729fcf; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_109"/><path d=" M 513.1996,155.2800 L 489.1996,179.2800 L 513.9606,179.2800 L 537.9606,155.2800 L 513.1996,155.2800 z " style="fill: url(#LinearGradient_537_155_489_179_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_110"/><path d=" M 513.9606,198.0000 L 489.1996,198.0000 L 489.1996,179.2800 L 513.9606,179.2800 L 513.9606,198.0000 z " style="fill: url(#LinearGradient_513_198_489_179_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_111"/><path d=" M 537.9606,155.2800 L 513.9606,179.2800 L 513.9606,198.0000 L 537.9606,174.0000 L 537.9606,155.2800 z " style="fill: #5b7fa6; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_112"/><path d="M 532.33,186.00 A 13.08,6.54 0 0,0 558.50,186.00 L 558.50,92.69 A 13.08,6.540625 0 0,1 532.33,92.69 z" style="fill: #ef2929; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_113"/><path d="M 532.33,186.00 A 13.08,6.54 0 0,0 558.50,186.00 L 558.50,92.69 A 13.08,6.540625 0 0,1 532.33,92.69 z" style="fill: url(#LinearGradient_532_92_558_92_ffffffbf_0000007f); stroke: none;"/><ellipse cx="545.4156" cy="92.688" rx="13.0813" ry="6.5406" style="fill: url(#LinearGradient_532_92_558_92_8f191900_ef292900); stroke: none;" id="ezcGraphCircle_114"/><path d="M 564.17,186.00 A 13.08,6.54 0 0,0 590.33,186.00 L 590.33,82.03 A 13.08,6.540625 0 0,1 564.17,82.03 z" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircularArc_115"/><path d="M 564.17,186.00 A 13.08,6.54 0 0,0 590.33,186.00 L 590.33,82.03 A 13.08,6.540625 0 0,1 564.17,82.03 z" style="fill: url(#LinearGradient_564_82_590_82_ffffffbf_0000007f); stroke: none;"/><ellipse cx="577.2511" cy="82.032" rx="13.0813" ry="6.5406" style="fill: #fce94f; fill-opacity: 1.00; stroke: none;" id="ezcGraphCircle_116"/><path d=" M 602.0388,198.0000 L 596.7061,186.0000 L 596.7061,179.0880 L 602.0388,191.0880 L 602.0388,198.0000 z " style="fill: #8ae234; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_117"/><path d=" M 596.7061,179.0880 L 602.0388,191.0880 L 621.4670,179.0880 L 616.1344,167.0880 L 596.7061,179.0880 z " style="fill: #53881f; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_118"/><path d=" M 596.7061,179.0880 L 602.0388,191.0880 L 621.4670,179.0880 L 616.1344,167.0880 L 596.7061,179.0880 z " style="fill: url(#LinearGradient_621_179_596_179_ffffffff_ffffff7f); stroke: none;" id="ezcGraphPolygon_119"/><path d=" M 602.0388,198.0000 L 621.4670,186.0000 L 621.4670,179.0880 L 602.0388,191.0880 L 602.0388,198.0000 z " style="fill: #6eb52a; fill-opacity: 1.00; stroke: none;" id="ezcGraphPolygon_120"/><path d=" M 700.0000,171.0000 L 670.0000,201.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_121"/><path d=" M 670.0000,201.0000 L 140.0000,201.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_122"/><path d=" M 140.0000,201.0000 L 170.0000,171.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_123"/><path d=" M 223.0000,0.0000 L 193.0000,30.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_124"/><path d=" M 193.0000,30.0000 L 193.0000,300.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_125"/><path d=" M 193.0000,300.0000 L 223.0000,270.0000" style="fill: none; stroke: #eeeeec; stroke-width: 1; stroke-opacity: 1.00; stroke-linecap: round; stroke-linejoin: round;" id="ezcGraphLine_126"/><g id="ezcGraphTextBox_6"><path d=" M 18.5000,19.0000 L 18.5000,3.5000 L 86.7800,3.5000 L 86.7800,19.0000 L 18.5000,19.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_127"/><text id="ezcGraphTextBox_6_text" x="19" text-length="66.78px" y="15.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Rectangle</text></g><g id="ezcGraphTextBox_8"><path d=" M 18.5000,37.0000 L 18.5000,21.5000 L 64.5200,21.5000 L 64.5200,37.0000 L 18.5000,37.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_128"/><text id="ezcGraphTextBox_8_text" x="19" text-length="44.52px" y="33.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Circle</text></g><g id="ezcGraphTextBox_11"><path d=" M 18.5000,55.0000 L 18.5000,39.5000 L 64.5200,39.5000 L 64.5200,55.0000 L 18.5000,55.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_129"/><text id="ezcGraphTextBox_11_text" x="19" text-length="44.52px" y="51.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Bullet</text></g><g id="ezcGraphTextBox_14"><path d=" M 18.5000,73.0000 L 18.5000,57.5000 L 71.9400,57.5000 L 71.9400,73.0000 L 18.5000,73.0000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_130"/><text id="ezcGraphTextBox_14_text" x="19" text-length="51.94px" y="69.9" style="font-size: 14px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">Diamond</text></g><g id="ezcGraphTextBox_21"><path d=" M 205.2200,222.8000 L 205.2200,202.3000 L 287.2800,202.3000 L 287.2800,222.8000 L 205.2200,222.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_131"/><text id="ezcGraphTextBox_21_text" x="205.72" text-length="80.56px" y="218.95" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 1</text></g><g id="ezcGraphTextBox_25"><path d=" M 346.5533,222.8000 L 346.5533,202.3000 L 428.6133,202.3000 L 428.6133,222.8000 L 346.5533,222.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_132"/><text id="ezcGraphTextBox_25_text" x="347.0533" text-length="80.56px" y="218.95" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 2</text></g><g id="ezcGraphTextBox_29"><path d=" M 487.8867,222.8000 L 487.8867,202.3000 L 569.9467,202.3000 L 569.9467,222.8000 L 487.8867,222.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_133"/><text id="ezcGraphTextBox_29_text" x="488.3867" text-length="80.56px" y="218.95" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">sample 3</text></g><g id="ezcGraphTextBox_36"><path d=" M 143.4871,272.2000 L 143.4871,251.7000 L 192.1071,251.7000 L 192.1071,272.2000 L 143.4871,272.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_134"/><text id="ezcGraphTextBox_36_text" x="143.9871" text-length="47.12px" y="268.35" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">-250</text></g><g id="ezcGraphTextBox_49"><path d=" M 178.8271,200.2000 L 178.8271,179.7000 L 192.1071,179.7000 L 192.1071,200.2000 L 178.8271,200.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_135"/><text id="ezcGraphTextBox_49_text" x="179.3271" text-length="11.78px" y="196.35" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">0</text></g><g id="ezcGraphTextBox_65"><path d=" M 155.2671,128.2000 L 155.2671,107.7000 L 192.1071,107.7000 L 192.1071,128.2000 L 155.2671,128.2000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_136"/><text id="ezcGraphTextBox_65_text" x="155.7671" text-length="35.34px" y="124.35" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">250</text></g><g id="ezcGraphTextBox_81"><path d=" M 155.2671,78.8000 L 155.2671,58.3000 L 192.1071,58.3000 L 192.1071,78.8000 L 155.2671,78.8000 z " style="fill: #ffffff; fill-opacity: 0.00; stroke: none;" id="ezcGraphPolygon_137"/><text id="ezcGraphTextBox_81_text" x="155.7671" text-length="35.34px" y="74.95" style="font-size: 19px; font-family: sans-serif; fill: #d3d7cf; fill-opacity: 1.00; stroke: none;">500</text></g></g></svg>
diff --git a/tests/renderer_2d_test.php b/tests/renderer_2d_test.php
index f48de8c..83e53d5 100644
--- a/tests/renderer_2d_test.php
+++ b/tests/renderer_2d_test.php
@@ -692,7 +692,7 @@ class ezcGraphRenderer2dTest extends ezcGraphTestCase
public function testRenderBox()
{
$this->driver
- ->expects( $this->at( 0 ) )
+ ->expects( $this->at( 1 ) )
->method( 'drawPolygon' )
->with(
$this->equalTo( array(
@@ -705,7 +705,7 @@ class ezcGraphRenderer2dTest extends ezcGraphTestCase
$this->equalTo( false )
);
$this->driver
- ->expects( $this->at( 1 ) )
+ ->expects( $this->at( 0 ) )
->method( 'drawPolygon' )
->with(
$this->equalTo( array(
@@ -738,7 +738,7 @@ class ezcGraphRenderer2dTest extends ezcGraphTestCase
public function testRenderBoxDifferentPadding()
{
$this->driver
- ->expects( $this->at( 0 ) )
+ ->expects( $this->at( 1 ) )
->method( 'drawPolygon' )
->with(
$this->equalTo( array(
@@ -751,14 +751,14 @@ class ezcGraphRenderer2dTest extends ezcGraphTestCase
$this->equalTo( false )
);
$this->driver
- ->expects( $this->at( 1 ) )
+ ->expects( $this->at( 0 ) )
->method( 'drawPolygon' )
->with(
$this->equalTo( array(
- new ezcGraphCoordinate( 5., 5. ),
- new ezcGraphCoordinate( 395., 5. ),
- new ezcGraphCoordinate( 395., 195. ),
- new ezcGraphCoordinate( 5., 195. ),
+ new ezcGraphCoordinate( 3., 3. ),
+ new ezcGraphCoordinate( 397., 3. ),
+ new ezcGraphCoordinate( 397., 197. ),
+ new ezcGraphCoordinate( 3., 197. ),
), 1. ),
$this->equalTo( ezcGraphColor::fromHex( '#BB0000' ) ),
$this->equalTo( true )
@@ -850,7 +850,7 @@ class ezcGraphRenderer2dTest extends ezcGraphTestCase
public function testRenderBoxWithTitle()
{
$this->driver
- ->expects( $this->at( 0 ) )
+ ->expects( $this->at( 1 ) )
->method( 'drawPolygon' )
->with(
$this->equalTo( array(
@@ -863,7 +863,7 @@ class ezcGraphRenderer2dTest extends ezcGraphTestCase
$this->equalTo( false )
);
$this->driver
- ->expects( $this->at( 1 ) )
+ ->expects( $this->at( 0 ) )
->method( 'drawPolygon' )
->with(
$this->equalTo( array(
@@ -908,7 +908,7 @@ class ezcGraphRenderer2dTest extends ezcGraphTestCase
public function testRenderBoxWithBottomTitleAndLeftAlignement()
{
$this->driver
- ->expects( $this->at( 0 ) )
+ ->expects( $this->at( 1 ) )
->method( 'drawPolygon' )
->with(
$this->equalTo( array(
@@ -921,7 +921,7 @@ class ezcGraphRenderer2dTest extends ezcGraphTestCase
$this->equalTo( false )
);
$this->driver
- ->expects( $this->at( 1 ) )
+ ->expects( $this->at( 0 ) )
->method( 'drawPolygon' )
->with(
$this->equalTo( array(
OpenPOWER on IntegriCloud