Commit 9521956d authored by Tebjan Halm's avatar Tebjan Halm Committed by Eric Domke
Browse files

Revert ".Net 3.5 Support and Rendering Improvements (Markers, TSpans, Paths, etc.)"

parent 2261cfdb
...@@ -222,9 +222,9 @@ namespace Svg ...@@ -222,9 +222,9 @@ namespace Svg
{ {
var lastSegment = segments.Last; var lastSegment = segments.Last;
// if the last element is a SvgClosePathSegment the position of the previous move to should be used because the position of SvgClosePathSegment is 0,0 // if the last element is a SvgClosePathSegment the position of the previous element should be used because the position of SvgClosePathSegment is 0,0
if (lastSegment is SvgClosePathSegment) if (lastSegment is SvgClosePathSegment)
lastSegment = segments.OfType<SvgMoveToSegment>().Last(); lastSegment = segments[segments.Count - 2];
if (isRelativeX) if (isRelativeX)
{ {
...@@ -290,7 +290,6 @@ namespace Svg ...@@ -290,7 +290,6 @@ namespace Svg
{ {
if (value is string) if (value is string)
{ {
if (string.IsNullOrEmpty((string)value)) return new SvgPathSegmentList();
return Parse((string)value); return Parse((string)value);
} }
......
using Svg;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Linq;
using System.Diagnostics;
namespace Svg.UnitTests
{
/// <summary>
///This is a test class for ExtensionsTest and is intended
///to contain all ExtensionsTest Unit Tests
///</summary>
[TestClass()]
public class ExtensionsTest
{
private TestContext testContextInstance;
private static SvgDocument _doc;
/// <summary>
///Gets or sets the test context which provides
///information about and functionality for the current test run.
///</summary>
public TestContext TestContext
{
get
{
return testContextInstance;
}
set
{
testContextInstance = value;
}
}
#region Additional test attributes
//
//You can use the following additional attributes as you write your tests:
//
//Use ClassInitialize to run code before running the first test in the class
[ClassInitialize()]
public static void MyClassInitialize(TestContext testContext)
{
using (var stream = new MemoryStream(UTF8Encoding.Default.GetBytes(Properties.Resources.SvgPathTest)))
{
_doc = SvgDocument.Open<SvgDocument>(stream, null);
}
}
//
//Use ClassCleanup to run code after all tests in a class have run
[ClassCleanup()]
public static void MyClassCleanup()
{
_doc = null;
}
//
//Use TestInitialize to run code before running each test
//[TestInitialize()]
//public void MyTestInitialize()
//{
//}
//
//Use TestCleanup to run code after each test has run
//[TestCleanup()]
//public void MyTestCleanup()
//{
//}
//
#endregion
[TestMethod]
public void TestDescendants()
{
var result = (from d in _doc.Descendants() select d.GetType().Name).Aggregate((p, c) => p + Environment.NewLine + c);
Assert.AreEqual(Properties.Resources.SvgDescendantTypes, result);
}
}
}
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Svg.UnitTests")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Svg.UnitTests")]
[assembly: AssemblyCopyright("Copyright © 2014")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("816daa2c-d023-4642-b433-d06ccf995ea9")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.18444
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Svg.UnitTests.Properties {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Svg.UnitTests.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to SvgDefinitionList
///SvgLinearGradientServer
///SvgGradientStop
///SvgGradientStop
///SvgGradientStop
///SvgGradientStop
///SvgGradientStop
///SvgLinearGradientServer
///SvgGradientStop
///SvgGradientStop
///SvgGradientStop
///SvgGradientStop
///SvgGradientStop
///SvgLinearGradientServer
///SvgGradientStop
///SvgGradientStop
///SvgGradientStop
///SvgGradientStop
///SvgGradientStop
///SvgLinearGradientServer
///SvgLinearGradientServer
///SvgLinearGradientServer
///SvgLinearGradientServer
///SvgFilter
///SvgGaussianBlur
///SvgFilter
///SvgGaussianBlur
///SvgFilt [rest of string was truncated]&quot;;.
/// </summary>
internal static string SvgDescendantTypes {
get {
return ResourceManager.GetString("SvgDescendantTypes", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to &lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;
///&lt;!-- Created with Inkscape (http://www.inkscape.org/) --&gt;
///&lt;svg xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:cc=&quot;http://creativecommons.org/ns#&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; xmlns:svg=&quot;http://www.w3.org/2000/svg&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot; xmlns:xlink=&quot;http://www.w3.org/1999/xlink&quot; xmlns:sodipodi=&quot;http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd&quot; xmlns:inkscape=&quot;http://www.inkscape.org/namespaces/inkscape&quot; widt [rest of string was truncated]&quot;;.
/// </summary>
internal static string SvgPathTest {
get {
return ResourceManager.GetString("SvgPathTest", resourceCulture);
}
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="SvgDescendantTypes" xml:space="preserve">
<value>SvgDefinitionList
SvgLinearGradientServer
SvgGradientStop
SvgGradientStop
SvgGradientStop
SvgGradientStop
SvgGradientStop
SvgLinearGradientServer
SvgGradientStop
SvgGradientStop
SvgGradientStop
SvgGradientStop
SvgGradientStop
SvgLinearGradientServer
SvgGradientStop
SvgGradientStop
SvgGradientStop
SvgGradientStop
SvgGradientStop
SvgLinearGradientServer
SvgLinearGradientServer
SvgLinearGradientServer
SvgLinearGradientServer
SvgFilter
SvgGaussianBlur
SvgFilter
SvgGaussianBlur
SvgFilter
SvgGaussianBlur
SvgLinearGradientServer
SvgGradientStop
SvgGradientStop
SvgLinearGradientServer
SvgLinearGradientServer
SvgGradientStop
SvgGradientStop
SvgLinearGradientServer
SvgGradientStop
SvgGradientStop
SvgLinearGradientServer
SvgLinearGradientServer
SvgGradientStop
SvgGradientStop
SvgLinearGradientServer
SvgLinearGradientServer
SvgGradientStop
SvgGradientStop
SvgLinearGradientServer
SvgGradientStop
SvgGradientStop
SvgLinearGradientServer
SvgPath
SvgClipPath
SvgUse
SvgPath
SvgClipPath
SvgUse
SvgPath
SvgClipPath
SvgUse
SvgPath
SvgClipPath
SvgUse
SvgPath
SvgClipPath
SvgUse
SvgPath
SvgClipPath
SvgUse
SvgLinearGradientServer
SvgGradientStop
SvgGradientStop
SvgLinearGradientServer
SvgLinearGradientServer
SvgGradientStop
SvgGradientStop
SvgLinearGradientServer
SvgGradientStop
SvgGradientStop
SvgLinearGradientServer
SvgLinearGradientServer
SvgLinearGradientServer
SvgGradientStop
SvgGradientStop
SvgLinearGradientServer
SvgDocumentMetadata
SvgGroup
SvgGroup
SvgPath
SvgPath
SvgPath
SvgRectangle
SvgPath
SvgPath
SvgPath
SvgRectangle
SvgPath
SvgRectangle
SvgRectangle
SvgRectangle
SvgRectangle
SvgRectangle
SvgPath
SvgPath
SvgRectangle
SvgPath
SvgRectangle
SvgPath
SvgPath
SvgPath
SvgPath
SvgText
SvgTextSpan
SvgPath
SvgPath
SvgPath
SvgPath
SvgGroup
SvgPath
SvgPath
SvgText
SvgTextSpan
SvgPath
SvgPath
SvgPath
SvgPath
SvgPath
SvgPath</value>
</data>
<data name="SvgPathTest" xml:space="preserve">
<value>&lt;?xml version="1.0" encoding="UTF-8" standalone="no"?&gt;
&lt;!-- Created with Inkscape (http://www.inkscape.org/) --&gt;
&lt;svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="2905.2" height="1757.7512" id="svg2" version="1.1" inkscape:version="0.48.4 r9939" inkscape:export-filename="C:\Users\edomke\Documents\Local_Projects\ComponentTracker\Reference\ArasIcons\Final\Project_Closed22.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" sodipodi:docname="Icons.svg"&gt;
&lt;defs id="defs4"&gt;
&lt;inkscape:path-effect effect="spiro" id="path-effect4511" is_visible="true" /&gt;
&lt;inkscape:path-effect effect="spiro" id="path-effect4507" is_visible="true" /&gt;
&lt;inkscape:path-effect effect="spiro" id="path-effect7355" is_visible="true" /&gt;
&lt;inkscape:path-effect effect="spiro" id="path-effect4661" is_visible="true" /&gt;
&lt;linearGradient id="linearGradient8076"&gt;
&lt;stop style="stop-color:#cf6714;stop-opacity:1" offset="0" id="stop8078" /&gt;
&lt;stop style="stop-color:#d3790b;stop-opacity:1" offset="0.20227151" id="stop8080" /&gt;
&lt;stop style="stop-color:#f08300;stop-opacity:1" offset="0.51162791" id="stop8082" /&gt;
&lt;stop style="stop-color:#f3b230;stop-opacity:1" offset="0.7842077" id="stop8084" /&gt;
&lt;stop style="stop-color:#d24118;stop-opacity:0.92156863" offset="1" id="stop8086" /&gt;
&lt;/linearGradient&gt;
&lt;linearGradient id="linearGradient3183"&gt;
&lt;stop style="stop-color:#8a450c;stop-opacity:1" offset="0" id="stop5163" /&gt;
&lt;stop style="stop-color:#e8860e;stop-opacity:1" offset="0.20227151" id="stop3195" /&gt;
&lt;stop style="stop-color:#ffac24;stop-opacity:1" offset="0.51162791" id="stop3191" /&gt;
&lt;stop style="stop-color:#e8860e;stop-opacity:1" offset="0.75581396" id="stop3193" /&gt;
&lt;stop style="stop-color:#70440d;stop-opacity:0.92156863" offset="1" id="stop3187" /&gt;
&lt;/linearGradient&gt;
&lt;linearGradient id="linearGradient556"&gt;
&lt;stop style="stop-color:#7d7d7d;stop-opacity:1" offset="0" id="stop557" /&gt;
&lt;stop style="stop-color:#dddddd;stop-opacity:1" offset="0.25" id="stop8106" /&gt;
&lt;stop style="stop-color:#ffffff;stop-opacity:1" offset="0.5" id="stop8096" /&gt;
&lt;stop style="stop-color:#c2c2c2;stop-opacity:1" offset="0.75" id="stop8108" /&gt;
&lt;stop style="stop-color:#868686;stop-opacity:1" offset="1" id="stop558" /&gt;
&lt;/linearGradient&gt;
&lt;linearGradient x1="22.068424" y1="29.046476" x2="22.244799" y2="46.707714" id="linearGradient3203" xlink:href="#linearGradient8076" gradientUnits="userSpaceOnUse" /&gt;
&lt;linearGradient x1="12.348506" y1="19.501543" x2="34.751446" y2="19.932304" id="linearGradient7105" xlink:href="#linearGradient3183" gradientUnits="userSpaceOnUse" /&gt;
&lt;linearGradient x1="10.877795" y1="30.341204" x2="37.145557" y2="30.341204" id="linearGradient8094" xlink:href="#linearGradient556" gradientUnits="userSpaceOnUse" /&gt;
&lt;linearGradient x1="16.368952" y1="12.608516" x2="30.440506" y2="12.608516" id="linearGradient8104" xlink:href="#linearGradient556" gradientUnits="userSpaceOnUse" /&gt;
&lt;filter color-interpolation-filters="sRGB" id="filter11385"&gt;
&lt;feGaussianBlur id="feGaussianBlur11387" stdDeviation="0.45960596" inkscape:collect="always" /&gt;
&lt;/filter&gt;
&lt;filter color-interpolation-filters="sRGB" id="filter14015"&gt;
&lt;feGaussianBlur id="feGaussianBlur14017" stdDeviation="0.3381682" inkscape:collect="always" /&gt;
&lt;/filter&gt;
&lt;filter color-interpolation-filters="sRGB" id="filter4399"&gt;
&lt;feGaussianBlur id="feGaussianBlur4401" stdDeviation="0.23950837" inkscape:collect="always" /&gt;
&lt;/filter&gt;
&lt;linearGradient id="linearGradient3784"&gt;
&lt;stop id="stop3786" offset="0" style="stop-color:#2d5803;stop-opacity:1;" /&gt;
&lt;stop id="stop3788" offset="1" style="stop-color:#4e9a06;stop-opacity:1;" /&gt;
&lt;/linearGradient&gt;
&lt;linearGradient gradientTransform="matrix(0.99655603,0,0,0.99655142,-13.73795,931.76037)" gradientUnits="userSpaceOnUse" y2="130.6608" x2="198.74751" y1="140.95274" x1="198.74751" id="linearGradient3790" xlink:href="#linearGradient3784" inkscape:collect="always" /&gt;
&lt;linearGradient id="linearGradient3784-8"&gt;
&lt;stop id="stop3786-2" offset="0" style="stop-color:#2d5803;stop-opacity:1;" /&gt;
&lt;stop id="stop3788-4" offset="1" style="stop-color:#4e9a06;stop-opacity:1;" /&gt;
&lt;/linearGradient&gt;
&lt;linearGradient id="linearGradient3784-7"&gt;
&lt;stop id="stop3786-4" offset="0" style="stop-color:#2d5803;stop-opacity:1;" /&gt;
&lt;stop id="stop3788-0" offset="1" style="stop-color:#4e9a06;stop-opacity:1;" /&gt;
&lt;/linearGradient&gt;
&lt;linearGradient inkscape:collect="always" xlink:href="#linearGradient3784-7" id="linearGradient3206-1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.99655603,0,0,0.99655142,-30.919291,858.81107)" x1="198.74751" y1="140.95274" x2="198.74751" y2="130.6608" /&gt;
&lt;linearGradient id="linearGradient3784-7-5"&gt;
&lt;stop id="stop3786-4-1" offset="0" style="stop-color:#2d5803;stop-opacity:1;" /&gt;
&lt;stop id="stop3788-0-7" offset="1" style="stop-color:#4e9a06;stop-opacity:1;" /&gt;
&lt;/linearGradient&gt;
&lt;linearGradient y2="130.6608" x2="198.74751" y1="140.95274" x1="198.74751" gradientTransform="matrix(0.99655603,0,0,0.99655142,-318.95282,871.32744)" gradientUnits="userSpaceOnUse" id="linearGradient3105-5" xlink:href="#linearGradient3784-7-5" inkscape:collect="always" /&gt;
&lt;inkscape:path-effect effect="spiro" id="path-effect4661-1" is_visible="true" /&gt;
&lt;linearGradient id="linearGradient3784-0"&gt;
&lt;stop id="stop3786-28" offset="0" style="stop-color:#2d5803;stop-opacity:1;" /&gt;
&lt;stop id="stop3788-6" offset="1" style="stop-color:#4e9a06;stop-opacity:1;" /&gt;
&lt;/linearGradient&gt;
&lt;linearGradient id="linearGradient3784-0-0"&gt;
&lt;stop id="stop3786-28-9" offset="0" style="stop-color:#2d5803;stop-opacity:1;" /&gt;
&lt;stop id="stop3788-6-4" offset="1" style="stop-color:#4e9a06;stop-opacity:1;" /&gt;
&lt;/linearGradient&gt;
&lt;linearGradient inkscape:collect="always" xlink:href="#linearGradient3784-0-0" id="linearGradient3206-5-5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.99655603,0,0,0.99655142,-410.0233,981.63844)" x1="198.74751" y1="140.95274" x2="198.74751" y2="130.6608" /&gt;
&lt;inkscape:path-effect effect="spiro" id="path-effect4661-19" is_visible="true" /&gt;
&lt;path d="M 21,13 21,48 8,48 8,8 38,8 38,13 z" id="SVGID_1_COPY" inkscape:connector-curvature="0" /&gt;
&lt;clipPath id="SVGID_2_COPY"&gt;
&lt;use id="use13744" xlink:href="#SVGID_1_COPY" x="0" y="0" width="22" height="22" /&gt;
&lt;/clipPath&gt;
&lt;inkscape:perspective id="perspective3868" inkscape:persp3d-origin="64 : 42.666667 : 1" inkscape:vp_z="128 : 64 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 64 : 1" sodipodi:type="inkscape:persp3d" /&gt;
&lt;inkscape:perspective id="perspective3868-2" inkscape:persp3d-origin="64 : 42.666667 : 1" inkscape:vp_z="128 : 64 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 64 : 1" sodipodi:type="inkscape:persp3d" /&gt;
&lt;inkscape:perspective id="perspective3868-21" inkscape:persp3d-origin="64 : 42.666667 : 1" inkscape:vp_z="128 : 64 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 64 : 1" sodipodi:type="inkscape:persp3d" /&gt;
&lt;inkscape:perspective id="perspective3868-3" inkscape:persp3d-origin="64 : 42.666667 : 1" inkscape:vp_z="128 : 64 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 64 : 1" sodipodi:type="inkscape:persp3d" /&gt;
&lt;inkscape:perspective id="perspective3868-5" inkscape:persp3d-origin="64 : 42.666667 : 1" inkscape:vp_z="128 : 64 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 64 : 1" sodipodi:type="inkscape:persp3d" /&gt;
&lt;path d="M 5,8.5 H 50 V 54 H 5 z" id="SVGID_1_CHR" inkscape:connector-curvature="0" /&gt;
&lt;clipPath id="SVGID_2_CHR"&gt;
&lt;use id="use17295" xlink:href="#SVGID_1_CHR" x="0" y="0" width="22" height="22" /&gt;
&lt;/clipPath&gt;
&lt;path d="m 39.917,87.917 20,0 0,-29.917 2,0 0,-13 -22,0.125 z" id="SVGID_1_RD" inkscape:connector-curvature="0" /&gt;
&lt;clipPath id="SVGID_2_RD"&gt;
&lt;use id="use18154" xlink:href="#SVGID_1_RD" x="0" y="0" width="22" height="22" /&gt;
&lt;/clipPath&gt;
&lt;path d="M 16.381,51.41 28.438,37.294 38.802,31 H 60 V 41.499 L 31.937,61.165 16.381,51.41 z M 33.987,2.874 4,24.507 V 33 h 26 v 0.947 L 47.317,13.837 33.987,2.874 z" id="SVGID_1_RFR" inkscape:connector-curvature="0" /&gt;
&lt;clipPath id="SVGID_2_RFR"&gt;
&lt;use id="use18181" xlink:href="#SVGID_1_RFR" x="0" y="0" width="22" height="22" /&gt;
&lt;/clipPath&gt;
&lt;path d="m 56,55.917 -20,0 0,-29.917 -2,0 0,-13 22,0.125 z" id="SVGID_1_RB" inkscape:connector-curvature="0" /&gt;
&lt;clipPath id="SVGID_2_RB"&gt;
&lt;use id="use18600" xlink:href="#SVGID_1_RB" x="0" y="0" width="22" height="22" /&gt;
&lt;/clipPath&gt;
&lt;path d="m 56,55.917 -20,0 0,-29.917 -2,0 0,-13 22,0.125 z" id="SVGID_1_UND" inkscape:connector-curvature="0" /&gt;
&lt;clipPath id="SVGID_2_UND"&gt;
&lt;use id="use19493" xlink:href="#SVGID_1_UND" x="0" y="0" width="22" height="22" /&gt;
&lt;/clipPath&gt;
&lt;inkscape:perspective id="perspective3868-1" inkscape:persp3d-origin="64 : 42.666667 : 1" inkscape:vp_z="128 : 64 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 64 : 1" sodipodi:type="inkscape:persp3d" /&gt;
&lt;linearGradient id="linearGradient4234"&gt;
&lt;stop style="stop-color:#cfad02;stop-opacity:1;" offset="0" id="stop4236" /&gt;
&lt;stop style="stop-color:#cfad02;stop-opacity:0;" offset="1" id="stop4238" /&gt;
&lt;/linearGradient&gt;
&lt;linearGradient inkscape:collect="always" xlink:href="#linearGradient4234" id="linearGradient7796" gradientUnits="userSpaceOnUse" x1="90.551086" y1="80.384743" x2="92.000679" y2="80.384743" /&gt;
&lt;linearGradient id="linearGradient3245"&gt;
&lt;stop style="stop-color:#cfad02;stop-opacity:1;" offset="0" id="stop3247" /&gt;
&lt;stop style="stop-color:#cfad02;stop-opacity:0;" offset="1" id="stop3249" /&gt;
&lt;/linearGradient&gt;
&lt;linearGradient id="linearGradient3101-7"&gt;
&lt;stop style="stop-color:#cfad02;stop-opacity:1;" offset="0" id="stop3103-6" /&gt;
&lt;stop style="stop-color:#cfad02;stop-opacity:0;" offset="1" id="stop3105-1" /&gt;
&lt;/linearGradient&gt;
&lt;linearGradient inkscape:collect="always" xlink:href="#linearGradient3101-7" id="linearGradient7798" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.87128627,0,0,0.87128627,-106.24663,976.76582)" x1="100.21173" y1="79.493736" x2="97.490639" y2="79.493736" /&gt;
&lt;linearGradient inkscape:collect="always" xlink:href="#linearGradient3101-7" id="linearGradient3255" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.87128627,0,0,0.87128627,-106.24663,976.76582)" x1="100.21173" y1="79.493736" x2="97.490639" y2="79.493736" /&gt;
&lt;linearGradient id="linearGradient3257"&gt;
&lt;stop style="stop-color:#cfad02;stop-opacity:1;" offset="0" id="stop3259" /&gt;
&lt;stop style="stop-color:#cfad02;stop-opacity:0;" offset="1" id="stop3261" /&gt;
&lt;/linearGradient&gt;
&lt;linearGradient inkscape:collect="always" xlink:href="#linearGradient3101-7" id="linearGradient6900" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.87128854,0,0,0.87128854,-79.05414,799.30726)" x1="100.21173" y1="79.493736" x2="97.490639" y2="79.493736" /&gt;
&lt;/defs&gt;
&lt;sodipodi:namedview id="base" pagecolor="#9c9c9c" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="0.32" inkscape:cx="1156.1859" inkscape:cy="751.95351" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1920" inkscape:window-height="1138" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:window-maximized="1" inkscape:snap-grids="true" inkscape:showpageshadow="false" showborder="true" inkscape:snap-global="false" showguides="false" inkscape:guide-bbox="true" fit-margin-top="10" fit-margin-left="10" fit-margin-right="10" fit-margin-bottom="10" units="ft"&gt;
&lt;inkscape:grid type="xygrid" id="grid4159" empspacing="5" visible="true" enabled="true" snapvisiblegridlinesonly="true" originx="1762.9304px" originy="535.68523px" /&gt;
&lt;/sodipodi:namedview&gt;
&lt;metadata id="metadata7"&gt;
&lt;rdf:RDF&gt;
&lt;cc:Work rdf:about=""&gt;
&lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt;
&lt;dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /&gt;
&lt;dc:title/&gt;
&lt;/cc:Work&gt;
&lt;/rdf:RDF&gt;
&lt;/metadata&gt;&lt;g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(1762.9304,169.67622)"&gt;
&lt;g id="g9992" transform="matrix(2,0,0,2,475.5,-640.3622)"&gt;
&lt;path inkscape:connector-curvature="0" id="path9431" d="m -493.5,688.3622 -0.40625,2.375 c -0.56504,0.1384 -1.10405,0.3635 -1.59375,0.6563 l -1.9375,-1.4063 -1.40625,1.4063 1.34375,1.9687 c -0.29194,0.4906 -0.51499,1.0212 -0.65625,1.5938 l -2.34375,0.4062 0,2 2.15625,0.375 7.21875,-7.1562 -0.40625,-2.2188 -1.96875,0 z" style="color:#000000;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /&gt;
&lt;path sodipodi:nodetypes="cccccscccccscccccscccccscccccscccccsccccccsccccccccc" inkscape:connector-curvature="0" id="path9429" d="m -488.75,689.58095 -1.125,1.1875 0.9375,0.9375 c 0.19296,0.1929 0.19296,0.4946 0,0.6875 -0.0214,0.0108 -0.0411,0.0208 -0.0625,0.0312 -0.10467,0.0515 -0.2053,0.0937 -0.3125,0.0937 -0.12864,0 -0.27761,0 -0.40625,-0.125 l -0.9375,-0.9375 -0.59375,0.59375 2.03125,1.9375 c 0.19297,0.1929 0.19297,0.4945 0,0.6875 -0.12864,0.065 -0.30975,0.125 -0.40625,0.125 -0.0965,0 -0.2151,2.5e-4 -0.34375,-0.0937 l -1.8125,-1.8125 -0.59375,0.625 0.96875,0.9375 c 0.19296,0.193 0.19296,0.46325 0,0.65625 -0.12865,0.065 -0.27761,0.125 -0.40625,0.125 -0.12865,0 -0.24636,0 -0.375,-0.125 l -0.9375,-0.9375 -0.59375,0.625 0.90625,0.9375 c 0.19297,0.1929 0.19297,0.46335 0,0.65625 -0.12864,0.065 -0.24635,0.125 -0.375,0.125 -0.12864,0 -0.24635,0 -0.375,-0.125 l -0.9375,-0.90625 -0.625,0.59375 1.875,1.84375 c 0.19297,0.193 0.19297,0.46325 0,0.65625 -0.12864,0.065 -0.24636,0.125 -0.375,0.125 -0.12864,0 -0.2776,0 -0.40625,-0.125 l -1.78125,-1.78125 -0.625,0.59375 0.9375,0.9375 c 0.19296,0.193 0.19296,0.4945 0,0.6875 -0.12865,0.065 -0.24636,0.125 -0.375,0.125 -0.12865,0 -0.27761,0 -0.40625,-0.125 l -0.9375,-0.9375 -0.59375,0.59375 0.9375,0.9375 c 0.15182,0.15185 0.18082,0.38201 0.0937,0.5625 -0.0236,0.0489 -0.0526,0.0838 -0.0937,0.125 -0.12864,0.065 -0.27761,0.125 -0.40625,0.125 -0.12864,0 -0.24636,0 -0.375,-0.125 l -0.3125,-0.3125 -0.59375,-0.59375 -0.71875,0.75 0.71875,0.71875 1.53125,1.53125 0.8125,0.84375 10.5625,-10.5625 z" style="color:#000000;fill:#f47900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.99999988;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /&gt;
&lt;path inkscape:connector-curvature="0" id="path2503-6" d="m -486.59375,695.0185 -7.28125,7.2187 0.375,2.125 1.96875,0 0.4375,-2.375 c 0.56504,-0.1422 1.10405,-0.3605 1.59375,-0.6562 l 1.96875,1.375 1.40625,-1.4063 -1.40625,-1.9375 c 0.29194,-0.4869 0.51499,-1.0286 0.65625,-1.5937 l 2.375,-0.4063 0,-2 -2.09375,-0.3437 z" style="color:#000000;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /&gt;
&lt;/g&gt;
&lt;rect style="opacity:0.6;color:#000000;fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect19833" width="980.04999" height="879.64081" x="-1751.9304" y="-64.405624" rx="3.2445889" ry="1.6300058" /&gt;
&lt;path style="fill:#ffffff;fill-opacity:1;stroke:none" d="m -133.55584,-58.713547 0.0442,-9.148201 -4.24264,-4.2427 -7.6456,0 -0.88388,0.9281 -0.26516,12.727901 1.14904,1.3259 10.91597,0 z" id="path3313-7-7-4-7" inkscape:connector-curvature="0" /&gt;
&lt;path inkscape:connector-curvature="0" style="color:#000000;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.49459419;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m -144.50734,-72.636448 c -1.5435,0 -2.5,0.8901 -2.5,2.25 l 0,11.531301 c 0,1.3598 0.9565,2.2187 2.5,2.2187 l 9.0625,0 c 1.5435,0 2.4375,-0.8589 2.4375,-2.2187 l 0,-0.625 -0.6875,0.5625 -0.0625,0.062 -0.125,0.031 c -0.0547,0.027 -0.0993,0.042 -0.15625,0.062 -0.0542,0.6338 -0.66912,1.1562 -1.40625,1.1562 l -9.0625,0 c -0.77281,0 -1.40625,-0.5732 -1.40625,-1.25 l 0,-11.531201 c 0,-0.6768 0.63344,-1.25 1.40625,-1.25 l 6.03125,0 c 0.50469,0.1106 0.5,0.6771 0.5,1.2188 l 0,2.1562 c 0,0.3384 0.30179,0.625 0.6875,0.625 l 1.46875,0 c 0.6986,0 1.78125,-0.022 1.78125,0.5938 l 0,0.4687 c 0.07,0.022 0.15259,0.029 0.21875,0.062 l 0.0937,0.062 0.0625,0.062 0.65625,0.5312 0,-1.7812 c 0,-0.6522 -0.37155,-1.2914 -1.59375,-2.3438 -0.1715,-0.1476 -0.35905,-0.3148 -0.53125,-0.4687 -0.1736,-0.1476 -0.332,-0.2837 -0.5,-0.4375 -1.1977,-1.0707 -1.59965,-1.75 -2.34375,-1.75 l -6.53125,0 z" id="path4705-2-2-3-5" /&gt;
&lt;path sodipodi:type="arc" style="color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.49459419;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path9425" sodipodi:cx="-179" sodipodi:cy="-1034.8281" sodipodi:rx="5.4375" sodipodi:ry="5.359375" d="m -173.5625,-1034.8281 c 0,2.9599 -2.43445,5.3593 -5.4375,5.3593 -3.00305,0 -5.4375,-2.3994 -5.4375,-5.3593 0,-2.9599 2.43445,-5.3594 5.4375,-5.3594 3.00305,0 5.4375,2.3995 5.4375,5.3594 z" transform="matrix(1,0,0,1.0349854,37.999998,1008.3786)" /&gt;
&lt;rect style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.49459419;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect8531-1" width="14.142136" height="14.672466" x="-226.45847" y="-71.874161" ry="1.8050786" rx="1.8050786" /&gt;
&lt;path sodipodi:type="arc" style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.49459419;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path6671" sodipodi:cx="-321.15625" sodipodi:cy="-1056.6562" sodipodi:rx="7.21875" sodipodi:ry="5.90625" d="m -313.9375,-1056.6563 c 0,3.262 -3.23194,5.9063 -7.21875,5.9063 -3.98681,0 -7.21875,-2.6443 -7.21875,-5.9063 0,-3.2619 3.23194,-5.9062 7.21875,-5.9062 3.98681,0 7.21875,2.6443 7.21875,5.9062 z" transform="matrix(1,0,0,1.0846561,37.249998,1055.6271)" /&gt;
&lt;rect style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.49459419;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect6345" width="12.9375" height="7.9375" x="-380.375" y="-91.200294" rx="0.5" ry="0.48571426" /&gt;
&lt;rect style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.49459419;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect6343" width="10.4375" height="6" x="-379.6875" y="-98.075294" rx="0.5" ry="0.48571426" /&gt;
&lt;rect style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.49459419;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect6169-8" width="5.126524" height="6.5407376" x="-393.51193" y="-90.937508" rx="0.59907091" ry="0.81168157" /&gt;
&lt;rect style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.49459419;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect6169" width="5.126524" height="6.5407376" x="-409.51019" y="-90.937477" rx="0.59907091" ry="0.81168157" /&gt;
&lt;rect style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.24030995px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect6003" width="14.5625" height="10.5625" x="-481.25" y="-99.887794" rx="0.59907091" ry="0.81168157" /&gt;
&lt;path inkscape:connector-curvature="0" style="fill:#ffffff;fill-opacity:1;stroke:none" d="m -487.89104,-94.734146 c -0.24414,-1.12011 -1.24878,-1.95919 -2.45511,-1.95919 -0.56569,0 -1.08768,0.18721 -1.5079,0.50121 -0.55196,-1.03045 -1.64652,-1.73106 -2.90778,-1.73106 -1.81074,0 -3.27993,1.44813 -3.29179,3.23779 -1.32995,0.14695 -2.36519,1.26401 -2.36519,2.62014 0,1.45668 1.19259,2.63777 2.66427,2.63777 0.0256,0 0.0494,-0.005 0.0743,-0.005 0.24039,1.21281 1.31996,2.12807 2.61494,2.12807 1.00777,0 1.88379,-0.55431 2.33709,-1.37201 0.42209,0.52194 1.07021,0.85736 1.79762,0.85736 1.19946,0 2.1835,-0.90736 2.29214,-2.06583 0.15797,0.0305 0.32156,0.0474 0.49015,0.0474 1.36929,0 2.4807,-1.09937 2.4807,-2.45485 0,-1.27076 -0.97467,-2.31589 -2.22345,-2.44331 z" id="path443" /&gt;
&lt;path style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#555753;fill-opacity:1;stroke:none;stroke-width:1.24030995px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m -494.75,-98.512796 c -2.01627,0 -3.64258,1.52503 -3.84375,3.46875 -1.37345,0.40245 -2.4375,1.54616 -2.4375,3.03125 0,1.33432 0.8091,2.47511 1.96875,2.96875 0.008,-0.41757 0.12181,-0.82943 0.28125,-1.21875 -0.62314,-0.33924 -1.03125,-0.99099 -1.03125,-1.75 0,-1.05292 0.79617,-1.90719 1.84375,-2.03125 l 0.53125,-0.0625 0,-0.5625 c 0,-1.44983 1.18761,-2.59375 2.6875,-2.59375 0.72378,0 1.37081,0.27166 1.84375,0.71875 l 0.28125,-0.28125 c 0.16906,-0.16906 0.36508,-0.30678 0.5625,-0.4375 -0.69159,-0.73227 -1.60279,-1.25 -2.6875,-1.25 z m 7.65625,3.46875 c 0.0108,0.10768 0.0312,0.20355 0.0312,0.3125 0,0.30124 -0.0449,0.61794 -0.125,0.90625 0.54301,0.3132 0.90625,0.88255 0.90625,1.5625 0,1.00934 -0.82157,1.84375 -1.875,1.84375 -0.15947,0 -0.27916,-0.01695 -0.34375,-0.03125 l -0.6875,-0.15625 -0.0625,0.71875 c -0.0772,0.83646 -0.79879,1.5 -1.6875,1.5 -0.30874,0 -0.59728,-0.07741 -0.84375,-0.21875 l -0.84375,0.84375 c 0.48336,0.36155 1.04602,0.625 1.6875,0.625 1.28273,0 2.23445,-0.92206 2.625,-2.0625 0.0466,2.9e-4 0.11648,0 0.15625,0 1.71069,0 3.125,-1.3786 3.125,-3.0625 0,-1.317 -0.88537,-2.35937 -2.0625,-2.78125 z" id="path5849" inkscape:connector-curvature="0" /&gt;
&lt;rect style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.49459419;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect5830" width="9.96875" height="12.09375" x="-517.75" y="-97.231544" rx="0.55298853" ry="0.59031385" /&gt;
&lt;path inkscape:connector-curvature="0" style="fill:#bb5500;fill-rule:nonzero;stroke:none" d="m -507.97596,-98.291646 -2.40866,0 0,2.18991 2.40866,0 0,9.96154 -9.02164,0 0,-9.96154 2.00241,0 0,-2.18991 -2.00241,0 c -1.02154,0 -2.0024,1.17083 -2.0024,2.18991 l 0,9.96154 c 0,1.01907 0.98086,2.0024 2.0024,2.0024 l 9.02164,0 c 1.02154,0 1.97115,-0.98333 1.97115,-2.0024 l 0,-9.96154 c 0,-1.01908 -0.94961,-2.18991 -1.97115,-2.18991 z" id="path727" sodipodi:nodetypes="sccccccccssssssss" /&gt;
&lt;rect style="color:#000000;fill:#babdb6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.49459419;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect5832" width="5.2135415" height="3.09375" x="-515.17188" y="-99.106552" rx="0.59907091" ry="0.81168157" /&gt;
&lt;path style="fill:#ffffff;fill-opacity:1;stroke:none" d="m -531.54164,-98.169616 -2.64018,-1.51286 -3.0052,0 -0.90598,0.48613 -0.53033,2.67375 0.13258,8.06544 1.12695,0.83969 3.36267,-0.0221 c 0,0 0.003,-4.64199 4.8e-4,-7.49645 0,-1.5587 0.88836,-3.0336 2.45901,-3.0336 z" id="path5744" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccc" /&gt;
&lt;path style="fill:#ffffff;fill-opacity:1;stroke:none" d="m -530.77887,-96.566786 -1.61308,1.10485 0,9.61223 0.81759,1.06066 6.87219,0.0663 1.23744,-1.21534 -0.0442,-6.91639 -3.51344,-3.57973 -2.01084,-0.24307 z" id="path5742" inkscape:connector-curvature="0" /&gt;
&lt;path style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m -592.10401,-98.643636 c -0.81117,0 -1.42403,0.5844 -1.42379,1.2645 l 0.004,11.5364 c 2.1e-4,0.6057 0.56304,1.1974 1.40278,1.1974 l 3.36645,0 c -0.23105,-0.3011 -0.37068,-0.6464 -0.51806,-0.9986 l -2.84996,0 c -0.34651,0 -0.41233,-0.1021 -0.41225,-0.2145 l 0.008,-11.4988 c 1.5e-4,-0.2106 0.18831,-0.2927 0.40591,-0.2927 l 4.18777,0 c 0.42274,0.093 0.4188,0.292 0.4188,0.7463 l 0,2.7481 c 0,0.2839 0.32682,0.5244 0.64988,0.5244 l 1.92629,0 c 0.58515,0 1.41384,-0.018 1.41384,0.4982 l 0,1.7491 c 0.32746,0.1346 0.66902,0.2988 0.99716,0.5113 l 0,-2.9243 c 0,-0.5472 0.0644,-1.1498 -0.95928,-2.0326 -0.14365,-0.124 -1.09623,-0.905 -1.24047,-1.0342 -0.1454,-0.1238 -0.90785,-0.8567 -1.04857,-0.9857 -1.00319,-0.8983 -1.11559,-0.7943 -1.73885,-0.7943 z" id="path4705-3-4-2" inkscape:connector-curvature="0" sodipodi:nodetypes="ssssccsssscsssssccscccss" /&gt;
&lt;path inkscape:connector-curvature="0" style="color:#000000;fill:#888a85;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 250.00808,-132.12426 c 0,1.35352 -1.2544,2.46142 -2.79999,2.46142 l -18.17585,0 c -1.5456,0 -2.8,-1.10792 -2.8,-2.46142 l 0,-23.0964 c 0,-1.3535 1.2544,-2.46122 2.8,-2.46122 l 12.08075,0 c 1.0094,0.22144 0.9954,1.31692 0.9954,2.39992 l 0,4.31916 c 0,0.67686 0.6286,1.23072 1.4,1.23072 l 2.94923,0 c 1.3972,0 3.55046,0 3.55046,1.2309 z m -1.15267,-22.27244 c -0.343,-0.29522 -0.693,-0.6029 -1.0374,-0.91078 -0.3472,-0.29522 -0.6888,-0.6031 -1.0248,-0.91078 -2.3954,-2.1415 -3.19661,-3.48556 -4.68482,-3.48556 l -13.07615,0 c -3.087,0 -4.97462,1.76328 -4.97462,4.48316 l 0,23.0964 c 0,2.71966 1.88762,4.42044 4.97462,4.42044 l 18.17585,0 c 3.08699,0 4.84953,-1.70078 4.84953,-4.42044 l 0,-17.60782 c 0,-1.30446 -0.75781,-2.5599 -3.20221,-4.66462 z" id="path4705-5-18-6-7" sodipodi:nodetypes="sssssscsssssscccssssssssc" /&gt;
&lt;text xml:space="preserve" style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Verdana;-inkscape-font-specification:Verdana" x="-31.16432" y="484.06363" id="text3840" sodipodi:linespacing="125%"&gt;
&lt;tspan sodipodi:role="line" id="tspan3842" x="-31.16432" y="484.06363"&gt;Complete / Accepted&lt;/tspan&gt;
&lt;/text&gt;
&lt;path style="color:#000000;fill:#f68383;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 791.93864,344.95641 c -0.6423,-0.2354 -1.06424,-0.7374 -1.25917,-1.4984 -0.32409,-1.265 0.60459,-2.5956 1.80444,-2.5854 0.71831,0.01 1.30797,0.386 1.67009,1.0759 0.16872,0.3214 0.19553,0.4598 0.19311,0.9966 -0.001,0.478 -0.0388,0.6984 -0.15695,0.9455 -0.44122,0.9225 -1.40174,1.3771 -2.25152,1.0658 z m 11.72664,0.025 c -1.40963,-0.5045 -1.81162,-2.4308 -0.74376,-3.5643 0.79081,-0.8394 2.03585,-0.7073 2.76036,0.2928 0.80752,1.1148 0.27477,2.8803 -0.98171,3.2534 -0.41976,0.1247 -0.72223,0.13 -1.03489,0.018 z m -16.3166,-3.5398 0,-1.3566 8.06663,0 8.06663,0 0,-2.5667 0,-2.5666 2.16023,0 2.16021,0 0.1442,0.495 c 0.0794,0.2722 0.32821,1.175 0.55309,2.0061 l 0.40892,1.5112 0,1.2205 0,1.2205 0.22,0 0.22,0 0,0.6966 0,0.6967 -1.53003,0 -1.53002,0 -0.0453,-0.3302 c -0.13761,-1.004 -1.01365,-1.796 -1.98739,-1.7968 -0.6185,-5e-4 -1.09733,0.1893 -1.51245,0.5995 -0.35077,0.3467 -0.65482,0.9721 -0.65482,1.3469 l 0,0.1806 -3.72831,0 -3.72831,0 -0.0864,-0.385 c -0.24749,-1.1034 -1.00793,-1.7416 -2.07522,-1.7416 -0.50942,0 -0.85069,0.1277 -1.27888,0.4785 -0.36095,0.2958 -0.76287,1.035 -0.76287,1.4032 l 0,0.2449 -1.53998,0 -1.54,0 z m 18.62659,-4.3266 0,-1.5767 -0.98999,0 -0.99,0 0,1.5767 0,1.5767 0.99,0 0.98999,0 z m 2.31915,1.4483 c -0.0206,-0.071 -0.20963,-0.7801 -0.42014,-1.5766 l -0.38273,-1.4484 -0.53814,0 -0.53814,0 0,1.5767 0,1.5767 0.95826,0 c 0.87801,0 0.95514,-0.011 0.92089,-0.1284 z m -20.94574,-2.0607 c 0,-2.1075 0.0276,-5.4217 0.0771,-5.5632 0.0423,-0.1214 0.1594,-0.2584 0.26012,-0.3043 0.13301,-0.061 2.2274,0.023 7.65433,-0.083 l 7.4712,0 0.15198,0.1933 c 0.14881,0.1891 0.152,2.3179 0.152,5.6466 l 0,3.4001 -7.88332,0 -7.8833,0 z" id="path4627-5-5-6" inkscape:connector-curvature="0" sodipodi:nodetypes="ssssssssssssccccccccsscccccccccscsscccsssscccccccccccccsscccccsssssscsscccs" /&gt;
&lt;path style="color:#000000;fill:#fef8c4;fill-opacity:1;fill-rule:nonzero;stroke:#b9980d;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 737.326,342.83771 c -1.0889,-0.2251 -2.03791,-0.91 -2.56676,-1.8525 -0.11667,-0.208 -0.22385,-0.378 -0.23819,-0.378 -0.0143,0 -0.26916,0.095 -0.5663,0.2115 -0.68233,0.2672 -1.69276,0.2999 -2.34781,0.076 -0.95239,-0.3255 -1.86327,-1.1288 -2.27454,-2.0059 -0.42492,-0.9062 -0.51811,-2.0583 -0.24161,-2.987 l 0.15682,-0.5267 -0.31239,-0.1895 c -0.41211,-0.2502 -1.05207,-0.9351 -1.31944,-1.412 -0.46616,-0.8318 -0.63029,-1.7982 -0.46213,-2.7214 0.15394,-0.8454 0.41006,-1.3885 0.93739,-1.9879 0.73762,-0.8385 1.5725,-1.2468 2.64926,-1.296 l 0.51645,-0.024 0.05,-0.3355 c 0.13823,-0.927 0.97734,-2.0871 1.87834,-2.5969 0.70247,-0.3974 1.56224,-0.5683 2.26123,-0.4492 0.90186,0.1535 1.66236,0.5516 2.13672,1.1184 0.24362,0.2912 0.27715,0.2945 0.55233,0.054 1.03981,-0.9071 2.68637,-1.124 3.92363,-0.5169 0.4374,0.2147 1.11668,0.7855 1.3719,1.1529 0.50408,0.7255 0.71522,1.3191 0.78451,2.2053 l 0.0444,0.5681 0.31284,0.053 c 0.81097,0.1369 1.59407,0.6187 2.17674,1.3392 0.46898,0.58 0.7126,1.1337 0.85809,1.9504 0.1014,0.5693 0.10162,0.6803 0.002,1.2581 -0.13367,0.7769 -0.36065,1.3209 -0.77798,1.8647 l -0.31815,0.4145 0.14226,0.3193 c 0.90032,2.0204 -0.0282,4.5404 -1.98356,5.383 -1.05385,0.4541 -2.19365,0.4031 -3.14593,-0.1407 l -0.46911,-0.2679 -0.31904,0.4008 c -0.77873,0.9783 -2.26966,1.5542 -3.41213,1.3181 z" id="path4494" inkscape:connector-curvature="0" /&gt;
&lt;path sodipodi:type="arc" style="color:#000000;fill:#fef8c4;fill-opacity:1;fill-rule:nonzero;stroke:#b9980d;stroke-width:1.13159192;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path4531" sodipodi:cx="107.7012" sodipodi:cy="64.401428" sodipodi:rx="2.0771263" sodipodi:ry="2.0771263" d="m 109.77833,64.401428 c 0,1.147165 -0.92996,2.077126 -2.07713,2.077126 -1.14716,0 -2.07712,-0.929961 -2.07712,-2.077126 0,-1.147165 0.92996,-2.077126 2.07712,-2.077126 1.14717,0 2.07713,0.929961 2.07713,2.077126 z" transform="matrix(0.88339735,0,0,0.88402444,635.96067,284.86141)" /&gt;
&lt;path sodipodi:type="arc" style="color:#000000;fill:#fef8c4;fill-opacity:1;fill-rule:nonzero;stroke:#b9980d;stroke-width:1.13159192;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path4531-6" sodipodi:cx="107.7012" sodipodi:cy="64.401428" sodipodi:rx="2.0771263" sodipodi:ry="2.0771263" d="m 109.77833,64.401428 c 0,1.147165 -0.92996,2.077126 -2.07713,2.077126 -1.14716,0 -2.07712,-0.929961 -2.07712,-2.077126 0,-1.147165 0.92996,-2.077126 2.07712,-2.077126 1.14717,0 2.07713,0.929961 2.07713,2.077126 z" transform="matrix(0.88339735,0,0,0.88402444,633.37584,286.49971)" /&gt;
&lt;g id="g3275" transform="translate(641.75263,-693.63133)"&gt;
&lt;path sodipodi:nodetypes="ssssssssssssccccccccsscccccccccscsscccsssscccccccccccccsscccccsssssscsscccs" inkscape:connector-curvature="0" id="path4627-5-5" d="m 120.34476,1037.2908 c -0.6423,-0.2353 -1.06424,-0.7374 -1.25917,-1.4983 -0.32409,-1.2651 0.60459,-2.5957 1.80444,-2.5854 0.71831,0.01 1.30797,0.386 1.67009,1.0758 0.16872,0.3215 0.19553,0.4599 0.19311,0.9966 -0.001,0.4781 -0.0388,0.6985 -0.15695,0.9456 -0.44122,0.9224 -1.40174,1.3771 -2.25152,1.0657 z m 11.72664,0.025 c -1.40963,-0.5044 -1.81162,-2.4308 -0.74376,-3.5643 0.79081,-0.8394 2.03585,-0.7073 2.76036,0.2929 0.80752,1.1147 0.27477,2.8802 -0.98171,3.2534 -0.41976,0.1246 -0.72223,0.1299 -1.03489,0.018 z m -16.3166,-3.5397 0,-1.3567 8.06663,0 8.06663,0 0,-2.5666 0,-2.5667 2.16023,0 2.16021,0 0.1442,0.495 c 0.0794,0.2723 0.32821,1.175 0.55309,2.0062 l 0.40892,1.5111 0,1.2205 0,1.2205 0.22,0 0.22,0 0,0.6967 0,0.6967 -1.53003,0 -1.53002,0 -0.0453,-0.3303 c -0.13761,-1.0039 -1.01365,-1.796 -1.98739,-1.7968 -0.6185,-5e-4 -1.09733,0.1893 -1.51245,0.5996 -0.35077,0.3466 -0.65482,0.972 -0.65482,1.3469 l 0,0.1806 -3.72831,0 -3.72831,0 -0.0864,-0.385 c -0.24749,-1.1035 -1.00793,-1.7417 -2.07522,-1.7417 -0.50942,0 -0.85069,0.1277 -1.27888,0.4786 -0.36095,0.2958 -0.76287,1.035 -0.76287,1.4031 l 0,0.245 -1.53998,0 -1.54,0 z m 18.62659,-4.3267 0,-1.5766 -0.98999,0 -0.99,0 0,1.5766 0,1.5767 0.99,0 0.98999,0 z m 2.31915,1.4484 c -0.0206,-0.071 -0.20963,-0.7801 -0.42014,-1.5767 l -0.38273,-1.4483 -0.53814,0 -0.53814,0 0,1.5766 0,1.5767 0.95826,0 c 0.87801,0 0.95514,-0.011 0.92089,-0.1283 z m -20.94574,-2.0607 c 0,-2.1076 0.0276,-5.4217 0.0771,-5.5632 0.0423,-0.1215 0.1594,-0.2584 0.26012,-0.3043 0.13301,-0.061 2.2274,0.023 7.65433,-0.083 l 7.4712,0 0.15198,0.1932 c 0.14881,0.1892 0.152,2.3179 0.152,5.6467 l 0,3.4001 -7.88332,0 -7.8833,0 z" style="color:#000000;fill:#4d9a05;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /&gt;
&lt;path transform="matrix(0.78649591,0,0,0.78306962,-13.220271,980.5316)" inkscape:transform-center-y="-1.9530807" d="m 174.83215,49.607728 8.63994,14.964803 -17.27987,-10e-7 z" inkscape:randomized="0" inkscape:rounded="0" inkscape:flatsided="true" sodipodi:arg2="-0.52359878" sodipodi:arg1="-1.5707963" sodipodi:r2="4.9882674" sodipodi:r1="9.9765348" sodipodi:cy="59.584263" sodipodi:cx="174.83215" sodipodi:sides="3" id="path4586" style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#a40000;stroke-width:2.54848218;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="star" /&gt;
&lt;text transform="scale(1.2115352,0.82539904)" sodipodi:linespacing="125%" id="text4588" y="1247.4083" x="100.95976" style="font-size:10.56197643px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#a40000;fill-opacity:1;stroke:none;font-family:Sans" xml:space="preserve"&gt;
&lt;tspan y="1247.4083" x="100.95976" id="tspan4590" sodipodi:role="line"&gt;!&lt;/tspan&gt;
&lt;/text&gt;
&lt;/g&gt;
&lt;path sodipodi:type="arc" style="color:#000000;fill:none;stroke:#a40000;stroke-width:3.4908917;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path4610" sodipodi:cx="178.5625" sodipodi:cy="55.862183" sodipodi:rx="13.4375" sodipodi:ry="11.375" d="m 192,55.862183 c 0,6.282239 -6.01617,11.375 -13.4375,11.375 -7.42133,0 -13.4375,-5.092761 -13.4375,-11.375 0,-6.282239 6.01617,-11.375 13.4375,-11.375 7.42133,0 13.4375,5.092761 13.4375,11.375 z" transform="matrix(0.52712071,0,0,0.62269754,703.45788,299.53041)" /&gt;
&lt;path style="fill:none;stroke:#a40000;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 792.35802,329.80011 10.35916,9.2967" id="path4612" inkscape:connector-curvature="0" /&gt;
&lt;path style="color:#000000;fill:#fef8c4;fill-opacity:1;fill-rule:nonzero;stroke:#907500;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 702.42745,343.40031 c -0.6131,-0.2245 -1.01586,-0.7035 -1.20194,-1.4295 -0.30936,-1.2069 0.57711,-2.4763 1.72244,-2.4665 0.68564,0.01 1.2485,0.3682 1.59416,1.0264 0.16105,0.3066 0.18664,0.4386 0.18433,0.9508 -0.002,0.456 -0.037,0.6663 -0.14982,0.902 -0.42116,0.8801 -1.33801,1.3138 -2.14917,1.0168 z m 11.19362,0.024 c -1.34557,-0.4812 -1.72927,-2.319 -0.70995,-3.4004 0.75486,-0.8008 1.9433,-0.6748 2.63489,0.2794 0.77081,1.0635 0.26228,2.7479 -0.9371,3.1038 -0.40068,0.119 -0.6894,0.124 -0.98784,0.017 z m -15.57496,-3.377 0,-1.2943 7.69998,0 7.69997,0 0,-2.4486 0,-2.4487 2.06203,0 2.06203,0 0.13765,0.4722 c 0.0757,0.2598 0.31329,1.121 0.52796,1.914 l 0.39032,1.4416 0,1.1644 0,1.1644 0.21,0 0.21,0 0,0.6647 0,0.6646 -1.46048,0 -1.46048,0 -0.0432,-0.315 c -0.13136,-0.9578 -0.96757,-1.7135 -1.89706,-1.7142 -0.59038,-5e-4 -1.04746,0.1806 -1.44371,0.572 -0.33482,0.3307 -0.62504,0.9273 -0.62504,1.285 l 0,0.1722 -3.55885,0 -3.55885,0 -0.0825,-0.3673 c -0.23625,-1.0527 -0.96212,-1.6616 -1.98088,-1.6616 -0.48627,0 -0.81203,0.1219 -1.22077,0.4566 -0.34453,0.2822 -0.72818,0.9875 -0.72818,1.3386 l 0,0.2337 -1.47,0 -1.46999,0 z m 17.77995,-4.1277 0,-1.5042 -0.945,0 -0.94499,0 0,1.5042 0,1.5041 0.94499,0 0.945,0 z m 2.21373,1.3817 c -0.0197,-0.067 -0.2001,-0.7442 -0.40104,-1.5042 l -0.36534,-1.3817 -0.51367,0 -0.51368,0 0,1.5042 0,1.5041 0.91471,0 c 0.83809,0 0.91172,-0.01 0.87902,-0.1224 z m -19.99368,-1.966 c 0,-2.0106 0.0263,-5.1725 0.0735,-5.3075 0.0404,-0.1159 0.15216,-0.2465 0.2483,-0.2903 0.127,-0.058 2.12616,0.022 7.30641,-0.08 l 7.13161,0 0.14508,0.1843 c 0.14203,0.1805 0.14508,2.2114 0.14508,5.3871 l 0,3.2438 -7.52498,0 -7.52498,0 z" id="path4627" inkscape:connector-curvature="0" sodipodi:nodetypes="ssssssssssssccccccccsscccccccccscsscccsssscccccccccccccsscccccsssssscsscccs" /&gt;
&lt;path sodipodi:type="star" style="color:#000000;fill:#ceb900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path4479" sodipodi:sides="5" sodipodi:cx="57.452427" sodipodi:cy="45.6189" sodipodi:r1="4.808846" sodipodi:r2="2.404423" sodipodi:arg1="0.62879629" sodipodi:arg2="1.2571148" inkscape:flatsided="false" inkscape:rounded="0" inkscape:randomized="0" d="m 61.341514,48.447327 -3.147172,-0.54133 -2.230115,2.285677 -0.457694,-3.160419 -2.862952,-1.414652 2.864302,-1.411916 0.460714,-3.15998 2.22793,2.287806 3.147688,-0.538322 -1.487365,2.825858 z" inkscape:transform-center-x="0.57024007" inkscape:transform-center-y="-0.0008917206" transform="matrix(1.243633,0,0,1.2450231,632.27549,274.18341)" /&gt;
&lt;path style="color:#000000;fill:#c4a000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999988;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 733.34394,339.20571 c -0.47576,-0.1742 -0.78829,-0.5462 -0.93268,-1.1098 -0.24006,-0.937 0.44782,-1.9225 1.33656,-1.9149 0.53205,0 0.96881,0.2859 1.23704,0.7969 0.12497,0.2381 0.14483,0.3407 0.14304,0.738 -10e-4,0.3543 -0.0288,0.5175 -0.11626,0.7005 -0.32681,0.6834 -1.03827,1.0201 -1.6677,0.7893 z m 8.68596,0.02 c -1.04411,-0.3737 -1.34187,-1.8006 -0.5509,-2.6401 0.58576,-0.6217 1.50796,-0.5239 2.04461,0.2169 0.59813,0.8257 0.20353,2.1334 -0.72716,2.4098 -0.31092,0.092 -0.53496,0.096 -0.76655,0.014 z m -12.08577,-2.6219 0,-1.0049 5.97499,0 5.97498,0 0,-1.9012 0,-1.901 1.60009,0 1.60008,0 0.10681,0.3666 c 0.0588,0.2016 0.24311,0.8702 0.40968,1.4859 l 0.30289,1.1194 0,0.9039 0,0.9041 0.16296,0 0.16295,0 0,0.516 0,0.516 -1.1333,0 -1.13329,0 -0.0336,-0.2445 c -0.10194,-0.7437 -0.75082,-1.3303 -1.47208,-1.3309 -0.45812,-4e-4 -0.81279,0.1402 -1.12027,0.444 -0.25982,0.2568 -0.48503,0.7201 -0.48503,0.9978 l 0,0.1336 -2.76157,0 -2.76158,0 -0.064,-0.2851 c -0.18332,-0.8173 -0.74658,-1.2901 -1.53712,-1.2901 -0.37733,0 -0.63012,0.095 -0.94728,0.3546 -0.26736,0.2189 -0.56506,0.7665 -0.56506,1.0392 l 0,0.1814 -1.14067,0 -1.14068,0 z m 13.7968,-3.2048 0,-1.1678 -0.7333,0 -0.73329,0 0,1.1678 0,1.1678 0.73329,0 0.7333,0 z m 1.7178,1.0728 c -0.0152,-0.052 -0.15528,-0.5778 -0.3112,-1.1679 l -0.28349,-1.0727 -0.3986,0 -0.3986,0 0,1.1678 0,1.1678 0.70978,0 c 0.65034,0 0.70748,-0.01 0.68211,-0.095 z m -15.5146,-1.5265 c 0,-1.561 0.0204,-4.0157 0.0571,-4.1206 0.0313,-0.089 0.11807,-0.1914 0.19267,-0.2253 0.0985,-0.044 1.64984,0.017 5.66959,-0.062 l 5.53395,0 0.11258,0.1431 c 0.11022,0.1401 0.11258,1.7167 0.11258,4.1825 l 0,2.5184 -5.8392,0 -5.8392,0 z" id="path4627-5" inkscape:connector-curvature="0" sodipodi:nodetypes="ssssssssssssccccccccsscccccccccscsscccsssscccccccccccccsscccccsssssscsscccs" /&gt;
&lt;path style="color:#000000;fill:#4d9a05;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 826.72275,342.83571 c -0.63729,-0.2335 -1.05593,-0.7316 -1.24934,-1.4866 -0.32157,-1.2552 0.59987,-2.5754 1.79036,-2.5652 0.71271,0.01 1.29777,0.3829 1.65706,1.0674 0.16741,0.319 0.19401,0.4562 0.19161,0.9888 -10e-4,0.4744 -0.0385,0.693 -0.15573,0.9382 -0.43778,0.9153 -1.39081,1.3664 -2.23396,1.0574 z m 11.63517,0.025 c -1.39864,-0.5005 -1.79749,-2.4118 -0.73796,-3.5364 0.78464,-0.8329 2.01997,-0.7019 2.73882,0.2905 0.80122,1.106 0.27263,2.8578 -0.97405,3.228 -0.41648,0.1237 -0.71659,0.1289 -1.02681,0.018 z m -16.18932,-3.5121 0,-1.3461 8.0037,0 8.00371,0 0,-2.5466 0,-2.5466 2.14337,0 2.14336,0 0.14308,0.4911 c 0.0788,0.2701 0.32565,1.1659 0.54877,1.9905 l 0.40573,1.4994 0,1.211 0,1.2109 0.21829,0 0.21828,0 0,0.6913 0,0.6912 -1.51809,0 -1.51809,0 -0.045,-0.3277 c -0.13653,-0.9961 -1.00574,-1.7819 -1.97188,-1.7827 -0.61368,-5e-4 -1.08877,0.1878 -1.50065,0.5949 -0.34804,0.3439 -0.64972,0.9644 -0.64972,1.3363 l 0,0.1792 -3.69922,0 -3.69923,0 -0.0857,-0.382 c -0.24556,-1.0948 -1.00007,-1.7281 -2.05903,-1.7281 -0.50545,0 -0.84406,0.1267 -1.26891,0.4749 -0.35813,0.2935 -0.75692,1.0269 -0.75692,1.3922 l 0,0.243 -1.52796,0 -1.52799,0 z m 18.48129,-4.2929 0,-1.5643 -0.98227,0 -0.98228,0 0,1.5643 0,1.5644 0.98228,0 0.98227,0 z m 2.30105,1.4371 c -0.0204,-0.07 -0.20799,-0.774 -0.41686,-1.5644 l -0.37974,-1.437 -0.53395,0 -0.53394,0 0,1.5643 0,1.5644 0.95079,0 c 0.87116,0 0.94769,-0.011 0.9137,-0.1273 z m -20.78234,-2.0447 c 0,-2.0911 0.0274,-5.3794 0.0765,-5.5198 0.042,-0.1205 0.15816,-0.2563 0.25809,-0.3019 0.13197,-0.06 2.21002,0.023 7.59462,-0.083 l 7.41292,0 0.15079,0.1917 c 0.14765,0.1877 0.15081,2.2998 0.15081,5.6026 l 0,3.3736 -7.82182,0 -7.8218,0 z" id="path4627-5-5-6-4" inkscape:connector-curvature="0" sodipodi:nodetypes="ssssssssssssccccccccsscccccccccscsscccsssscccccccccccccsscccccsssssscsscccs" /&gt;
&lt;/g&gt;
&lt;/svg&gt;</value>
</data>
</root>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>
</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{89940CE3-6AAF-4061-B5F5-01F416B44506}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Svg.UnitTests</RootNamespace>
<AssemblyName>Svg.UnitTests</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Drawing" />
<Reference Include="System.Web" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<CodeAnalysisDependentAssemblyPaths Condition=" '$(VS100COMNTOOLS)' != '' " Include="$(VS100COMNTOOLS)..\IDE\PrivateAssemblies">
<Visible>False</Visible>
</CodeAnalysisDependentAssemblyPaths>
</ItemGroup>
<ItemGroup>
<Compile Include="ExtensionsTest.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Svg.csproj">
<Project>{886A98C5-37C0-4E8B-885E-30C1D2F98B47}</Project>
<Name>Svg</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
\ No newline at end of file
C:\Users\edomke\Documents\GitHub\SVG\Source\Svg.UnitTests\obj\Debug\Svg.UnitTests.csprojResolveAssemblyReference.cache
C:\Users\edomke\Documents\GitHub\SVG\Source\Svg.UnitTests\obj\Debug\Svg.UnitTests.Properties.Resources.resources
C:\Users\edomke\Documents\GitHub\SVG\Source\Svg.UnitTests\obj\Debug\Svg.UnitTests.csproj.GenerateResource.Cache
C:\Users\edomke\Documents\GitHub\SVG\Source\Svg.UnitTests\bin\Debug\Svg.UnitTests.dll
C:\Users\edomke\Documents\GitHub\SVG\Source\Svg.UnitTests\bin\Debug\Svg.UnitTests.pdb
C:\Users\edomke\Documents\GitHub\SVG\Source\Svg.UnitTests\bin\Debug\Svg.dll
C:\Users\edomke\Documents\GitHub\SVG\Source\Svg.UnitTests\bin\Debug\Svg.pdb
C:\Users\edomke\Documents\GitHub\SVG\Source\Svg.UnitTests\obj\Debug\Svg.UnitTests.dll
C:\Users\edomke\Documents\GitHub\SVG\Source\Svg.UnitTests\obj\Debug\Svg.UnitTests.pdb
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment