diff --git a/Sda1/P/rdbms2catalog/.gitignore b/Sda1/P/rdbms2catalog/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..660be2a5fdb9e3019ef8fc737d47fba56fc32ff3
--- /dev/null
+++ b/Sda1/P/rdbms2catalog/.gitignore
@@ -0,0 +1,5 @@
+.project
+.classpath
+/.settings/
+/target/
+A1.log
\ No newline at end of file
diff --git a/Sda1/P/rdbms2catalog/Schema/catalog.xsd b/Sda1/P/rdbms2catalog/Schema/catalog.xsd
new file mode 100644
index 0000000000000000000000000000000000000000..959f9f663e401b7ee6e1eeb04d4b1f8a2f2840ca
--- /dev/null
+++ b/Sda1/P/rdbms2catalog/Schema/catalog.xsd
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
+ 
+    <xs:element name="catalog">
+        <xs:complexType>
+            <xs:sequence>
+                <xs:element ref="product" minOccurs="0" maxOccurs="unbounded"/>
+            </xs:sequence>
+        </xs:complexType>
+    </xs:element>
+    
+    <xs:element name="product">
+        <xs:complexType>
+            <xs:sequence>
+                <xs:element name="name" type="xs:string"/>
+                <xs:element name="description" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
+                <xs:element name="age" type="xs:int" minOccurs="0" maxOccurs="1"/>
+            </xs:sequence>
+            <xs:attribute name="id" type="xs:ID" use="required"/>
+        </xs:complexType>
+    </xs:element>
+ 
+</xs:schema>
diff --git a/Sda1/P/rdbms2catalog/Schema/schema.sql b/Sda1/P/rdbms2catalog/Schema/schema.sql
new file mode 100644
index 0000000000000000000000000000000000000000..c526fef8754be6d183ce7213995ed1415c7d8bd4
--- /dev/null
+++ b/Sda1/P/rdbms2catalog/Schema/schema.sql
@@ -0,0 +1,27 @@
+DROP TABLE IF EXISTS Description;
+DROP TABLE IF EXISTS Product;
+
+CREATE TABLE Product (
+   id CHAR(20) NOT NULL PRIMARY KEY
+  ,name VARCHAR(255) NOT NULL
+  ,age SMALLINT
+);
+
+CREATE TABLE Description (
+   product CHAR(20) NOT NULL REFERENCES Product
+  ,orderIndex int NOT NULL   -- preserving the order of descriptions belonging to a given product
+  ,text VARCHAR(255) NOT NULL
+  ,UNIQUE(product, orderIndex)
+);
+
+-- example data corresponding to products.xml --
+
+-- Product lacking age property --
+INSERT INTO Product (id, name) VALUES ('mpt', 'Monkey Picked Tea');
+INSERT INTO Description VALUES('mpt', 0, 'Picked only by specially trained monkeys');
+INSERT INTO Description VALUES('mpt', 1, 'Rare wild Chinese tea');
+
+INSERT INTO Product VALUES ('instantTent', '4-Person Instant Tent', 15);
+INSERT INTO Description VALUES('instantTent', 0, 'Exclusive WeatherTec system.');
+INSERT INTO Description VALUES('instantTent', 1, '4-person, 1-room tent');
+INSERT INTO Description VALUES('instantTent', 2, 'Pre-attached tent poles');
diff --git a/Sda1/P/rdbms2catalog/pom.xml b/Sda1/P/rdbms2catalog/pom.xml
new file mode 100644
index 0000000000000000000000000000000000000000..a90681ea48c8e2139eb3ab96e47a9b49c054b242
--- /dev/null
+++ b/Sda1/P/rdbms2catalog/pom.xml
@@ -0,0 +1,97 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+	<modelVersion>4.0.0</modelVersion>
+
+	<groupId>de.hdm-stuttgart.mi.sda1</groupId>
+	<artifactId>rdbms2catalog</artifactId>
+	<version>0.8</version>
+	<packaging>jar</packaging>
+
+	<name>rdbms2catalog</name>
+
+	<url>http://www.mi.hdm-stuttgart.de/freedocs</url>
+
+	<properties>
+		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+	</properties>
+
+	<dependencies>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<version>4.11</version>
+			<scope>test</scope>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.logging.log4j</groupId>
+			<artifactId>log4j-api</artifactId>
+			<version>2.1</version>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.logging.log4j</groupId>
+			<artifactId>log4j-core</artifactId>
+			<version>2.1</version>
+		</dependency>
+
+		<dependency>
+			<groupId>org.jdom</groupId>
+			<artifactId>jdom2</artifactId>
+			<version>2.0.5</version>
+		</dependency>
+
+		<dependency>
+			<groupId>mysql</groupId>
+			<artifactId>mysql-connector-java</artifactId>
+			<version>5.1.34</version>
+		</dependency>
+
+	</dependencies>
+
+	<build>
+		<plugins>
+
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<version>3.1</version>
+				<configuration>
+					<source>1.8</source>
+					<target>1.8</target>
+				</configuration>
+			</plugin>
+
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<version>2.10.1</version>
+				<configuration />
+			</plugin>
+
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-shade-plugin</artifactId>
+				<version>2.3</version>
+				<configuration>
+					<transformers>
+						<transformer
+							implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
+							<manifestEntries>
+								<Main-Class>de.hdm_stuttgart.mi.sda1.catalog2sax.App</Main-Class>
+							</manifestEntries>
+						</transformer>
+					</transformers>
+				</configuration>
+				<executions>
+					<execution>
+						<phase>package</phase>
+						<goals>
+							<goal>shade</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+
+		</plugins>
+	</build>
+</project>
diff --git a/Sda1/P/rdbms2catalog/products.xml b/Sda1/P/rdbms2catalog/products.xml
new file mode 100644
index 0000000000000000000000000000000000000000..191ea6b4f3194f2bbbcae5582a0a611c2612eb67
--- /dev/null
+++ b/Sda1/P/rdbms2catalog/products.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<catalog xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:noNamespaceSchemaLocation="Schema/catalog.xsd">
+   <product id="mpt">
+       <name>Monkey Picked Tea</name>
+       <description>Rare wild Chinese tea</description>
+       <description>Picked only by specially trained monkeys</description>
+   </product>
+    <product id="instantTent">
+        <name>4-Person Instant Tent</name>
+        <description>4-person, 1-room tent</description>
+        <description>Pre-attached tent poles</description>
+        <description>Exclusive WeatherTec system.</description>
+        <age>15</age>
+    </product>
+</catalog>
\ No newline at end of file
diff --git a/Sda1/P/rdbms2catalog/src/main/java/de/hdm_stuttgart/mi/sda1/sql2catalog/Helper.java b/Sda1/P/rdbms2catalog/src/main/java/de/hdm_stuttgart/mi/sda1/sql2catalog/Helper.java
new file mode 100644
index 0000000000000000000000000000000000000000..f7879587615344dbd2eef926cfb7b55f4a0c451e
--- /dev/null
+++ b/Sda1/P/rdbms2catalog/src/main/java/de/hdm_stuttgart/mi/sda1/sql2catalog/Helper.java
@@ -0,0 +1,18 @@
+package de.hdm_stuttgart.mi.sda1.sql2catalog;
+
+/**
+ * Project wide helper methods
+ *
+ */
+public class Helper {
+   /**
+    * Write message to stderr and exit with given error code
+    * @param errMsg
+    * @param errorCode
+    */
+   public static void exitWithErrorMessage(final String errMsg, int errorCode) {
+      System.err.println(errMsg);
+      System.exit(errorCode);
+   }
+
+}
diff --git a/Sda1/P/rdbms2catalog/src/main/java/de/hdm_stuttgart/mi/sda1/sql2catalog/Messages.java b/Sda1/P/rdbms2catalog/src/main/java/de/hdm_stuttgart/mi/sda1/sql2catalog/Messages.java
new file mode 100644
index 0000000000000000000000000000000000000000..781829729027fd9c1094d9365e0bb614180e2395
--- /dev/null
+++ b/Sda1/P/rdbms2catalog/src/main/java/de/hdm_stuttgart/mi/sda1/sql2catalog/Messages.java
@@ -0,0 +1,22 @@
+package de.hdm_stuttgart.mi.sda1.sql2catalog;
+
+import java.util.MissingResourceException;
+import java.util.ResourceBundle;
+
+public class Messages {
+   private static final String BUNDLE_NAME = "de.hdm_stuttgart.mi.sda1.sql2catalog.messages"; //$NON-NLS-1$
+
+   private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle
+         .getBundle(BUNDLE_NAME);
+
+   private Messages() {
+   }
+
+   public static String getString(String key) {
+      try {
+         return RESOURCE_BUNDLE.getString(key);
+      } catch (MissingResourceException e) {
+         return '!' + key + '!';
+      }
+   }
+}
diff --git a/Sda1/P/rdbms2catalog/src/main/java/de/hdm_stuttgart/mi/sda1/sql2catalog/Rdbms2Xml.java b/Sda1/P/rdbms2catalog/src/main/java/de/hdm_stuttgart/mi/sda1/sql2catalog/Rdbms2Xml.java
new file mode 100644
index 0000000000000000000000000000000000000000..f6868d69b5f78b50f235827420078159520b8ac4
--- /dev/null
+++ b/Sda1/P/rdbms2catalog/src/main/java/de/hdm_stuttgart/mi/sda1/sql2catalog/Rdbms2Xml.java
@@ -0,0 +1,77 @@
+package de.hdm_stuttgart.mi.sda1.sql2catalog;
+
+import java.io.IOException;
+import java.sql.Connection;
+import java.sql.DriverManager;
+import java.sql.SQLException;
+
+import javax.xml.parsers.ParserConfigurationException;
+
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+import org.jdom2.Element;
+import org.jdom2.output.Format;
+import org.jdom2.output.XMLOutputter;
+import org.xml.sax.SAXException;
+
+/**
+ * A simple SAX parser demo
+ * 
+ */
+public class Rdbms2Xml {
+   private static final Logger log = LogManager.getLogger(Rdbms2Xml.class);
+
+   /**
+    * @param args
+    *           Unused
+    * @throws SAXException
+    * @throws ParserConfigurationException
+    * @throws IOException
+    */
+   public static void main(String[] args) throws ParserConfigurationException,
+         SAXException, IOException {
+
+
+      
+      // Register Driver
+      final String sqlDriverClassName = Messages.getString("Xml2Rdbms.jdbcDriverName"); 
+      try {
+         Class.forName(sqlDriverClassName);
+      } catch (ClassNotFoundException e) {
+         Helper.exitWithErrorMessage(Messages.getString("Xml2Rdbms.errMsgUnableRegisterDriverClass") + sqlDriverClassName + "'", 1);
+      }
+
+
+      // Opening a JDBC connection
+      // 
+      Connection conn = null;
+      
+      final String jdbcConnectionUrl = Messages.getString("Xml2Rdbms.jdbcUrl"); 
+      final String userName = Messages.getString("Xml2Rdbms.jdbcUser"); 
+      try {
+         conn = DriverManager.getConnection(jdbcConnectionUrl, userName, Messages.getString("Xml2Rdbms.jdbcPasswd")); 
+      } catch (SQLException e) {
+         Helper.exitWithErrorMessage(Messages.getString("Xml2Rdbms.errMsgUnableToConnect") + userName + "' to '" + 
+               jdbcConnectionUrl + "'", 1); 
+      }
+      
+      RdbmsAccess rdbmsAccess = null;
+      try {
+         rdbmsAccess = new RdbmsAccess(conn);
+      } catch (SQLException e) {
+         Helper.exitWithErrorMessage(Messages.getString("Xml2Rdbms.errMsgUnableInitDataInsert"), 1); 
+      }
+      
+      final Element catalogElement = new Element("catalog");
+      try {
+         rdbmsAccess.appendProducts(catalogElement);
+      } catch (SQLException e) {
+         Helper.exitWithErrorMessage("Unable to read database:" + e.getLocalizedMessage(), 1);
+      }
+      
+      // Write XML content to standard output
+      XMLOutputter outputter = new XMLOutputter(Format.getPrettyFormat());
+      outputter.output(catalogElement, System.out);
+   }
+   
+}
diff --git a/Sda1/P/rdbms2catalog/src/main/java/de/hdm_stuttgart/mi/sda1/sql2catalog/RdbmsAccess.java b/Sda1/P/rdbms2catalog/src/main/java/de/hdm_stuttgart/mi/sda1/sql2catalog/RdbmsAccess.java
new file mode 100644
index 0000000000000000000000000000000000000000..a3b149c298a030dc9fa56c655edc4cf830018878
--- /dev/null
+++ b/Sda1/P/rdbms2catalog/src/main/java/de/hdm_stuttgart/mi/sda1/sql2catalog/RdbmsAccess.java
@@ -0,0 +1,63 @@
+package de.hdm_stuttgart.mi.sda1.sql2catalog;
+
+import java.sql.Connection;
+import java.sql.PreparedStatement;
+import java.sql.ResultSet;
+import java.sql.SQLException;
+
+import org.jdom2.Element;
+
+/**
+ * Reading product data
+ *
+ */
+public class RdbmsAccess {
+	
+	final PreparedStatement selectProduct, selectDescription;
+
+	/**
+	 * @param conn Destination RDBMS
+	 * @throws SQLException 
+	 */
+	public RdbmsAccess(final Connection conn) throws SQLException {
+	   conn.setAutoCommit(false);
+	   selectProduct = conn.prepareStatement("SELECT * FROM Product");
+	   selectDescription = conn.prepareStatement("SELECT * FROM Description WHERE product = ? ORDER BY orderIndex");
+	}
+	
+	public void appendProducts(final Element root) throws SQLException {
+	   final ResultSet products = selectProduct.executeQuery();
+	   
+	   while (products.next()) {
+	      final String productId = products.getString("id");
+	      final Element productElement = new Element("product");
+	      root.addContent(productElement);
+	      productElement.setAttribute("id", productId);
+	      
+	      final Element nameElement = new Element("name");
+	      productElement.addContent(nameElement);
+	      nameElement.addContent(products.getString("name"));
+	      
+         addDescriptions(productId, productElement);
+
+         final int productAge = products.getInt("age");
+	      if (!products.wasNull()) {
+	         final Element ageElement = new Element("age");
+	         productElement.addContent(ageElement);
+	         ageElement.addContent("" + productAge);
+	      }
+	   }
+      products.close();
+	}
+	
+	private void addDescriptions(final String productId, final Element productElement) throws SQLException {
+	   selectDescription.setString(1, productId);
+	   final ResultSet descriptions = selectDescription.executeQuery();
+	   while (descriptions.next()) {
+	      final Element descriptionElement = new Element("description");
+	      productElement.addContent(descriptionElement);
+	      descriptionElement.addContent(descriptions.getString("text"));
+	   }
+	   descriptions.close();
+	}
+}
diff --git a/Sda1/P/rdbms2catalog/src/main/java/de/hdm_stuttgart/mi/sda1/sql2catalog/messages.properties b/Sda1/P/rdbms2catalog/src/main/java/de/hdm_stuttgart/mi/sda1/sql2catalog/messages.properties
new file mode 100644
index 0000000000000000000000000000000000000000..a183dcc38baada85ed3f0fcafca90883ef3a940c
--- /dev/null
+++ b/Sda1/P/rdbms2catalog/src/main/java/de/hdm_stuttgart/mi/sda1/sql2catalog/messages.properties
@@ -0,0 +1,11 @@
+Xml2Rdbms.14='
+Xml2Rdbms.errMsgUnableCloseRdbms=Unable to close RDBMS access
+Xml2Rdbms.errMsgUnableInitDataInsert=Unable to initialize data inserter
+Xml2Rdbms.errMsgUnableRegisterDriverClass=Unable to register driver class '
+Xml2Rdbms.errMsgUnableToConnect=Unable to connect as user '
+Xml2Rdbms.jdbcDriverName=com.mysql.jdbc.Driver
+Xml2Rdbms.jdbcPasswd=XYZ
+Xml2Rdbms.jdbcUrl=jdbc:mysql://localhost:3306/hdm
+Xml2Rdbms.jdbcUser=hdmuser
+Xml2Rdbms.xmlSourceFileName=products.xml
+Xml2Rdbms.errMsgUnableCommitTransaction=Unable to commit transaction
\ No newline at end of file
diff --git a/Sda1/P/rdbms2catalog/src/main/resources/log4j2.xml b/Sda1/P/rdbms2catalog/src/main/resources/log4j2.xml
new file mode 100644
index 0000000000000000000000000000000000000000..eda4f3b0d781b09217fb4218285c39adf8d3c9c0
--- /dev/null
+++ b/Sda1/P/rdbms2catalog/src/main/resources/log4j2.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Configuration>
+    <Appenders>
+        <File name="A1" fileName="A1.log" append="false">
+            <PatternLayout pattern="%t %-5p %c{2} - %m%n"/>
+        </File>
+        <Console name="STDOUT" target="SYSTEM_OUT">
+            <PatternLayout pattern="%C{2} (%F:%L) - %m%n"/>
+        </Console>
+    </Appenders>
+    <Loggers>
+
+        <!-- You my want to define class or package level per-logger rules -->
+        <Logger name="de.hdm_stuttgart.mi.sda1.catalog2sax.App" level="debug">
+            <AppenderRef ref="A1"/>
+        </Logger>
+        <Root level="debug">
+            <AppenderRef ref="STDOUT"/>
+        </Root>
+    </Loggers>
+</Configuration>
\ No newline at end of file
diff --git a/Sda2/Ref/Fig/mapInherit.svg b/Sda2/Ref/Fig/mapInherit.svg
index aa742aec13c33e62148bf134b0116baab9432648..5f4853359a3054d679cd57c3fc3c15b76fd00318 100644
--- a/Sda2/Ref/Fig/mapInherit.svg
+++ b/Sda2/Ref/Fig/mapInherit.svg
@@ -24,13 +24,13 @@
      borderopacity="1.0"
      inkscape:pageopacity="0.0"
      inkscape:pageshadow="2"
-     inkscape:zoom="1.0828571"
-     inkscape:cx="579.48549"
-     inkscape:cy="305.39526"
+     inkscape:zoom="1.3828889"
+     inkscape:cx="526.18109"
+     inkscape:cy="400.9722"
      inkscape:document-units="px"
-     inkscape:current-layer="g3407"
+     inkscape:current-layer="g8293"
      showgrid="true"
-     inkscape:window-width="1600"
+     inkscape:window-width="1920"
      inkscape:window-height="1176"
      inkscape:window-x="0"
      inkscape:window-y="24"
@@ -40,407 +40,400 @@
      inkscape:guide-bbox="true"
      inkscape:snap-grids="true">
     <inkscape:grid
-       type="xygrid"
-       id="grid5239"
-       empspacing="5"
-       visible="true"
+       snapvisiblegridlinesonly="true"
        enabled="true"
-       snapvisiblegridlinesonly="true" />
+       visible="true"
+       empspacing="5"
+       id="grid5239"
+       type="xygrid" />
     <sodipodi:guide
-       orientation="0,1"
+       id="guide3149"
        position="680,750"
-       id="guide3149" />
+       orientation="0,1" />
   </sodipodi:namedview>
   <defs
      id="defs4">
     <marker
-       style="overflow:visible"
-       id="EmptyTriangleOutL"
-       refX="0.0"
-       refY="0.0"
+       inkscape:stockid="EmptyTriangleOutL"
        orient="auto"
-       inkscape:stockid="EmptyTriangleOutL">
+       refY="0.0"
+       refX="0.0"
+       id="EmptyTriangleOutL"
+       style="overflow:visible">
       <path
-         transform="scale(0.8) translate(-6,0)"
-         style="fill-rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:1.0pt"
+         id="path4949"
          d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
-         id="path4949" />
+         style="fill-rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:1.0pt"
+         transform="scale(0.8) translate(-6,0)" />
     </marker>
     <marker
-       style="overflow:visible"
-       id="EmptyTriangleInL"
-       refX="0.0"
-       refY="0.0"
+       inkscape:stockid="EmptyTriangleInL"
        orient="auto"
-       inkscape:stockid="EmptyTriangleInL">
+       refY="0.0"
+       refX="0.0"
+       id="EmptyTriangleInL"
+       style="overflow:visible">
       <path
-         transform="scale(-0.8) translate(-6,0)"
-         style="fill-rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:1.0pt"
+         id="path4940"
          d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
-         id="path4940" />
+         style="fill-rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:1.0pt"
+         transform="scale(-0.8) translate(-6,0)" />
     </marker>
     <marker
-       inkscape:stockid="DotM"
-       orient="auto"
-       refY="0.0"
-       refX="0.0"
+       style="overflow:visible"
        id="DotM"
-       style="overflow:visible">
+       refX="0.0"
+       refY="0.0"
+       orient="auto"
+       inkscape:stockid="DotM">
       <path
-         id="path4359"
-         d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+         transform="scale(0.4) translate(7.4, 1)"
          style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt"
-         transform="scale(0.4) translate(7.4, 1)" />
+         d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+         id="path4359" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend"
-       orient="auto"
-       refY="0.0"
-       refX="0.0"
+       style="overflow:visible;"
        id="Arrow1Mend"
-       style="overflow:visible;">
+       refX="0.0"
+       refY="0.0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
       <path
-         id="path5023"
-         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
+         transform="scale(0.4) rotate(180) translate(10,0)"
          style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;"
-         transform="scale(0.4) rotate(180) translate(10,0)" />
+         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
+         id="path5023" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mstart"
-       orient="auto"
-       refY="0.0"
-       refX="0.0"
+       style="overflow:visible"
        id="Arrow1Mstart"
-       style="overflow:visible">
+       refX="0.0"
+       refY="0.0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mstart">
       <path
-         id="path5020"
-         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
+         transform="scale(0.4) translate(10,0)"
          style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt"
-         transform="scale(0.4) translate(10,0)" />
+         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
+         id="path5020" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Lend"
-       orient="auto"
-       refY="0.0"
-       refX="0.0"
+       style="overflow:visible;"
        id="Arrow1Lend"
-       style="overflow:visible;">
+       refX="0.0"
+       refY="0.0"
+       orient="auto"
+       inkscape:stockid="Arrow1Lend">
       <path
-         id="path5017"
-         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
+         transform="scale(0.8) rotate(180) translate(12.5,0)"
          style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;"
-         transform="scale(0.8) rotate(180) translate(12.5,0)" />
+         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
+         id="path5017" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Lstart"
-       orient="auto"
-       refY="0.0"
-       refX="0.0"
+       style="overflow:visible"
        id="Arrow1Lstart"
-       style="overflow:visible">
+       refX="0.0"
+       refY="0.0"
+       orient="auto"
+       inkscape:stockid="Arrow1Lstart">
       <path
-         id="path5014"
-         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
+         transform="scale(0.8) translate(12.5,0)"
          style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt"
-         transform="scale(0.8) translate(12.5,0)" />
+         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
+         id="path5014" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mstart"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mstart-8"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mstart">
       <path
-         inkscape:connector-curvature="0"
-         id="path5020-3"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(0.4,0,0,0.4,4,0)"
          style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
-         transform="matrix(0.4,0,0,0.4,4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5020-3"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mend-2"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
       <path
-         inkscape:connector-curvature="0"
-         id="path5023-9"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
          style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
-         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5023-9"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mstart"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mstart-4"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mstart">
       <path
-         inkscape:connector-curvature="0"
-         id="path5020-1"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(0.4,0,0,0.4,4,0)"
          style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
-         transform="matrix(0.4,0,0,0.4,4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5020-1"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mend-22"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
       <path
-         inkscape:connector-curvature="0"
-         id="path5023-1"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
          style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
-         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5023-1"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mstart"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mstart-6"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mstart">
       <path
-         inkscape:connector-curvature="0"
-         id="path5020-8"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(0.4,0,0,0.4,4,0)"
          style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
-         transform="matrix(0.4,0,0,0.4,4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5020-8"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mend-6"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
       <path
-         inkscape:connector-curvature="0"
-         id="path5023-5"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
          style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
-         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5023-5"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="DotMo"
-       orient="auto"
-       refY="0.0"
-       refX="0.0"
+       style="overflow:visible"
        id="DotMo"
-       style="overflow:visible">
+       refX="0.0"
+       refY="0.0"
+       orient="auto"
+       inkscape:stockid="DotMo">
       <path
-         id="path5187"
-         d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+         transform="scale(0.4) translate(7.4, 1)"
          style="stroke:#d40000;stroke-width:1.0pt;fill:#d40000;fill-rule:evenodd"
-         transform="scale(0.4) translate(7.4, 1)" />
+         d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+         id="path5187" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend-6o"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mend-6o"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend-6o">
       <path
-         inkscape:connector-curvature="0"
-         id="path5190"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
          style="stroke:#d40000;stroke-width:1pt;fill:#d40000;fill-rule:evenodd"
-         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5190"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="DotMo1"
-       orient="auto"
-       refY="0.0"
-       refX="0.0"
+       style="overflow:visible"
        id="DotMo1"
-       style="overflow:visible">
+       refX="0.0"
+       refY="0.0"
+       orient="auto"
+       inkscape:stockid="DotMo1">
       <path
-         id="path6031"
-         d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+         transform="scale(0.4) translate(7.4, 1)"
          style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;fill:#000000"
-         transform="scale(0.4) translate(7.4, 1)" />
+         d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+         id="path6031" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend-6n"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mend-6n"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend-6n">
       <path
-         inkscape:connector-curvature="0"
-         id="path6034"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
          style="stroke:#000000;stroke-width:1pt;fill:#000000;fill-rule:evenodd"
-         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path6034"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="DotMoc"
-       orient="auto"
-       refY="0.0"
-       refX="0.0"
+       style="overflow:visible"
        id="DotMoc"
-       style="overflow:visible">
+       refX="0.0"
+       refY="0.0"
+       orient="auto"
+       inkscape:stockid="DotMoc">
       <path
-         id="path6037"
-         d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+         transform="scale(0.4) translate(7.4, 1)"
          style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;fill:#000000"
-         transform="scale(0.4) translate(7.4, 1)" />
+         d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+         id="path6037" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend-6F"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mend-6F"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend-6F">
       <path
-         inkscape:connector-curvature="0"
-         id="path6040"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
          style="stroke:#000000;stroke-width:1pt;fill:#000000;fill-rule:evenodd"
-         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path6040"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="DotMocK"
-       orient="auto"
-       refY="0.0"
-       refX="0.0"
+       style="overflow:visible"
        id="DotMocK"
-       style="overflow:visible">
+       refX="0.0"
+       refY="0.0"
+       orient="auto"
+       inkscape:stockid="DotMocK">
       <path
-         id="path6279"
-         d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+         transform="scale(0.4) translate(7.4, 1)"
          style="stroke:#000000;stroke-width:1.0pt;fill:#000000;fill-rule:evenodd"
-         transform="scale(0.4) translate(7.4, 1)" />
+         d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+         id="path6279" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend-6Fa"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mend-6Fa"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend-6Fa">
       <path
-         inkscape:connector-curvature="0"
-         id="path6282"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
          style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;fill:#000000"
-         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path6282"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="DotMo17"
-       orient="auto"
-       refY="0.0"
-       refX="0.0"
+       style="overflow:visible"
        id="DotMo17"
-       style="overflow:visible">
+       refX="0.0"
+       refY="0.0"
+       orient="auto"
+       inkscape:stockid="DotMo17">
       <path
-         id="path6529"
-         d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+         transform="scale(0.4) translate(7.4, 1)"
          style="stroke:#d40000;stroke-width:1.0pt;fill:#d40000;fill-rule:evenodd"
-         transform="scale(0.4) translate(7.4, 1)" />
+         d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+         id="path6529" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend-6nl"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mend-6nl"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend-6nl">
       <path
-         inkscape:connector-curvature="0"
-         id="path6532"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
          style="fill-rule:evenodd;stroke:#d40000;stroke-width:1pt;fill:#d40000"
-         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path6532"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="DotMocKE"
-       orient="auto"
-       refY="0.0"
-       refX="0.0"
+       style="overflow:visible"
        id="DotMocKE"
-       style="overflow:visible">
+       refX="0.0"
+       refY="0.0"
+       orient="auto"
+       inkscape:stockid="DotMocKE">
       <path
-         id="path6535"
-         d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+         transform="scale(0.4) translate(7.4, 1)"
          style="fill-rule:evenodd;stroke:#d40000;stroke-width:1.0pt;fill:#d40000"
-         transform="scale(0.4) translate(7.4, 1)" />
+         d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+         id="path6535" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend-6FaK"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mend-6FaK"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend-6FaK">
       <path
-         inkscape:connector-curvature="0"
-         id="path6538"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
          style="stroke:#d40000;stroke-width:1pt;fill:#d40000;fill-rule:evenodd"
-         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path6538"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mend-6-8"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
       <path
-         inkscape:connector-curvature="0"
-         id="path5023-5-4"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
          style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
-         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5023-5-4"
+         inkscape:connector-curvature="0" />
     </marker>
     <inkscape:perspective
-       id="perspective2492"
-       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
-       inkscape:vp_z="744.09448 : 526.18109 : 1"
-       inkscape:vp_y="0 : 1000 : 0"
+       sodipodi:type="inkscape:persp3d"
        inkscape:vp_x="0 : 526.18109 : 1"
-       sodipodi:type="inkscape:persp3d" />
-    <inkscape:perspective
-       id="perspective3257"
-       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
-       inkscape:vp_z="744.09448 : 526.18109 : 1"
        inkscape:vp_y="0 : 1000 : 0"
-       inkscape:vp_x="0 : 526.18109 : 1"
-       sodipodi:type="inkscape:persp3d" />
-    <inkscape:perspective
-       id="perspective2425"
-       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
        inkscape:vp_z="744.09448 : 526.18109 : 1"
-       inkscape:vp_y="0 : 1000 : 0"
-       inkscape:vp_x="0 : 526.18109 : 1"
-       sodipodi:type="inkscape:persp3d" />
+       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+       id="perspective2492" />
     <inkscape:perspective
        sodipodi:type="inkscape:persp3d"
        inkscape:vp_x="0 : 526.18109 : 1"
        inkscape:vp_y="0 : 1000 : 0"
        inkscape:vp_z="744.09448 : 526.18109 : 1"
        inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
-       id="perspective2410" />
+       id="perspective3257" />
     <inkscape:perspective
        sodipodi:type="inkscape:persp3d"
        inkscape:vp_x="0 : 526.18109 : 1"
        inkscape:vp_y="0 : 1000 : 0"
        inkscape:vp_z="744.09448 : 526.18109 : 1"
        inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
-       id="perspective2459" />
+       id="perspective2425" />
+    <inkscape:perspective
+       id="perspective2410"
+       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+       inkscape:vp_z="744.09448 : 526.18109 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 526.18109 : 1"
+       sodipodi:type="inkscape:persp3d" />
     <inkscape:perspective
-       id="perspective8826"
+       id="perspective2459"
        inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
        inkscape:vp_z="744.09448 : 526.18109 : 1"
        inkscape:vp_y="0 : 1000 : 0"
@@ -452,582 +445,880 @@
        inkscape:vp_y="0 : 1000 : 0"
        inkscape:vp_z="744.09448 : 526.18109 : 1"
        inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
-       id="perspective10" />
+       id="perspective8826" />
+    <inkscape:perspective
+       id="perspective10"
+       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+       inkscape:vp_z="744.09448 : 526.18109 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 526.18109 : 1"
+       sodipodi:type="inkscape:persp3d" />
     <marker
-       inkscape:stockid="DotMQ"
-       orient="auto"
-       refY="0.0"
-       refX="0.0"
+       style="overflow:visible"
        id="DotMQ"
-       style="overflow:visible">
+       refX="0.0"
+       refY="0.0"
+       orient="auto"
+       inkscape:stockid="DotMQ">
       <path
-         id="path5711"
-         d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+         transform="scale(0.4) translate(7.4, 1)"
          style="stroke:#008000;stroke-width:1.0pt;fill:#008000;fill-rule:evenodd"
-         transform="scale(0.4) translate(7.4, 1)" />
+         d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+         id="path5711" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend-6FL"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mend-6FL"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend-6FL">
       <path
-         inkscape:connector-curvature="0"
-         id="path5714"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
          style="fill-rule:evenodd;stroke:#008000;stroke-width:1pt;fill:#008000"
-         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5714"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="DotMQ"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="DotMQ-9"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotMQ">
       <path
-         inkscape:connector-curvature="0"
-         id="path5711-3"
-         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
          style="fill:#008000;fill-rule:evenodd;stroke:#008000;stroke-width:1pt"
-         transform="matrix(0.4,0,0,0.4,2.96,0.4)" />
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path5711-3"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend-6FL"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mend-6FL-6"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend-6FL">
       <path
-         inkscape:connector-curvature="0"
-         id="path5714-3"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
          style="fill:#008000;fill-rule:evenodd;stroke:#008000;stroke-width:1pt"
-         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5714-3"
+         inkscape:connector-curvature="0" />
     </marker>
     <linearGradient
        id="linearGradient11067">
       <stop
-         id="stop11069"
+         style="stop-color:#e9fffb;stop-opacity:0.91774893;"
          offset="0"
-         style="stop-color:#e9fffb;stop-opacity:0.91774893;" />
+         id="stop11069" />
       <stop
-         id="stop11071"
+         style="stop-color:#72dac5;stop-opacity:0;"
          offset="1"
-         style="stop-color:#72dac5;stop-opacity:0;" />
+         id="stop11071" />
     </linearGradient>
     <marker
-       inkscape:stockid="DotMQ"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="DotMQ-1"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotMQ">
       <path
-         inkscape:connector-curvature="0"
-         id="path5711-9"
-         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
          style="fill:#008000;fill-rule:evenodd;stroke:#008000;stroke-width:1pt"
-         transform="matrix(0.4,0,0,0.4,2.96,0.4)" />
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path5711-9"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend-6FL"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mend-6FL-5"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend-6FL">
       <path
-         inkscape:connector-curvature="0"
-         id="path5714-5"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
          style="fill:#008000;fill-rule:evenodd;stroke:#008000;stroke-width:1pt"
-         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5714-5"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="DotMQ"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="DotMQ-2"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotMQ">
       <path
-         inkscape:connector-curvature="0"
-         id="path5711-1"
-         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
          style="fill:#008000;fill-rule:evenodd;stroke:#008000;stroke-width:1pt"
-         transform="matrix(0.4,0,0,0.4,2.96,0.4)" />
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path5711-1"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend-6FL"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mend-6FL-0"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend-6FL">
       <path
-         inkscape:connector-curvature="0"
-         id="path5714-8"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
          style="fill:#008000;fill-rule:evenodd;stroke:#008000;stroke-width:1pt"
-         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5714-8"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend-6FL"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mend-6FL-56"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend-6FL">
       <path
-         inkscape:connector-curvature="0"
-         id="path5714-1"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
          style="fill:#008000;fill-rule:evenodd;stroke:#008000;stroke-width:1pt"
-         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5714-1"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend-6FL"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mend-6FL-8"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend-6FL">
       <path
-         inkscape:connector-curvature="0"
-         id="path5714-87"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
          style="fill:#008000;fill-rule:evenodd;stroke:#008000;stroke-width:1pt"
-         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5714-87"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend-6FL"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mend-6FL-4"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend-6FL">
       <path
-         inkscape:connector-curvature="0"
-         id="path5714-55"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
          style="fill:#008000;fill-rule:evenodd;stroke:#008000;stroke-width:1pt"
-         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5714-55"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend-6FL"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mend-6FL-9"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend-6FL">
       <path
-         inkscape:connector-curvature="0"
-         id="path5714-4"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
          style="fill:#008000;fill-rule:evenodd;stroke:#008000;stroke-width:1pt"
-         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5714-4"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="DotMQ"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="DotMQ-26"
-       style="overflow:visible">
-      <path
-         inkscape:connector-curvature="0"
-         id="path5711-2"
-         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotMQ">
+      <path
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
          style="fill:#008000;fill-rule:evenodd;stroke:#008000;stroke-width:1pt"
-         transform="matrix(0.4,0,0,0.4,2.96,0.4)" />
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path5711-2"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend-6FL"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mend-6FL-7"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend-6FL">
       <path
-         inkscape:connector-curvature="0"
-         id="path5714-2"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
          style="fill:#008000;fill-rule:evenodd;stroke:#008000;stroke-width:1pt"
-         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5714-2"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="DotMQ"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="DotMQ-27"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotMQ">
       <path
-         inkscape:connector-curvature="0"
-         id="path5711-7"
-         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
          style="fill:#008000;fill-rule:evenodd;stroke:#008000;stroke-width:1pt"
-         transform="matrix(0.4,0,0,0.4,2.96,0.4)" />
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path5711-7"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend-6FL"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mend-6FL-82"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend-6FL">
       <path
-         inkscape:connector-curvature="0"
-         id="path5714-25"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
          style="fill:#008000;fill-rule:evenodd;stroke:#008000;stroke-width:1pt"
-         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5714-25"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="DotMQ"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="DotMQ-3"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotMQ">
       <path
-         inkscape:connector-curvature="0"
-         id="path5711-27"
-         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
          style="fill:#008000;fill-rule:evenodd;stroke:#008000;stroke-width:1pt"
-         transform="matrix(0.4,0,0,0.4,2.96,0.4)" />
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path5711-27"
+         inkscape:connector-curvature="0" />
     </marker>
     <marker
-       inkscape:stockid="Arrow1Mend-6FL"
-       orient="auto"
-       refY="0"
-       refX="0"
+       style="overflow:visible"
        id="Arrow1Mend-6FL-95"
-       style="overflow:visible">
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend-6FL">
       <path
-         inkscape:connector-curvature="0"
-         id="path5714-6"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
          style="fill:#008000;fill-rule:evenodd;stroke:#008000;stroke-width:1pt"
-         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5714-6"
+         inkscape:connector-curvature="0" />
     </marker>
     <g
        id="g6072">
       <symbol
-         id="glyph0-0"
-         overflow="visible">
+         overflow="visible"
+         id="glyph0-0">
         <path
-           id="path6075"
+           style="stroke:none;"
            d="M 5.5 -6.546875 C 5.546875 -6.65625 5.546875 -6.671875 5.546875 -6.71875 C 5.546875 -6.8125 5.46875 -6.921875 5.34375 -6.921875 C 5.21875 -6.921875 5.15625 -6.796875 5.109375 -6.6875 L 4.28125 -4.5 L 1.25 -4.5 L 0.421875 -6.6875 C 0.375 -6.828125 0.328125 -6.921875 0.203125 -6.921875 C 0.09375 -6.921875 0 -6.8125 0 -6.71875 C 0 -6.703125 0 -6.671875 0.0625 -6.546875 L 2.546875 -0.015625 C 2.59375 0.125 2.640625 0.21875 2.765625 0.21875 C 2.90625 0.21875 2.953125 0.109375 2.984375 0.015625 Z M 1.421875 -4.09375 L 4.125 -4.09375 L 2.765625 -0.546875 Z M 1.421875 -4.09375 "
-           style="stroke:none;" />
+           id="path6075" />
       </symbol>
       <symbol
-         id="glyph0-1"
-         overflow="visible">
+         overflow="visible"
+         id="glyph0-1">
         <path
-           id="path6078"
+           style="stroke:none;"
            d="M 3.546875 -5.75 C 3.46875 -5.921875 3.40625 -5.96875 3.3125 -5.96875 C 3.1875 -5.96875 3.15625 -5.890625 3.09375 -5.75 L 0.625 -0.171875 C 0.5625 -0.046875 0.546875 -0.03125 0.546875 0.015625 C 0.546875 0.125 0.640625 0.21875 0.75 0.21875 C 0.8125 0.21875 0.890625 0.203125 0.984375 0.015625 L 3.3125 -5.28125 L 5.65625 0.015625 C 5.75 0.21875 5.859375 0.21875 5.890625 0.21875 C 6 0.21875 6.09375 0.125 6.09375 0.015625 C 6.09375 0 6.09375 -0.015625 6.03125 -0.140625 Z M 3.546875 -5.75 "
-           style="stroke:none;" />
+           id="path6078" />
       </symbol>
       <symbol
-         id="glyph0-2"
-         overflow="visible">
+         overflow="visible"
+         id="glyph0-2">
         <path
-           id="path6081"
+           style="stroke:none;"
            d="M 7.234375 -3.265625 C 7.65625 -2.90625 8.171875 -2.640625 8.5 -2.5 C 8.140625 -2.328125 7.640625 -2.078125 7.234375 -1.71875 L 0.90625 -1.71875 C 0.734375 -1.71875 0.546875 -1.71875 0.546875 -1.53125 C 0.546875 -1.328125 0.734375 -1.328125 0.890625 -1.328125 L 6.78125 -1.328125 C 6.3125 -0.875 5.796875 0.015625 5.796875 0.140625 C 5.796875 0.25 5.921875 0.25 5.984375 0.25 C 6.0625 0.25 6.125 0.25 6.171875 0.171875 C 6.375 -0.203125 6.65625 -0.734375 7.3125 -1.3125 C 8 -1.921875 8.65625 -2.1875 9.1875 -2.34375 C 9.34375 -2.40625 9.359375 -2.40625 9.375 -2.4375 C 9.40625 -2.4375 9.40625 -2.46875 9.40625 -2.5 C 9.40625 -2.515625 9.40625 -2.53125 9.390625 -2.546875 L 9.359375 -2.578125 C 9.34375 -2.578125 9.328125 -2.59375 9.140625 -2.65625 C 7.796875 -3.046875 6.796875 -3.953125 6.234375 -5.03125 C 6.125 -5.21875 6.125 -5.234375 5.984375 -5.234375 C 5.921875 -5.234375 5.796875 -5.234375 5.796875 -5.125 C 5.796875 -5 6.296875 -4.125 6.78125 -3.65625 L 0.890625 -3.65625 C 0.734375 -3.65625 0.546875 -3.65625 0.546875 -3.453125 C 0.546875 -3.265625 0.734375 -3.265625 0.90625 -3.265625 Z M 7.234375 -3.265625 "
-           style="stroke:none;" />
+           id="path6081" />
       </symbol>
       <symbol
-         id="glyph1-0"
-         overflow="visible">
+         overflow="visible"
+         id="glyph1-0">
         <path
-           id="path6084"
+           style="stroke:none;"
            d="M 2.265625 -4.359375 C 2.265625 -4.46875 2.171875 -4.625 1.984375 -4.625 C 1.796875 -4.625 1.59375 -4.4375 1.59375 -4.234375 C 1.59375 -4.125 1.671875 -3.96875 1.875 -3.96875 C 2.0625 -3.96875 2.265625 -4.171875 2.265625 -4.359375 Z M 0.84375 -0.8125 C 0.8125 -0.71875 0.78125 -0.640625 0.78125 -0.515625 C 0.78125 -0.1875 1.046875 0.0625 1.4375 0.0625 C 2.125 0.0625 2.4375 -0.890625 2.4375 -1 C 2.4375 -1.09375 2.34375 -1.09375 2.328125 -1.09375 C 2.234375 -1.09375 2.21875 -1.046875 2.1875 -0.96875 C 2.03125 -0.40625 1.734375 -0.125 1.453125 -0.125 C 1.3125 -0.125 1.28125 -0.21875 1.28125 -0.375 C 1.28125 -0.53125 1.328125 -0.65625 1.390625 -0.8125 C 1.46875 -1 1.546875 -1.1875 1.609375 -1.375 C 1.671875 -1.546875 1.9375 -2.171875 1.953125 -2.265625 C 1.984375 -2.328125 2 -2.40625 2 -2.484375 C 2 -2.8125 1.71875 -3.078125 1.34375 -3.078125 C 0.640625 -3.078125 0.328125 -2.125 0.328125 -2 C 0.328125 -1.921875 0.421875 -1.921875 0.453125 -1.921875 C 0.546875 -1.921875 0.546875 -1.953125 0.578125 -2.03125 C 0.75 -2.625 1.0625 -2.875 1.3125 -2.875 C 1.421875 -2.875 1.484375 -2.828125 1.484375 -2.640625 C 1.484375 -2.46875 1.453125 -2.375 1.28125 -1.9375 Z M 0.84375 -0.8125 "
-           style="stroke:none;" />
+           id="path6084" />
       </symbol>
       <symbol
-         id="glyph1-1"
-         overflow="visible">
+         overflow="visible"
+         id="glyph1-1">
         <path
-           id="path6087"
+           style="stroke:none;"
            d="M 1.46875 -0.109375 C 1.46875 0.265625 1.40625 0.71875 0.921875 1.15625 C 0.90625 1.1875 0.875 1.21875 0.875 1.25 C 0.875 1.296875 0.9375 1.34375 0.96875 1.34375 C 1.078125 1.34375 1.671875 0.78125 1.671875 -0.046875 C 1.671875 -0.46875 1.5 -0.796875 1.171875 -0.796875 C 0.953125 -0.796875 0.78125 -0.625 0.78125 -0.40625 C 0.78125 -0.1875 0.9375 0 1.1875 0 C 1.359375 0 1.46875 -0.109375 1.46875 -0.109375 Z M 1.46875 -0.109375 "
-           style="stroke:none;" />
+           id="path6087" />
       </symbol>
       <symbol
-         id="glyph1-2"
-         overflow="visible">
+         overflow="visible"
+         id="glyph1-2">
         <path
-           id="path6090"
+           style="stroke:none;"
            d="M 3.0625 -4.359375 C 3.0625 -4.46875 2.96875 -4.625 2.78125 -4.625 C 2.578125 -4.625 2.390625 -4.421875 2.390625 -4.234375 C 2.390625 -4.125 2.46875 -3.96875 2.671875 -3.96875 C 2.859375 -3.96875 3.0625 -4.15625 3.0625 -4.359375 Z M 1.578125 0.34375 C 1.46875 0.828125 1.09375 1.21875 0.6875 1.21875 C 0.59375 1.21875 0.515625 1.21875 0.4375 1.1875 C 0.609375 1.09375 0.671875 0.9375 0.671875 0.828125 C 0.671875 0.65625 0.53125 0.578125 0.390625 0.578125 C 0.1875 0.578125 0 0.765625 0 0.984375 C 0 1.25 0.265625 1.421875 0.6875 1.421875 C 1.109375 1.421875 1.921875 1.171875 2.140625 0.328125 L 2.765625 -2.171875 C 2.78125 -2.25 2.796875 -2.3125 2.796875 -2.421875 C 2.796875 -2.796875 2.46875 -3.078125 2.0625 -3.078125 C 1.28125 -3.078125 0.84375 -2.109375 0.84375 -2 C 0.84375 -1.921875 0.9375 -1.921875 0.953125 -1.921875 C 1.03125 -1.921875 1.046875 -1.9375 1.09375 -2.046875 C 1.265625 -2.453125 1.625 -2.875 2.03125 -2.875 C 2.203125 -2.875 2.265625 -2.765625 2.265625 -2.53125 C 2.265625 -2.453125 2.265625 -2.359375 2.25 -2.328125 Z M 1.578125 0.34375 "
-           style="stroke:none;" />
+           id="path6090" />
       </symbol>
       <symbol
-         id="glyph2-0"
-         overflow="visible">
+         overflow="visible"
+         id="glyph2-0">
         <path
-           id="path6093"
+           style="stroke:none;"
            d="M 1.90625 -3.765625 C 1.90625 -4.0625 1.671875 -4.296875 1.390625 -4.296875 C 1.09375 -4.296875 0.859375 -4.0625 0.859375 -3.765625 C 0.859375 -3.484375 1.09375 -3.234375 1.390625 -3.234375 C 1.671875 -3.234375 1.90625 -3.484375 1.90625 -3.765625 Z M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "
-           style="stroke:none;" />
+           id="path6093" />
       </symbol>
       <symbol
-         id="glyph2-1"
-         overflow="visible">
+         overflow="visible"
+         id="glyph2-1">
         <path
-           id="path6096"
+           style="stroke:none;"
            d="M 6.84375 -3.265625 C 7 -3.265625 7.1875 -3.265625 7.1875 -3.453125 C 7.1875 -3.65625 7 -3.65625 6.859375 -3.65625 L 0.890625 -3.65625 C 0.75 -3.65625 0.5625 -3.65625 0.5625 -3.453125 C 0.5625 -3.265625 0.75 -3.265625 0.890625 -3.265625 Z M 6.859375 -1.328125 C 7 -1.328125 7.1875 -1.328125 7.1875 -1.53125 C 7.1875 -1.71875 7 -1.71875 6.84375 -1.71875 L 0.890625 -1.71875 C 0.75 -1.71875 0.5625 -1.71875 0.5625 -1.53125 C 0.5625 -1.328125 0.75 -1.328125 0.890625 -1.328125 Z M 6.859375 -1.328125 "
-           style="stroke:none;" />
+           id="path6096" />
       </symbol>
       <symbol
-         id="glyph3-0"
-         overflow="visible">
+         overflow="visible"
+         id="glyph3-0">
         <path
-           id="path6099"
+           style="stroke:none;"
            d="M 2.375 -6.8125 C 2.375 -6.8125 2.375 -6.921875 2.25 -6.921875 C 2.03125 -6.921875 1.296875 -6.84375 1.03125 -6.8125 C 0.953125 -6.8125 0.84375 -6.796875 0.84375 -6.625 C 0.84375 -6.5 0.9375 -6.5 1.09375 -6.5 C 1.5625 -6.5 1.578125 -6.4375 1.578125 -6.328125 C 1.578125 -6.265625 1.5 -5.921875 1.453125 -5.71875 L 0.625 -2.46875 C 0.515625 -1.96875 0.46875 -1.796875 0.46875 -1.453125 C 0.46875 -0.515625 1 0.109375 1.734375 0.109375 C 2.90625 0.109375 4.140625 -1.375 4.140625 -2.8125 C 4.140625 -3.71875 3.609375 -4.40625 2.8125 -4.40625 C 2.359375 -4.40625 1.9375 -4.109375 1.640625 -3.8125 Z M 1.453125 -3.046875 C 1.5 -3.265625 1.5 -3.28125 1.59375 -3.390625 C 2.078125 -4.03125 2.53125 -4.1875 2.796875 -4.1875 C 3.15625 -4.1875 3.421875 -3.890625 3.421875 -3.25 C 3.421875 -2.65625 3.09375 -1.515625 2.90625 -1.140625 C 2.578125 -0.46875 2.125 -0.109375 1.734375 -0.109375 C 1.390625 -0.109375 1.0625 -0.375 1.0625 -1.109375 C 1.0625 -1.3125 1.0625 -1.5 1.21875 -2.125 Z M 1.453125 -3.046875 "
-           style="stroke:none;" />
+           id="path6099" />
       </symbol>
       <symbol
-         id="glyph3-1"
-         overflow="visible">
+         overflow="visible"
+         id="glyph3-1">
         <path
-           id="path6102"
+           style="stroke:none;"
            d="M 3.953125 -3.78125 C 3.78125 -3.78125 3.65625 -3.78125 3.515625 -3.65625 C 3.34375 -3.5 3.328125 -3.328125 3.328125 -3.265625 C 3.328125 -3.015625 3.515625 -2.90625 3.703125 -2.90625 C 3.984375 -2.90625 4.25 -3.15625 4.25 -3.546875 C 4.25 -4.03125 3.78125 -4.40625 3.078125 -4.40625 C 1.734375 -4.40625 0.40625 -2.984375 0.40625 -1.578125 C 0.40625 -0.671875 0.984375 0.109375 2.03125 0.109375 C 3.453125 0.109375 4.28125 -0.953125 4.28125 -1.0625 C 4.28125 -1.125 4.234375 -1.203125 4.171875 -1.203125 C 4.109375 -1.203125 4.09375 -1.171875 4.03125 -1.09375 C 3.25 -0.109375 2.15625 -0.109375 2.046875 -0.109375 C 1.421875 -0.109375 1.140625 -0.59375 1.140625 -1.203125 C 1.140625 -1.609375 1.34375 -2.578125 1.6875 -3.1875 C 2 -3.765625 2.546875 -4.1875 3.09375 -4.1875 C 3.421875 -4.1875 3.8125 -4.0625 3.953125 -3.78125 Z M 3.953125 -3.78125 "
-           style="stroke:none;" />
+           id="path6102" />
       </symbol>
       <symbol
-         id="glyph3-2"
-         overflow="visible">
+         overflow="visible"
+         id="glyph3-2">
         <path
-           id="path6105"
+           style="stroke:none;"
            d="M 3.71875 -3.765625 C 3.53125 -4.140625 3.25 -4.40625 2.796875 -4.40625 C 1.640625 -4.40625 0.40625 -2.9375 0.40625 -1.484375 C 0.40625 -0.546875 0.953125 0.109375 1.71875 0.109375 C 1.921875 0.109375 2.421875 0.0625 3.015625 -0.640625 C 3.09375 -0.21875 3.453125 0.109375 3.921875 0.109375 C 4.28125 0.109375 4.5 -0.125 4.671875 -0.4375 C 4.828125 -0.796875 4.96875 -1.40625 4.96875 -1.421875 C 4.96875 -1.53125 4.875 -1.53125 4.84375 -1.53125 C 4.75 -1.53125 4.734375 -1.484375 4.703125 -1.34375 C 4.53125 -0.703125 4.359375 -0.109375 3.953125 -0.109375 C 3.671875 -0.109375 3.65625 -0.375 3.65625 -0.5625 C 3.65625 -0.78125 3.671875 -0.875 3.78125 -1.3125 C 3.890625 -1.71875 3.90625 -1.828125 4 -2.203125 L 4.359375 -3.59375 C 4.421875 -3.875 4.421875 -3.890625 4.421875 -3.9375 C 4.421875 -4.109375 4.3125 -4.203125 4.140625 -4.203125 C 3.890625 -4.203125 3.75 -3.984375 3.71875 -3.765625 Z M 3.078125 -1.1875 C 3.015625 -1 3.015625 -0.984375 2.875 -0.8125 C 2.4375 -0.265625 2.03125 -0.109375 1.75 -0.109375 C 1.25 -0.109375 1.109375 -0.65625 1.109375 -1.046875 C 1.109375 -1.546875 1.421875 -2.765625 1.65625 -3.234375 C 1.96875 -3.8125 2.40625 -4.1875 2.8125 -4.1875 C 3.453125 -4.1875 3.59375 -3.375 3.59375 -3.3125 C 3.59375 -3.25 3.578125 -3.1875 3.5625 -3.140625 Z M 3.078125 -1.1875 "
-           style="stroke:none;" />
+           id="path6105" />
       </symbol>
     </g>
     <g
        id="g6444">
       <symbol
-         id="glyph0-0-6"
-         overflow="visible">
+         overflow="visible"
+         id="glyph0-0-6">
         <path
-           id="path6447"
+           style="stroke:none;"
            d="M 5.5 -6.546875 C 5.546875 -6.65625 5.546875 -6.671875 5.546875 -6.71875 C 5.546875 -6.8125 5.46875 -6.921875 5.34375 -6.921875 C 5.21875 -6.921875 5.15625 -6.796875 5.109375 -6.6875 L 4.28125 -4.5 L 1.25 -4.5 L 0.421875 -6.6875 C 0.375 -6.828125 0.328125 -6.921875 0.203125 -6.921875 C 0.09375 -6.921875 0 -6.8125 0 -6.71875 C 0 -6.703125 0 -6.671875 0.0625 -6.546875 L 2.546875 -0.015625 C 2.59375 0.125 2.640625 0.21875 2.765625 0.21875 C 2.90625 0.21875 2.953125 0.109375 2.984375 0.015625 Z M 1.421875 -4.09375 L 4.125 -4.09375 L 2.765625 -0.546875 Z M 1.421875 -4.09375 "
-           style="stroke:none;" />
+           id="path6447" />
       </symbol>
       <symbol
-         id="glyph0-1-9"
-         overflow="visible">
+         overflow="visible"
+         id="glyph0-1-9">
         <path
-           id="path6450"
+           style="stroke:none;"
            d="M 3.546875 -5.75 C 3.46875 -5.921875 3.40625 -5.96875 3.3125 -5.96875 C 3.1875 -5.96875 3.15625 -5.890625 3.09375 -5.75 L 0.625 -0.171875 C 0.5625 -0.046875 0.546875 -0.03125 0.546875 0.015625 C 0.546875 0.125 0.640625 0.21875 0.75 0.21875 C 0.8125 0.21875 0.890625 0.203125 0.984375 0.015625 L 3.3125 -5.28125 L 5.65625 0.015625 C 5.75 0.21875 5.859375 0.21875 5.890625 0.21875 C 6 0.21875 6.09375 0.125 6.09375 0.015625 C 6.09375 0 6.09375 -0.015625 6.03125 -0.140625 Z M 3.546875 -5.75 "
-           style="stroke:none;" />
+           id="path6450" />
       </symbol>
       <symbol
-         id="glyph0-2-9"
-         overflow="visible">
+         overflow="visible"
+         id="glyph0-2-9">
         <path
-           id="path6453"
+           style="stroke:none;"
            d="M 7.234375 -3.265625 C 7.65625 -2.90625 8.171875 -2.640625 8.5 -2.5 C 8.140625 -2.328125 7.640625 -2.078125 7.234375 -1.71875 L 0.90625 -1.71875 C 0.734375 -1.71875 0.546875 -1.71875 0.546875 -1.53125 C 0.546875 -1.328125 0.734375 -1.328125 0.890625 -1.328125 L 6.78125 -1.328125 C 6.3125 -0.875 5.796875 0.015625 5.796875 0.140625 C 5.796875 0.25 5.921875 0.25 5.984375 0.25 C 6.0625 0.25 6.125 0.25 6.171875 0.171875 C 6.375 -0.203125 6.65625 -0.734375 7.3125 -1.3125 C 8 -1.921875 8.65625 -2.1875 9.1875 -2.34375 C 9.34375 -2.40625 9.359375 -2.40625 9.375 -2.4375 C 9.40625 -2.4375 9.40625 -2.46875 9.40625 -2.5 C 9.40625 -2.515625 9.40625 -2.53125 9.390625 -2.546875 L 9.359375 -2.578125 C 9.34375 -2.578125 9.328125 -2.59375 9.140625 -2.65625 C 7.796875 -3.046875 6.796875 -3.953125 6.234375 -5.03125 C 6.125 -5.21875 6.125 -5.234375 5.984375 -5.234375 C 5.921875 -5.234375 5.796875 -5.234375 5.796875 -5.125 C 5.796875 -5 6.296875 -4.125 6.78125 -3.65625 L 0.890625 -3.65625 C 0.734375 -3.65625 0.546875 -3.65625 0.546875 -3.453125 C 0.546875 -3.265625 0.734375 -3.265625 0.90625 -3.265625 Z M 7.234375 -3.265625 "
-           style="stroke:none;" />
+           id="path6453" />
       </symbol>
       <symbol
-         id="glyph1-0-9"
-         overflow="visible">
+         overflow="visible"
+         id="glyph1-0-9">
         <path
-           id="path6456"
+           style="stroke:none;"
            d="M 2.265625 -4.359375 C 2.265625 -4.46875 2.171875 -4.625 1.984375 -4.625 C 1.796875 -4.625 1.59375 -4.4375 1.59375 -4.234375 C 1.59375 -4.125 1.671875 -3.96875 1.875 -3.96875 C 2.0625 -3.96875 2.265625 -4.171875 2.265625 -4.359375 Z M 0.84375 -0.8125 C 0.8125 -0.71875 0.78125 -0.640625 0.78125 -0.515625 C 0.78125 -0.1875 1.046875 0.0625 1.4375 0.0625 C 2.125 0.0625 2.4375 -0.890625 2.4375 -1 C 2.4375 -1.09375 2.34375 -1.09375 2.328125 -1.09375 C 2.234375 -1.09375 2.21875 -1.046875 2.1875 -0.96875 C 2.03125 -0.40625 1.734375 -0.125 1.453125 -0.125 C 1.3125 -0.125 1.28125 -0.21875 1.28125 -0.375 C 1.28125 -0.53125 1.328125 -0.65625 1.390625 -0.8125 C 1.46875 -1 1.546875 -1.1875 1.609375 -1.375 C 1.671875 -1.546875 1.9375 -2.171875 1.953125 -2.265625 C 1.984375 -2.328125 2 -2.40625 2 -2.484375 C 2 -2.8125 1.71875 -3.078125 1.34375 -3.078125 C 0.640625 -3.078125 0.328125 -2.125 0.328125 -2 C 0.328125 -1.921875 0.421875 -1.921875 0.453125 -1.921875 C 0.546875 -1.921875 0.546875 -1.953125 0.578125 -2.03125 C 0.75 -2.625 1.0625 -2.875 1.3125 -2.875 C 1.421875 -2.875 1.484375 -2.828125 1.484375 -2.640625 C 1.484375 -2.46875 1.453125 -2.375 1.28125 -1.9375 Z M 0.84375 -0.8125 "
-           style="stroke:none;" />
+           id="path6456" />
       </symbol>
       <symbol
-         id="glyph1-1-3"
-         overflow="visible">
+         overflow="visible"
+         id="glyph1-1-3">
         <path
-           id="path6459"
+           style="stroke:none;"
            d="M 1.46875 -0.109375 C 1.46875 0.265625 1.40625 0.71875 0.921875 1.15625 C 0.90625 1.1875 0.875 1.21875 0.875 1.25 C 0.875 1.296875 0.9375 1.34375 0.96875 1.34375 C 1.078125 1.34375 1.671875 0.78125 1.671875 -0.046875 C 1.671875 -0.46875 1.5 -0.796875 1.171875 -0.796875 C 0.953125 -0.796875 0.78125 -0.625 0.78125 -0.40625 C 0.78125 -0.1875 0.9375 0 1.1875 0 C 1.359375 0 1.46875 -0.109375 1.46875 -0.109375 Z M 1.46875 -0.109375 "
-           style="stroke:none;" />
+           id="path6459" />
       </symbol>
       <symbol
-         id="glyph1-2-9"
-         overflow="visible">
+         overflow="visible"
+         id="glyph1-2-9">
         <path
-           id="path6462"
+           style="stroke:none;"
            d="M 3.0625 -4.359375 C 3.0625 -4.46875 2.96875 -4.625 2.78125 -4.625 C 2.578125 -4.625 2.390625 -4.421875 2.390625 -4.234375 C 2.390625 -4.125 2.46875 -3.96875 2.671875 -3.96875 C 2.859375 -3.96875 3.0625 -4.15625 3.0625 -4.359375 Z M 1.578125 0.34375 C 1.46875 0.828125 1.09375 1.21875 0.6875 1.21875 C 0.59375 1.21875 0.515625 1.21875 0.4375 1.1875 C 0.609375 1.09375 0.671875 0.9375 0.671875 0.828125 C 0.671875 0.65625 0.53125 0.578125 0.390625 0.578125 C 0.1875 0.578125 0 0.765625 0 0.984375 C 0 1.25 0.265625 1.421875 0.6875 1.421875 C 1.109375 1.421875 1.921875 1.171875 2.140625 0.328125 L 2.765625 -2.171875 C 2.78125 -2.25 2.796875 -2.3125 2.796875 -2.421875 C 2.796875 -2.796875 2.46875 -3.078125 2.0625 -3.078125 C 1.28125 -3.078125 0.84375 -2.109375 0.84375 -2 C 0.84375 -1.921875 0.9375 -1.921875 0.953125 -1.921875 C 1.03125 -1.921875 1.046875 -1.9375 1.09375 -2.046875 C 1.265625 -2.453125 1.625 -2.875 2.03125 -2.875 C 2.203125 -2.875 2.265625 -2.765625 2.265625 -2.53125 C 2.265625 -2.453125 2.265625 -2.359375 2.25 -2.328125 Z M 1.578125 0.34375 "
-           style="stroke:none;" />
+           id="path6462" />
       </symbol>
       <symbol
-         id="glyph2-0-7"
-         overflow="visible">
+         overflow="visible"
+         id="glyph2-0-7">
         <path
-           id="path6465"
+           style="stroke:none;"
            d="M 1.90625 -3.765625 C 1.90625 -4.0625 1.671875 -4.296875 1.390625 -4.296875 C 1.09375 -4.296875 0.859375 -4.0625 0.859375 -3.765625 C 0.859375 -3.484375 1.09375 -3.234375 1.390625 -3.234375 C 1.671875 -3.234375 1.90625 -3.484375 1.90625 -3.765625 Z M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "
-           style="stroke:none;" />
+           id="path6465" />
       </symbol>
       <symbol
-         id="glyph2-1-6"
-         overflow="visible">
+         overflow="visible"
+         id="glyph2-1-6">
         <path
-           id="path6468"
+           style="stroke:none;"
            d="M 6.84375 -3.265625 C 7 -3.265625 7.1875 -3.265625 7.1875 -3.453125 C 7.1875 -3.65625 7 -3.65625 6.859375 -3.65625 L 0.890625 -3.65625 C 0.75 -3.65625 0.5625 -3.65625 0.5625 -3.453125 C 0.5625 -3.265625 0.75 -3.265625 0.890625 -3.265625 Z M 6.859375 -1.328125 C 7 -1.328125 7.1875 -1.328125 7.1875 -1.53125 C 7.1875 -1.71875 7 -1.71875 6.84375 -1.71875 L 0.890625 -1.71875 C 0.75 -1.71875 0.5625 -1.71875 0.5625 -1.53125 C 0.5625 -1.328125 0.75 -1.328125 0.890625 -1.328125 Z M 6.859375 -1.328125 "
-           style="stroke:none;" />
+           id="path6468" />
       </symbol>
       <symbol
-         id="glyph3-0-5"
-         overflow="visible">
+         overflow="visible"
+         id="glyph3-0-5">
         <path
-           id="path6471"
+           style="stroke:none;"
            d="M 2.375 -6.8125 C 2.375 -6.8125 2.375 -6.921875 2.25 -6.921875 C 2.03125 -6.921875 1.296875 -6.84375 1.03125 -6.8125 C 0.953125 -6.8125 0.84375 -6.796875 0.84375 -6.625 C 0.84375 -6.5 0.9375 -6.5 1.09375 -6.5 C 1.5625 -6.5 1.578125 -6.4375 1.578125 -6.328125 C 1.578125 -6.265625 1.5 -5.921875 1.453125 -5.71875 L 0.625 -2.46875 C 0.515625 -1.96875 0.46875 -1.796875 0.46875 -1.453125 C 0.46875 -0.515625 1 0.109375 1.734375 0.109375 C 2.90625 0.109375 4.140625 -1.375 4.140625 -2.8125 C 4.140625 -3.71875 3.609375 -4.40625 2.8125 -4.40625 C 2.359375 -4.40625 1.9375 -4.109375 1.640625 -3.8125 Z M 1.453125 -3.046875 C 1.5 -3.265625 1.5 -3.28125 1.59375 -3.390625 C 2.078125 -4.03125 2.53125 -4.1875 2.796875 -4.1875 C 3.15625 -4.1875 3.421875 -3.890625 3.421875 -3.25 C 3.421875 -2.65625 3.09375 -1.515625 2.90625 -1.140625 C 2.578125 -0.46875 2.125 -0.109375 1.734375 -0.109375 C 1.390625 -0.109375 1.0625 -0.375 1.0625 -1.109375 C 1.0625 -1.3125 1.0625 -1.5 1.21875 -2.125 Z M 1.453125 -3.046875 "
-           style="stroke:none;" />
+           id="path6471" />
       </symbol>
       <symbol
-         id="glyph3-1-1"
-         overflow="visible">
+         overflow="visible"
+         id="glyph3-1-1">
         <path
-           id="path6474"
+           style="stroke:none;"
            d="M 3.953125 -3.78125 C 3.78125 -3.78125 3.65625 -3.78125 3.515625 -3.65625 C 3.34375 -3.5 3.328125 -3.328125 3.328125 -3.265625 C 3.328125 -3.015625 3.515625 -2.90625 3.703125 -2.90625 C 3.984375 -2.90625 4.25 -3.15625 4.25 -3.546875 C 4.25 -4.03125 3.78125 -4.40625 3.078125 -4.40625 C 1.734375 -4.40625 0.40625 -2.984375 0.40625 -1.578125 C 0.40625 -0.671875 0.984375 0.109375 2.03125 0.109375 C 3.453125 0.109375 4.28125 -0.953125 4.28125 -1.0625 C 4.28125 -1.125 4.234375 -1.203125 4.171875 -1.203125 C 4.109375 -1.203125 4.09375 -1.171875 4.03125 -1.09375 C 3.25 -0.109375 2.15625 -0.109375 2.046875 -0.109375 C 1.421875 -0.109375 1.140625 -0.59375 1.140625 -1.203125 C 1.140625 -1.609375 1.34375 -2.578125 1.6875 -3.1875 C 2 -3.765625 2.546875 -4.1875 3.09375 -4.1875 C 3.421875 -4.1875 3.8125 -4.0625 3.953125 -3.78125 Z M 3.953125 -3.78125 "
-           style="stroke:none;" />
+           id="path6474" />
       </symbol>
       <symbol
-         id="glyph3-2-3"
-         overflow="visible">
+         overflow="visible"
+         id="glyph3-2-3">
         <path
-           id="path6477"
+           style="stroke:none;"
            d="M 3.71875 -3.765625 C 3.53125 -4.140625 3.25 -4.40625 2.796875 -4.40625 C 1.640625 -4.40625 0.40625 -2.9375 0.40625 -1.484375 C 0.40625 -0.546875 0.953125 0.109375 1.71875 0.109375 C 1.921875 0.109375 2.421875 0.0625 3.015625 -0.640625 C 3.09375 -0.21875 3.453125 0.109375 3.921875 0.109375 C 4.28125 0.109375 4.5 -0.125 4.671875 -0.4375 C 4.828125 -0.796875 4.96875 -1.40625 4.96875 -1.421875 C 4.96875 -1.53125 4.875 -1.53125 4.84375 -1.53125 C 4.75 -1.53125 4.734375 -1.484375 4.703125 -1.34375 C 4.53125 -0.703125 4.359375 -0.109375 3.953125 -0.109375 C 3.671875 -0.109375 3.65625 -0.375 3.65625 -0.5625 C 3.65625 -0.78125 3.671875 -0.875 3.78125 -1.3125 C 3.890625 -1.71875 3.90625 -1.828125 4 -2.203125 L 4.359375 -3.59375 C 4.421875 -3.875 4.421875 -3.890625 4.421875 -3.9375 C 4.421875 -4.109375 4.3125 -4.203125 4.140625 -4.203125 C 3.890625 -4.203125 3.75 -3.984375 3.71875 -3.765625 Z M 3.078125 -1.1875 C 3.015625 -1 3.015625 -0.984375 2.875 -0.8125 C 2.4375 -0.265625 2.03125 -0.109375 1.75 -0.109375 C 1.25 -0.109375 1.109375 -0.65625 1.109375 -1.046875 C 1.109375 -1.546875 1.421875 -2.765625 1.65625 -3.234375 C 1.96875 -3.8125 2.40625 -4.1875 2.8125 -4.1875 C 3.453125 -4.1875 3.59375 -3.375 3.59375 -3.3125 C 3.59375 -3.25 3.578125 -3.1875 3.5625 -3.140625 Z M 3.078125 -1.1875 "
-           style="stroke:none;" />
+           id="path6477" />
       </symbol>
     </g>
     <g
        id="g7052">
       <symbol
-         id="glyph0-0-2"
-         overflow="visible">
+         overflow="visible"
+         id="glyph0-0-2">
         <path
-           id="path7055"
+           style="stroke:none;"
            d="M 3.71875 -3.765625 C 3.53125 -4.140625 3.25 -4.40625 2.796875 -4.40625 C 1.640625 -4.40625 0.40625 -2.9375 0.40625 -1.484375 C 0.40625 -0.546875 0.953125 0.109375 1.71875 0.109375 C 1.921875 0.109375 2.421875 0.0625 3.015625 -0.640625 C 3.09375 -0.21875 3.453125 0.109375 3.921875 0.109375 C 4.28125 0.109375 4.5 -0.125 4.671875 -0.4375 C 4.828125 -0.796875 4.96875 -1.40625 4.96875 -1.421875 C 4.96875 -1.53125 4.875 -1.53125 4.84375 -1.53125 C 4.75 -1.53125 4.734375 -1.484375 4.703125 -1.34375 C 4.53125 -0.703125 4.359375 -0.109375 3.953125 -0.109375 C 3.671875 -0.109375 3.65625 -0.375 3.65625 -0.5625 C 3.65625 -0.78125 3.671875 -0.875 3.78125 -1.3125 C 3.890625 -1.71875 3.90625 -1.828125 4 -2.203125 L 4.359375 -3.59375 C 4.421875 -3.875 4.421875 -3.890625 4.421875 -3.9375 C 4.421875 -4.109375 4.3125 -4.203125 4.140625 -4.203125 C 3.890625 -4.203125 3.75 -3.984375 3.71875 -3.765625 Z M 3.078125 -1.1875 C 3.015625 -1 3.015625 -0.984375 2.875 -0.8125 C 2.4375 -0.265625 2.03125 -0.109375 1.75 -0.109375 C 1.25 -0.109375 1.109375 -0.65625 1.109375 -1.046875 C 1.109375 -1.546875 1.421875 -2.765625 1.65625 -3.234375 C 1.96875 -3.8125 2.40625 -4.1875 2.8125 -4.1875 C 3.453125 -4.1875 3.59375 -3.375 3.59375 -3.3125 C 3.59375 -3.25 3.578125 -3.1875 3.5625 -3.140625 Z M 3.078125 -1.1875 "
-           style="stroke:none;" />
+           id="path7055" />
       </symbol>
       <symbol
-         id="glyph0-1-96"
-         overflow="visible">
+         overflow="visible"
+         id="glyph0-1-96">
         <path
-           id="path7058"
+           style="stroke:none;"
            d="M 2.375 -6.8125 C 2.375 -6.8125 2.375 -6.921875 2.25 -6.921875 C 2.03125 -6.921875 1.296875 -6.84375 1.03125 -6.8125 C 0.953125 -6.8125 0.84375 -6.796875 0.84375 -6.625 C 0.84375 -6.5 0.9375 -6.5 1.09375 -6.5 C 1.5625 -6.5 1.578125 -6.4375 1.578125 -6.328125 C 1.578125 -6.265625 1.5 -5.921875 1.453125 -5.71875 L 0.625 -2.46875 C 0.515625 -1.96875 0.46875 -1.796875 0.46875 -1.453125 C 0.46875 -0.515625 1 0.109375 1.734375 0.109375 C 2.90625 0.109375 4.140625 -1.375 4.140625 -2.8125 C 4.140625 -3.71875 3.609375 -4.40625 2.8125 -4.40625 C 2.359375 -4.40625 1.9375 -4.109375 1.640625 -3.8125 Z M 1.453125 -3.046875 C 1.5 -3.265625 1.5 -3.28125 1.59375 -3.390625 C 2.078125 -4.03125 2.53125 -4.1875 2.796875 -4.1875 C 3.15625 -4.1875 3.421875 -3.890625 3.421875 -3.25 C 3.421875 -2.65625 3.09375 -1.515625 2.90625 -1.140625 C 2.578125 -0.46875 2.125 -0.109375 1.734375 -0.109375 C 1.390625 -0.109375 1.0625 -0.375 1.0625 -1.109375 C 1.0625 -1.3125 1.0625 -1.5 1.21875 -2.125 Z M 1.453125 -3.046875 "
-           style="stroke:none;" />
+           id="path7058" />
       </symbol>
       <symbol
-         id="glyph0-2-6"
-         overflow="visible">
+         overflow="visible"
+         id="glyph0-2-6">
         <path
-           id="path7061"
+           style="stroke:none;"
            d="M 2.03125 -0.015625 C 2.03125 -0.671875 1.78125 -1.0625 1.390625 -1.0625 C 1.0625 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.265625 1.0625 0 1.390625 0 C 1.5 0 1.640625 -0.046875 1.734375 -0.125 C 1.765625 -0.15625 1.78125 -0.15625 1.78125 -0.15625 C 1.796875 -0.15625 1.796875 -0.15625 1.796875 -0.015625 C 1.796875 0.734375 1.453125 1.328125 1.125 1.65625 C 1.015625 1.765625 1.015625 1.78125 1.015625 1.8125 C 1.015625 1.890625 1.0625 1.921875 1.109375 1.921875 C 1.21875 1.921875 2.03125 1.15625 2.03125 -0.015625 Z M 2.03125 -0.015625 "
-           style="stroke:none;" />
+           id="path7061" />
       </symbol>
       <symbol
-         id="glyph0-3"
-         overflow="visible">
+         overflow="visible"
+         id="glyph0-3">
         <path
-           id="path7064"
+           style="stroke:none;"
            d="M 3.953125 -3.78125 C 3.78125 -3.78125 3.65625 -3.78125 3.515625 -3.65625 C 3.34375 -3.5 3.328125 -3.328125 3.328125 -3.265625 C 3.328125 -3.015625 3.515625 -2.90625 3.703125 -2.90625 C 3.984375 -2.90625 4.25 -3.15625 4.25 -3.546875 C 4.25 -4.03125 3.78125 -4.40625 3.078125 -4.40625 C 1.734375 -4.40625 0.40625 -2.984375 0.40625 -1.578125 C 0.40625 -0.671875 0.984375 0.109375 2.03125 0.109375 C 3.453125 0.109375 4.28125 -0.953125 4.28125 -1.0625 C 4.28125 -1.125 4.234375 -1.203125 4.171875 -1.203125 C 4.109375 -1.203125 4.09375 -1.171875 4.03125 -1.09375 C 3.25 -0.109375 2.15625 -0.109375 2.046875 -0.109375 C 1.421875 -0.109375 1.140625 -0.59375 1.140625 -1.203125 C 1.140625 -1.609375 1.34375 -2.578125 1.6875 -3.1875 C 2 -3.765625 2.546875 -4.1875 3.09375 -4.1875 C 3.421875 -4.1875 3.8125 -4.0625 3.953125 -3.78125 Z M 3.953125 -3.78125 "
-           style="stroke:none;" />
+           id="path7064" />
       </symbol>
       <symbol
-         id="glyph1-0-6"
-         overflow="visible">
+         overflow="visible"
+         id="glyph1-0-6">
         <path
-           id="path7067"
+           style="stroke:none;"
            d="M 8.3125 -2.296875 C 7.765625 -1.875 7.5 -1.46875 7.421875 -1.328125 C 6.96875 -0.640625 6.890625 -0.015625 6.890625 -0.015625 C 6.890625 0.109375 7.015625 0.109375 7.09375 0.109375 C 7.25 0.109375 7.265625 0.09375 7.3125 -0.09375 C 7.53125 -1.0625 8.125 -1.90625 9.25 -2.359375 C 9.375 -2.40625 9.40625 -2.421875 9.40625 -2.5 C 9.40625 -2.5625 9.34375 -2.59375 9.328125 -2.609375 C 8.875 -2.765625 7.671875 -3.265625 7.296875 -4.9375 C 7.265625 -5.0625 7.25 -5.09375 7.09375 -5.09375 C 7.015625 -5.09375 6.890625 -5.09375 6.890625 -4.96875 C 6.890625 -4.953125 6.984375 -4.328125 7.390625 -3.65625 C 7.59375 -3.359375 7.890625 -3.015625 8.3125 -2.6875 L 0.90625 -2.6875 C 0.734375 -2.6875 0.546875 -2.6875 0.546875 -2.5 C 0.546875 -2.296875 0.734375 -2.296875 0.90625 -2.296875 Z M 8.3125 -2.296875 "
-           style="stroke:none;" />
+           id="path7067" />
       </symbol>
       <symbol
-         id="glyph1-1-5"
-         overflow="visible">
+         overflow="visible"
+         id="glyph1-1-5">
         <path
-           id="path7070"
+           style="stroke:none;"
            d="M 2.53125 -3.65625 C 3.09375 -4.3125 3.40625 -5.03125 3.40625 -5.109375 C 3.40625 -5.234375 3.296875 -5.234375 3.203125 -5.234375 C 3.046875 -5.234375 3.046875 -5.21875 2.953125 -5.03125 C 2.546875 -4.109375 1.8125 -3.1875 0.515625 -2.625 C 0.375 -2.578125 0.34375 -2.5625 0.34375 -2.5 C 0.34375 -2.46875 0.34375 -2.453125 0.34375 -2.4375 C 0.375 -2.40625 0.375 -2.40625 0.578125 -2.3125 C 1.671875 -1.859375 2.5 -1 3 0.15625 C 3.046875 0.234375 3.078125 0.25 3.203125 0.25 C 3.296875 0.25 3.40625 0.25 3.40625 0.125 C 3.40625 0.046875 3.09375 -0.671875 2.53125 -1.328125 L 7.421875 -1.328125 C 6.859375 -0.671875 6.5625 0.046875 6.5625 0.125 C 6.5625 0.25 6.671875 0.25 6.765625 0.25 C 6.90625 0.25 6.90625 0.234375 7 0.046875 C 7.40625 -0.875 8.140625 -1.796875 9.453125 -2.359375 C 9.59375 -2.40625 9.625 -2.421875 9.625 -2.5 C 9.625 -2.515625 9.625 -2.53125 9.609375 -2.546875 C 9.59375 -2.578125 9.578125 -2.578125 9.375 -2.671875 C 8.28125 -3.125 7.46875 -3.984375 6.953125 -5.140625 C 6.921875 -5.21875 6.875 -5.234375 6.765625 -5.234375 C 6.671875 -5.234375 6.5625 -5.234375 6.5625 -5.109375 C 6.5625 -5.03125 6.859375 -4.3125 7.421875 -3.65625 Z M 2.140625 -1.71875 C 1.84375 -2.015625 1.5 -2.25 1.09375 -2.5 C 1.640625 -2.8125 1.9375 -3.0625 2.140625 -3.265625 L 7.8125 -3.265625 C 8.109375 -2.96875 8.453125 -2.734375 8.859375 -2.5 C 8.3125 -2.171875 8.015625 -1.921875 7.8125 -1.71875 Z M 2.140625 -1.71875 "
-           style="stroke:none;" />
+           id="path7070" />
       </symbol>
       <symbol
-         id="glyph1-2-99"
-         overflow="visible">
+         overflow="visible"
+         id="glyph1-2-99">
         <path
-           id="path7073"
+           style="stroke:none;"
            d="M 5.5 -6.546875 C 5.546875 -6.65625 5.546875 -6.671875 5.546875 -6.71875 C 5.546875 -6.8125 5.46875 -6.921875 5.34375 -6.921875 C 5.21875 -6.921875 5.15625 -6.796875 5.109375 -6.6875 L 4.28125 -4.5 L 1.25 -4.5 L 0.421875 -6.6875 C 0.375 -6.828125 0.328125 -6.921875 0.203125 -6.921875 C 0.09375 -6.921875 0 -6.8125 0 -6.71875 C 0 -6.703125 0 -6.671875 0.0625 -6.546875 L 2.546875 -0.015625 C 2.59375 0.125 2.640625 0.21875 2.765625 0.21875 C 2.90625 0.21875 2.953125 0.109375 2.984375 0.015625 Z M 1.421875 -4.09375 L 4.125 -4.09375 L 2.765625 -0.546875 Z M 1.421875 -4.09375 "
-           style="stroke:none;" />
+           id="path7073" />
       </symbol>
       <symbol
-         id="glyph1-3"
-         overflow="visible">
+         overflow="visible"
+         id="glyph1-3">
         <path
-           id="path7076"
+           style="stroke:none;"
            d="M 3.546875 -5.75 C 3.46875 -5.921875 3.40625 -5.96875 3.3125 -5.96875 C 3.1875 -5.96875 3.15625 -5.890625 3.09375 -5.75 L 0.625 -0.171875 C 0.5625 -0.046875 0.546875 -0.03125 0.546875 0.015625 C 0.546875 0.125 0.640625 0.21875 0.75 0.21875 C 0.8125 0.21875 0.890625 0.203125 0.984375 0.015625 L 3.3125 -5.28125 L 5.65625 0.015625 C 5.75 0.21875 5.859375 0.21875 5.890625 0.21875 C 6 0.21875 6.09375 0.125 6.09375 0.015625 C 6.09375 0 6.09375 -0.015625 6.03125 -0.140625 Z M 3.546875 -5.75 "
-           style="stroke:none;" />
+           id="path7076" />
       </symbol>
       <symbol
-         id="glyph1-4"
-         overflow="visible">
+         overflow="visible"
+         id="glyph1-4">
         <path
-           id="path7079"
+           style="stroke:none;"
            d="M 7.234375 -3.265625 C 7.65625 -2.90625 8.171875 -2.640625 8.5 -2.5 C 8.140625 -2.328125 7.640625 -2.078125 7.234375 -1.71875 L 0.90625 -1.71875 C 0.734375 -1.71875 0.546875 -1.71875 0.546875 -1.53125 C 0.546875 -1.328125 0.734375 -1.328125 0.890625 -1.328125 L 6.78125 -1.328125 C 6.3125 -0.875 5.796875 0.015625 5.796875 0.140625 C 5.796875 0.25 5.921875 0.25 5.984375 0.25 C 6.0625 0.25 6.125 0.25 6.171875 0.171875 C 6.375 -0.203125 6.65625 -0.734375 7.3125 -1.3125 C 8 -1.921875 8.65625 -2.1875 9.1875 -2.34375 C 9.34375 -2.40625 9.359375 -2.40625 9.375 -2.4375 C 9.40625 -2.4375 9.40625 -2.46875 9.40625 -2.5 C 9.40625 -2.515625 9.40625 -2.53125 9.390625 -2.546875 L 9.359375 -2.578125 C 9.34375 -2.578125 9.328125 -2.59375 9.140625 -2.65625 C 7.796875 -3.046875 6.796875 -3.953125 6.234375 -5.03125 C 6.125 -5.21875 6.125 -5.234375 5.984375 -5.234375 C 5.921875 -5.234375 5.796875 -5.234375 5.796875 -5.125 C 5.796875 -5 6.296875 -4.125 6.78125 -3.65625 L 0.890625 -3.65625 C 0.734375 -3.65625 0.546875 -3.65625 0.546875 -3.453125 C 0.546875 -3.265625 0.734375 -3.265625 0.90625 -3.265625 Z M 7.234375 -3.265625 "
-           style="stroke:none;" />
+           id="path7079" />
       </symbol>
       <symbol
-         id="glyph2-0-2"
-         overflow="visible">
+         overflow="visible"
+         id="glyph2-0-2">
         <path
-           id="path7082"
+           style="stroke:none;"
            d="M 3.296875 2.390625 C 3.296875 2.359375 3.296875 2.34375 3.125 2.171875 C 1.890625 0.921875 1.5625 -0.96875 1.5625 -2.5 C 1.5625 -4.234375 1.9375 -5.96875 3.171875 -7.203125 C 3.296875 -7.328125 3.296875 -7.34375 3.296875 -7.375 C 3.296875 -7.453125 3.265625 -7.484375 3.203125 -7.484375 C 3.09375 -7.484375 2.203125 -6.796875 1.609375 -5.53125 C 1.109375 -4.4375 0.984375 -3.328125 0.984375 -2.5 C 0.984375 -1.71875 1.09375 -0.515625 1.640625 0.625 C 2.25 1.84375 3.09375 2.5 3.203125 2.5 C 3.265625 2.5 3.296875 2.46875 3.296875 2.390625 Z M 3.296875 2.390625 "
+           id="path7082" />
+      </symbol>
+      <symbol
+         overflow="visible"
+         id="glyph2-1-8">
+        <path
+           style="stroke:none;"
+           d="M 2.875 -2.5 C 2.875 -3.265625 2.765625 -4.46875 2.21875 -5.609375 C 1.625 -6.828125 0.765625 -7.484375 0.671875 -7.484375 C 0.609375 -7.484375 0.5625 -7.4375 0.5625 -7.375 C 0.5625 -7.34375 0.5625 -7.328125 0.75 -7.140625 C 1.734375 -6.15625 2.296875 -4.578125 2.296875 -2.5 C 2.296875 -0.78125 1.9375 0.96875 0.703125 2.21875 C 0.5625 2.34375 0.5625 2.359375 0.5625 2.390625 C 0.5625 2.453125 0.609375 2.5 0.671875 2.5 C 0.765625 2.5 1.671875 1.8125 2.25 0.546875 C 2.765625 -0.546875 2.875 -1.65625 2.875 -2.5 Z M 2.875 -2.5 "
+           id="path7085" />
+      </symbol>
+      <symbol
+         overflow="visible"
+         id="glyph2-2">
+        <path
+           style="stroke:none;"
+           d="M 1.90625 -3.765625 C 1.90625 -4.0625 1.671875 -4.296875 1.390625 -4.296875 C 1.09375 -4.296875 0.859375 -4.0625 0.859375 -3.765625 C 0.859375 -3.484375 1.09375 -3.234375 1.390625 -3.234375 C 1.671875 -3.234375 1.90625 -3.484375 1.90625 -3.765625 Z M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "
+           id="path7088" />
+      </symbol>
+      <symbol
+         overflow="visible"
+         id="glyph2-3">
+        <path
+           style="stroke:none;"
+           d="M 6.84375 -3.265625 C 7 -3.265625 7.1875 -3.265625 7.1875 -3.453125 C 7.1875 -3.65625 7 -3.65625 6.859375 -3.65625 L 0.890625 -3.65625 C 0.75 -3.65625 0.5625 -3.65625 0.5625 -3.453125 C 0.5625 -3.265625 0.75 -3.265625 0.890625 -3.265625 Z M 6.859375 -1.328125 C 7 -1.328125 7.1875 -1.328125 7.1875 -1.53125 C 7.1875 -1.71875 7 -1.71875 6.84375 -1.71875 L 0.890625 -1.71875 C 0.75 -1.71875 0.5625 -1.71875 0.5625 -1.53125 C 0.5625 -1.328125 0.75 -1.328125 0.890625 -1.328125 Z M 6.859375 -1.328125 "
+           id="path7091" />
+      </symbol>
+      <symbol
+         overflow="visible"
+         id="glyph3-0-6">
+        <path
+           style="stroke:none;"
+           d="M 2.265625 -4.359375 C 2.265625 -4.46875 2.171875 -4.625 1.984375 -4.625 C 1.796875 -4.625 1.59375 -4.4375 1.59375 -4.234375 C 1.59375 -4.125 1.671875 -3.96875 1.875 -3.96875 C 2.0625 -3.96875 2.265625 -4.171875 2.265625 -4.359375 Z M 0.84375 -0.8125 C 0.8125 -0.71875 0.78125 -0.640625 0.78125 -0.515625 C 0.78125 -0.1875 1.046875 0.0625 1.4375 0.0625 C 2.125 0.0625 2.4375 -0.890625 2.4375 -1 C 2.4375 -1.09375 2.34375 -1.09375 2.328125 -1.09375 C 2.234375 -1.09375 2.21875 -1.046875 2.1875 -0.96875 C 2.03125 -0.40625 1.734375 -0.125 1.453125 -0.125 C 1.3125 -0.125 1.28125 -0.21875 1.28125 -0.375 C 1.28125 -0.53125 1.328125 -0.65625 1.390625 -0.8125 C 1.46875 -1 1.546875 -1.1875 1.609375 -1.375 C 1.671875 -1.546875 1.9375 -2.171875 1.953125 -2.265625 C 1.984375 -2.328125 2 -2.40625 2 -2.484375 C 2 -2.8125 1.71875 -3.078125 1.34375 -3.078125 C 0.640625 -3.078125 0.328125 -2.125 0.328125 -2 C 0.328125 -1.921875 0.421875 -1.921875 0.453125 -1.921875 C 0.546875 -1.921875 0.546875 -1.953125 0.578125 -2.03125 C 0.75 -2.625 1.0625 -2.875 1.3125 -2.875 C 1.421875 -2.875 1.484375 -2.828125 1.484375 -2.640625 C 1.484375 -2.46875 1.453125 -2.375 1.28125 -1.9375 Z M 0.84375 -0.8125 "
+           id="path7094" />
+      </symbol>
+      <symbol
+         overflow="visible"
+         id="glyph3-1-0">
+        <path
+           style="stroke:none;"
+           d="M 1.46875 -0.109375 C 1.46875 0.265625 1.40625 0.71875 0.921875 1.15625 C 0.90625 1.1875 0.875 1.21875 0.875 1.25 C 0.875 1.296875 0.9375 1.34375 0.96875 1.34375 C 1.078125 1.34375 1.671875 0.78125 1.671875 -0.046875 C 1.671875 -0.46875 1.5 -0.796875 1.171875 -0.796875 C 0.953125 -0.796875 0.78125 -0.625 0.78125 -0.40625 C 0.78125 -0.1875 0.9375 0 1.1875 0 C 1.359375 0 1.46875 -0.109375 1.46875 -0.109375 Z M 1.46875 -0.109375 "
+           id="path7097" />
+      </symbol>
+      <symbol
+         overflow="visible"
+         id="glyph3-2-35">
+        <path
+           style="stroke:none;"
+           d="M 3.0625 -4.359375 C 3.0625 -4.46875 2.96875 -4.625 2.78125 -4.625 C 2.578125 -4.625 2.390625 -4.421875 2.390625 -4.234375 C 2.390625 -4.125 2.46875 -3.96875 2.671875 -3.96875 C 2.859375 -3.96875 3.0625 -4.15625 3.0625 -4.359375 Z M 1.578125 0.34375 C 1.46875 0.828125 1.09375 1.21875 0.6875 1.21875 C 0.59375 1.21875 0.515625 1.21875 0.4375 1.1875 C 0.609375 1.09375 0.671875 0.9375 0.671875 0.828125 C 0.671875 0.65625 0.53125 0.578125 0.390625 0.578125 C 0.1875 0.578125 0 0.765625 0 0.984375 C 0 1.25 0.265625 1.421875 0.6875 1.421875 C 1.109375 1.421875 1.921875 1.171875 2.140625 0.328125 L 2.765625 -2.171875 C 2.78125 -2.25 2.796875 -2.3125 2.796875 -2.421875 C 2.796875 -2.796875 2.46875 -3.078125 2.0625 -3.078125 C 1.28125 -3.078125 0.84375 -2.109375 0.84375 -2 C 0.84375 -1.921875 0.9375 -1.921875 0.953125 -1.921875 C 1.03125 -1.921875 1.046875 -1.9375 1.09375 -2.046875 C 1.265625 -2.453125 1.625 -2.875 2.03125 -2.875 C 2.203125 -2.875 2.265625 -2.765625 2.265625 -2.53125 C 2.265625 -2.453125 2.265625 -2.359375 2.25 -2.328125 Z M 1.578125 0.34375 "
+           id="path7100" />
+      </symbol>
+    </g>
+    <g
+       id="g3909">
+      <symbol
+         overflow="visible"
+         id="glyph0-0-24">
+        <path
+           style="stroke:none;"
+           d="M 3.71875 -3.765625 C 3.53125 -4.140625 3.25 -4.40625 2.796875 -4.40625 C 1.640625 -4.40625 0.40625 -2.9375 0.40625 -1.484375 C 0.40625 -0.546875 0.953125 0.109375 1.71875 0.109375 C 1.921875 0.109375 2.421875 0.0625 3.015625 -0.640625 C 3.09375 -0.21875 3.453125 0.109375 3.921875 0.109375 C 4.28125 0.109375 4.5 -0.125 4.671875 -0.4375 C 4.828125 -0.796875 4.96875 -1.40625 4.96875 -1.421875 C 4.96875 -1.53125 4.875 -1.53125 4.84375 -1.53125 C 4.75 -1.53125 4.734375 -1.484375 4.703125 -1.34375 C 4.53125 -0.703125 4.359375 -0.109375 3.953125 -0.109375 C 3.671875 -0.109375 3.65625 -0.375 3.65625 -0.5625 C 3.65625 -0.78125 3.671875 -0.875 3.78125 -1.3125 C 3.890625 -1.71875 3.90625 -1.828125 4 -2.203125 L 4.359375 -3.59375 C 4.421875 -3.875 4.421875 -3.890625 4.421875 -3.9375 C 4.421875 -4.109375 4.3125 -4.203125 4.140625 -4.203125 C 3.890625 -4.203125 3.75 -3.984375 3.71875 -3.765625 Z M 3.078125 -1.1875 C 3.015625 -1 3.015625 -0.984375 2.875 -0.8125 C 2.4375 -0.265625 2.03125 -0.109375 1.75 -0.109375 C 1.25 -0.109375 1.109375 -0.65625 1.109375 -1.046875 C 1.109375 -1.546875 1.421875 -2.765625 1.65625 -3.234375 C 1.96875 -3.8125 2.40625 -4.1875 2.8125 -4.1875 C 3.453125 -4.1875 3.59375 -3.375 3.59375 -3.3125 C 3.59375 -3.25 3.578125 -3.1875 3.5625 -3.140625 Z M 3.078125 -1.1875 "
+           id="path3912" />
+      </symbol>
+      <symbol
+         overflow="visible"
+         id="glyph0-1-8">
+        <path
+           style="stroke:none;"
+           d="M 3.953125 -3.78125 C 3.78125 -3.78125 3.65625 -3.78125 3.515625 -3.65625 C 3.34375 -3.5 3.328125 -3.328125 3.328125 -3.265625 C 3.328125 -3.015625 3.515625 -2.90625 3.703125 -2.90625 C 3.984375 -2.90625 4.25 -3.15625 4.25 -3.546875 C 4.25 -4.03125 3.78125 -4.40625 3.078125 -4.40625 C 1.734375 -4.40625 0.40625 -2.984375 0.40625 -1.578125 C 0.40625 -0.671875 0.984375 0.109375 2.03125 0.109375 C 3.453125 0.109375 4.28125 -0.953125 4.28125 -1.0625 C 4.28125 -1.125 4.234375 -1.203125 4.171875 -1.203125 C 4.109375 -1.203125 4.09375 -1.171875 4.03125 -1.09375 C 3.25 -0.109375 2.15625 -0.109375 2.046875 -0.109375 C 1.421875 -0.109375 1.140625 -0.59375 1.140625 -1.203125 C 1.140625 -1.609375 1.34375 -2.578125 1.6875 -3.1875 C 2 -3.765625 2.546875 -4.1875 3.09375 -4.1875 C 3.421875 -4.1875 3.8125 -4.0625 3.953125 -3.78125 Z M 3.953125 -3.78125 "
+           id="path3915" />
+      </symbol>
+      <symbol
+         overflow="visible"
+         id="glyph1-0-0">
+        <path
+           style="stroke:none;"
+           d="M 8.3125 -2.296875 C 7.765625 -1.875 7.5 -1.46875 7.421875 -1.328125 C 6.96875 -0.640625 6.890625 -0.015625 6.890625 -0.015625 C 6.890625 0.109375 7.015625 0.109375 7.09375 0.109375 C 7.25 0.109375 7.265625 0.09375 7.3125 -0.09375 C 7.53125 -1.0625 8.125 -1.90625 9.25 -2.359375 C 9.375 -2.40625 9.40625 -2.421875 9.40625 -2.5 C 9.40625 -2.5625 9.34375 -2.59375 9.328125 -2.609375 C 8.875 -2.765625 7.671875 -3.265625 7.296875 -4.9375 C 7.265625 -5.0625 7.25 -5.09375 7.09375 -5.09375 C 7.015625 -5.09375 6.890625 -5.09375 6.890625 -4.96875 C 6.890625 -4.953125 6.984375 -4.328125 7.390625 -3.65625 C 7.59375 -3.359375 7.890625 -3.015625 8.3125 -2.6875 L 0.90625 -2.6875 C 0.734375 -2.6875 0.546875 -2.6875 0.546875 -2.5 C 0.546875 -2.296875 0.734375 -2.296875 0.90625 -2.296875 Z M 8.3125 -2.296875 "
+           id="path3918" />
+      </symbol>
+      <symbol
+         overflow="visible"
+         id="glyph1-1-7">
+        <path
+           style="stroke:none;"
+           d="M 9.0625 -1.328125 C 9.234375 -1.328125 9.40625 -1.328125 9.40625 -1.53125 C 9.40625 -1.71875 9.234375 -1.71875 9.046875 -1.71875 L 2.71875 -1.71875 C 2.296875 -2.078125 1.796875 -2.34375 1.46875 -2.5 C 1.828125 -2.65625 2.3125 -2.90625 2.71875 -3.265625 L 9.046875 -3.265625 C 9.234375 -3.265625 9.40625 -3.265625 9.40625 -3.453125 C 9.40625 -3.65625 9.234375 -3.65625 9.0625 -3.65625 L 3.171875 -3.65625 C 3.65625 -4.109375 4.171875 -5 4.171875 -5.125 C 4.171875 -5.234375 4.03125 -5.234375 3.984375 -5.234375 C 3.890625 -5.234375 3.828125 -5.234375 3.78125 -5.15625 C 3.578125 -4.78125 3.296875 -4.25 2.65625 -3.671875 C 1.96875 -3.0625 1.296875 -2.796875 0.78125 -2.640625 C 0.609375 -2.578125 0.59375 -2.578125 0.578125 -2.546875 C 0.5625 -2.546875 0.5625 -2.515625 0.5625 -2.5 C 0.5625 -2.46875 0.5625 -2.453125 0.5625 -2.4375 L 0.59375 -2.40625 C 0.625 -2.40625 0.625 -2.390625 0.8125 -2.328125 C 2.15625 -1.9375 3.15625 -1.03125 3.71875 0.046875 C 3.828125 0.234375 3.84375 0.25 3.984375 0.25 C 4.03125 0.25 4.171875 0.25 4.171875 0.140625 C 4.171875 0.015625 3.65625 -0.859375 3.171875 -1.328125 Z M 9.0625 -1.328125 "
+           id="path3921" />
+      </symbol>
+      <symbol
+         overflow="visible"
+         id="glyph1-2-3">
+        <path
+           style="stroke:none;"
+           d="M 7.234375 -3.265625 C 7.65625 -2.90625 8.171875 -2.640625 8.5 -2.5 C 8.140625 -2.328125 7.640625 -2.078125 7.234375 -1.71875 L 0.90625 -1.71875 C 0.734375 -1.71875 0.546875 -1.71875 0.546875 -1.53125 C 0.546875 -1.328125 0.734375 -1.328125 0.890625 -1.328125 L 6.78125 -1.328125 C 6.3125 -0.875 5.796875 0.015625 5.796875 0.140625 C 5.796875 0.25 5.921875 0.25 5.984375 0.25 C 6.0625 0.25 6.125 0.25 6.171875 0.171875 C 6.375 -0.203125 6.65625 -0.734375 7.3125 -1.3125 C 8 -1.921875 8.65625 -2.1875 9.1875 -2.34375 C 9.34375 -2.40625 9.359375 -2.40625 9.375 -2.4375 C 9.40625 -2.4375 9.40625 -2.46875 9.40625 -2.5 C 9.40625 -2.515625 9.40625 -2.53125 9.390625 -2.546875 L 9.359375 -2.578125 C 9.34375 -2.578125 9.328125 -2.59375 9.140625 -2.65625 C 7.796875 -3.046875 6.796875 -3.953125 6.234375 -5.03125 C 6.125 -5.21875 6.125 -5.234375 5.984375 -5.234375 C 5.921875 -5.234375 5.796875 -5.234375 5.796875 -5.125 C 5.796875 -5 6.296875 -4.125 6.78125 -3.65625 L 0.890625 -3.65625 C 0.734375 -3.65625 0.546875 -3.65625 0.546875 -3.453125 C 0.546875 -3.265625 0.734375 -3.265625 0.90625 -3.265625 Z M 7.234375 -3.265625 "
+           id="path3924" />
+      </symbol>
+      <symbol
+         overflow="visible"
+         id="glyph1-3-6">
+        <path
+           style="stroke:none;"
+           d="M 5.5 -6.546875 C 5.546875 -6.65625 5.546875 -6.671875 5.546875 -6.71875 C 5.546875 -6.8125 5.46875 -6.921875 5.34375 -6.921875 C 5.21875 -6.921875 5.15625 -6.796875 5.109375 -6.6875 L 4.28125 -4.5 L 1.25 -4.5 L 0.421875 -6.6875 C 0.375 -6.828125 0.328125 -6.921875 0.203125 -6.921875 C 0.09375 -6.921875 0 -6.8125 0 -6.71875 C 0 -6.703125 0 -6.671875 0.0625 -6.546875 L 2.546875 -0.015625 C 2.59375 0.125 2.640625 0.21875 2.765625 0.21875 C 2.90625 0.21875 2.953125 0.109375 2.984375 0.015625 Z M 1.421875 -4.09375 L 4.125 -4.09375 L 2.765625 -0.546875 Z M 1.421875 -4.09375 "
+           id="path3927" />
+      </symbol>
+      <symbol
+         overflow="visible"
+         id="glyph2-0-29">
+        <path
+           style="stroke:none;"
+           d="M 1.90625 -3.765625 C 1.90625 -4.0625 1.671875 -4.296875 1.390625 -4.296875 C 1.09375 -4.296875 0.859375 -4.0625 0.859375 -3.765625 C 0.859375 -3.484375 1.09375 -3.234375 1.390625 -3.234375 C 1.671875 -3.234375 1.90625 -3.484375 1.90625 -3.765625 Z M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "
+           id="path3930" />
+      </symbol>
+      <symbol
+         overflow="visible"
+         id="glyph2-1-69">
+        <path
+           style="stroke:none;"
+           d="M 6.84375 -3.265625 C 7 -3.265625 7.1875 -3.265625 7.1875 -3.453125 C 7.1875 -3.65625 7 -3.65625 6.859375 -3.65625 L 0.890625 -3.65625 C 0.75 -3.65625 0.5625 -3.65625 0.5625 -3.453125 C 0.5625 -3.265625 0.75 -3.265625 0.890625 -3.265625 Z M 6.859375 -1.328125 C 7 -1.328125 7.1875 -1.328125 7.1875 -1.53125 C 7.1875 -1.71875 7 -1.71875 6.84375 -1.71875 L 0.890625 -1.71875 C 0.75 -1.71875 0.5625 -1.71875 0.5625 -1.53125 C 0.5625 -1.328125 0.75 -1.328125 0.890625 -1.328125 Z M 6.859375 -1.328125 "
+           id="path3933" />
+      </symbol>
+      <symbol
+         overflow="visible"
+         id="glyph3-0-0">
+        <path
+           style="stroke:none;"
+           d="M 2.265625 -4.359375 C 2.265625 -4.46875 2.171875 -4.625 1.984375 -4.625 C 1.796875 -4.625 1.59375 -4.4375 1.59375 -4.234375 C 1.59375 -4.125 1.671875 -3.96875 1.875 -3.96875 C 2.0625 -3.96875 2.265625 -4.171875 2.265625 -4.359375 Z M 0.84375 -0.8125 C 0.8125 -0.71875 0.78125 -0.640625 0.78125 -0.515625 C 0.78125 -0.1875 1.046875 0.0625 1.4375 0.0625 C 2.125 0.0625 2.4375 -0.890625 2.4375 -1 C 2.4375 -1.09375 2.34375 -1.09375 2.328125 -1.09375 C 2.234375 -1.09375 2.21875 -1.046875 2.1875 -0.96875 C 2.03125 -0.40625 1.734375 -0.125 1.453125 -0.125 C 1.3125 -0.125 1.28125 -0.21875 1.28125 -0.375 C 1.28125 -0.53125 1.328125 -0.65625 1.390625 -0.8125 C 1.46875 -1 1.546875 -1.1875 1.609375 -1.375 C 1.671875 -1.546875 1.9375 -2.171875 1.953125 -2.265625 C 1.984375 -2.328125 2 -2.40625 2 -2.484375 C 2 -2.8125 1.71875 -3.078125 1.34375 -3.078125 C 0.640625 -3.078125 0.328125 -2.125 0.328125 -2 C 0.328125 -1.921875 0.421875 -1.921875 0.453125 -1.921875 C 0.546875 -1.921875 0.546875 -1.953125 0.578125 -2.03125 C 0.75 -2.625 1.0625 -2.875 1.3125 -2.875 C 1.421875 -2.875 1.484375 -2.828125 1.484375 -2.640625 C 1.484375 -2.46875 1.453125 -2.375 1.28125 -1.9375 Z M 0.84375 -0.8125 "
+           id="path3936" />
+      </symbol>
+      <symbol
+         overflow="visible"
+         id="glyph3-1-4">
+        <path
+           style="stroke:none;"
+           d="M 1.46875 -0.109375 C 1.46875 0.265625 1.40625 0.71875 0.921875 1.15625 C 0.90625 1.1875 0.875 1.21875 0.875 1.25 C 0.875 1.296875 0.9375 1.34375 0.96875 1.34375 C 1.078125 1.34375 1.671875 0.78125 1.671875 -0.046875 C 1.671875 -0.46875 1.5 -0.796875 1.171875 -0.796875 C 0.953125 -0.796875 0.78125 -0.625 0.78125 -0.40625 C 0.78125 -0.1875 0.9375 0 1.1875 0 C 1.359375 0 1.46875 -0.109375 1.46875 -0.109375 Z M 1.46875 -0.109375 "
+           id="path3939" />
+      </symbol>
+      <symbol
+         overflow="visible"
+         id="glyph3-2-0">
+        <path
+           style="stroke:none;"
+           d="M 3.0625 -4.359375 C 3.0625 -4.46875 2.96875 -4.625 2.78125 -4.625 C 2.578125 -4.625 2.390625 -4.421875 2.390625 -4.234375 C 2.390625 -4.125 2.46875 -3.96875 2.671875 -3.96875 C 2.859375 -3.96875 3.0625 -4.15625 3.0625 -4.359375 Z M 1.578125 0.34375 C 1.46875 0.828125 1.09375 1.21875 0.6875 1.21875 C 0.59375 1.21875 0.515625 1.21875 0.4375 1.1875 C 0.609375 1.09375 0.671875 0.9375 0.671875 0.828125 C 0.671875 0.65625 0.53125 0.578125 0.390625 0.578125 C 0.1875 0.578125 0 0.765625 0 0.984375 C 0 1.25 0.265625 1.421875 0.6875 1.421875 C 1.109375 1.421875 1.921875 1.171875 2.140625 0.328125 L 2.765625 -2.171875 C 2.78125 -2.25 2.796875 -2.3125 2.796875 -2.421875 C 2.796875 -2.796875 2.46875 -3.078125 2.0625 -3.078125 C 1.28125 -3.078125 0.84375 -2.109375 0.84375 -2 C 0.84375 -1.921875 0.9375 -1.921875 0.953125 -1.921875 C 1.03125 -1.921875 1.046875 -1.9375 1.09375 -2.046875 C 1.265625 -2.453125 1.625 -2.875 2.03125 -2.875 C 2.203125 -2.875 2.265625 -2.765625 2.265625 -2.53125 C 2.265625 -2.453125 2.265625 -2.359375 2.25 -2.328125 Z M 1.578125 0.34375 "
+           id="path3942" />
+      </symbol>
+    </g>
+    <marker
+       style="overflow:visible"
+       id="Arrow1Mend-6-8l"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend-6-8l">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="stroke:#ff00ff;stroke-width:1pt;fill:#ff00ff;fill-rule:evenodd"
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path6164"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       style="overflow:visible"
+       id="DotM1"
+       refX="0.0"
+       refY="0.0"
+       orient="auto"
+       inkscape:stockid="DotM1">
+      <path
+         transform="scale(0.4) translate(7.4, 1)"
+         style="stroke:#ff00ff;stroke-width:1.0pt;fill:#ff00ff;fill-rule:evenodd"
+         d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+         id="path6167" />
+    </marker>
+    <marker
+       style="overflow:visible"
+       id="Arrow1Mend-6-8n"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend-6-8n">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="stroke:#ff00ff;stroke-width:1pt;fill:#ff00ff;fill-rule:evenodd"
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path6170"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <g
+       id="g7705">
+      <symbol
+         id="glyph0-0-26"
+         overflow="visible">
+        <path
+           id="path7708"
+           d="M 3.71875 -3.765625 C 3.53125 -4.140625 3.25 -4.40625 2.796875 -4.40625 C 1.640625 -4.40625 0.40625 -2.9375 0.40625 -1.484375 C 0.40625 -0.546875 0.953125 0.109375 1.71875 0.109375 C 1.921875 0.109375 2.421875 0.0625 3.015625 -0.640625 C 3.09375 -0.21875 3.453125 0.109375 3.921875 0.109375 C 4.28125 0.109375 4.5 -0.125 4.671875 -0.4375 C 4.828125 -0.796875 4.96875 -1.40625 4.96875 -1.421875 C 4.96875 -1.53125 4.875 -1.53125 4.84375 -1.53125 C 4.75 -1.53125 4.734375 -1.484375 4.703125 -1.34375 C 4.53125 -0.703125 4.359375 -0.109375 3.953125 -0.109375 C 3.671875 -0.109375 3.65625 -0.375 3.65625 -0.5625 C 3.65625 -0.78125 3.671875 -0.875 3.78125 -1.3125 C 3.890625 -1.71875 3.90625 -1.828125 4 -2.203125 L 4.359375 -3.59375 C 4.421875 -3.875 4.421875 -3.890625 4.421875 -3.9375 C 4.421875 -4.109375 4.3125 -4.203125 4.140625 -4.203125 C 3.890625 -4.203125 3.75 -3.984375 3.71875 -3.765625 Z M 3.078125 -1.1875 C 3.015625 -1 3.015625 -0.984375 2.875 -0.8125 C 2.4375 -0.265625 2.03125 -0.109375 1.75 -0.109375 C 1.25 -0.109375 1.109375 -0.65625 1.109375 -1.046875 C 1.109375 -1.546875 1.421875 -2.765625 1.65625 -3.234375 C 1.96875 -3.8125 2.40625 -4.1875 2.8125 -4.1875 C 3.453125 -4.1875 3.59375 -3.375 3.59375 -3.3125 C 3.59375 -3.25 3.578125 -3.1875 3.5625 -3.140625 Z M 3.078125 -1.1875 "
            style="stroke:none;" />
       </symbol>
       <symbol
-         id="glyph2-1-8"
+         id="glyph0-1-88"
          overflow="visible">
         <path
-           id="path7085"
-           d="M 2.875 -2.5 C 2.875 -3.265625 2.765625 -4.46875 2.21875 -5.609375 C 1.625 -6.828125 0.765625 -7.484375 0.671875 -7.484375 C 0.609375 -7.484375 0.5625 -7.4375 0.5625 -7.375 C 0.5625 -7.34375 0.5625 -7.328125 0.75 -7.140625 C 1.734375 -6.15625 2.296875 -4.578125 2.296875 -2.5 C 2.296875 -0.78125 1.9375 0.96875 0.703125 2.21875 C 0.5625 2.34375 0.5625 2.359375 0.5625 2.390625 C 0.5625 2.453125 0.609375 2.5 0.671875 2.5 C 0.765625 2.5 1.671875 1.8125 2.25 0.546875 C 2.765625 -0.546875 2.875 -1.65625 2.875 -2.5 Z M 2.875 -2.5 "
+           id="path7711"
+           d="M 2.375 -6.8125 C 2.375 -6.8125 2.375 -6.921875 2.25 -6.921875 C 2.03125 -6.921875 1.296875 -6.84375 1.03125 -6.8125 C 0.953125 -6.8125 0.84375 -6.796875 0.84375 -6.625 C 0.84375 -6.5 0.9375 -6.5 1.09375 -6.5 C 1.5625 -6.5 1.578125 -6.4375 1.578125 -6.328125 C 1.578125 -6.265625 1.5 -5.921875 1.453125 -5.71875 L 0.625 -2.46875 C 0.515625 -1.96875 0.46875 -1.796875 0.46875 -1.453125 C 0.46875 -0.515625 1 0.109375 1.734375 0.109375 C 2.90625 0.109375 4.140625 -1.375 4.140625 -2.8125 C 4.140625 -3.71875 3.609375 -4.40625 2.8125 -4.40625 C 2.359375 -4.40625 1.9375 -4.109375 1.640625 -3.8125 Z M 1.453125 -3.046875 C 1.5 -3.265625 1.5 -3.28125 1.59375 -3.390625 C 2.078125 -4.03125 2.53125 -4.1875 2.796875 -4.1875 C 3.15625 -4.1875 3.421875 -3.890625 3.421875 -3.25 C 3.421875 -2.65625 3.09375 -1.515625 2.90625 -1.140625 C 2.578125 -0.46875 2.125 -0.109375 1.734375 -0.109375 C 1.390625 -0.109375 1.0625 -0.375 1.0625 -1.109375 C 1.0625 -1.3125 1.0625 -1.5 1.21875 -2.125 Z M 1.453125 -3.046875 "
            style="stroke:none;" />
       </symbol>
       <symbol
-         id="glyph2-2"
+         id="glyph0-2-4"
          overflow="visible">
         <path
-           id="path7088"
-           d="M 1.90625 -3.765625 C 1.90625 -4.0625 1.671875 -4.296875 1.390625 -4.296875 C 1.09375 -4.296875 0.859375 -4.0625 0.859375 -3.765625 C 0.859375 -3.484375 1.09375 -3.234375 1.390625 -3.234375 C 1.671875 -3.234375 1.90625 -3.484375 1.90625 -3.765625 Z M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "
+           id="path7714"
+           d="M 2.03125 -0.015625 C 2.03125 -0.671875 1.78125 -1.0625 1.390625 -1.0625 C 1.0625 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.265625 1.0625 0 1.390625 0 C 1.5 0 1.640625 -0.046875 1.734375 -0.125 C 1.765625 -0.15625 1.78125 -0.15625 1.78125 -0.15625 C 1.796875 -0.15625 1.796875 -0.15625 1.796875 -0.015625 C 1.796875 0.734375 1.453125 1.328125 1.125 1.65625 C 1.015625 1.765625 1.015625 1.78125 1.015625 1.8125 C 1.015625 1.890625 1.0625 1.921875 1.109375 1.921875 C 1.21875 1.921875 2.03125 1.15625 2.03125 -0.015625 Z M 2.03125 -0.015625 "
            style="stroke:none;" />
       </symbol>
       <symbol
-         id="glyph2-3"
+         id="glyph0-3-1"
          overflow="visible">
         <path
-           id="path7091"
-           d="M 6.84375 -3.265625 C 7 -3.265625 7.1875 -3.265625 7.1875 -3.453125 C 7.1875 -3.65625 7 -3.65625 6.859375 -3.65625 L 0.890625 -3.65625 C 0.75 -3.65625 0.5625 -3.65625 0.5625 -3.453125 C 0.5625 -3.265625 0.75 -3.265625 0.890625 -3.265625 Z M 6.859375 -1.328125 C 7 -1.328125 7.1875 -1.328125 7.1875 -1.53125 C 7.1875 -1.71875 7 -1.71875 6.84375 -1.71875 L 0.890625 -1.71875 C 0.75 -1.71875 0.5625 -1.71875 0.5625 -1.53125 C 0.5625 -1.328125 0.75 -1.328125 0.890625 -1.328125 Z M 6.859375 -1.328125 "
+           id="path7717"
+           d="M 3.953125 -3.78125 C 3.78125 -3.78125 3.65625 -3.78125 3.515625 -3.65625 C 3.34375 -3.5 3.328125 -3.328125 3.328125 -3.265625 C 3.328125 -3.015625 3.515625 -2.90625 3.703125 -2.90625 C 3.984375 -2.90625 4.25 -3.15625 4.25 -3.546875 C 4.25 -4.03125 3.78125 -4.40625 3.078125 -4.40625 C 1.734375 -4.40625 0.40625 -2.984375 0.40625 -1.578125 C 0.40625 -0.671875 0.984375 0.109375 2.03125 0.109375 C 3.453125 0.109375 4.28125 -0.953125 4.28125 -1.0625 C 4.28125 -1.125 4.234375 -1.203125 4.171875 -1.203125 C 4.109375 -1.203125 4.09375 -1.171875 4.03125 -1.09375 C 3.25 -0.109375 2.15625 -0.109375 2.046875 -0.109375 C 1.421875 -0.109375 1.140625 -0.59375 1.140625 -1.203125 C 1.140625 -1.609375 1.34375 -2.578125 1.6875 -3.1875 C 2 -3.765625 2.546875 -4.1875 3.09375 -4.1875 C 3.421875 -4.1875 3.8125 -4.0625 3.953125 -3.78125 Z M 3.953125 -3.78125 "
            style="stroke:none;" />
       </symbol>
       <symbol
-         id="glyph3-0-6"
+         id="glyph1-0-62"
          overflow="visible">
         <path
-           id="path7094"
-           d="M 2.265625 -4.359375 C 2.265625 -4.46875 2.171875 -4.625 1.984375 -4.625 C 1.796875 -4.625 1.59375 -4.4375 1.59375 -4.234375 C 1.59375 -4.125 1.671875 -3.96875 1.875 -3.96875 C 2.0625 -3.96875 2.265625 -4.171875 2.265625 -4.359375 Z M 0.84375 -0.8125 C 0.8125 -0.71875 0.78125 -0.640625 0.78125 -0.515625 C 0.78125 -0.1875 1.046875 0.0625 1.4375 0.0625 C 2.125 0.0625 2.4375 -0.890625 2.4375 -1 C 2.4375 -1.09375 2.34375 -1.09375 2.328125 -1.09375 C 2.234375 -1.09375 2.21875 -1.046875 2.1875 -0.96875 C 2.03125 -0.40625 1.734375 -0.125 1.453125 -0.125 C 1.3125 -0.125 1.28125 -0.21875 1.28125 -0.375 C 1.28125 -0.53125 1.328125 -0.65625 1.390625 -0.8125 C 1.46875 -1 1.546875 -1.1875 1.609375 -1.375 C 1.671875 -1.546875 1.9375 -2.171875 1.953125 -2.265625 C 1.984375 -2.328125 2 -2.40625 2 -2.484375 C 2 -2.8125 1.71875 -3.078125 1.34375 -3.078125 C 0.640625 -3.078125 0.328125 -2.125 0.328125 -2 C 0.328125 -1.921875 0.421875 -1.921875 0.453125 -1.921875 C 0.546875 -1.921875 0.546875 -1.953125 0.578125 -2.03125 C 0.75 -2.625 1.0625 -2.875 1.3125 -2.875 C 1.421875 -2.875 1.484375 -2.828125 1.484375 -2.640625 C 1.484375 -2.46875 1.453125 -2.375 1.28125 -1.9375 Z M 0.84375 -0.8125 "
+           id="path7720"
+           d="M 8.3125 -2.296875 C 7.765625 -1.875 7.5 -1.46875 7.421875 -1.328125 C 6.96875 -0.640625 6.890625 -0.015625 6.890625 -0.015625 C 6.890625 0.109375 7.015625 0.109375 7.09375 0.109375 C 7.25 0.109375 7.265625 0.09375 7.3125 -0.09375 C 7.53125 -1.0625 8.125 -1.90625 9.25 -2.359375 C 9.375 -2.40625 9.40625 -2.421875 9.40625 -2.5 C 9.40625 -2.5625 9.34375 -2.59375 9.328125 -2.609375 C 8.875 -2.765625 7.671875 -3.265625 7.296875 -4.9375 C 7.265625 -5.0625 7.25 -5.09375 7.09375 -5.09375 C 7.015625 -5.09375 6.890625 -5.09375 6.890625 -4.96875 C 6.890625 -4.953125 6.984375 -4.328125 7.390625 -3.65625 C 7.59375 -3.359375 7.890625 -3.015625 8.3125 -2.6875 L 0.90625 -2.6875 C 0.734375 -2.6875 0.546875 -2.6875 0.546875 -2.5 C 0.546875 -2.296875 0.734375 -2.296875 0.90625 -2.296875 Z M 8.3125 -2.296875 "
            style="stroke:none;" />
       </symbol>
       <symbol
-         id="glyph3-1-0"
+         id="glyph1-1-59"
          overflow="visible">
         <path
-           id="path7097"
-           d="M 1.46875 -0.109375 C 1.46875 0.265625 1.40625 0.71875 0.921875 1.15625 C 0.90625 1.1875 0.875 1.21875 0.875 1.25 C 0.875 1.296875 0.9375 1.34375 0.96875 1.34375 C 1.078125 1.34375 1.671875 0.78125 1.671875 -0.046875 C 1.671875 -0.46875 1.5 -0.796875 1.171875 -0.796875 C 0.953125 -0.796875 0.78125 -0.625 0.78125 -0.40625 C 0.78125 -0.1875 0.9375 0 1.1875 0 C 1.359375 0 1.46875 -0.109375 1.46875 -0.109375 Z M 1.46875 -0.109375 "
+           id="path7723"
+           d="M 9.0625 -1.328125 C 9.234375 -1.328125 9.40625 -1.328125 9.40625 -1.53125 C 9.40625 -1.71875 9.234375 -1.71875 9.046875 -1.71875 L 2.71875 -1.71875 C 2.296875 -2.078125 1.796875 -2.34375 1.46875 -2.5 C 1.828125 -2.65625 2.3125 -2.90625 2.71875 -3.265625 L 9.046875 -3.265625 C 9.234375 -3.265625 9.40625 -3.265625 9.40625 -3.453125 C 9.40625 -3.65625 9.234375 -3.65625 9.0625 -3.65625 L 3.171875 -3.65625 C 3.65625 -4.109375 4.171875 -5 4.171875 -5.125 C 4.171875 -5.234375 4.03125 -5.234375 3.984375 -5.234375 C 3.890625 -5.234375 3.828125 -5.234375 3.78125 -5.15625 C 3.578125 -4.78125 3.296875 -4.25 2.65625 -3.671875 C 1.96875 -3.0625 1.296875 -2.796875 0.78125 -2.640625 C 0.609375 -2.578125 0.59375 -2.578125 0.578125 -2.546875 C 0.5625 -2.546875 0.5625 -2.515625 0.5625 -2.5 C 0.5625 -2.46875 0.5625 -2.453125 0.5625 -2.4375 L 0.59375 -2.40625 C 0.625 -2.40625 0.625 -2.390625 0.8125 -2.328125 C 2.15625 -1.9375 3.15625 -1.03125 3.71875 0.046875 C 3.828125 0.234375 3.84375 0.25 3.984375 0.25 C 4.03125 0.25 4.171875 0.25 4.171875 0.140625 C 4.171875 0.015625 3.65625 -0.859375 3.171875 -1.328125 Z M 9.0625 -1.328125 "
            style="stroke:none;" />
       </symbol>
       <symbol
-         id="glyph3-2-35"
+         id="glyph1-2-2"
          overflow="visible">
         <path
-           id="path7100"
-           d="M 3.0625 -4.359375 C 3.0625 -4.46875 2.96875 -4.625 2.78125 -4.625 C 2.578125 -4.625 2.390625 -4.421875 2.390625 -4.234375 C 2.390625 -4.125 2.46875 -3.96875 2.671875 -3.96875 C 2.859375 -3.96875 3.0625 -4.15625 3.0625 -4.359375 Z M 1.578125 0.34375 C 1.46875 0.828125 1.09375 1.21875 0.6875 1.21875 C 0.59375 1.21875 0.515625 1.21875 0.4375 1.1875 C 0.609375 1.09375 0.671875 0.9375 0.671875 0.828125 C 0.671875 0.65625 0.53125 0.578125 0.390625 0.578125 C 0.1875 0.578125 0 0.765625 0 0.984375 C 0 1.25 0.265625 1.421875 0.6875 1.421875 C 1.109375 1.421875 1.921875 1.171875 2.140625 0.328125 L 2.765625 -2.171875 C 2.78125 -2.25 2.796875 -2.3125 2.796875 -2.421875 C 2.796875 -2.796875 2.46875 -3.078125 2.0625 -3.078125 C 1.28125 -3.078125 0.84375 -2.109375 0.84375 -2 C 0.84375 -1.921875 0.9375 -1.921875 0.953125 -1.921875 C 1.03125 -1.921875 1.046875 -1.9375 1.09375 -2.046875 C 1.265625 -2.453125 1.625 -2.875 2.03125 -2.875 C 2.203125 -2.875 2.265625 -2.765625 2.265625 -2.53125 C 2.265625 -2.453125 2.265625 -2.359375 2.25 -2.328125 Z M 1.578125 0.34375 "
+           id="path7726"
+           d="M 7.234375 -3.265625 C 7.65625 -2.90625 8.171875 -2.640625 8.5 -2.5 C 8.140625 -2.328125 7.640625 -2.078125 7.234375 -1.71875 L 0.90625 -1.71875 C 0.734375 -1.71875 0.546875 -1.71875 0.546875 -1.53125 C 0.546875 -1.328125 0.734375 -1.328125 0.890625 -1.328125 L 6.78125 -1.328125 C 6.3125 -0.875 5.796875 0.015625 5.796875 0.140625 C 5.796875 0.25 5.921875 0.25 5.984375 0.25 C 6.0625 0.25 6.125 0.25 6.171875 0.171875 C 6.375 -0.203125 6.65625 -0.734375 7.3125 -1.3125 C 8 -1.921875 8.65625 -2.1875 9.1875 -2.34375 C 9.34375 -2.40625 9.359375 -2.40625 9.375 -2.4375 C 9.40625 -2.4375 9.40625 -2.46875 9.40625 -2.5 C 9.40625 -2.515625 9.40625 -2.53125 9.390625 -2.546875 L 9.359375 -2.578125 C 9.34375 -2.578125 9.328125 -2.59375 9.140625 -2.65625 C 7.796875 -3.046875 6.796875 -3.953125 6.234375 -5.03125 C 6.125 -5.21875 6.125 -5.234375 5.984375 -5.234375 C 5.921875 -5.234375 5.796875 -5.234375 5.796875 -5.125 C 5.796875 -5 6.296875 -4.125 6.78125 -3.65625 L 0.890625 -3.65625 C 0.734375 -3.65625 0.546875 -3.65625 0.546875 -3.453125 C 0.546875 -3.265625 0.734375 -3.265625 0.90625 -3.265625 Z M 7.234375 -3.265625 "
+           style="stroke:none;" />
+      </symbol>
+      <symbol
+         id="glyph1-3-8"
+         overflow="visible">
+        <path
+           id="path7729"
+           d="M 5.5 -6.546875 C 5.546875 -6.65625 5.546875 -6.671875 5.546875 -6.71875 C 5.546875 -6.8125 5.46875 -6.921875 5.34375 -6.921875 C 5.21875 -6.921875 5.15625 -6.796875 5.109375 -6.6875 L 4.28125 -4.5 L 1.25 -4.5 L 0.421875 -6.6875 C 0.375 -6.828125 0.328125 -6.921875 0.203125 -6.921875 C 0.09375 -6.921875 0 -6.8125 0 -6.71875 C 0 -6.703125 0 -6.671875 0.0625 -6.546875 L 2.546875 -0.015625 C 2.59375 0.125 2.640625 0.21875 2.765625 0.21875 C 2.90625 0.21875 2.953125 0.109375 2.984375 0.015625 Z M 1.421875 -4.09375 L 4.125 -4.09375 L 2.765625 -0.546875 Z M 1.421875 -4.09375 "
+           style="stroke:none;" />
+      </symbol>
+      <symbol
+         id="glyph1-4-7"
+         overflow="visible">
+        <path
+           id="path7732"
+           d="M 3.546875 -5.75 C 3.46875 -5.921875 3.40625 -5.96875 3.3125 -5.96875 C 3.1875 -5.96875 3.15625 -5.890625 3.09375 -5.75 L 0.625 -0.171875 C 0.5625 -0.046875 0.546875 -0.03125 0.546875 0.015625 C 0.546875 0.125 0.640625 0.21875 0.75 0.21875 C 0.8125 0.21875 0.890625 0.203125 0.984375 0.015625 L 3.3125 -5.28125 L 5.65625 0.015625 C 5.75 0.21875 5.859375 0.21875 5.890625 0.21875 C 6 0.21875 6.09375 0.125 6.09375 0.015625 C 6.09375 0 6.09375 -0.015625 6.03125 -0.140625 Z M 3.546875 -5.75 "
+           style="stroke:none;" />
+      </symbol>
+      <symbol
+         id="glyph2-0-6"
+         overflow="visible">
+        <path
+           id="path7735"
+           d="M 3.296875 2.390625 C 3.296875 2.359375 3.296875 2.34375 3.125 2.171875 C 1.890625 0.921875 1.5625 -0.96875 1.5625 -2.5 C 1.5625 -4.234375 1.9375 -5.96875 3.171875 -7.203125 C 3.296875 -7.328125 3.296875 -7.34375 3.296875 -7.375 C 3.296875 -7.453125 3.265625 -7.484375 3.203125 -7.484375 C 3.09375 -7.484375 2.203125 -6.796875 1.609375 -5.53125 C 1.109375 -4.4375 0.984375 -3.328125 0.984375 -2.5 C 0.984375 -1.71875 1.09375 -0.515625 1.640625 0.625 C 2.25 1.84375 3.09375 2.5 3.203125 2.5 C 3.265625 2.5 3.296875 2.46875 3.296875 2.390625 Z M 3.296875 2.390625 "
+           style="stroke:none;" />
+      </symbol>
+      <symbol
+         id="glyph2-1-4"
+         overflow="visible">
+        <path
+           id="path7738"
+           d="M 2.875 -2.5 C 2.875 -3.265625 2.765625 -4.46875 2.21875 -5.609375 C 1.625 -6.828125 0.765625 -7.484375 0.671875 -7.484375 C 0.609375 -7.484375 0.5625 -7.4375 0.5625 -7.375 C 0.5625 -7.34375 0.5625 -7.328125 0.75 -7.140625 C 1.734375 -6.15625 2.296875 -4.578125 2.296875 -2.5 C 2.296875 -0.78125 1.9375 0.96875 0.703125 2.21875 C 0.5625 2.34375 0.5625 2.359375 0.5625 2.390625 C 0.5625 2.453125 0.609375 2.5 0.671875 2.5 C 0.765625 2.5 1.671875 1.8125 2.25 0.546875 C 2.765625 -0.546875 2.875 -1.65625 2.875 -2.5 Z M 2.875 -2.5 "
+           style="stroke:none;" />
+      </symbol>
+      <symbol
+         id="glyph2-2-5"
+         overflow="visible">
+        <path
+           id="path7741"
+           d="M 1.90625 -3.765625 C 1.90625 -4.0625 1.671875 -4.296875 1.390625 -4.296875 C 1.09375 -4.296875 0.859375 -4.0625 0.859375 -3.765625 C 0.859375 -3.484375 1.09375 -3.234375 1.390625 -3.234375 C 1.671875 -3.234375 1.90625 -3.484375 1.90625 -3.765625 Z M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "
+           style="stroke:none;" />
+      </symbol>
+      <symbol
+         id="glyph2-3-7"
+         overflow="visible">
+        <path
+           id="path7744"
+           d="M 6.84375 -3.265625 C 7 -3.265625 7.1875 -3.265625 7.1875 -3.453125 C 7.1875 -3.65625 7 -3.65625 6.859375 -3.65625 L 0.890625 -3.65625 C 0.75 -3.65625 0.5625 -3.65625 0.5625 -3.453125 C 0.5625 -3.265625 0.75 -3.265625 0.890625 -3.265625 Z M 6.859375 -1.328125 C 7 -1.328125 7.1875 -1.328125 7.1875 -1.53125 C 7.1875 -1.71875 7 -1.71875 6.84375 -1.71875 L 0.890625 -1.71875 C 0.75 -1.71875 0.5625 -1.71875 0.5625 -1.53125 C 0.5625 -1.328125 0.75 -1.328125 0.890625 -1.328125 Z M 6.859375 -1.328125 "
+           style="stroke:none;" />
+      </symbol>
+      <symbol
+         id="glyph3-0-1"
+         overflow="visible">
+        <path
+           id="path7747"
+           d="M 2.265625 -4.359375 C 2.265625 -4.46875 2.171875 -4.625 1.984375 -4.625 C 1.796875 -4.625 1.59375 -4.4375 1.59375 -4.234375 C 1.59375 -4.125 1.671875 -3.96875 1.875 -3.96875 C 2.0625 -3.96875 2.265625 -4.171875 2.265625 -4.359375 Z M 0.84375 -0.8125 C 0.8125 -0.71875 0.78125 -0.640625 0.78125 -0.515625 C 0.78125 -0.1875 1.046875 0.0625 1.4375 0.0625 C 2.125 0.0625 2.4375 -0.890625 2.4375 -1 C 2.4375 -1.09375 2.34375 -1.09375 2.328125 -1.09375 C 2.234375 -1.09375 2.21875 -1.046875 2.1875 -0.96875 C 2.03125 -0.40625 1.734375 -0.125 1.453125 -0.125 C 1.3125 -0.125 1.28125 -0.21875 1.28125 -0.375 C 1.28125 -0.53125 1.328125 -0.65625 1.390625 -0.8125 C 1.46875 -1 1.546875 -1.1875 1.609375 -1.375 C 1.671875 -1.546875 1.9375 -2.171875 1.953125 -2.265625 C 1.984375 -2.328125 2 -2.40625 2 -2.484375 C 2 -2.8125 1.71875 -3.078125 1.34375 -3.078125 C 0.640625 -3.078125 0.328125 -2.125 0.328125 -2 C 0.328125 -1.921875 0.421875 -1.921875 0.453125 -1.921875 C 0.546875 -1.921875 0.546875 -1.953125 0.578125 -2.03125 C 0.75 -2.625 1.0625 -2.875 1.3125 -2.875 C 1.421875 -2.875 1.484375 -2.828125 1.484375 -2.640625 C 1.484375 -2.46875 1.453125 -2.375 1.28125 -1.9375 Z M 0.84375 -0.8125 "
+           style="stroke:none;" />
+      </symbol>
+      <symbol
+         id="glyph3-1-8"
+         overflow="visible">
+        <path
+           id="path7750"
+           d="M 1.46875 -0.109375 C 1.46875 0.265625 1.40625 0.71875 0.921875 1.15625 C 0.90625 1.1875 0.875 1.21875 0.875 1.25 C 0.875 1.296875 0.9375 1.34375 0.96875 1.34375 C 1.078125 1.34375 1.671875 0.78125 1.671875 -0.046875 C 1.671875 -0.46875 1.5 -0.796875 1.171875 -0.796875 C 0.953125 -0.796875 0.78125 -0.625 0.78125 -0.40625 C 0.78125 -0.1875 0.9375 0 1.1875 0 C 1.359375 0 1.46875 -0.109375 1.46875 -0.109375 Z M 1.46875 -0.109375 "
+           style="stroke:none;" />
+      </symbol>
+      <symbol
+         id="glyph3-2-5"
+         overflow="visible">
+        <path
+           id="path7753"
+           d="M 3.0625 -4.359375 C 3.0625 -4.46875 2.96875 -4.625 2.78125 -4.625 C 2.578125 -4.625 2.390625 -4.421875 2.390625 -4.234375 C 2.390625 -4.125 2.46875 -3.96875 2.671875 -3.96875 C 2.859375 -3.96875 3.0625 -4.15625 3.0625 -4.359375 Z M 1.578125 0.34375 C 1.46875 0.828125 1.09375 1.21875 0.6875 1.21875 C 0.59375 1.21875 0.515625 1.21875 0.4375 1.1875 C 0.609375 1.09375 0.671875 0.9375 0.671875 0.828125 C 0.671875 0.65625 0.53125 0.578125 0.390625 0.578125 C 0.1875 0.578125 0 0.765625 0 0.984375 C 0 1.25 0.265625 1.421875 0.6875 1.421875 C 1.109375 1.421875 1.921875 1.171875 2.140625 0.328125 L 2.765625 -2.171875 C 2.78125 -2.25 2.796875 -2.3125 2.796875 -2.421875 C 2.796875 -2.796875 2.46875 -3.078125 2.0625 -3.078125 C 1.28125 -3.078125 0.84375 -2.109375 0.84375 -2 C 0.84375 -1.921875 0.9375 -1.921875 0.953125 -1.921875 C 1.03125 -1.921875 1.046875 -1.9375 1.09375 -2.046875 C 1.265625 -2.453125 1.625 -2.875 2.03125 -2.875 C 2.203125 -2.875 2.265625 -2.765625 2.265625 -2.53125 C 2.265625 -2.453125 2.265625 -2.359375 2.25 -2.328125 Z M 1.578125 0.34375 "
            style="stroke:none;" />
       </symbol>
     </g>
+    <marker
+       style="overflow:visible"
+       id="DotMQ-6"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotMQ">
+      <path
+         inkscape:connector-curvature="0"
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
+         style="fill:#008000;fill-rule:evenodd;stroke:#008000;stroke-width:1pt"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path5711-8" />
+    </marker>
+    <marker
+       style="overflow:visible"
+       id="Arrow1Mend-6FL-1"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend-6FL">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#008000;fill-rule:evenodd;stroke:#008000;stroke-width:1pt"
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5714-7"
+         inkscape:connector-curvature="0" />
+    </marker>
   </defs>
   <metadata
      id="metadata7">
@@ -1042,3121 +1333,3517 @@
     </rdf:RDF>
   </metadata>
   <g
-     sodipodi:insensitive="true"
-     style="display:inline"
-     inkscape:groupmode="layer"
-     id="layer4"
+     ns1:masterSlide="masterSlide"
      inkscape:label="MASTER"
-     ns1:masterSlide="masterSlide">
+     id="layer4"
+     inkscape:groupmode="layer"
+     style="display:inline"
+     sodipodi:insensitive="true">
     <rect
-       style="color:#000000;fill:#ffcc00;fill-opacity:1;stroke:#d4aa00;stroke-width:0;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="rect3358"
-       width="1050"
-       height="50"
+       y="4.0944824"
        x="0"
-       y="4.0944824" />
+       height="50"
+       width="1050"
+       id="rect3358"
+       style="color:#000000;fill:#ffcc00;fill-opacity:1;stroke:#d4aa00;stroke-width:0;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" />
     <text
-       xml:space="preserve"
-       style="font-size:20px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
-       x="900"
-       y="44.094482"
+       sodipodi:linespacing="125%"
        id="text3607"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         x="900"
+       y="44.094482"
+       x="900"
+       style="font-size:20px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
+       xml:space="preserve"><tspan
+         id="tspan4266"
          y="44.094482"
-         id="tspan4266">JPA Inheritance</tspan></text>
+         x="900"
+         sodipodi:role="line">JPA Inheritance</tspan></text>
   </g>
   <g
-     inkscape:groupmode="layer"
-     id="g5091"
+     style="display:none"
      inkscape:label="Multiple inheritance"
-     style="display:none">
+     id="g5091"
+     inkscape:groupmode="layer">
     <flowRoot
-       xml:space="preserve"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
        id="flowRoot5137"
-       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"><flowRegion
+       xml:space="preserve"><flowRegion
          id="flowRegion5139"><rect
-           id="rect5141"
-           width="779.52753"
-           height="63.634903"
+           y="465.69177"
            x="5.0618672"
-           y="465.69177" /></flowRegion><flowPara
+           height="63.634903"
+           width="779.52753"
+           id="rect5141" /></flowRegion><flowPara
          id="flowPara5143" /></flowRoot>    <text
-       xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:#008000;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="510"
-       y="454.09448"
+       sodipodi:linespacing="125%"
        id="text5145"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5147"
+       y="454.09448"
+       x="510"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:#008000;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="454.09448"
          x="510"
-         y="454.09448" /></text>
+         id="tspan5147"
+         sodipodi:role="line" /></text>
     <text
-       xml:space="preserve"
-       style="font-size:40px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="10"
-       y="44.094482"
+       sodipodi:linespacing="125%"
        id="text5149"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5151"
+       y="44.094482"
+       x="10"
+       style="font-size:40px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="44.094482"
          x="10"
-         y="44.094482" /></text>
+         id="tspan5151"
+         sodipodi:role="line" /></text>
     <text
-       xml:space="preserve"
-       style="font-size:40px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="155.11115"
-       y="113.40673"
+       sodipodi:linespacing="125%"
        id="text5153"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5155"
+       y="113.40673"
+       x="155.11115"
+       style="font-size:40px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="113.40673"
          x="155.11115"
-         y="113.40673" /></text>
+         id="tspan5155"
+         sodipodi:role="line" /></text>
     <text
-       xml:space="preserve"
-       style="font-size:40px;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;display:inline;font-family:Sans;-inkscape-font-specification:Sans"
-       x="10"
-       y="44.094482"
+       sodipodi:linespacing="125%"
        id="text5157"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5159"
+       y="44.094482"
+       x="10"
+       style="font-size:40px;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;display:inline;font-family:Sans;-inkscape-font-specification:Sans"
+       xml:space="preserve"><tspan
+         y="44.094482"
          x="10"
-         y="44.094482">Multiple inheritance</tspan></text>
+         id="tspan5159"
+         sodipodi:role="line">Multiple inheritance</tspan></text>
     <g
-       transform="translate(8.0482196,-29.266253)"
-       id="g11183">
+       id="g11183"
+       transform="translate(8.0482196,-29.266253)">
       <g
-         style="fill:#b3b3b3;stroke:#000000"
+         transform="translate(296.31035,451.4215)"
          id="g2494"
-         transform="translate(296.31035,451.4215)">
+         style="fill:#b3b3b3;stroke:#000000">
         <path
-           inkscape:connector-curvature="0"
-           id="path8263"
+           style="fill:#b3b3b3;fill-opacity:1;stroke:#000000"
            d="m 141.8062,250.23892 c 0,-1.34247 8.2128,-8.12943 12.36175,-10.21561 4.93378,-2.48078 6.12134,-3.9981 14.8789,-19.01023 8.00836,-13.72786 8.64278,-15.51325 6.70074,-18.85758 -0.49508,-0.85258 -1.08139,-1.96868 -1.3029,-2.48023 -0.22151,-0.51155 -1.13549,-2.46473 -2.03107,-4.3404 -1.78907,-3.74696 -2.25411,-12.08006 -1.13325,-20.30686 0.66895,-4.90994 -2.5398,-5.31608 -13.32253,-1.68625 -10.20883,3.43662 -22.85479,6.54952 -28.1928,6.93986 -6.08644,0.44506 -6.18923,0.64251 -16.0243,30.77861 -3.79956,11.64241 -7.41614,22.28412 -8.03685,23.64825 -0.6207,1.36412 -1.59254,3.78955 -2.15963,5.38984 -0.87144,2.45915 -1.38663,3.02406 -3.32763,3.64885 -1.263101,0.40658 -3.750434,2.09678 -5.527402,3.75599 -3.409783,3.18384 -16.377841,4.85907 -16.377841,2.1157 0,-1.357 8.232155,-8.13916 12.458997,-10.2645 7.652519,-3.84783 11.257846,-14.83327 13.046946,-39.75417 1.38643,-19.3118 1.33589,-19.76946 -2.28214,-20.66898 -0.96119,-0.23897 -2.211023,-0.85037 -2.77741,-1.35866 -0.85355,-0.766 -1.645516,-0.8108 -4.62744,-0.26172 -1.978704,0.36435 -8.317306,0.66245 -14.085779,0.66245 -13.172562,0 -14.805634,0.49249 -14.805634,4.465 0,2.99918 2.028031,14.1391 3.060694,16.81231 0.370862,0.96004 0.674295,3.10432 0.674295,4.76508 0,3.97465 0.803981,5.91816 2.864814,6.92527 0.928995,0.45399 1.881476,1.24397 2.116624,1.75552 0.235147,0.51155 0.751204,1.55411 1.146791,2.3168 1.749665,3.37335 0.583854,11.32445 -1.66042,11.32445 -2.050964,0 -10.692791,-10.05027 -10.692791,-12.4355 0,-0.59863 -0.982314,-2.25956 -2.18292,-3.69095 -2.646613,-3.15537 -2.546572,-2.67962 -3.423005,-16.27813 -0.390374,-6.05694 -0.969484,-11.91463 -1.286912,-13.0171 -2.130528,-7.39958 -0.891235,-8.60493 14.503586,-14.10639 13.792407,-4.92882 13.322975,-4.61472 12.39327,-8.29243 -0.388617,-1.53728 -0.710191,-3.85736 -0.714607,-5.15573 -0.0044,-1.29837 -0.5308,-4.03482 -1.16974,-6.08101 -3.226853,-10.3339 -2.990234,-23.26643 0.573678,-31.35464 5.232678,-11.87542 -0.449637,-18.08145 -12.157119,-13.2776 -4.313518,1.76994 -6.285945,1.88265 -10.525779,0.6015 -1.68069,-0.50786 -3.851652,-0.92337 -4.82436,-0.92337 -0.972708,0 -1.768561,-0.24952 -1.768561,-0.55448 0,-1.20004 3.684705,-4.40645 5.074114,-4.41547 0.804164,-0.0052 1.882303,-0.27998 2.395864,-0.61056 0.687799,-0.44275 0.269687,-0.60357 -1.58737,-0.61057 -1.386615,-0.0052 -2.787235,-0.26705 -3.112491,-0.58184 -0.325255,-0.31479 -1.431746,-0.66357 -2.458868,-0.77507 -6.644771,-0.72132 1.058299,-7.94238 11.475339,-10.75728 4.153409,-1.12233 8.172753,-2.44847 8.931875,-2.94698 1.399176,-0.91881 3.264194,-4.79014 2.307658,-4.79014 -1.441479,0 -4.351176,-3.32217 -4.351176,-4.968 0,-3.70651 5.035871,-7.20239 8.055965,-5.59243 2.1102,1.12492 1.497392,1.92868 -1.149088,1.50715 -2.04127,-0.32513 -2.539817,-0.18386 -3.112489,0.88199 -1.031442,1.91971 -0.849251,2.47273 1.154684,3.50494 3.136123,1.6154 5.010898,1.27337 5.010898,-0.91416 0,-3.16719 2.897488,-5.09747 5.918395,-3.94279 0.885165,0.33834 0.776758,0.615 -0.72721,1.8559 -1.767445,1.45828 -1.767445,1.45828 -0.02086,3.0127 2.527201,2.24915 3.233402,1.99345 3.233402,-1.17074 0,-4.88285 3.709364,-7.12194 5.639471,-3.40416 0.737364,1.42031 1.186364,1.74847 1.696731,1.24011 1.242581,-1.23771 2.201687,-0.73441 2.959598,1.55308 0.408997,1.23441 0.930753,1.9428 1.159463,1.57419 2.79885,-4.51087 13.88535,-2.63432 15.90421,2.69202 0.39235,1.03513 0.60667,0.79191 1.29657,-1.47145 1.92006,-6.29916 7.32119,-9.233 24.56755,-13.34486 10.26368,-2.44705 15.07034,-4.14267 23.02713,-8.12314 7.31121,-3.6575 9.44807,-3.44778 7.53279,0.7393 -0.92746,2.02758 0.93621,1.77484 7.28592,-0.98806 10.43427,-4.54016 17.98464,-3.64474 13.8128,1.6381 -1.95097,2.47052 -1.09528,2.38413 5.00978,-0.50576 6.19623,-2.93305 7.58117,-2.8806 7.961,0.30149 0.26412,2.21278 -1.24529,4.41165 -3.99185,5.81519 -2.02802,1.03636 -2.12939,1.21052 -1.1674,2.00577 1.36964,1.13224 11.51303,-2.19096 22.23202,-7.28369 17.87335,-8.49187 11.25382,5.8017 -6.93969,14.98489 -1.81445,0.91584 -3.15463,1.80898 -2.97817,1.98475 0.39367,0.39212 15.10129,-6.92784 17.16124,-8.54113 1.78828,-1.40054 3.71332,-1.50639 4.20458,-0.2312 1.10437,2.86667 -2.59017,7.54403 -9.01138,11.40856 -2.32162,1.39725 -5.64236,3.74883 -7.37942,5.22574 -1.73706,1.47691 -4.05286,3.05439 -5.14622,3.5055 -1.98794,0.8202 -1.98794,0.8202 0.3315,1.61445 7.02825,2.40673 1.31761,9.1405 -11.5623,13.63384 -4.04624,1.41159 -4.04624,1.41159 -1.04845,1.45774 10.53323,0.16217 3.08776,9.2944 -9.60146,11.77664 -1.76657,0.34557 -2.1832,0.56786 -1.17756,0.62827 14.15471,0.85039 7.52985,9.01407 -8.01698,9.87918 -7.08323,0.39414 -7.08323,0.39414 -4.35749,1.88573 1.49917,0.82037 4.11001,2.48778 5.80189,3.70535 1.93956,1.39581 4.6996,2.61948 7.46998,3.31182 5.03601,1.25854 10.63974,3.87837 18.85012,8.81269 5.72984,3.44356 7.18198,3.91817 8.82248,2.88348 1.38267,-0.87207 0.42544,-2.23018 -4.03022,-5.71801 -9.56744,-7.48927 -7.12316,-18.94601 5.24544,-24.58634 7.24372,-3.30327 13.03763,-2.3015 19.2912,3.33546 4.02389,3.62713 4.76967,3.77932 4.76967,0.97334 0,-2.21824 2.27983,-2.6012 3.67488,-0.61729 1.44445,2.05415 1.22834,3.69489 -0.80626,6.1213 -1.79492,2.14059 -1.79701,2.15304 -0.72346,4.31698 1.72179,3.47061 3.33805,11.48644 2.97324,14.74575 -0.86917,7.76521 -1.89574,13.22766 -3.23003,17.18717 -3.65713,10.85263 -4.09702,17.09399 -1.00855,14.30993 1.66213,-1.49831 2.54392,-0.75861 2.54392,2.13402 0,3.15455 -1.99499,5.19198 -4.58436,4.68186 -1.78312,-0.35129 -1.78312,-0.35129 0.3887,2.04323 2.79463,3.08119 4.47781,8.00051 3.92074,11.45891 -0.22816,1.41651 -0.66877,4.56553 -0.97913,6.99784 -0.74217,5.81644 -2.85958,10.42304 -6.76578,14.71947 -3.42488,3.76704 -3.57356,4.12764 -2.44446,5.92852 1.5581,2.48515 -2.02674,4.25494 -4.06793,2.00829 -1.48052,-1.62953 -1.27837,-3.93373 0.76463,-8.71588 3.56887,-8.35384 3.06144,-10.34625 -4.30718,-16.91224 -3.2044,-2.85537 -4.99907,-5.07583 -6.55978,-8.11615 -1.76107,-3.43062 -2.42113,-4.18538 -3.6602,-4.18538 -2.06582,0 -2.43426,-0.86522 -1.29935,-3.05128 0.64891,-1.24994 0.96115,-3.61259 0.96527,-7.30388 0.008,-7.22178 1.51065,-10.47594 7.81857,-16.93251 7.7076,-7.88922 10.40248,-17.66645 4.86938,-17.66645 -1.06557,0 -1.15724,0.42175 -0.96196,4.42538 0.38929,7.98089 -2.56777,12.28059 -8.50512,12.36688 -3.49038,0.0507 -3.49038,0.0507 -4.2565,4.96045 -0.42136,2.70035 -1.34253,7.40682 -2.04703,10.45883 -2.23191,9.66895 -1.11365,13.21724 6.45016,20.46664 4.55645,4.36704 4.55645,4.36704 4.03271,14.59798 -0.28805,5.62702 -0.69676,14.83486 -0.90825,20.46187 -0.50789,13.51365 -0.64961,13.92506 -5.55156,16.11579 -2.79364,1.2485 -4.12532,2.24411 -4.69427,3.50956 -2.19045,4.87206 -18.66215,9.19332 -18.66215,4.89592 0,-2.02035 10.9371,-10.25996 13.61887,-10.25996 4.24597,0 5.95317,-6.78534 5.48634,-21.80578 -0.49802,-16.02401 -1.31432,-17.83784 -10.70148,-23.7787 -2.05425,-1.30008 -5.31039,-3.87874 -7.23586,-5.73038 -4.98483,-4.79366 -6.36898,5.09599 -1.64605,11.76091 1.06334,1.50056 -0.96685,5.38663 -5.27716,10.10125 -1.87071,2.04619 -4.41079,5.25498 -5.6446,7.13066 -1.23382,1.87567 -4.49582,6.47959 -7.2489,10.23093 -2.75306,3.75135 -5.32372,7.79722 -5.71257,8.99083 -2.03179,6.23681 -3.57451,7.63356 -9.13025,8.2664 -2.0984,0.23902 -3.33886,0.92077 -5.73144,3.14997 -3.25648,3.03412 -16.17924,4.58673 -16.17924,1.94387 z"
-           style="fill:#b3b3b3;fill-opacity:1;stroke:#000000" />
+           id="path8263"
+           inkscape:connector-curvature="0" />
         <path
-           inkscape:connector-curvature="0"
-           id="path3261"
+           style="fill:#b3b3b3;stroke:#000000"
            d="m 141.80621,250.23891 c 0,-1.34247 8.2128,-8.12944 12.36175,-10.21562 4.93377,-2.48079 6.12134,-3.9981 14.8789,-19.01025 8.00836,-13.72788 8.64277,-15.51326 6.70074,-18.85761 -0.49508,-0.85258 -1.08139,-1.96868 -1.3029,-2.48023 -0.22151,-0.51154 -1.13549,-2.46473 -2.03108,-4.3404 -1.78906,-3.74697 -2.2541,-12.08007 -1.13325,-20.30688 0.66895,-4.90995 -2.53979,-5.31609 -13.32252,-1.68626 -10.20884,3.43663 -22.85479,6.54953 -28.1928,6.93987 -6.08644,0.44506 -6.18924,0.64251 -16.0243,30.77865 -3.79957,11.64242 -7.41615,22.28415 -8.03685,23.64827 -0.62071,1.36413 -1.59254,3.78956 -2.15964,5.38985 -0.87144,2.45915 -1.38662,3.02407 -3.32762,3.64885 -1.26311,0.40658 -3.75044,2.09678 -5.52741,3.756 -3.40978,3.18384 -16.37784,4.85907 -16.37784,2.11571 0,-1.35701 8.232156,-8.13918 12.459,-10.26452 7.65252,-3.84783 11.25784,-14.83329 13.04695,-39.75421 1.38642,-19.31183 1.33589,-19.76949 -2.28215,-20.66901 -0.96118,-0.23897 -2.21102,-0.85037 -2.77741,-1.35866 -0.85355,-0.76601 -1.64551,-0.8108 -4.62744,-0.26172 -1.9787,0.36435 -8.317302,0.66245 -14.085777,0.66245 -13.172563,0 -14.805635,0.49249 -14.805635,4.465 0,2.99919 2.028031,14.13912 3.060694,16.81234 0.370862,0.96003 0.674295,3.10432 0.674295,4.76508 0,3.97466 0.803981,5.91817 2.864814,6.92528 0.928996,0.45399 1.881477,1.24397 2.116624,1.75552 0.235148,0.51155 0.751204,1.55411 1.146792,2.3168 1.749665,3.37336 0.583854,11.32447 -1.660421,11.32447 -2.050964,0 -10.692791,-10.05029 -10.692791,-12.43552 0,-0.59863 -0.982314,-2.25956 -2.182921,-3.69096 -2.646613,-3.15537 -2.546571,-2.67962 -3.423005,-16.27814 -0.390374,-6.05695 -0.969484,-11.91465 -1.286911,-13.01711 -2.130528,-7.3996 -0.891235,-8.60495 14.503586,-14.10641 13.79241,-4.92882 13.322977,-4.61473 12.393272,-8.29244 -0.388617,-1.53729 -0.710191,-3.85737 -0.714607,-5.15574 -0.0044,-1.29837 -0.5308,-4.03482 -1.16974,-6.08101 -3.226853,-10.33392 -2.990234,-23.26646 0.573678,-31.35468 5.232678,-11.87544 -0.449637,-18.081477 -12.157121,-13.27762 -4.313518,1.76994 -6.285946,1.88265 -10.525779,0.6015 -1.68069,-0.50786 -3.851653,-0.92337 -4.824361,-0.92337 -0.972708,0 -1.76856,-0.24952 -1.76856,-0.55449 0,-1.20004 3.684704,-4.406447 5.074113,-4.415467 0.804165,-0.0052 1.882304,-0.27997 2.395865,-0.61056 0.687799,-0.44275 0.269687,-0.60357 -1.58737,-0.61056 -1.386615,-0.0052 -2.787236,-0.26706 -3.112491,-0.58185 -0.325256,-0.31479 -1.431746,-0.66357 -2.458868,-0.77507 -6.644772,-0.72132 1.058298,-7.94239 11.475339,-10.757288 4.153409,-1.122338 8.172753,-2.448481 8.931876,-2.946984 1.399176,-0.918815 3.264193,-4.790147 2.307658,-4.790147 -1.44148,0 -4.351176,-3.32218 -4.351176,-4.968005 0,-3.706513 5.03587,-7.202404 8.055966,-5.592436 2.1102,1.124917 1.497392,1.928677 -1.149088,1.507147 -2.041271,-0.325132 -2.539819,-0.183858 -3.112491,0.881995 -1.031441,1.919709 -0.84925,2.472732 1.154685,3.504944 3.136124,1.615395 5.010899,1.27337 5.010899,-0.914163 0,-3.167193 2.897488,-5.097478 5.918396,-3.942792 0.885165,0.338338 0.776758,0.615001 -0.72721,1.855894 -1.767446,1.458284 -1.767446,1.458284 -0.02086,3.012706 2.527201,2.249156 3.233403,1.993457 3.233403,-1.170738 0,-4.882857 3.709361,-7.121951 5.639471,-3.404169 0.73736,1.420314 1.18636,1.748481 1.69673,1.240115 1.24258,-1.237708 2.20169,-0.734406 2.9596,1.553085 0.409,1.234413 0.930747,1.9428 1.159457,1.574194 2.79885,-4.510876 13.88535,-2.634324 15.90422,2.692021 0.39235,1.035131 0.60666,0.791907 1.29657,-1.471458 1.92006,-6.299163 7.32119,-9.233003 24.56755,-13.344867 10.26367,-2.447058 15.07033,-4.142675 23.02713,-8.12315 7.36735,-3.685594 9.83162,-3.362259 7.33949,0.963007 -1.17542,2.04001 0.60764,1.739715 7.60577,-1.280931 10.35514,-4.469654 17.82799,-3.53747 13.68624,1.70726 -1.95096,2.470523 -1.09527,2.384138 5.00979,-0.505762 6.19623,-2.933053 7.58117,-2.880604 7.961,0.301493 0.26412,2.212779 -1.24529,4.411657 -3.99185,5.815197 -2.02802,1.036361 -2.12939,1.210521 -1.1674,2.005771 1.36964,1.132239 11.51302,-2.190957 22.23202,-7.283701 17.87335,-8.491874 11.25382,5.801709 -6.93969,14.984911 -1.81445,0.915846 -3.15463,1.808983 -2.97818,1.984748 0.39368,0.39213 15.1013,-6.927842 17.16125,-8.541136 1.78828,-1.400539 3.71332,-1.506393 4.20458,-0.231202 1.10437,2.866672 -2.59017,7.544042 -9.01138,11.408581 -2.32162,1.397244 -5.64236,3.748828 -7.37942,5.225742 -1.73706,1.476915 -4.05286,3.054389 -5.14622,3.5055 -1.98794,0.8202 -1.98794,0.8202 0.3315,1.61446 7.02825,2.406723 1.31761,9.140508 -11.56231,13.633858 -4.04623,1.41159 -4.04623,1.41159 -1.04844,1.45774 10.53323,0.16217 3.08775,9.294397 -9.60146,11.776647 -1.76657,0.34557 -2.1832,0.56786 -1.17756,0.62827 14.1547,0.85039 7.52985,9.01408 -8.01698,9.87919 -7.08323,0.39414 -7.08323,0.39414 -4.35749,1.88574 1.49916,0.82037 4.11001,2.48778 5.80189,3.70535 1.93955,1.39581 4.6996,2.61948 7.46998,3.31182 5.03601,1.25855 10.63974,3.87838 18.85011,8.81271 5.72985,3.44356 7.18198,3.91817 8.82249,2.88348 1.38267,-0.87207 0.42544,-2.23018 -4.03022,-5.71802 -9.56744,-7.48928 -7.12317,-18.94604 5.24544,-24.58637 7.24372,-3.30328 13.03763,-2.30151 19.2912,3.33547 4.0239,3.62713 4.76967,3.77932 4.76967,0.97333 0,-2.21824 2.27983,-2.60119 3.67488,-0.61728 1.44445,2.05415 1.22834,3.69489 -0.80626,6.1213 -1.79492,2.14059 -1.79701,2.15305 -0.72346,4.31699 1.7218,3.47061 3.33806,11.48645 2.97324,14.74576 -0.86917,7.76523 -1.89574,13.22768 -3.23002,17.1872 -3.65714,10.85263 -4.09703,17.094 -1.00856,14.30994 1.66214,-1.49831 2.54392,-0.75861 2.54392,2.13402 0,3.15456 -1.99499,5.19199 -4.58436,4.68187 -1.78312,-0.35129 -1.78312,-0.35129 0.3887,2.04323 2.79463,3.08119 4.47781,8.00052 3.92074,11.45893 -0.22816,1.4165 -0.66877,4.56553 -0.97913,6.99784 -0.74217,5.81645 -2.85958,10.42305 -6.76578,14.71949 -3.42488,3.76704 -3.57355,4.12764 -2.44446,5.92852 1.55811,2.48515 -2.02674,4.25495 -4.06793,2.0083 -1.48052,-1.62953 -1.27837,-3.93374 0.76463,-8.71589 3.56887,-8.35385 3.06145,-10.34627 -4.30718,-16.91226 -3.2044,-2.85537 -4.99907,-5.07584 -6.55978,-8.11616 -1.76107,-3.43062 -2.42113,-4.18539 -3.6602,-4.18539 -2.06582,0 -2.43426,-0.86522 -1.29935,-3.05128 0.64891,-1.24994 0.96115,-3.61259 0.96527,-7.30389 0.008,-7.22178 1.51065,-10.47595 7.81857,-16.93252 7.7076,-7.88924 10.40248,-17.66648 4.86938,-17.66648 -1.06557,0 -1.15724,0.42175 -0.96196,4.42538 0.38929,7.98091 -2.56777,12.28062 -8.50512,12.3669 -3.49038,0.0507 -3.49038,0.0507 -4.2565,4.96046 -0.42136,2.70035 -1.34253,7.40683 -2.04703,10.45884 -2.23191,9.66896 -1.11365,13.21725 6.45016,20.46667 4.55645,4.36704 4.55645,4.36704 4.03271,14.59799 -0.28805,5.62702 -0.69676,14.83488 -0.90825,20.4619 -0.50789,13.51366 -0.64961,13.92507 -5.55156,16.1158 -2.79364,1.2485 -4.12532,2.24411 -4.69427,3.50957 -2.19046,4.87206 -18.66215,9.19333 -18.66215,4.89592 0,-2.02035 10.93709,-10.25997 13.61887,-10.25997 4.24597,0 5.95316,-6.78535 5.48634,-21.80581 -0.49802,-16.02402 -1.31432,-17.83785 -10.70148,-23.77873 -2.05425,-1.30007 -5.31039,-3.87874 -7.23586,-5.73038 -4.98484,-4.79366 -6.36899,5.096 -1.64605,11.76093 1.06333,1.50056 -0.96685,5.38663 -5.27716,10.10126 -1.87072,2.04619 -4.41079,5.25499 -5.64461,7.13066 -1.23381,1.87567 -4.49582,6.4796 -7.24889,10.23095 -2.75307,3.75135 -5.32373,7.79722 -5.71258,8.99083 -2.03179,6.23683 -3.5745,7.63358 -9.13025,8.26642 -2.09839,0.23902 -3.33885,0.92077 -5.73143,3.14997 -3.25649,3.03412 -16.17924,4.58674 -16.17924,1.94387 z m 13.77366,-1.96014 c 2.02523,-1.82562 -2.13138,-6.21832 -4.3685,-4.61663 -6.66126,4.7692 -6.89919,5.56449 -1.67295,5.59185 3.69228,0.0193 5.20993,-0.22565 6.04145,-0.97522 z m 55.40234,0 c 2.02523,-1.82562 -2.13138,-6.21832 -4.3685,-4.61663 -6.66126,4.7692 -6.89919,5.56449 -1.67295,5.59185 3.69228,0.0193 5.20993,-0.22565 6.04145,-0.97522 z M 92.08505,247.65871 c 2.02523,-1.82561 -2.13138,-6.21832 -4.368494,-4.61663 -6.661261,4.7692 -6.899195,5.5645 -1.672954,5.59185 3.692278,0.0193 5.209928,-0.22565 6.041448,-0.97522 z m 67.67561,-3.95942 c 1.07479,-1.0231 2.25685,-1.86018 2.62679,-1.86018 0.36995,0 1.14283,-0.47073 1.71754,-1.04607 0.97984,-0.98094 1.05758,-0.95939 1.24859,0.34627 0.39037,2.6685 2.24007,1.10251 4.83027,-4.0894 1.39918,-2.80458 4.6206,-7.79623 7.15873,-11.09257 2.53812,-3.29633 6.15545,-8.1566 8.0385,-10.80062 1.88306,-2.64401 4.62579,-6.27198 6.09495,-8.06213 3.07015,-3.74094 2.55596,-5.12161 -2.80105,-7.52127 -1.44091,-0.64545 -2.78803,-1.44462 -2.9936,-1.77594 -0.76074,-1.22607 1.35997,-0.53674 4.91178,1.59657 4.77486,2.86789 5.1694,2.32871 0.70166,-0.95886 -3.57247,-2.62879 -4.46521,-4.36493 -0.96959,-1.8856 2.64567,1.8765 2.38242,0.89313 -0.43103,-1.61007 -2.29252,-2.03972 -1.11687,-2.36489 1.24499,-0.34435 0.98801,0.84522 1.08937,0.81242 1.08937,-0.35257 0,-0.70647 -0.76983,-1.84308 -1.71073,-2.52579 -0.9409,-0.68271 -1.50792,-1.44331 -1.26004,-1.69022 0.24789,-0.24691 0.87765,-0.096 1.39948,0.33541 1.1009,0.91009 1.21851,0.4329 0.31004,-1.25793 -0.35131,-0.65387 -2.16653,-1.90877 -4.0338,-2.78867 -2.98755,-1.40779 -4.82486,-2.76159 -3.74791,-2.76159 0.98999,0 4.92515,1.97915 6.86398,3.45217 1.19844,0.91051 2.17898,1.40941 2.17898,1.10867 0,-0.78378 -6.5865,-5.80096 -7.61544,-5.80096 -0.47386,0 -1.40533,-0.40966 -2.06992,-0.91036 -1.17713,-0.88684 -1.17184,-0.91088 0.20464,-0.93009 1.47488,-0.0206 5.6736,2.32058 8.0801,4.50538 1.1246,1.02099 1.40062,1.08323 1.40062,0.31581 0,-1.00902 -3.5845,-3.68075 -7.7707,-5.79195 -5.82383,-2.9371 -9.76295,-6.43913 -4.81435,-4.28014 0.58786,0.25647 1.37559,0.42 1.75052,0.3634 0.37491,-0.0566 1.43982,0.59695 2.36644,1.45234 0.92662,0.8554 1.91615,1.55527 2.19896,1.55527 0.28282,0 0.87562,0.43377 1.31735,0.96394 0.44174,0.53016 1.31641,1.23755 1.94372,1.57196 1.47826,0.78803 1.50912,-0.22004 0.0512,-1.67225 -0.59916,-0.5968 -0.99861,-1.23365 -0.88768,-1.41521 0.11092,-0.18156 -0.25996,-0.49141 -0.82419,-0.68856 -0.56423,-0.19714 -0.96655,-0.62658 -0.89403,-0.95429 0.38393,-1.7351 -7.04893,-2.77758 -11.24469,-1.57711 -1.55452,0.44477 -1.55383,0.4465 0.6225,1.56087 2.50371,1.28199 4.97999,3.39653 4.97999,4.2525 0,0.32206 -0.91041,-0.10162 -2.02312,-0.94151 -2.68484,-2.02655 -4.82436,-3.12722 -4.82436,-2.48186 0,0.28725 1.86547,1.88664 4.1455,3.55419 2.28002,1.66754 3.81129,3.14287 3.40281,3.2785 -0.40848,0.13562 -1.17481,-0.11063 -1.70296,-0.54724 -0.75507,-0.6242 -1.06129,-0.63099 -1.43307,-0.0318 -0.35105,0.56577 -0.85989,0.42729 -1.97568,-0.53769 -1.50286,-1.29972 -1.50286,-1.29972 0.0534,-0.92199 1.55624,0.37772 1.55624,0.37772 -0.19034,-1.20735 -2.32904,-2.11366 -4.31063,-1.97601 -2.17515,0.1511 0.58099,0.57872 0.58099,0.74407 0,0.74407 -2.11086,0 -0.25288,1.76151 3.45486,3.27547 4.15033,1.6947 4.16751,1.71136 1.40062,1.35899 -1.54068,-0.1962 -3.42167,-0.76118 -4.17996,-1.25549 -1.78627,-1.16441 -2.04502,-1.13381 -2.04502,0.24184 0,1.16183 2.3207,2.57976 4.22222,2.57976 1.24022,0 7.73595,3.17679 7.32754,3.58359 -0.15418,0.15357 -2.37628,-0.58991 -4.93801,-1.65218 -2.56174,-1.06228 -5.12071,-1.93141 -5.68661,-1.93141 -1.64409,0 -0.71944,1.403 1.40213,2.12749 2.93689,1.0029 3.302,1.82034 0.6296,1.40957 -1.28391,-0.19734 -2.33437,-0.19784 -2.33437,-0.001 0,0.57244 2.10355,2.00326 2.97686,2.02484 1.21571,0.03 5.34933,1.85377 4.99705,2.20468 -0.17035,0.16968 -1.51762,-0.11598 -2.99393,-0.63482 -3.24115,-1.13906 -3.5239,-0.94943 -2.28193,1.53042 2.28527,4.56296 3.13524,10.91905 1.7171,12.84051 -4.54279,6.15511 -15.40489,25.95912 -14.45477,26.35427 0.55736,0.23181 0.73327,0.44241 0.3909,0.46801 -0.34238,0.0256 -1.68856,1.0218 -2.99151,2.21378 -1.30296,1.19198 -2.84364,2.17151 -3.42374,2.17673 -2.41282,0.0217 -2.83327,0.98135 -1.32204,3.01739 1.71968,2.31687 1.2464,2.3072 3.59305,0.0734 z m 23.44168,-39.06363 c -0.92391,-1.0169 -0.95863,-1.24011 -0.19296,-1.24011 0.51356,0 1.44076,0.55805 2.06046,1.24011 0.9239,1.0169 0.95863,1.24012 0.19296,1.24012 -0.51356,0 -1.44077,-0.55805 -2.06046,-1.24012 z m 0.6225,-1.72757 c -2.2341,-1.16952 -2.79199,-1.69596 -1.97681,-1.86541 0.62464,-0.12983 1.62713,0.20694 2.22776,0.74838 0.60064,0.54144 1.38588,0.98443 1.74496,0.98443 0.35909,0 1.00161,0.41854 1.42783,0.93009 1.08408,1.30111 0.1852,1.09174 -3.42374,-0.79749 z m 3.90917,-0.65667 c -3.12361,-1.77656 -4.85389,-3.20006 -3.87805,-3.19046 1.04728,0.0103 7.12761,3.7187 7.12761,4.34713 0,0.74748 0.26292,0.84107 -3.24956,-1.15667 z m -8.88916,-4.47032 c -1.36949,-0.64552 -1.99078,-1.18098 -1.38062,-1.18993 1.26843,-0.0186 5.42686,1.60766 5.42686,2.12231 0,0.61194 -1.50625,0.26485 -4.04624,-0.93238 z m 3.7094,-1.24744 c -0.72996,-1.17646 0.33466,-1.46677 1.41881,-0.38688 0.97043,0.96664 0.97214,1.04819 0.0219,1.04819 -0.56672,0 -1.21504,-0.29759 -1.44072,-0.66131 z m 1.89309,-2.11646 c -1.02713,-0.46106 -2.82612,-1.19453 -3.99777,-1.62992 -1.17165,-0.4354 -1.80217,-0.90058 -1.40117,-1.03372 0.93691,-0.31108 6.3642,1.66462 7.55545,2.75041 1.14065,1.03969 0.27538,1.00487 -2.15651,-0.0868 z m 0.31125,-5.99613 c -2.17875,-1.199 -2.17875,-1.199 -0.31125,-0.82217 1.02712,0.20725 2.27767,0.777 2.77901,1.2661 1.23153,1.20149 0.17775,1.01193 -2.46776,-0.44393 z m 30.05997,55.27937 c 0.16653,-0.63429 1.97957,-1.99631 4.02925,-3.02694 4.68568,-2.35605 4.59135,-2.09547 5.19029,-14.33582 1.6096,-32.89427 1.87839,-29.81946 -3.05925,-34.99713 -7.95335,-8.33998 -8.91744,-12.14371 -5.98117,-23.59831 3.26038,-12.71902 2.94268,-15.72468 -2.09023,-19.77514 -5.11402,-4.11574 -7.53696,-7.19736 -5.65898,-7.19736 0.71963,0 2.71971,1.5743 9.25614,7.28568 4.54477,3.97111 6.01148,4.12908 8.6351,0.93008 1.04886,-1.27886 1.9164,-1.9436 1.92788,-1.47719 0.0115,0.46641 -1.06667,1.93129 -2.39588,3.2553 -2.41676,2.40728 -2.41676,2.40728 -0.73101,2.40728 3.59029,0 5.99709,-5.09686 5.4737,-11.59163 -0.47031,-5.83609 3.01085,-7.73678 6.3728,-3.4795 2.73449,3.4627 -0.30839,11.87787 -6.85325,18.9529 -5.87096,6.34655 -7.43402,9.80097 -7.44189,16.44693 -0.004,3.76689 -0.28615,5.56305 -1.05599,6.73336 -1.00343,1.52544 -0.99749,1.58603 0.13423,1.36893 1.21731,-0.23351 1.89067,-1.27826 3.93731,-6.10892 0.96337,-2.27382 1.26941,-2.58143 1.65349,-1.66201 0.30084,0.72018 -0.11389,2.47923 -1.14667,4.86342 -2.10914,4.86902 0.0939,10.01303 6.41071,14.96895 8.28843,6.50276 9.18565,10.28139 4.60434,19.3914 -2.47816,4.92785 -2.44368,6.51349 0.15193,6.98755 0.95203,0.17388 1.02886,0.0608 0.40015,-0.58906 -1.53891,-1.59059 -0.86217,-4.07723 2.02727,-7.44902 6.56892,-7.66552 6.07006,-11.16162 -3.10916,-21.78945 -2.28492,-2.64551 -4.04861,-5.12616 -3.9193,-5.51255 0.38371,-1.14663 10.00644,9.83711 11.66664,13.31674 1.52984,3.20642 1.52984,3.20642 1.74113,1.0201 0.2726,-2.82064 -3.86313,-10.51254 -7.17165,-13.33831 -2.47931,-2.11755 -5.65796,-7.10747 -4.52755,-7.10747 0.37271,0 1.40932,1.20657 2.30358,2.68127 0.89425,1.4747 2.51572,3.28858 3.60326,4.03086 1.08754,0.74227 2.93687,3.04879 4.10962,5.1256 2.13228,3.77602 2.13228,3.77602 2.6106,1.48287 0.79358,-3.80457 -0.85824,-7.99482 -4.75631,-12.06551 -5.12716,-5.35422 -6.0715,-10.26303 -2.87759,-14.95806 1.02089,-1.5007 1.86127,-3.18594 1.8675,-3.74497 0.006,-0.55901 0.59286,-1.67512 1.30361,-2.48023 1.16002,-1.31398 1.25982,-1.33688 0.975,-0.2237 -0.71315,2.7873 -2.41878,6.88155 -3.24922,7.79954 -3.66445,4.05077 2.6904,12.45223 6.69103,8.84591 1.43726,-1.2956 1.63089,-3.25314 0.2052,-2.07456 -5.2278,4.32168 -5.43026,-7.58132 -0.35195,-20.69256 4.22953,-10.91987 1.24618,-30.15169 -4.67731,-30.15169 -0.77661,0 -2.32751,-0.76732 -3.44645,-1.70516 -2.73113,-2.28908 -7.53154,-2.44262 -9.27604,-0.2967 -0.73338,0.90214 -1.2965,1.16427 -1.56647,0.72917 -2.15258,-3.46931 7.63614,-5.04965 11.32029,-1.8276 4.50773,3.94231 11.95631,0.3224 8.93112,-4.3404 -0.46056,-0.70988 -0.60569,-0.47094 -0.61297,1.00918 -0.0217,4.41006 -2.6595,4.1854 -7.71961,-0.65749 -5.27072,-5.04446 -10.70252,-5.89066 -17.7859,-2.77077 -8.69064,3.82779 -12.10668,14.29138 -6.33735,19.41175 1.63999,1.45551 1.64756,1.21502 0.0859,-2.73135 -2.53078,-6.39547 1.74219,-15.50144 7.27403,-15.50144 0.47424,0 1.56104,-0.45607 2.41513,-1.01349 2.03352,-1.32719 9.23498,-0.87347 10.76475,0.67823 0.9526,0.96625 0.89498,1.00356 -0.84522,0.5474 -16.2437,-4.25793 -25.08705,10.72088 -13.50025,22.86663 4.3377,4.54696 -2.15283,9.31591 -7.15005,5.25354 -8.21118,-6.67509 -25.10331,-13.39315 -25.10331,-9.98369 0,1.99424 -1.5826,3.97345 -3.17721,3.97345 -1.03272,0 -1.04888,0.16181 -0.21477,2.15029 1.81753,4.33292 0.078,9.01075 -3.35074,9.01075 -1.03993,0 -1.15771,0.34569 -0.89845,2.63683 0.33312,2.94381 -0.57773,4.18483 -3.83615,5.22674 -2.68604,0.85889 -2.5641,1.64257 0.48521,3.11823 1.94077,0.93921 3.22015,2.17601 4.46183,4.31333 8.95535,15.41507 18.10792,26.47914 25.20522,30.46933 9.38277,5.27509 10.64673,8.23399 11.05949,25.88986 0.37625,16.09457 -1.04913,21.9443 -5.35671,21.98385 -2.37507,0.0218 -2.80966,0.98529 -1.33847,2.96737 1.4778,1.99099 2.78275,2.04047 3.28573,0.12458 z m 8.29753,-39.54554 c 0.33062,-3.20206 0.21056,-4.10155 -0.67805,-5.0796 -1.55506,-1.71158 -0.9669,-2.75177 0.84224,-1.48957 1.5747,1.09865 1.61744,6.89273 0.0695,9.42196 -0.4514,0.73756 -0.51909,-0.0887 -0.23369,-2.85279 z m 13.76174,-23.55525 c -4.14859,-4.31322 -4.59849,-16.19743 -0.73413,-19.39199 1.25023,-1.03354 1.21244,1.11675 -0.0488,2.77774 -2.52623,3.32686 -0.80723,13.93722 2.73972,16.91077 1.16456,0.97629 1.35654,1.37927 0.66466,1.39513 -0.5351,0.0123 -1.71475,-0.74898 -2.62144,-1.69165 z m -25.35182,-13.72241 c 0,-0.30524 -0.69547,-1.21207 -1.54549,-2.01519 -1.54905,-1.46357 -2.06279,-3.01035 -0.99984,-3.01035 0.83145,0 3.79033,3.66744 3.79033,4.698 0,0.48539 -0.28013,0.88251 -0.6225,0.88251 -0.34238,0 -0.6225,-0.24974 -0.6225,-0.55497 z m 0.91393,-6.63246 c 0.4739,-3.77808 -0.23327,-6.40143 -2.36588,-8.7766 -1.58205,-1.762 -0.99847,-2.42667 0.99075,-1.1284 2.58719,1.68856 4.02651,8.61923 2.57334,12.39129 -0.89709,2.32864 -1.61524,0.83848 -1.19821,-2.48629 z m 25.85349,-0.56511 c 0,-0.17152 0.83505,-1.63641 1.85567,-3.25531 1.20136,-1.90558 1.85984,-2.53198 1.86749,-1.77651 0.0139,1.37601 -2.32598,5.34367 -3.15143,5.34367 -0.31445,0 -0.57173,-0.14033 -0.57173,-0.31185 z m 4.25259,-11.06561 c 0.11842,-1.48315 -0.0619,-3.69654 -0.40062,-4.91864 -0.69323,-2.50079 -0.34984,-3.27003 0.97194,-2.17734 1.31742,1.08907 0.67593,-2.2736 -1.00036,-5.24375 -1.33108,-2.35852 -0.79528,-3.11774 0.96376,-1.36561 0.52987,0.52779 1.0558,0.86757 1.16874,0.75507 0.55922,-0.55703 -1.23306,-5.37374 -2.1268,-5.71574 -3.57907,-1.36958 -4.69515,-2.56254 -2.74702,-2.93624 0.97172,-0.1864 0.94407,-0.34521 -0.27083,-1.55535 -1.75878,-1.75188 -5.44428,-2.76914 -7.37857,-2.03661 -0.81558,0.30886 -1.6294,0.32215 -1.81094,0.0296 -0.80681,-1.30032 4.57944,-1.74342 7.55946,-0.62187 2.06648,0.77772 4.90228,3.69508 5.52569,5.6846 0.24241,0.77363 0.62768,1.54611 0.85615,1.71662 1.62555,1.21318 3.13828,7.24747 2.0809,8.3007 -0.24661,0.24564 -0.36765,1.38007 -0.26897,2.52095 0.0987,1.14088 -0.11973,2.25848 -0.48536,2.48357 -0.36563,0.22508 -0.66478,1.89756 -0.66478,3.71662 0,2.95954 -0.56343,4.06012 -2.07851,4.06012 -0.0601,0 -0.0123,-1.2135 0.10612,-2.69666 z m -26.04003,-2.57383 c -1.12111,-1.1887 -1.23676,-1.55014 -0.49598,-1.55014 0.53132,0 1.31476,0.41854 1.74098,0.93008 1.00649,1.208 2.7716,1.18116 4.69064,-0.0713 1.9151,-1.2499 2.05652,-0.0533 0.15083,1.27627 -2.03391,1.41902 -4.41201,1.19049 -6.08647,-0.5849 z m 4.43677,-14.86753 c -4.07186,-4.40012 -3.35076,-9.56191 1.89084,-13.53501 2.19061,-1.66048 6.00042,-2.97863 5.28734,-1.82937 -0.21902,0.35299 -1.10171,0.81767 -1.96154,1.03263 -2.96418,0.74105 -5.89306,4.29412 -6.26975,7.60594 -0.34028,2.99162 -0.34028,2.99162 0.88714,0.51139 1.49372,-3.01832 4.13777,-5.64591 4.72649,-4.69707 0.22752,0.36668 0.15888,0.66669 -0.15253,0.66669 -2.55898,0 -4.84083,7.1641 -3.04254,9.55237 3.33748,4.4324 2.49219,4.86106 -1.36545,0.69243 z M 101.96632,237.29224 c 0.85594,-2.18509 1.87945,-4.3579 2.27447,-4.82848 0.39502,-0.47058 3.95654,-10.76101 7.91449,-22.86764 3.95795,-12.10662 7.81168,-23.63132 8.56383,-25.61044 1.25456,-3.30108 1.28511,-3.6805 0.36985,-4.59218 -0.91527,-0.91168 -1.03215,-0.85706 -1.41467,0.66104 -0.22934,0.91016 -0.87593,1.91482 -1.43686,2.23257 -0.85562,0.48468 -0.89371,0.78304 -0.2365,1.85226 0.62697,1.02003 0.62815,1.52213 0.006,2.51463 -0.83843,1.33729 -2.03804,1.61725 -2.65677,0.62005 -0.2116,-0.34103 0.20191,-0.62005 0.91891,-0.62005 1.11074,0 1.20504,-0.1835 0.63733,-1.24012 -0.50463,-0.93922 -1.3034,-1.24011 -3.29204,-1.24011 -3.21027,0 -6.21804,-2.61891 -5.62074,-4.89406 0.48726,-1.85597 1.58888,-1.32719 2.21012,1.06087 0.2823,1.08516 0.77659,1.97301 1.09844,1.97301 0.32184,0 0.42392,-0.41854 0.22685,-0.93008 -0.22289,-0.57855 0.004,-0.93009 0.60008,-0.93009 0.52712,0 1.13622,0.55805 1.35355,1.24012 0.39935,1.25328 1.55625,1.73798 1.55625,0.652 0,-0.32346 0.69764,-1.33793 1.55032,-2.25437 0.85267,-0.91644 1.81182,-2.53522 2.13145,-3.59728 0.31962,-1.06206 0.86371,-2.84038 1.20909,-3.95183 0.58432,-1.88039 0.5011,-2.08615 -1.19771,-2.96119 -2.3023,-1.1859 -2.43162,-2.43459 -0.19422,-1.87524 1.47595,0.36899 1.53917,0.31595 0.66328,-0.5565 -1.08827,-1.08401 -1.95432,-3.36295 -1.46371,-3.85164 0.1772,-0.1765 0.74871,0.50065 1.27002,1.50479 1.02271,1.96996 3.49516,3.87005 5.0358,3.87005 1.24672,0 1.22682,1.02734 -0.0335,1.72988 -0.90387,0.50385 -0.90387,0.63633 0,1.53666 1.34056,1.3353 1.24392,1.85803 -0.25584,1.38389 -0.85448,-0.27014 -1.24499,-0.11142 -1.24499,0.50599 0,1.35973 3.10832,1.69552 4.89582,0.5289 1.09407,-0.71406 1.61651,-0.79628 1.78877,-0.28153 0.13383,0.39992 0.58341,0.59713 0.99909,0.43824 0.41567,-0.15888 1.30798,0.13089 1.9829,0.64394 1.1509,0.87487 1.09754,0.90864 -0.85899,0.54368 -1.40789,-0.26262 -2.25031,-0.12452 -2.59112,0.42475 -0.3026,0.4877 -1.52477,0.7741 -3.04948,0.71458 -2.54547,-0.0993 -3.41421,0.66677 -1.55983,1.37557 2.24069,0.85647 5.72781,0.41812 5.63802,-0.70873 -0.0917,-1.15056 -0.0486,-1.1566 3.33728,-0.46767 1.78238,0.36266 2.03719,0.29605 1.40063,-0.36609 -1.22206,-1.27116 -0.90906,-2.11171 0.36026,-0.9675 1.53046,1.37961 5.00034,1.47175 3.61928,0.0961 -0.51356,-0.51155 -1.30392,-0.9389 -1.75634,-0.94968 -1.80881,-0.0431 -5.08282,-3.70075 -3.31258,-3.70075 0.51356,0 0.93375,0.27759 0.93375,0.61688 0,1.31716 5.47207,3.23522 8.23014,2.88482 1.46497,-0.18612 3.45045,-0.35257 4.41219,-0.3699 0.96173,-0.0173 1.58115,-0.3014 1.37648,-0.63126 -0.20466,-0.32986 -1.20163,-0.4345 -2.21548,-0.23253 -1.26216,0.25145 -1.84336,0.12103 -1.84336,-0.41365 0,-0.58362 1.10987,-0.70178 4.39356,-0.46775 3.01083,0.21458 4.63344,0.0742 5.15578,-0.44611 0.41922,-0.41758 2.15376,-0.98165 3.85454,-1.25351 2.65871,-0.42498 2.8741,-0.55787 1.53608,-0.94772 -1.08034,-0.31478 -0.31889,-0.47709 2.48999,-0.5308 2.22543,-0.0426 6.56736,-0.12215 9.64872,-0.17689 6.04297,-0.10734 9.64873,0.4428 9.64873,1.47216 0,0.40524 -1.38948,0.5452 -3.73499,0.3762 -2.72414,-0.19627 -3.73499,-0.0585 -3.73499,0.50894 0,1.37765 1.22371,1.60224 6.2941,1.15517 5.44056,-0.47971 5.95635,-1.11896 2.3838,-2.95438 -1.17792,-0.60517 -2.08403,-1.33545 -2.01359,-1.62286 0.0704,-0.28739 -0.55983,-1.16627 -1.40062,-1.95305 -2.43045,-2.27433 -1.77144,-2.75015 0.89524,-0.64638 3.47827,2.74404 4.01481,2.3272 0.6892,-0.53544 -1.54032,-1.32589 -2.59779,-2.61271 -2.34993,-2.85959 0.24786,-0.24689 1.00859,0.21844 1.69051,1.03408 1.50605,1.80137 1.67458,1.10716 0.25508,-1.05078 -1.64727,-2.5042 -4.71231,-3.84085 -6.3865,-2.78513 -0.70778,0.44631 -0.48368,1.04665 1.16442,3.11938 2.84505,3.57809 1.75728,4.03503 -1.25348,0.52655 -1.90491,-2.21983 -3.0233,-2.96358 -4.94186,-3.28644 -1.36385,-0.22952 -3.46391,-1.08257 -4.66679,-1.89567 -1.90858,-1.29011 -2.18735,-1.34256 -2.18938,-0.41193 -0.01,4.41078 -4.89364,6.46637 -9.17952,3.86346 -1.48047,-0.89912 -2.02312,-1.00743 -2.02312,-0.40381 0,1.43671 -2.30087,2.99012 -4.15278,2.80372 -0.96852,-0.0975 -2.46126,0.26303 -3.31719,0.80115 -2.01187,1.26486 -9.27531,1.35422 -12.16941,0.14974 -4.0268,-1.67592 -8.4014,-11.41815 -5.83622,-12.9973 0.42823,-0.26363 0.16493,-0.94682 -0.73102,-1.89677 -1.37591,-1.45885 -0.87746,-2.17218 0.53485,-0.76541 0.54787,0.54572 1.02362,0.35866 1.97128,-0.77507 1.68753,-2.01886 1.66237,-0.48077 -0.0498,3.04216 -1.47304,3.03097 -1.17666,4.90478 1.46465,9.25973 1.59334,2.62708 2.16417,2.54192 3.38831,-0.50553 0.63981,-1.59277 1.23036,-2.30378 1.60418,-1.93142 0.37383,0.37236 0.22838,1.28898 -0.3951,2.48992 -1.39147,2.68026 -0.0371,4.39292 2.77178,3.50492 3.28251,-1.03774 1.27785,-9.0597 -2.71292,-10.85611 -3.81501,-1.71731 -5.18729,-2.93065 -4.30663,-3.80786 0.54272,-0.54058 0.94577,-0.52742 1.64892,0.0539 0.75884,0.62731 1.18625,0.5321 2.31545,-0.51578 1.57186,-1.45867 1.16829,-2.22828 -1.16847,-2.22828 -0.87973,0 -1.72263,-0.36096 -1.8731,-0.80212 -0.19848,-0.58189 0.16881,-0.69151 1.33778,-0.39927 1.8921,0.47303 2.8579,-1.03678 1.61639,-2.52685 -0.62739,-0.753 -0.57947,-0.92219 0.26114,-0.92219 0.56623,0 1.19399,0.42696 1.39503,0.9488 0.20104,0.52184 1.10265,1.37341 2.00358,1.89236 1.63806,0.94356 1.63806,0.94356 -0.0738,0.58953 -1.53793,-0.31806 -1.71388,-0.17958 -1.73166,1.36294 -0.0109,0.94434 -0.43108,2.2586 -0.93375,2.92058 -1.17712,1.55018 -1.15698,2.20671 0.0677,2.20671 1.65603,0 4.6205,3.44749 4.62432,5.3778 0.007,3.31258 1.2103,6.40329 2.49388,6.40329 3.87161,0 2.85099,-10.61257 -1.26697,-13.1742 -1.63625,-1.01784 -1.55901,-1.59628 0.17024,-1.27495 2.72873,0.50705 4.03296,-1.21239 2.44494,-3.22331 -0.74556,-0.94411 -1.34319,-2.44625 -1.32805,-3.3381 0.026,-1.5322 0.0943,-1.49564 1.23917,0.6635 1.50261,2.83374 2.10742,3.22146 3.70043,2.37225 2.03908,-1.087 1.50453,-2.87852 -1.4664,-4.91456 -1.78788,-1.22527 -2.83748,-2.45694 -3.05366,-3.58333 -0.30756,-1.60261 -0.27141,-1.63737 0.54553,-0.52451 0.4812,0.6555 0.87491,1.41751 0.87491,1.69336 0,0.27585 0.35516,0.50155 0.78924,0.50155 0.43409,0 1.77903,0.66993 2.98876,1.48875 1.61527,1.09329 2.48041,1.33217 3.25699,0.89928 0.68452,-0.38158 1.05748,-0.37079 1.05748,0.0306 0,0.34103 -0.42909,0.85924 -0.95353,1.15159 -0.52445,0.29234 -1.43485,1.49207 -2.02312,2.66605 -0.58827,1.17399 -1.69986,2.40996 -2.4702,2.7466 -0.77035,0.33664 -1.40063,0.83393 -1.40063,1.10508 0,0.27116 -0.55864,0.69885 -1.24142,0.95044 -1.20922,0.44557 -1.20064,0.51453 0.33108,2.65885 0.86488,1.21079 1.80453,3.66348 2.08812,5.45045 0.58041,3.65724 1.35753,4.76781 2.91871,4.17108 1.4628,-0.55912 0.83149,-11.12213 -0.77007,-12.88489 -0.89505,-0.98514 -0.90489,-1.133 -0.0754,-1.133 1.47536,0 2.17323,1.26251 2.64979,4.79375 0.84649,6.27226 6.88022,10.5195 9.43241,6.63963 1.41863,-2.15662 -1.16655,-7.7727 -5.87771,-12.76878 -1.81812,-1.92809 -3.05682,-3.65882 -2.75265,-3.84607 0.72421,-0.44583 7.01647,6.04617 8.88459,9.16661 1.95067,3.25835 2.30434,1.75392 0.5816,-2.47399 -1.27759,-3.13543 -6.56135,-8.95184 -8.13205,-8.95184 -0.29883,0 -0.71343,-0.67513 -0.92135,-1.5003 -0.84152,-3.33974 -4.58905,-5.67764 -6.16766,-3.84771 -1.77674,2.05962 -2.33213,2.07289 -1.5551,0.0372 0.94853,-2.48504 0.75171,-3.06931 -1.41602,-4.20343 -2.02312,-1.05847 -2.02312,-1.05847 0.62249,-0.79155 3.11279,0.31404 3.7701,-1.28632 1.11062,-2.70405 -1.70211,-0.90737 -1.49345,-2.1253 0.26867,-1.56822 1.496,0.47296 2.11059,-1.23392 0.88417,-2.45553 -0.52347,-0.52142 -1.35194,-0.94804 -1.84105,-0.94804 -1.09589,0 -1.17174,-1.01138 -0.11116,-1.4822 0.42797,-0.18998 0.0778,-0.28299 -0.77812,-0.20668 -1.13979,0.10161 -1.61308,0.55356 -1.76863,1.68888 -0.2471,1.80357 -1.79099,3.72035 -2.99659,3.72035 -1.30161,0 -0.98521,-1.10978 0.44536,-1.56204 1.03354,-0.32675 1.20784,-0.74464 0.89751,-2.15199 -0.35178,-1.59539 -0.18001,-1.81232 1.9855,-2.50735 3.88271,-1.24619 5.03477,-2.64625 2.68185,-3.25914 -1.44684,-0.37688 -1.68829,-1.68052 -0.31125,-1.68052 0.51356,0 0.93374,0.27903 0.93374,0.62006 0,0.34103 0.68144,0.62006 1.5143,0.62006 0.96759,0 1.65696,0.44772 1.90944,1.24011 0.21734,0.68207 0.92702,1.24012 1.57708,1.24012 0.65006,0 2.16574,0.46731 3.36817,1.03846 2.04474,0.97125 2.26082,0.97125 3.33826,0 0.6336,-0.57115 1.4801,-1.03846 1.88111,-1.03846 0.401,0 0.7291,-0.41854 0.7291,-0.93009 0,-0.51154 0.28013,-0.93008 0.6225,-0.93008 1.28312,0 0.55506,-1.24301 -1.28243,-2.18949 -2.51459,-1.29524 -6.33021,-0.99505 -6.54802,0.51515 -0.1931,1.33886 -1.42156,2.91445 -2.27234,2.91445 -0.33708,0 -0.44165,-0.44446 -0.23237,-0.98769 1.26157,-3.27472 1.17529,-3.97277 -0.49107,-3.97277 -2.09847,0 -2.15264,-1.61489 -0.0675,-2.01193 1.07353,-0.20441 1.55625,-0.0211 1.55625,0.5909 0,1.52086 2.77358,0.68496 3.00016,-0.90418 0.21668,-1.51973 1.35733,-1.94775 1.35733,-0.50934 0,3.12763 7.24318,4.04903 10.39213,1.32198 2.12673,-1.84179 1.54344,-3.35236 -1.73686,-4.49799 -2.58158,-0.90162 -8.1819,-1.03357 -9.0065,-0.2122 -0.83974,0.83644 -4.25232,1.08197 -4.62876,0.33303 -0.17119,-0.34058 0.24442,-0.61961 0.92356,-0.62006 1.83367,-0.001 1.88279,-1.93596 0.079,-3.11318 -1.34272,-0.87633 -1.87339,-0.90885 -3.75743,-0.23025 -2.52438,0.90926 -3.73586,0.25255 -1.94304,-1.05325 1.86247,-1.35653 7.1519,-0.53735 8.76748,1.35783 2.0879,2.44924 14.60533,1.79568 14.60533,-0.76258 0,-3.04259 -6.86399,-4.586637 -13.91707,-3.13063 -6.7442,1.39225 -14.04572,0.446 -11.0046,-1.426147 0.97678,-0.60131 2.87985,-0.13573 3.75922,0.9197 1.24791,1.497737 6.22249,-0.7749 6.22249,-2.84275 0,-1.25645 -2.15259,-2.71163 -3.12536,-2.11278 -0.3353,0.20641 -0.60963,0.73258 -0.60963,1.16926 0,1.03689 -2.93831,2.39544 -3.43825,1.58969 -0.20362,-0.32817 0.0665,-0.59667 0.60027,-0.59667 1.27507,0 1.24011,-1.77579 -0.0632,-3.21028 -1.28776,-1.41739 -0.57293,-2.27343 1.05355,-1.26167 1.70256,1.0591 3.38905,0.93747 6.27782,-0.45276 2.83145,-1.36264 5.31895,-1.08238 3.3194,0.374 -0.62704,0.4567 -1.64677,0.83036 -2.26608,0.83036 -1.2457,0 -1.50718,0.93229 -0.4449,1.58623 0.37461,0.23062 0.56214,1.03923 0.41673,1.7969 -0.41573,2.16625 7.62126,1.49543 13.38314,-1.11705 4.50931,-2.04455 4.70915,-2.44772 2.15478,-4.34735 -1.55367,-1.15544 -1.90929,-1.17781 -6.12554,-0.38538 -4.89374,0.91976 -8.65354,-0.2475 -9.1768,-2.84901 -0.17964,-0.89317 0.16487,-0.78284 1.77834,0.56947 2.39982,2.01141 4.6465,1.84561 9.91591,-0.73176 5.76879,-2.821623 2.87758,-3.638504 -7.0269,-1.98537 -3.85558,0.64352 -5.48959,0.54687 -4.66363,-0.27585 0.16482,-0.164166 2.39459,-0.697739 4.95507,-1.185718 6.468,-1.23268 16.74021,-6.399551 16.74021,-8.420241 0,-1.928157 -7.27479,-1.844876 -9.6176,0.110101 -0.32525,0.271414 -1.00351,0.493479 -1.50723,0.493479 -0.50372,0 -1.35809,0.368959 -1.89862,0.81991 -0.54052,0.450951 -2.17329,1.193176 -3.62838,1.64939 -1.45509,0.456214 -2.64561,1.020445 -2.64561,1.253847 0,1.084158 -2.99282,3.675297 -4.66874,4.042129 -1.86749,0.408765 -1.86749,0.408765 -0.0479,-0.84676 3.89138,-2.685087 3.43118,-4.394951 -1.19709,-4.447647 -2.03672,-0.02319 -2.28648,-0.146299 -1.37203,-0.676299 0.61488,-0.356372 2.08553,-0.518069 3.26812,-0.359326 2.37887,0.319325 2.74022,-0.378099 1.11992,-2.161492 -0.89547,-0.985608 -0.90544,-1.133925 -0.0762,-1.133925 1.31109,0 2.56837,1.642829 2.12937,2.782362 -1.27697,3.314686 8.12962,-1.508766 10.01986,-5.137919 1.12408,-2.158178 1.104,-2.15957 -5.79853,-0.401954 -19.17997,4.883868 -19.16139,4.87073 -25.74883,18.207313 -5.90329,11.951497 -5.87676,11.622757 -2.09944,26.019917 3.21237,12.24385 1.23633,18.52607 -7.62221,24.23255 -7.01418,4.51837 -8.77592,10.50265 -3.66208,12.43931 3.79109,1.43572 0.26744,3.79408 -3.71348,2.48541 -5.81004,-1.90997 -6.3505,-8.96938 -1.10514,-14.43512 2.23077,-2.32449 2.23077,-2.32449 -0.33544,-1.32041 -4.19709,1.6422 -6.91888,4.83632 -5.47519,6.42533 1.62509,1.78866 0.73937,2.22723 -1.67362,0.82871 -4.52219,-2.62098 -2.70471,-7.80309 3.48383,-9.93331 3.17871,-1.09418 3.17871,-1.09418 -1.22037,-1.44697 -13.19509,-1.05824 -15.69129,-15.71659 -2.62883,-15.43722 2.04792,0.0438 2.04792,0.0438 -0.45938,1.15618 -6.96649,3.09071 -2.67684,11.62496 4.89206,9.73274 4.18847,-1.04712 4.98209,-2.82254 2.34868,-5.2543 -3.08289,-2.84681 -5.25778,-9.28437 -6.28938,-18.61619 -1.70043,-15.382057 -8.29604,-28.927197 -11.82033,-24.274945 -2.10025,2.772436 -1.92486,0.922706 0.33359,-3.518186 2.16541,-4.257938 2.21806,-9.493758 0.09546,-9.493758 -0.86245,0 -3.70579,6.854857 -4.02934,9.71412 -0.169,1.493527 -0.56701,2.875395 -0.88446,3.070821 -0.31745,0.195425 -0.0702,0.738197 0.54944,1.206159 0.61964,0.467962 0.8465,0.85084 0.50413,0.85084 -1.4429,0 -3.06323,-1.807797 -2.30091,-2.567125 1.04922,-1.045107 0.94117,-3.59401 -0.15235,-3.59401 -1.30985,0 -1.814121,1.157666 -0.95397,2.190026 0.59637,0.715756 0.53,0.978225 -0.33049,1.307134 -1.710074,0.653643 -4.330489,-0.563153 -4.55368,-2.114509 -0.109406,-0.760458 -0.459561,-1.382651 -0.778123,-1.382651 -0.318562,0 -0.579203,-0.308878 -0.579203,-0.686397 0,-0.377518 0.411216,-0.529217 0.913812,-0.337109 0.502596,0.192108 1.079377,0.08245 1.281734,-0.243689 0.756012,-1.218457 1.575528,-0.578611 0.890912,0.695589 -1.460937,2.719083 -0.05437,3.431551 1.962654,0.994143 1.038954,-1.25549 2.312144,-2.282709 2.829314,-2.282709 0.51716,0 0.82449,-0.348783 0.68295,-0.775072 -0.17869,-0.538162 -2.52541,-0.869836 -7.677479,-1.085101 -7.690653,-0.321332 -10.655537,-1.199375 -12.038996,-3.565317 -0.533967,-0.913172 -0.637508,-0.930301 -0.653437,-0.108098 -0.03791,1.956821 3.907361,4.616094 8.627999,5.815618 3.603876,0.915753 -5.735032,5.998839 -16.888656,9.192349 -6.357129,1.82017 -7.29864,2.27879 -9.372625,4.56544 -3.089768,3.40659 -3.001323,3.52805 2.207522,3.03152 8.23955,-0.78543 10.220226,-0.70824 11.50323,0.44831 1.626206,1.46592 2.202315,1.36028 1.707232,-0.31305 -0.376058,-1.27105 -0.260362,-1.23654 1.300785,0.38796 0.942456,0.98069 3.000164,2.36767 4.572686,3.08216 2.306259,1.04788 2.596438,1.33983 1.500641,1.50984 -0.747168,0.11592 -2.287851,-0.26897 -3.42374,-0.85532 -3.835844,-1.98005 -5.722329,-2.06683 -10.567345,-0.48606 -2.489659,0.81229 -5.006699,1.47689 -5.59342,1.47689 -0.991517,0 -3.319905,1.771307 -2.890557,2.198967 0.105556,0.10514 1.729609,-0.33751 3.609008,-0.983657 4.355439,-1.49744 7.782072,-1.6505 5.943729,-0.2655 -0.664592,0.500697 -1.925151,0.914627 -2.801242,0.919857 -3.051817,0.0182 -3.203587,0.94387 -0.295005,1.7993 2.622947,0.77143 3.082362,0.72012 6.673226,-0.74535 5.672909,-2.315167 9.103321,-2.553867 14.347086,-0.99833 9.127548,2.70764 15.965438,0.14793 15.965438,-5.976537 0,-1.97971 1.45997,-1.77502 1.75807,0.24648 0.25185,1.7079 -2.63044,6.719877 -4.09447,7.119807 -4.29524,1.17333 -7.947695,1.73586 -9.396622,1.44721 -1.701565,-0.33898 -1.701565,-0.33898 -1.118904,3.18492 0.524615,3.17283 0.414512,3.92541 -1.105178,7.55427 -5.421634,12.94625 -4.815342,28.75365 1.481271,38.62011 2.385482,3.73793 2.392151,4.25181 0.02587,1.99366 -2.145012,-2.047 -2.116845,-2.16772 -0.985757,4.22472 0.798196,4.51107 1.608255,6.84584 1.608255,4.63535 0,-0.52663 0.420186,-1.30487 0.933747,-1.72941 0.778689,-0.64372 0.933748,-0.55944 0.933748,0.50754 0,0.70369 -0.306504,1.46813 -0.681119,1.69875 -0.681441,0.4195 -0.532994,2.03514 0.389013,4.2339 0.78422,1.87017 -1.04373,0.90452 -2.191089,-1.15748 -1.800497,-3.23581 -2.103662,-3.2155 -13.729377,0.91969 -15.750788,5.60246 -15.686751,5.55088 -14.390887,11.59022 0.351598,1.63861 0.959552,7.72274 1.351007,13.52028 0.886441,13.1284 0.78866,12.67577 3.414599,15.80649 1.200606,1.43139 2.182921,3.24279 2.182921,4.02532 0,3.11063 2.045959,4.4725 4.643515,3.09091 3.589947,-1.90942 3.769224,-2.46014 1.277556,-3.92449 -2.536563,-1.49075 -3.431078,-3.3772 -3.431078,-7.23583 0,-1.50053 -0.389033,-3.92384 -0.864518,-5.38514 -6.280507,-19.30184 -4.219594,-23.42633 11.706362,-23.42788 5.449452,-5.3e-4 9.730122,-0.17824 9.512598,-0.39491 -0.217523,-0.21667 -3.415608,-0.40756 -7.106854,-0.4242 -3.691247,-0.0166 -6.22114,-0.13885 -5.621985,-0.27158 0.599154,-0.13272 1.089371,-0.52974 1.089371,-0.88225 0,-0.36308 0.472259,-0.45198 1.089372,-0.20507 0.599155,0.23971 1.439527,0.57844 1.867495,0.75273 0.454335,0.18502 0.786361,-0.16225 0.79792,-0.83456 0.01865,-1.08473 0.07497,-1.0796 0.972236,0.0887 0.917673,1.19485 0.983254,1.19872 1.796679,0.106 0.675229,-0.90707 1.095501,-1.00017 2.099331,-0.46505 2.056782,1.09644 2.898289,0.80489 1.648188,-0.57104 -1.475584,-1.62411 -0.309176,-1.59467 1.783545,0.045 2.004027,1.57018 2.184397,0.68041 0.232361,-1.14624 -1.031837,-0.96556 -1.931669,-1.23518 -3.369213,-1.00951 -1.078759,0.16935 -2.124043,0.0457 -2.322853,-0.27468 -0.527029,-0.8494 2.4128,-1.42657 4.099833,-0.80491 0.794102,0.29262 1.793977,0.40934 2.221944,0.25938 0.427968,-0.14998 0.778125,0.0296 0.778125,0.39905 0,0.36945 0.42018,0.67173 0.93375,0.67173 0.51356,0 0.93374,0.29549 0.93374,0.65665 0,0.36116 0.28013,0.48421 0.6225,0.27344 1.0027,-0.61728 0.7571,-6.90801 -0.31125,-7.97217 -0.51356,-0.51155 -0.90125,-1.57783 -0.86154,-2.36951 0.06356,-1.26687 0.10832,-1.29076 0.3734,-0.1993 0.16565,0.68206 0.88229,1.86792 1.59254,2.63524 0.71025,0.76732 1.08594,1.39513 0.83487,1.39513 -0.25107,0 -0.23852,0.34878 0.02791,0.77507 0.26642,0.42629 0.41018,1.34807 0.31946,2.04839 -0.09072,0.70032 0.44237,1.81643 1.18463,2.48023 2.70484,2.41892 0.56397,-5.24879 -2.7768,-9.9454 -1.7446,-2.45262 -2.95804,-4.78456 -2.26893,-4.36034 0.30343,0.1868 0.64176,-0.27045 0.75183,-1.01612 0.11007,-0.74567 0.55251,-1.47136 0.9832,-1.61265 0.59908,-0.19654 0.63565,0.12932 0.15562,1.38693 -1.38235,3.6216 0.58791,4.01042 2.42212,0.47799 0.66405,-1.27887 2.63061,-3.70986 4.37014,-5.4022 1.739522,-1.69233 3.162772,-3.57576 3.162772,-4.18539 0,-0.60962 0.26933,-1.10841 0.59851,-1.10841 0.32917,0 0.90022,-1.1161 1.26899,-2.48023 0.59156,-2.18827 1.86749,-3.47914 1.86749,-1.88934 0,0.91873 -1.45486,3.96892 -2.32711,4.87891 -0.43196,0.45064 -0.78538,1.20359 -0.78538,1.67321 0,0.46961 -0.72031,1.62803 -1.60069,2.57424 -2.110602,2.26846 -7.119962,9.27789 -7.093482,9.92567 0.01145,0.27993 1.26928,-0.86565 2.79518,-2.5457 3.30481,-3.63871 4.334862,-3.39589 1.61915,0.38168 -2.55621,3.55571 -3.53388,8.01179 -1.13062,5.1532 2.0311,-2.41592 2.60655,-1.79523 1.03809,1.1197 -1.28565,2.38933 -1.59032,4.15079 -0.71796,4.15079 0.28169,0 1.14171,-1.25561 1.91117,-2.79026 0.775672,-1.54705 1.838572,-2.79026 2.385562,-2.79026 0.88449,0 0.87997,0.11732 -0.0437,1.13393 -0.56662,0.62366 -1.03022,1.54444 -1.03022,2.04619 0,0.50174 -0.35016,1.26588 -0.778132,1.69807 -0.62304,0.62921 -0.59107,0.93197 0.160442,1.51915 1.00532,0.78549 0.93939,3.52358 -0.0849,3.52358 -0.338762,0 -0.442812,-0.27902 -0.231212,-0.62005 0.2116,-0.34104 0.08807,-0.62006 -0.27451,-0.62006 -0.36258,0 -0.65924,0.83708 -0.65924,1.86017 0,1.86387 0.88995,2.5403 1.427622,1.0851 0.15751,-0.42629 0.49971,0.062 0.76044,1.0851 0.9372,3.67746 2.46434,3.48386 2.51098,-0.3183 0.0167,-1.35867 0.39955,-2.81947 0.85086,-3.24621 0.67581,-0.63901 0.7461,-0.25631 0.39843,2.16938 -0.27628,1.92764 -0.19387,2.94528 0.23851,2.94528 0.36335,0 0.66916,-0.4883 0.67957,-1.0851 0.0172,-0.98546 0.0815,-0.97788 0.69978,0.0825 0.37447,0.64218 0.65693,2.31634 0.62769,3.72035 -0.68591,32.93539 -6.02815,57.41927 -13.173862,60.37675 -2.86307,1.18498 -2.80099,1.02271 -1.21096,3.1649 2.2034,2.96857 7.07753,-0.0178 9.303432,-5.70024 z m 5.60249,-23.85556 c 0,-0.70793 0.29652,-1.46968 0.65894,-1.69279 0.37799,-0.2327 0.48961,-1.17359 0.26179,-2.2068 -0.26445,-1.19931 -0.15008,-1.80114 0.34229,-1.80114 0.47789,0 0.60128,-0.54829 0.34885,-1.55014 -0.4771,-1.89344 0.28289,-2.02187 1.40199,-0.23693 0.59054,0.94191 0.63288,1.50294 0.14973,1.98419 -0.37048,0.36902 -0.6736,1.33847 -0.6736,2.15431 0,0.81584 -0.56025,2.19279 -1.245,3.05989 -1.16685,1.47759 -1.24499,1.49576 -1.24499,0.28941 z m 32.03306,-41.08526 c -0.59917,-0.96568 0.17497,-1.4822 1.09992,-0.73389 0.43625,0.35293 1.35342,0.77887 2.03817,0.94652 0.83097,0.20345 0.58442,0.32874 -0.74139,0.37675 -1.09251,0.0396 -2.17102,-0.22566 -2.3967,-0.58938 z m 9.561,-1.33401 c 0.33196,-0.33066 1.12355,-0.49143 1.75907,-0.35724 0.85582,0.18069 0.69929,0.33661 -0.60358,0.60121 -1.13594,0.23069 -1.54526,0.14427 -1.15549,-0.24397 z m 2.75894,-1.53239 c 0.59915,-0.15596 1.57958,-0.15596 2.17874,0 0.59915,0.15596 0.10894,0.28357 -1.08937,0.28357 -1.19831,0 -1.68853,-0.12761 -1.08937,-0.28357 z m -25.45873,-0.80854 c -1.37209,-0.55144 -2.41854,-1.7406 -1.94595,-2.21133 0.14605,-0.14547 1.36463,0.25428 2.70796,0.88834 1.34332,0.63405 2.86259,1.30767 3.37615,1.49691 0.51356,0.18924 0.0934,0.34843 -0.93375,0.35373 -1.02712,0.005 -2.4691,-0.23213 -3.20441,-0.52765 z m 46.15679,-0.62421 c -0.48982,-0.78945 0.95235,-0.78945 2.17874,0 0.75913,0.48866 0.67868,0.60285 -0.43013,0.61057 -0.75013,0.005 -1.53701,-0.26954 -1.74861,-0.61057 z m -11.62225,-0.497 c -1.59899,-0.10283 -3.24401,-0.59112 -3.65558,-1.0851 -0.8966,-1.0761 -0.21783,-1.13466 2.4429,-0.21076 1.47372,0.51173 2.43188,0.50075 3.74967,-0.043 1.50087,-0.61923 2.13568,-0.53516 4.17347,0.55275 2.16761,1.15721 2.24855,1.28307 0.82521,1.28307 -0.86798,0 -1.90243,-0.32301 -2.29877,-0.71779 -0.4515,-0.44973 -1.02105,-0.50762 -1.52512,-0.15501 -0.44248,0.30952 -2.11278,0.47864 -3.71178,0.3758 z m 7.80637,-2.2563 c -1.07162,-0.46452 -2.13861,-1.15116 -2.37111,-1.52587 -0.58482,-0.94255 -0.11606,-0.86204 2.92566,0.50254 1.45136,0.6511 3.05902,1.32664 3.57258,1.50119 0.52379,0.17803 0.2505,0.3282 -0.6225,0.34205 -0.85593,0.0136 -2.43302,-0.35538 -3.50463,-0.81991 z m 2.57088,-1.9235 c -1.41591,-1.19062 -1.58442,-1.52724 -0.69687,-1.39205 0.64384,0.0981 1.58841,0.80611 2.09905,1.57343 1.19308,1.79283 0.9006,1.755 -1.40218,-0.18138 z m -71.27604,-3.89149 c 0,-0.74937 1.181,-1.62305 1.6127,-1.19305 0.15668,0.15607 -0.14208,0.63671 -0.66391,1.0681 -0.59161,0.48907 -0.94879,0.53611 -0.94879,0.12495 z m 1.01988,-6.00306 c 0.19707,-0.51155 0.46841,-0.93009 0.60296,-0.93009 0.13456,0 0.24465,0.41854 0.24465,0.93009 0,0.51155 -0.27133,0.93009 -0.60296,0.93009 -0.33163,0 -0.44172,-0.41854 -0.24465,-0.93009 z m -4.13237,-5.14289 c 0,-0.3277 0.45249,-0.96988 1.00554,-1.42707 0.86997,-0.71917 0.97488,-0.67363 0.77812,0.33774 -0.23445,1.20516 -1.78366,2.15129 -1.78366,1.08933 z m -0.52922,-5.08806 c 0.64838,-1.85266 1.79209,-2.56004 1.75442,-1.0851 -0.02196,0.85973 -1.46618,2.94527 -2.03957,2.94527 -0.20123,0 -0.07291,-0.83707 0.28515,-1.86017 z m -1.95768,-2.63524 c 0.0017,-0.42629 0.72447,-1.61215 1.60616,-2.63525 1.01324,-1.17573 1.46921,-1.43972 1.23925,-0.71747 -0.2001,0.6285 -0.53306,1.81435 -0.7399,2.63525 -0.38492,1.52763 -2.11109,2.11584 -2.10551,0.71747 z m -0.98912,-3.72035 c 0.1995,-0.42629 0.52095,-1.20744 0.71435,-1.73589 0.19339,-0.52844 0.92436,-1.31708 1.62438,-1.75254 0.70001,-0.43545 1.15058,-0.56114 1.00127,-0.2793 -0.14932,0.28184 -0.6614,1.41926 -1.13796,2.52762 -0.47656,1.10835 -1.24858,2.01518 -1.71562,2.01518 -0.46703,0 -0.68592,-0.34878 -0.48642,-0.77507 z m 44.84655,-1.74641 c -0.66997,-1.07979 0.0931,-1.30847 0.94686,-0.28376 0.491,0.5893 0.53822,0.94507 0.12545,0.94507 -0.36409,0 -0.84663,-0.29759 -1.07231,-0.66131 z m -45.72493,-1.97393 c 0.0048,-1.20835 2.93758,-4.55494 3.50245,-3.99666 0.27755,0.27432 0.22693,0.69286 -0.1125,0.93008 -0.33943,0.23724 -0.95559,1.19865 -1.36925,2.13649 -0.76938,1.74432 -2.02625,2.32284 -2.0207,0.93009 z m 0.0193,-4.62862 c -0.01262,-0.77383 0.54436,-1.67544 1.27592,-2.06542 1.88457,-1.00464 1.96639,-0.48581 0.25277,1.6028 -1.42016,1.73093 -1.50759,1.75739 -1.52869,0.46262 z m -0.02239,-3.13904 c 0,-0.68072 3.84093,-3.95958 4.20894,-3.59302 0.35787,0.35647 -3.055,4.075 -3.74005,4.075 -0.25789,0 -0.46889,-0.21689 -0.46889,-0.48198 z m 0,-2.92833 c 0,-0.57385 2.48377,-2.79026 3.12684,-2.79026 0.35027,0 0.17799,0.69756 -0.38284,1.55014 -0.8751,1.33033 -2.744,2.17496 -2.744,1.24012 z m 1.86749,-9.6109 c 0,-0.34103 0.28013,-0.62005 0.6225,-0.62005 0.34238,0 0.6225,0.27902 0.6225,0.62005 0,0.34104 -0.28012,0.62006 -0.6225,0.62006 -0.34237,0 -0.6225,-0.27902 -0.6225,-0.62006 z m 47.30987,-1.19832 c 0,-0.72349 2.44147,-1.53692 2.98575,-0.99477 0.46654,0.4647 -1.06527,1.54961 -2.20763,1.56354 -0.42797,0.005 -0.77812,-0.25073 -0.77812,-0.56877 z m -46.82858,-0.8024 c 0.4141,-0.497 0.57536,-1.08049 0.35835,-1.29664 -0.59495,-0.59262 1.03724,-2.28449 2.19345,-2.27366 0.81966,0.008 0.84894,0.11309 0.15332,0.55194 -0.47291,0.29834 -0.8931,1.19717 -0.93375,1.99739 -0.0467,0.91932 -0.52496,1.5414 -1.29909,1.68978 -1.01095,0.19377 -1.09353,0.0768 -0.47228,-0.66881 z m 45.58358,-1.95877 c 0,-0.99612 1.7288,-3.21722 2.3449,-3.01266 1.09267,0.3628 0.94923,1.42761 -0.32178,2.38866 -1.06537,0.80556 -2.02312,1.10096 -2.02312,0.624 z m -46.06487,-2.24108 c 0,-0.34103 0.35281,-0.62006 0.78401,-0.62006 1.09857,0 2.63726,-2.47272 1.55564,-2.49995 -0.52368,-0.0132 -0.45572,-0.27014 0.20498,-0.77507 0.54362,-0.41544 1.15178,-1.17389 1.35148,-1.68544 0.20138,-0.51584 0.38498,-0.0842 0.41224,0.96909 0.03398,1.31315 -0.4896,2.41331 -1.69679,3.56533 -1.84421,1.75994 -2.61156,2.06731 -2.61156,1.0461 z m 43.88613,-1.86017 c -0.2116,-0.34104 -0.0881,-0.62006 0.27451,-0.62006 0.92318,0 0.82611,-1.68976 -0.11889,-2.06958 -0.54746,-0.22004 -0.56065,-0.32726 -0.0445,-0.3617 1.40658,-0.0939 2.80498,1.85628 2.01285,2.807 -0.84898,1.01895 -1.59046,1.10425 -2.12401,0.24434 z m -0.93375,-5.270487 c 0,-0.51155 0.42019,-0.93009 0.93375,-0.93009 1.12066,0 1.22541,-1.32163 0.18675,-2.35622 -1.04707,-1.04297 0.18547,-0.89324 1.63419,0.19852 1.06289,0.801 1.10379,1.0793 0.36168,2.46051 -0.9083,1.690517 -3.11637,2.134967 -3.11637,0.62728 z m -55.749258,-6.76994 c -0.664054,-0.48366 -1.067749,-1.00919 -0.8971,-1.16784 0.504221,-0.46876 3.111512,0.71039 3.111512,1.40719 0,0.88525 -0.787192,0.80017 -2.214412,-0.23935 z m -25.318641,-0.70998 c -0.64426,-0.64173 0.531814,-3.68112 1.42439,-3.68112 1.157237,0 1.513664,1.98719 0.561418,3.13008 -0.794347,0.95337 -1.410296,1.12429 -1.985808,0.55104 z m 24.3339,-2.12184 c -1.469583,-1.23098 -1.469583,-1.23098 0.55468,-0.559 2.193438,0.72813 3.270973,1.78998 1.816427,1.78998 -0.495838,0 -1.562836,-0.55394 -2.371107,-1.23098 z m -0.248318,-1.90755 c -0.224651,-0.36207 -1.151587,-0.94115 -2.059857,-1.28684 -1.651401,-0.62853 -1.651401,-0.62853 -0.09516,-1.489923 1.401581,-0.775787 1.432514,-0.869887 0.311249,-0.946837 -1.574621,-0.108064 2.604296,-1.327374 4.357488,-1.271413 3.286321,0.104898 8.134123,1.136748 5.758108,1.225608 -2.563341,0.09587 -3.285268,1.327415 -0.778123,1.327415 0.855935,0 1.556248,0.27903 1.556248,0.62006 0,0.34103 -0.770344,0.62995 -1.711872,0.64203 -0.941529,0.01208 -2.412181,0.42074 -3.268116,0.90811 -1.865759,1.06239 -3.511249,1.17227 -4.069969,0.27179 z m 2.610781,-2.756853 c 0.566522,-1.216656 0.549635,-1.545307 -0.0794,-1.545307 -1.101722,0 -2.391735,1.66377 -1.902002,2.45307 0.633686,1.0213 1.205042,0.75954 1.981405,-0.907763 z m 61.841516,2.861433 c 0,-0.30454 0.42019,-0.71432 0.93375,-0.91062 1.54026,-0.58874 1.05782,-1.64223 -0.93375,-2.038984 -2.55805,-0.509604 -2.35565,-1.457136 0.31125,-1.457136 2.51628,0 2.9333,-1.263409 0.88803,-2.69036 -1.66784,-1.163618 -0.56621,-1.851091 1.63215,-1.018551 1.58367,0.599749 1.66671,0.816325 1.30915,3.414752 -0.38177,2.774389 -0.38177,2.774389 2.09631,2.774389 1.36295,0 2.47809,0.27903 2.47809,0.62006 0,0.34103 -1.10397,0.62006 -2.45326,0.62006 -1.34929,0 -2.62638,0.27902 -2.83798,0.62005 -0.47701,0.76879 -3.42374,0.82589 -3.42374,0.06634 z M 94.53455,79.575659 c 0.02101,-0.616931 0.698,-2.516824 1.50443,-4.221982 1.71072,-3.617248 2.33152,-1.465926 0.69962,2.424451 -1.01837,2.427746 -2.26001,3.440373 -2.20405,1.797531 z M 73.827982,220.66662 c -0.229679,-4.72286 -1.658433,-6.15495 -3.621366,-3.62981 -1.665316,2.14228 -1.540031,3.03544 0.756909,5.39599 2.741159,2.81707 3.077269,2.60982 2.864457,-1.76618 z m 98.756598,-63.91335 c 2.23779,-3.18237 -5.63783,-13.35489 -14.48309,-18.70703 -6.53701,-3.95545 -8.24627,-0.93179 -2.34299,4.14475 3.30965,2.84614 7.21265,9.154 7.21265,11.65678 0,3.22078 7.74558,5.56176 9.61343,2.9055 z m -7.4371,-7.30806 c -0.61888,-1.36706 -2.79849,-4.16782 -4.84357,-6.22393 -2.04509,-2.05611 -3.56438,-3.89173 -3.37622,-4.07916 0.95022,-0.94649 10.40095,10.36966 10.40095,12.45392 0,1.16352 -1.22965,-0.049 -2.18116,-2.15083 z m -45.82089,4.03593 c -5.43961,-2.94477 -3.34664,-9.43943 4.66643,-14.4803 8.74538,-5.50154 10.84488,-17.91976 3.42615,-20.26513 -0.64647,-0.20439 -1.17542,-0.63183 -1.17542,-0.94988 0,-0.83025 2.1053,-0.71344 2.988,0.1658 1.22744,1.22263 0.84719,-0.0324 -0.65363,-2.15724 -1.82055,-2.57755 -2.88311,-3.40129 -5.00973,-3.88377 -1.3854,-0.31431 -1.59723,-0.56842 -1.03569,-1.2424 0.58468,-0.70173 -0.1234,-0.87854 -4.12215,-1.02932 -3.38128,-0.1275 -4.91177,-0.43383 -5.10733,-1.0222 -0.21244,-0.63921 0.0734,-0.71495 1.19505,-0.31669 0.81084,0.28791 3.2248,0.44206 5.36434,0.34257 3.49188,-0.16238 4.04079,-0.0189 5.36261,1.40178 0.8099,0.87048 1.83399,1.58268 2.27577,1.58268 0.55652,0 0.46768,-0.36931 -0.28926,-1.20244 -0.62839,-0.69165 -1.09248,-2.17964 -1.09248,-3.5028 0,-2.40585 -0.99739,-3.87613 -4.06461,-5.99176 -1.72462,-1.189557 -1.72462,-1.189557 0.60975,-0.7987 1.8435,0.30867 2.33437,0.1932 2.33437,-0.549147 0,-1.21257 -6.32668,-4.13772 -9.84348,-4.55116 -1.48185,-0.1742 -2.44678,-0.55264 -2.15364,-0.84464 0.29315,-0.292 1.4942,-0.2539 2.68064,0.08503 1.18224,0.33774 3.34191,0.61407 4.79926,0.61407 2.07886,0 2.64972,0.22709 2.64972,1.05409 0,0.80809 0.1709,0.88387 0.73229,0.32468 1.10045,-1.09614 -1.04122,-3.13363 -3.77462,-3.59099 -4.48376,-0.75025 -4.88483,-1.10641 -1.77669,-1.57772 2.78767,-0.42272 7.98653,-3.65075 5.87966,-3.65075 -0.4963,0 -2.19521,-0.56965 -3.77535,-1.26588 -2.18117,-0.96105 -3.1647,-1.110359 -4.08445,-0.62005 -2.48181,1.32301 -3.51912,0.61856 -1.14378,-0.776767 3.1432,-1.846394 3.21343,-3.603399 0.11621,-2.9076 -1.22334,0.274826 -2.71606,0.943006 -3.31714,1.484845 -1.93878,1.74769 -2.21996,1.045926 -0.357,-0.890969 1.02484,-1.065504 2.18992,-1.72882 2.69648,-1.535194 1.02697,0.392537 3.20191,-1.346367 3.20191,-2.559978 0,-0.622545 -0.38248,-0.673789 -1.59677,-0.213927 -1.97135,0.746569 -2.13822,0.748631 -2.13822,0.02644 0,-0.318051 0.58136,-0.762067 1.29191,-0.986702 2.19661,-0.694443 0.82609,-1.042442 -1.54125,-0.391351 -1.22847,0.337867 -3.78268,1.932553 -5.67603,3.543747 -1.89335,1.611193 -3.6221,2.75049 -3.84169,2.531771 -0.7598,-0.756823 5.34657,-6.062038 7.72792,-6.714026 1.29272,-0.353929 2.55619,-0.961228 2.80773,-1.349552 1.68487,-2.601107 -4.05061,-4.200159 -8.69614,-2.424489 -0.68371,0.261336 -0.84352,0.140277 -0.5146,-0.389838 0.26239,-0.422885 1.07868,-1.010667 1.81399,-1.306184 0.9548,-0.383728 1.04598,-0.548536 0.31902,-0.576605 -3.04586,-0.117607 -5.14942,1.667569 -6.82759,5.794193 -2.27316,5.58972 -0.17397,6.569766 3.52822,1.64721 2.62513,-3.490471 8.09263,-5.70185 9.29726,-3.760361 0.22958,0.37001 -0.52936,0.620057 -1.88199,0.620057 -3.39877,0 -10.89052,7.297222 -9.12535,8.888414 1.48836,1.34166 2.1659,1.301894 3.53736,-0.207609 0.61969,-0.682063 1.45302,-1.240115 1.85186,-1.240115 0.39883,0 1.66444,-0.835309 2.81246,-1.856241 1.14801,-1.020933 2.21883,-1.72524 2.37957,-1.565128 0.54115,0.539034 -1.37686,2.307416 -4.97248,4.584564 -2.75879,1.747168 -3.44301,2.471526 -3.00357,3.179757 0.45321,0.73044 0.72643,0.76043 1.34199,0.14728 1.1816,-1.176967 2.76366,-1.033692 1.76891,0.1602 -0.42621,0.51155 -1.15087,0.93009 -1.61034,0.93009 -0.6372,0 -0.53294,0.69878 0.43942,2.94527 1.36548,3.15471 2.68589,9.989295 3.38412,17.516615 0.8828,9.51716 6.3248,20.58794 8.4672,17.22502 0.87335,-1.37088 0.58268,-2.04207 -1.38602,-3.20045 -2.09426,-1.23226 -2.10332,-2.14759 -0.0102,-1.03178 1.00371,0.53506 1.29362,0.51129 1.27761,-0.10478 -0.0362,-1.39237 -2.4121,-3.74168 -3.40158,-3.36347 -0.51436,0.1966 -0.9352,0.0872 -0.9352,-0.24313 0,-1.14596 2.90215,-0.5933 4.1723,0.79453 2.97088,3.24612 3.09172,6.56799 0.3722,10.2316 -5.00895,6.74782 -17.17194,4.34997 -16.17554,-3.18889 0.33668,-2.54729 0.33668,-2.54729 -0.86362,-1.08347 -4.4674,5.44819 7.68974,12.77823 15.04294,9.07001 5.88815,-2.96939 8.92333,-7.10032 7.35781,-10.01405 -0.98404,-1.8315 -0.1424,-2.78405 1.03852,-1.17537 2.1245,2.89403 0.55384,7.06005 -3.72943,9.89198 -1.79506,1.18682 -3.6626,2.63662 -4.15009,3.22177 -0.48749,0.58515 -2.6159,1.8369 -4.7298,2.78166 -3.87539,1.73201 -5.18277,3.12268 -5.18277,5.51291 0,1.13585 0.24395,1.0257 1.90712,-0.86112 1.18376,-1.34294 4.35623,-3.36089 8.3641,-5.32026 9.12955,-4.46326 12.14744,-8.18763 9.99464,-12.33437 -1.18658,-2.2856 -0.30543,-2.59406 1.13873,-0.39863 2.02145,3.07303 -0.47483,9.05948 -4.68116,11.22613 -4.66562,2.40323 -10.49845,9.09689 -10.49845,12.04784 0,3.05514 3.41621,6.77098 6.22498,6.77098 0.51356,0 0.20208,-0.39609 -0.69218,-0.88021 z m -6.31092,-46.95729 c -0.94153,-0.31937 -1.71187,-0.97596 -1.71187,-1.45909 0,-1.14533 0.89069,-1.12068 1.86749,0.0517 0.88081,1.05715 2.9437,1.19906 5.17062,0.35571 1.50662,-0.57057 6.65804,0.29229 6.65577,1.11485 -0.002,0.62665 -10.10539,0.5734 -11.98201,-0.0631 z M 109.4363,92.117043 c 0,-0.53853 0.54065,-0.9519 1.245,-0.9519 0.68475,0 1.24499,0.1297 1.24499,0.28821 0,0.15852 -0.56024,0.58688 -1.24499,0.95191 -0.9937,0.52972 -1.245,0.47154 -1.245,-0.28822 z m 4.24077,-1.37547 c 0.44936,-0.17912 0.98627,-0.15709 1.19313,0.04895 0.20685,0.20604 -0.16082,0.35259 -0.81703,0.32567 -0.72518,-0.02975 -0.87268,-0.17668 -0.3761,-0.37462 z m 64.50082,61.454937 c 3.01473,-3.00291 -1.36421,-9.29062 -11.23599,-16.13374 -3.91849,-2.71629 -4.47479,-2.99488 -9.26199,-4.63829 -2.26595,-0.77788 -2.68922,-1.08334 -1.55624,-1.12308 4.88918,-0.17149 13.70201,4.96604 20.51643,11.96028 4.02582,4.13207 7.49599,3.54145 7.49599,-1.2758 0,-4.39889 -9.57349,-11.64927 -19.91994,-15.08616 -2.22544,-0.73925 -4.66667,-1.74179 -5.42496,-2.22786 -1.88144,-1.20604 -2.0488,-1.13798 -2.01973,0.82137 0.0222,1.49844 0.56936,1.9625 4.51311,3.82786 5.13552,2.42905 8.78128,4.89095 6.04407,4.08142 -0.85594,-0.25314 -1.99849,-0.84579 -2.53901,-1.317 -0.54052,-0.47121 -1.45093,-0.85675 -2.02312,-0.85675 -0.5722,0 -1.04036,-0.22734 -1.04036,-0.50521 0,-0.86129 -4.60492,-2.78576 -4.85779,-2.03014 -0.12427,0.37135 -0.59281,0.67518 -1.04121,0.67518 -0.44841,0 -0.9747,0.41383 -1.16956,0.91963 -0.20159,0.52329 -0.76687,0.76194 -1.3116,0.55372 -3.20175,-1.22381 0.45396,4.47606 4.02775,6.27993 4.29647,2.16865 11.46299,8.4666 13.42077,11.7942 2.72796,4.63667 5.44461,6.21162 7.38338,4.28044 z M 165.99698,138.8789 c -1.46959,-1.27079 -1.46959,-1.27079 0.55353,-0.2941 1.99078,0.96106 2.55783,1.56488 1.46958,1.56488 -0.30443,0 -1.21484,-0.57185 -2.02311,-1.27078 z m -3.78356,-1.98452 c -0.96404,-0.88253 -2.93163,-2.06412 -6.08975,-3.65707 -1.49804,-0.75562 -1.80813,-1.10668 -0.99251,-1.12366 0.65243,-0.0136 2.1044,0.67285 3.22659,1.52543 1.12219,0.85258 2.26912,1.55635 2.54875,1.56393 0.83871,0.0228 3.6816,2.43773 2.88724,2.45265 -0.40352,0.008 -1.11466,-0.33499 -1.58032,-0.76128 z m -10.8248,-1.45558 c 0.87187,-0.33326 0.87398,-0.55402 0.021,-2.19708 -1.21763,-2.34542 -3.58771,-3.50637 -4.91621,-2.40814 -1.18864,0.98262 -1.24162,2.49547 -0.0874,2.49547 0.47562,0 1.52609,0.54877 2.33436,1.21949 1.7376,1.44188 1.45428,1.34664 2.64827,0.89026 z m 34.49046,-1.6137 c 2.46701,-2.45734 -1.49805,-6.76312 -10.34757,-11.23675 -6.64099,-3.35717 -15.05035,-5.33396 -15.05035,-3.53789 0,0.35053 0.40365,0.63733 0.897,0.63733 0.49336,0 1.06805,0.27566 1.2771,0.61258 0.24173,0.3896 -0.65125,0.47177 -2.45326,0.22574 -5.26242,-0.71847 -3.51394,1.20587 3.18576,3.50618 6.75966,2.3209 12.87747,5.37578 16.94723,8.46244 2.89921,2.19888 4.32797,2.54172 5.54409,1.33037 z m -12.67336,-8.22705 c -0.66459,-0.5007 -0.91173,-0.91923 -0.5492,-0.93008 0.36253,-0.0108 1.2029,0.38994 1.86749,0.89065 0.66459,0.50069 0.91174,0.91923 0.54921,0.93008 -0.36253,0.0109 -1.20291,-0.38995 -1.8675,-0.89065 z m -6.18833,-2.83274 c -2.05425,-0.98925 -3.39249,-1.80736 -2.97389,-1.81802 0.8206,-0.0209 7.64262,3.07074 7.64262,3.46352 0,0.4734 -1.00219,0.12018 -4.66873,-1.6455 z m -12.61655,4.7713 c 1.30791,-2.04742 -1.81426,-6.60871 -4.52362,-6.60871 -0.67294,0 -1.22353,-0.27902 -1.22353,-0.62006 0,-0.90177 -1.19443,-0.759 -2.22321,0.26574 -1.13872,1.13426 -1.11858,1.55444 0.14095,2.94074 1.37363,1.5119 2.08226,1.43054 2.08226,-0.23906 0,-1.2541 0.0856,-1.28774 0.98827,-0.38858 1.72734,1.72056 -0.38137,4.04847 -3.32264,3.66803 -0.42797,-0.0554 -0.77812,0.18263 -0.77812,0.52886 0,1.72214 7.79432,2.1207 8.85964,0.45304 z m -9.23707,-7.59061 c 0.23265,-0.60388 0.0935,-0.88735 -0.36136,-0.73631 -0.93054,0.30896 -1.44289,1.71821 -0.62468,1.71821 0.33427,0 0.77799,-0.44185 0.98604,-0.9819 z m 44.5748,-2.15812 c 4.3044,-0.69194 7.08293,-2.04606 6.67909,-3.25508 -1.07207,-3.20959 -29.75978,-4.31168 -30.80661,-1.1835 -0.18707,0.55897 1.35344,0.7825 5.86758,0.85139 6.12123,0.0934 6.12123,0.0934 0.20749,0.52998 -3.33694,0.24633 -6.64527,0.18418 -7.59261,-0.14263 -3.0477,-1.05138 -4.1582,0.35946 -1.33596,1.69727 4.17009,1.97673 18.92103,2.79821 26.98102,1.50257 z m -7.92829,-3.50549 c 0.94623,-0.14253 2.34685,-0.13872 3.11249,0.008 0.76564,0.14718 -0.009,0.26379 -1.72043,0.25913 -1.71187,-0.005 -2.3383,-0.12507 -1.39206,-0.26759 z m -4.52167,-4.19792 c 13.63661,-1.04272 28.01242,-5.67943 28.01242,-9.03502 0,-2.123797 -8.04195,-2.274417 -14.93996,-0.27982 -1.88306,0.54449 -7.48554,1.6777 -12.44996,2.51823 -14.25426,2.41341 -18.80147,5.75656 -5.0268,3.69575 3.44498,-0.5154 6.75566,-0.92861 7.35707,-0.91823 2.21176,0.0381 -0.68652,1.04889 -4.19777,1.46392 -7.53232,0.89035 -8.71497,1.15447 -8.71497,1.94627 0,0.93922 1.03702,1.38104 2.80124,1.19346 0.68475,-0.0728 3.90617,-0.33586 7.15873,-0.58456 z m 7.46998,-5.02842 c 1.88305,-0.46933 3.84392,-0.74987 4.35748,-0.62342 0.51356,0.12646 0.32,0.26229 -0.43013,0.30185 -0.75014,0.0396 -1.53701,0.35095 -1.74861,0.69198 -0.2116,0.34103 -1.55872,0.58921 -2.99361,0.55149 -2.60887,-0.0686 -2.60887,-0.0686 0.81487,-0.9219 z m -6.53624,-3.04537 c 12.6449,-2.111337 30.85372,-9.135687 35.09787,-13.539557 5.20199,-5.397753 -0.58987,-5.468276 -16.13053,-0.19641 -6.44646,2.18684 -20.77709,5.99072 -22.56925,5.99072 -0.50313,0 -1.99945,0.46765 -3.32517,1.03922 -1.32571,0.57157 -2.92639,1.13179 -3.55707,1.24494 -0.63067,0.11314 -1.72951,0.61234 -2.44186,1.10934 -1.9048,1.32894 0.11295,1.94585 2.44298,0.74693 0.97243,-0.50037 3.72893,-1.11339 6.12555,-1.36227 5.249,-0.5451 6.38088,-0.73937 8.40372,-1.44243 1.61289,-0.56057 6.68055,-2.01653 10.73749,-3.08492 1.28356,-0.33803 2.46874,-0.39704 2.63372,-0.13114 0.30273,0.48791 -6.0664,2.50039 -7.91331,2.50039 -0.54817,0 -1.09003,0.26291 -1.20416,0.58425 -0.17774,0.50046 -7.40718,2.16142 -14.83621,3.40862 -3.38168,0.56773 -3.8692,1.05713 -2.96149,2.972987 0.5973,1.26073 1.11965,1.56522 2.33245,1.35967 0.85954,-0.14569 4.08391,-0.68584 7.16527,-1.20034 z m -48.56268,-7.109717 c 1.20261,-2.3787 2.18657,-4.42894 2.18657,-4.55607 0,-0.51618 -3.73963,-0.29397 -4.07216,0.24197 -0.19735,0.31805 -1.11262,0.56658 -2.03394,0.55229 -2.55507,-0.03964 1.98443,-2.3932 4.68358,-2.42825 2.31902,-0.03012 4.09703,-2.23568 2.57616,-3.19564 -0.65727,-0.414862 -0.60652,-0.533791 0.23099,-0.5412 0.59037,-0.0052 1.50796,-0.846572 2.03911,-1.869667 1.16073,-2.235817 0.2698,-2.51196 -2.8762,-0.891473 -1.53243,0.789338 -1.74311,1.133761 -1.13787,1.860172 0.57683,0.692307 0.56964,1.099266 -0.0322,1.821558 -1.07948,1.29559 -2.02552,1.16273 -1.58414,-0.22249 0.43937,-1.378887 -1.11002,-2.860344 -2.45417,-2.346568 -0.51792,0.197966 -0.94168,0.08967 -0.94168,-0.24066 0,-0.638196 0.0732,-0.66559 2.49,-0.932154 1.68037,-0.185339 5.96215,-1.680188 6.58246,-2.29806 0.20939,-0.208576 -0.45751,-0.810993 -1.48201,-1.338706 -1.94005,-0.999303 -3.88725,-0.06805 -2.96515,1.418087 0.20625,0.332406 0.10966,0.767719 -0.21464,0.967362 -0.3243,0.199643 -0.76559,0.07941 -0.98064,-0.267184 -0.21505,-0.346594 -1.00475,-0.631214 -1.75489,-0.632489 -1.15194,-0.002 -1.02532,-0.209454 0.81487,-1.335313 2.57021,-1.572506 1.5703,-2.282711 -1.2028,-0.854307 -1.07812,0.555334 -1.90969,0.706734 -1.90969,0.347688 0,-0.349789 -0.31514,-0.63598 -0.70031,-0.63598 -0.45026,0 -0.56332,0.682317 -0.31663,1.910931 0.44825,2.232438 -0.46423,4.289643 -1.90269,4.289643 -0.90683,0 -0.9128,-0.109218 -0.0593,-1.0851 0.52196,-0.596805 0.82909,-1.413144 0.68253,-1.814086 -0.72334,-1.978844 1.09499,-5.934552 2.24955,-4.89379 0.89173,0.803841 1.46668,0.875448 2.84328,0.354119 0.94904,-0.359409 2.21926,-0.497381 2.82271,-0.306605 1.10207,0.348413 3.09586,-1.108051 3.09586,-2.261531 0,-0.675428 -2.3382,-0.130412 -3.53957,0.825048 -0.47031,0.37404 -1.20009,0.341044 -2.01035,-0.0909 -0.69961,-0.372951 -2.0481,-0.492477 -2.99666,-0.265614 -1.72464,0.412478 -1.72464,0.412478 -0.2588,-1.179207 1.85213,-2.01114 1.25535,-3.140811 -1.35726,-2.569234 -1.75415,0.383765 -1.86643,0.324692 -1.10952,-0.583756 1.90758,-2.289475 6.02708,-0.787694 5.02693,1.832587 -0.55005,1.441071 -0.53913,1.444557 3.38186,1.079844 4.80324,-0.446775 5.63597,0.338455 3.12616,2.947859 -1.4958,1.55516 -1.57795,1.809787 -0.58389,1.809787 0.63625,0 1.61191,0.410235 2.16813,0.911633 0.90771,0.818251 1.18545,0.644123 2.71132,-1.699899 1.92775,-2.961372 1.9296,-4.160443 0.008,-5.114754 -3.86556,-1.919632 8.2628,-6.203253 30.60489,-10.80936 17.21997,-3.550116 26.31711,-7.785834 23.30109,-10.849215 -0.75432,-0.766163 -7.53534,0.612448 -10.55157,2.145178 -1.24167,0.63097 -4.19808,1.623315 -6.56981,2.205211 -2.37171,0.581896 -5.43271,1.557801 -6.80221,2.16868 -9.48416,4.230511 -13.18236,5.639392 -18.67494,7.114474 -8.08875,2.172305 -10.70994,3.213862 -13.47727,5.355311 -1.24977,0.967109 -3.21064,1.936097 -4.35749,2.153305 -2.28206,0.432211 -1.05237,-0.985918 2.44536,-2.820091 2.23369,-1.171326 0.98108,-2.088555 -2.26978,-1.662046 -2.88327,0.378282 -2.88327,0.378282 -1.08167,-0.627275 1.18855,-0.663392 2.55157,-0.884328 4.00565,-0.649289 1.52606,0.246675 3.93993,-0.200985 7.84713,-1.455288 3.10369,-0.996354 8.02412,-2.555984 10.9343,-3.465842 8.74226,-2.733238 18.76069,-8.444368 17.32379,-9.875635 -0.17521,-0.174526 -2.94673,0.966325 -6.15893,2.535226 -8.38048,4.093185 -12.7952,5.642537 -22.99232,8.069191 -19.78893,4.709255 -23.03244,7.131203 -23.03244,17.198466 0,4.740068 0.1312,5.315399 1.40063,6.141997 2.35112,1.530956 4.00005,1.823266 4.94961,0.877426 0.73623,-0.733341 1.06323,-0.741265 2.01396,-0.0488 1.18531,0.86332 0.89286,1.23768 -3.9587,5.06752 -0.87032,0.68703 -0.78744,0.92164 0.73011,2.0669 0.94153,0.71055 1.7157,1.89644 1.72037,2.63532 0.01,1.51114 0.63767,4.13367 0.99003,4.13367 0.12695,0 1.21477,-1.94622 2.41739,-4.32493 z m -9.32965,-14.896854 c -0.4869,-0.784743 0.33717,-0.784743 1.55625,0 0.80469,0.517995 0.78826,0.60238 -0.11889,0.610562 -0.57895,0.0052 -1.22576,-0.269531 -1.43736,-0.610562 z m 0.66483,-3.652127 c -0.20887,-0.336632 0.11634,-0.889468 0.7227,-1.228526 1.04445,-0.584025 1.04533,-0.638397 0.0167,-1.033167 -0.59719,-0.229185 -0.92241,-0.680038 -0.72271,-1.001894 0.45358,-0.731026 2.11975,0.562159 2.11975,1.645225 0,1.116002 -1.66537,2.377541 -2.13641,1.618362 z m 50.06878,-18.646044 c 0,-0.327887 1.19052,-0.909894 2.64561,-1.29335 1.45509,-0.383457 4.58699,-1.22746 6.95978,-1.875565 3.9139,-1.069047 5.49707,-1.150569 4.57867,-0.235768 -0.26243,0.261395 -13.31474,3.980456 -14.02844,3.997192 -0.0856,0.002 -0.15562,-0.264622 -0.15562,-0.592509 z m 9.02622,34.090705 c 20.05263,-5.51989 32.02357,-10.377795 37.57995,-15.250257 1.58534,-1.390199 4.70324,-3.729704 6.92867,-5.198899 4.64402,-3.065906 9.33747,-7.350504 9.33747,-8.52406 0,-0.984954 -1.01589,-1.051806 -1.60305,-0.105491 -1.81909,2.931817 -20.89654,9.922799 -55.82241,20.456275 -2.75703,0.831509 -4.82436,1.796468 -4.82436,2.251852 0,0.43827 -0.9104,1.34976 -2.02312,2.02553 -1.98727,1.20692 -1.99489,1.22873 -0.43022,1.231 0.87609,0.0013 2.13665,-0.40734 2.80124,-0.90805 0.66459,-0.5007 1.65027,-0.91924 2.1904,-0.93008 0.54013,-0.01085 2.7416,-0.73189 4.89218,-1.602321 4.02025,-1.62717 7.43865,-1.945714 4.02672,-0.375231 -0.99466,0.457836 -2.60152,1.225152 -3.57079,1.705162 -0.96927,0.48 -2.22983,0.88004 -2.80124,0.88899 -3.4684,0.05428 -5.79404,2.10753 -4.37106,3.85909 1.63709,2.0151 2.01508,2.03852 7.68962,0.47649 z m 5.60248,-3.73179 c 0.2116,-0.34103 1.13854,-0.60044 2.05986,-0.57647 1.49575,0.03891 1.54181,0.10064 0.43014,0.57647 -1.72944,0.74025 -2.9493,0.74025 -2.49,0 z m 9.02623,-3.091656 c 0.51356,-0.335333 1.61071,-0.613969 2.43812,-0.619191 1.99798,-0.01261 1.49158,0.339954 -1.19313,0.830659 -1.53285,0.280173 -1.90193,0.217484 -1.24499,-0.211468 z m -8.9951,-1.76847 c 0.63247,-0.555848 7.8353,-3.200618 8.71664,-3.200618 1.33479,0 -1.01466,1.262048 -4.52626,2.431365 -4.21631,1.403969 -5.09644,1.565539 -4.19038,0.769253 z m 18.95507,-2.482826 c 0,-0.645137 6.22021,-2.587545 8.14719,-2.544153 1.14148,0.02571 0.82981,0.30129 -1.29971,1.149266 -3.42021,1.361923 -6.84748,2.060086 -6.84748,1.394887 z m -22.72119,-0.963588 c 28.96378,-9.695157 40.28057,-15.191264 47.77674,-23.203227 4.98445,-5.327418 3.90745,-6.165796 -3.29763,-2.567012 -5.6299,2.812009 -17.24365,7.155274 -35.51275,13.280922 -16.35112,5.482546 -22.62545,9.995638 -10.36029,7.452091 1.9192,-0.398001 1.9564,-0.371358 0.77144,0.552536 -0.68475,0.533886 -1.72079,0.979575 -2.3023,0.990421 -0.58151,0.01085 -1.80962,0.714208 -2.72911,1.563026 -0.9195,0.848819 -3.29876,2.353116 -5.28726,3.342883 -3.43294,1.708736 -4.05674,2.558812 -1.87192,2.550957 0.54209,-0.002 6.30798,-1.785118 12.81308,-3.962597 z m 2.17875,-6.264808 c 0.85593,-0.487378 2.02645,-0.89603 2.60115,-0.908115 0.5747,-0.01208 1.48501,-0.460343 2.0229,-0.99613 0.71823,-0.715411 18.22665,-7.086589 19.47442,-7.086589 1.98336,0 -1.53762,1.7029 -7.75789,3.752049 -4.36527,1.438054 -8.21698,2.831588 -8.55935,3.096742 -0.97462,0.754796 -7.36493,3.073941 -8.40373,3.049844 -0.55748,-0.01293 -0.30663,-0.378747 0.6225,-0.907801 z M 78.228811,78.526252 c 1.168958,-0.645575 1.277585,-0.888803 0.525361,-1.176327 -0.527982,-0.201811 -1.430863,0.168658 -2.03702,0.835827 -1.251295,1.377245 -0.62219,1.518951 1.511659,0.3405 z M 147.4627,73.475209 c 5.29032,-1.7923 11.75645,-3.355795 21.42218,-5.179838 11.89797,-2.245292 33.34921,-10.693729 35.51605,-13.987775 1.97086,-2.996121 0.2874,-3.154957 -5.09104,-0.480345 -5.21921,2.595432 -20.35975,6.962177 -33.84875,9.762458 -17.04827,3.539174 -25.63079,6.419316 -24.21007,8.124468 0.38397,0.460836 0.5754,1.670751 0.4254,2.688701 -0.20398,1.384422 -0.0853,1.695869 0.47111,1.235926 0.4091,-0.338191 2.8009,-1.311808 5.31512,-2.163595 z m -4.87396,-1.092763 c 0.42675,-1.297375 10.11721,-4.300788 18.82616,-5.834887 4.5383,-0.79943 0.12005,0.999476 -5.60248,2.281072 -3.42374,0.766767 -7.85513,2.048603 -9.84754,2.848525 -2.23342,0.896689 -3.52806,1.167143 -3.37614,0.70529 z m 21.62741,-5.938049 c 0.51356,-0.275437 2.61449,-0.855933 4.66873,-1.289991 2.05425,-0.434059 4.82042,-1.188483 6.14706,-1.676499 2.40804,-0.885821 3.93214,-0.626732 2.2835,0.388185 -1.06837,0.657703 -11.34025,3.124013 -12.9026,3.097954 -0.93216,-0.01555 -0.96666,-0.106696 -0.19669,-0.519649 z m 17.74119,-4.569521 c 0.68475,-0.401453 2.92575,-1.324154 4.97999,-2.050447 2.05424,-0.726293 4.22521,-1.535304 4.82436,-1.797801 0.64449,-0.282359 1.08937,-0.215148 1.08937,0.164579 0,0.723738 -6.25821,3.211177 -8.07909,3.211177 -0.65169,0 -1.35803,0.279026 -1.56963,0.620057 -0.2116,0.341032 -0.85841,0.611573 -1.43736,0.601203 -0.8847,-0.01585 -0.85401,-0.135301 0.19236,-0.748768 z m 14.62871,-5.060318 c 0,-0.264029 4.81893,-2.852864 5.3104,-2.852864 1.19189,0 -0.15923,1.285336 -2.21051,2.102875 -2.61633,1.042747 -3.09989,1.159739 -3.09989,0.749989 z M 93.80713,71.531569 c 0.76184,-1.665494 -0.0363,-5.168725 -1.17758,-5.168725 -1.45548,0 -2.72719,3.98177 -1.81433,5.680764 0.87171,1.622433 2.1127,1.410049 2.99191,-0.512039 z m -2.03501,-0.08414 c -0.1974,-0.318143 0.25994,-1.104028 1.01631,-1.746412 1.34914,-1.14583 1.35771,-1.145595 0.45219,0.01243 -0.50766,0.64922 -0.82965,1.300281 -0.71552,1.446801 0.11412,0.14652 0.07214,0.401225 -0.09329,0.566011 -0.16544,0.164786 -0.4623,0.03931 -0.65969,-0.278831 z m -0.38827,-2.218401 c 0,-0.128758 0.49022,-0.617054 1.08937,-1.0851 0.98732,-0.771272 1.00934,-0.74934 0.23503,0.234106 -0.81321,1.032859 -1.3244,1.361323 -1.3244,0.850994 z m 92.90191,-1.58438 c 8.47048,-2.80575 15.57523,-5.382378 15.78834,-5.725839 1.09651,-1.767245 -1.25878,-1.520788 -7.12638,0.7457 -3.52298,1.360831 -10.23828,3.627804 -14.92288,5.037718 -4.6846,1.409913 -9.00768,2.984198 -9.60683,3.498409 -1.2577,1.079395 -1.45677,2.250121 -0.31125,1.830449 0.42797,-0.15679 7.70851,-2.580687 16.179,-5.386437 z M 83.769409,71.323304 c -0.621685,-0.991574 -0.621685,-1.488657 0,-2.48023 0.430695,-0.686948 0.507258,-1.240115 0.171642,-1.240115 -0.814989,0 -1.894671,2.096816 -1.894671,3.679581 0,0.869308 0.401735,1.280879 1.250271,1.280879 1.094443,0 1.153366,-0.154562 0.472758,-1.240115 z"
-           style="fill:#b3b3b3;stroke:#000000" />
+           id="path3261"
+           inkscape:connector-curvature="0" />
       </g>
     </g>
     <g
-       inkscape:label="Layer 1"
+       transform="translate(-76.437902,124.59458)"
        id="layer1-1"
-       transform="translate(-76.437902,124.59458)">
+       inkscape:label="Layer 1">
       <path
-         inkscape:connector-curvature="0"
-         style="fill:#000000"
-         d="m 357.46891,198.7627 c -0.25309,-0.2531 -4.60633,-1.12253 -9.67387,-1.93208 -5.06752,-0.80954 -9.84096,-1.9925 -10.60765,-2.62878 -3.11316,-2.58369 -23.41771,-6.91363 -35.25768,-7.51868 -13.03966,-0.66637 -25.61015,-2.28571 -29.43528,-3.79189 -1.82193,-0.71741 -2.11485,-0.0895 -1.74391,3.73836 0.74294,7.66642 -1.69467,9.50477 -12.90351,9.7313 -5.35912,0.10831 -11.26519,0.59074 -13.12462,1.07207 -2.46779,0.63881 -4.03454,0.15273 -5.80169,-1.79993 -2.18161,-2.41065 -2.62358,-2.47244 -4.47104,-0.62498 -1.34625,1.34625 -3.23292,1.76222 -5.49523,1.21157 -1.89482,-0.4612 -5.08573,-1.01456 -7.09093,-1.22968 -2.00519,-0.21512 -4.69652,-1.26899 -5.98073,-2.34194 -1.28421,-1.07292 -3.8301,-2.68819 -5.65754,-3.58944 -6.43476,-3.17351 -9.96905,-5.44338 -10.07924,-6.4733 -0.0613,-0.57246 -0.86007,-2.83507 -1.77515,-5.028 -2.55195,-6.11558 -1.90042,-33.9581 0.85921,-36.71773 0.87621,-0.87622 1.21552,-3.20947 0.78197,-5.37724 -0.90041,-4.502 2.44192,-9.02694 6.76431,-9.15772 2.7559,-0.0834 2.75485,-0.0961 -0.10275,-1.24803 -4.37757,-1.76458 -1.8187,-8.39625 4.54844,-11.7879 1.6447,-0.87609 2.99036,-2.39921 2.99036,-3.3847 0,-3.11538 5.47037,-3.40625 11.00058,-0.58496 2.91052,1.48486 7.99622,5.48894 11.30154,8.898 5.71226,5.89153 5.87162,5.96589 3.22042,1.50254 -1.53407,-2.58265 -3.14051,-6.68969 -3.56986,-9.12679 -0.42936,-2.43709 -1.58792,-6.00571 -2.57461,-7.93026 -0.98667,-1.92455 -1.67872,-4.994368 -1.53788,-6.821813 0.14084,-1.827444 -0.19549,-3.943824 -0.74738,-4.703057 -1.61709,-2.224618 -3.99077,-19.33706 -3.62954,-26.166346 0.18276,-3.455093 -0.0565,-6.670797 -0.53177,-7.146025 -0.47521,-0.475216 -0.042,-2.453587 0.96259,-4.396353 2.85746,-5.525714 3.77922,-12.824141 2.22801,-17.641125 -0.78039,-2.423324 -1.77321,-9.190623 -2.20626,-15.038445 -0.43306,-5.847822 -1.55184,-17.5102403 -2.48619,-25.9164845 -1.73582,-15.6169675 -1.56242,-26.4965085 0.49779,-31.2326865 0.63595,-1.461955 1.47686,-4.153282 1.86869,-5.980727 1.02237,-4.768287 8.62292,-14.619555 11.27942,-14.619555 1.31284,0 2.94606,-1.801063 3.91687,-4.319414 l 1.66512,-4.319414 4.0633,4.651677 c 2.23483,2.558422 3.72594,3.597965 3.31361,2.310089 -0.91184,-2.847983 1.67622,-8.955342 3.79493,-8.955342 3.12505,0 12.30643,26.273255 15.80367,45.223468 3.53712,19.1663696 11.37117,46.860206 16.53223,58.442469 1.38003,3.097033 2.40463,11.314433 3.06567,24.587434 0.68668,13.78737 1.86177,22.973687 3.81021,29.786054 4.03563,14.109866 9.13422,23.868776 13.7054,26.232626 3.83532,1.98333 16.94292,2.74285 19.54814,1.13274 0.75834,-0.46868 5.48559,-0.83917 10.50501,-0.8233 9.66389,0.0305 13.08004,1.35764 24.16505,9.38758 3.08215,2.2327 6.96664,4.05945 8.6322,4.05945 1.66555,0 3.96812,0.93982 5.11679,2.08851 4.57694,4.57694 1.86624,5.87811 -10.85121,5.20865 -12.66623,-0.66675 -24.37874,3.45457 -32.82338,11.54968 -2.24197,2.14915 -6.91714,5.3767 -10.38928,7.17231 -3.47215,1.7956 -6.31299,3.59301 -6.31299,3.99425 0,3.97664 13.76529,20.00038 19.84875,23.1053 2.60627,1.33022 5.87799,3.67836 7.27051,5.2181 1.59902,1.7681 4.14541,2.79952 6.91147,2.79952 2.50045,0 4.85574,0.85073 5.48922,1.98269 0.88722,1.58539 2.03056,1.71854 5.70573,0.66453 2.52788,-0.725 5.7749,-1.31817 7.21556,-1.31817 2.28864,0 2.37366,0.23698 0.67331,1.87671 -1.90768,1.83965 -11.28857,4.95094 -12.19491,4.04461 z m -108.64029,-6.03515 c 0.81591,-1.52456 1.05411,-3.16926 0.52933,-3.65489 -0.52479,-0.48562 -1.22116,-0.13536 -1.54749,0.77836 -0.32633,0.91372 -1.4406,1.66131 -2.47614,1.66131 -1.03556,0 -1.88283,0.89711 -1.88283,1.99358 0,2.94923 3.6662,2.41854 5.37713,-0.77836 z m -17.35893,-2.95497 c 0.0112,-0.59138 -0.57773,-0.7056 -1.30871,-0.25382 -2.09833,1.29684 -1.5512,-0.8548 0.98729,-3.88251 1.57532,-1.87893 1.12161,-1.70519 -1.41826,0.54309 -2.05402,1.81821 -4.68959,3.31339 -5.8568,3.32263 -1.16723,0.009 -2.40081,0.84763 -2.74132,1.8631 -0.42827,1.27721 -0.0611,1.50143 1.19127,0.72744 3.09335,-1.91181 6.50768,-1.57779 6.52912,0.63872 0.0178,1.84358 0.17968,1.8572 1.3087,0.11015 0.7086,-1.09647 1.29752,-2.47743 1.30871,-3.0688 z m 2.42177,1.04006 c -0.40919,-0.4092 -1.15236,0.32842 -1.65145,1.63916 -0.72125,1.89416 -0.5686,2.04681 0.744,0.744 0.9083,-0.90155 1.31665,-1.97396 0.90745,-2.38316 z m 21.33466,-3.28746 c 0,-1.25659 -0.42225,-1.01093 -1.14223,0.66452 -0.62823,1.46196 -1.14222,3.55521 -1.14222,4.65168 0,1.25659 0.42225,1.01093 1.14222,-0.66452 0.62823,-1.46196 1.14223,-3.55521 1.14223,-4.65168 z m 2.86308,3.65489 c 0.01,-1.6447 0.3527,-4.23635 0.7616,-5.75922 0.52767,-1.96521 0.1238,-2.76886 -1.3915,-2.76886 -1.28356,0 -1.65233,0.48263 -0.92473,1.21023 0.66903,0.66903 0.75143,3.24447 0.18426,5.75922 -0.57605,2.55415 -0.50452,4.54899 0.16313,4.54899 0.654,0 1.19726,-1.34566 1.20724,-2.99036 z m 3.969,0.33226 c 0,-1.46195 -0.59808,-2.6581 -1.32905,-2.6581 -0.73098,0 -1.32905,1.19615 -1.32905,2.6581 0,1.46196 0.59807,2.6581 1.32905,2.6581 0.73097,0 1.32905,-1.19614 1.32905,-2.6581 z m -19.12556,-3.46628 c 1.10198,-2.63742 1.68627,-5.11266 1.29842,-5.50052 -0.61151,-0.61151 -1.53914,1.34211 -4.09992,8.63454 -1.35348,3.85438 0.9655,1.26014 2.8015,-3.13402 z m 80.9264,-1.84992 c 0.45177,-0.73098 -0.111,-1.32905 -1.25061,-1.32905 -1.1396,0 -2.07201,0.59807 -2.07201,1.32905 0,0.73098 0.56277,1.32905 1.25061,1.32905 0.68783,0 1.62024,-0.59807 2.07201,-1.32905 z m -1.91095,-2.86541 c 3.69601,-1.7956 5.1786,-3.11055 3.97098,-3.52198 -1.05992,-0.36112 -2.15638,0.0312 -2.43659,0.87183 -0.28021,0.84062 -1.24243,1.52841 -2.13827,1.52841 -1.59597,0 -7.5101,3.86179 -6.04137,3.94489 0.41093,0.0232 3.40129,-1.24717 6.64525,-2.82315 z m -13.37313,-7.9713 c 0,-0.63965 -3.58843,0.64843 -7.9743,2.86241 -4.38587,2.21397 -7.9743,4.64995 -7.9743,5.41327 0,0.76332 3.58843,-0.52476 7.9743,-2.8624 4.38587,-2.33765 7.9743,-4.77362 7.9743,-5.41328 z m 5.246,0.49375 c 0.0386,-0.93729 1.41587,-2.24504 3.06057,-2.90613 1.89892,-0.76328 2.22601,-1.23272 0.89619,-1.28622 -1.15178,-0.0463 -3.42009,1.32713 -5.04065,3.05215 -1.62056,1.72502 -5.30639,4.26683 -8.19073,5.64847 -2.88433,1.38163 -5.2511,2.96131 -5.25949,3.51038 -0.0267,1.75089 14.46095,-6.24215 14.53411,-8.01865 z m 10.70125,0.70734 c 0.002,-1.82516 -2.23143,-1.03013 -5.60171,1.99358 -1.83321,1.6447 -4.46235,3.75812 -5.84254,4.69649 -1.38018,0.93838 0.62985,0.0413 4.46674,-1.99357 3.83689,-2.03485 6.97677,-4.14826 6.97751,-4.6965 z m -105.76851,4.9101 c 1.47174,-2.01271 2.67716,-2.1285 16.72349,-1.60633 3.50598,0.13034 8.06268,-0.78542 11.01219,-2.21309 2.7673,-1.33949 4.86055,-2.53283 4.65168,-2.65186 -0.20889,-0.11904 -5.91284,0.10877 -12.67545,0.50624 -6.76262,0.39748 -12.29479,0.41531 -12.29372,0.0396 0.001,-0.37567 2.35944,-2.14005 5.24082,-3.92084 2.88138,-1.7808 5.59001,-4.63686 6.01918,-6.34682 0.42917,-1.70995 2.40771,-4.73015 4.39675,-6.71156 3.71351,-3.69926 9.59715,-5.39108 9.59715,-2.75962 0,0.97111 0.71669,0.88132 2.09487,-0.26246 1.72607,-1.43252 2.28486,-1.43119 3.17403,0.008 0.59914,0.96941 1.80255,1.29904 2.70541,0.74105 0.90962,-0.56217 2.11634,-0.21206 2.73844,0.79452 0.85289,1.38002 1.36642,1.11238 2.20255,-1.1479 l 1.09036,-2.94749 3.62958,3.36553 c 1.99626,1.85105 3.62957,4.17446 3.62957,5.16314 0,0.98868 0.89711,2.14184 1.99358,2.56261 2.58445,0.99175 2.52314,0.54309 -0.71313,-5.21884 -1.73552,-3.08994 -2.09318,-4.61906 -0.99679,-4.26169 0.94045,0.30654 2.54984,2.30741 3.57639,4.44636 2.24586,4.67947 4.37629,6.28 5.63919,4.23659 0.6778,-1.09669 1.49962,-1.03344 3.02545,0.23289 2.73034,2.26598 2.66283,0.85737 -0.16578,-3.45965 -2.20395,-3.36364 -2.19008,-3.4278 0.55267,-2.55728 1.55616,0.4939 3.20761,0.25496 3.69566,-0.53473 0.54178,-0.87663 1.92585,-0.10104 3.58599,2.00951 1.48701,1.89043 3.01974,3.12106 3.40607,2.73475 0.38631,-0.38632 -0.01,-1.56072 -0.88059,-2.60978 -2.48992,-3.00017 0.55159,-3.73896 3.22614,-0.78362 2.76724,3.05777 5.76398,3.60901 3.2676,0.60106 -0.92465,-1.11413 -1.25206,-2.45481 -0.72758,-2.97929 0.52449,-0.52447 1.53655,0.0881 2.24901,1.36117 1.958,3.49873 4.19774,2.85366 2.34576,-0.67559 -1.52269,-2.90173 -1.49143,-2.92143 1.05467,-0.66453 2.92799,2.59541 5.84732,3.23338 3.34491,0.73098 -0.87717,-0.87717 -1.59486,-1.9238 -1.59486,-2.32584 0,-1.18024 7.13993,-0.7978 9.17645,0.49151 1.33838,0.84734 1.57338,0.70725 0.83035,-0.495 -0.77087,-1.24728 -0.27017,-1.43363 1.95466,-0.72749 1.84856,0.58671 2.68182,0.44909 2.18158,-0.36032 -0.44517,-0.72029 1.01476,-1.67445 3.24428,-2.12035 2.251,-0.4502 3.68409,-1.4087 3.22261,-2.1554 -0.45707,-0.73955 0.0826,-1.34465 1.19926,-1.34465 1.34763,0 1.74494,-0.74362 1.18163,-2.2116 -0.56555,-1.47378 -0.33661,-1.89513 0.68622,-1.26298 1.0982,0.67872 1.30128,-0.2991 0.71378,-3.43687 l -0.82113,-4.38548 3.09306,3.2121 c 1.75146,1.81886 3.30649,2.57183 3.58511,1.73596 0.27062,-0.81186 1.50002,-1.12266 2.73201,-0.69064 1.82497,0.63994 1.93218,0.45375 0.57866,-1.005 -2.74077,-2.95385 -1.95327,-3.55421 4.31941,-3.29289 3.2894,0.13702 5.98073,-0.20561 5.98073,-0.76142 0,-0.55582 5.53217,-0.71619 12.29372,-0.35639 9.13164,0.48591 11.91108,0.26801 10.80611,-0.84719 -1.37368,-1.38639 -4.23412,-2.29367 -8.02227,-2.54452 -0.84456,-0.0559 -3.96833,-2.13422 -6.94173,-4.61841 -2.97339,-2.4842 -8.7937,-5.58224 -12.93401,-6.88453 -6.55419,-2.06154 -8.71077,-2.16494 -16.67358,-0.79947 -12.26368,2.10298 -16.09808,1.98178 -22.29939,-0.70483 -4.53961,-1.9667 -5.87402,-3.62396 -9.89874,-12.29371 -4.70856,-10.14285 -8.77859,-23.75464 -8.81583,-29.483644 -0.0112,-1.721945 -0.57973,-4.015408 -1.26342,-5.096617 -1.63672,-2.588339 -0.77863,17.147024 1.09674,25.224209 2.15946,9.300732 5.19962,17.136952 8.05862,20.771572 4.79369,6.09419 2.99454,7.10623 -15.99855,8.99945 -7.37849,0.7355 -13.9659,3.36089 -21.94577,8.74644 -7.63253,5.15112 -10.65407,5.11429 -13.51549,-0.16473 -6.67615,-12.31682 -22.438,-27.18019 -27.74033,-26.15905 -4.07873,0.78549 -3.59011,4.55776 0.82738,6.38755 2.22675,0.92236 4.04864,2.18772 4.04864,2.81192 0,1.48609 -6.98204,-1.18094 -8.18434,-3.1263 -1.36979,-2.21636 -7.22269,0.78344 -8.10401,4.15358 -0.493,1.88527 0.25965,3.34415 2.47367,4.79485 4.48384,2.93792 3.95391,4.68193 -1.42264,4.68193 -5.91408,0 -9.17601,4.68597 -5.25681,7.55174 2.33074,1.70428 2.30602,1.87269 -0.57093,3.88778 -2.24848,1.57489 -2.90454,3.16393 -2.60026,6.29807 0.40157,4.13641 0.55607,4.22163 11.70387,6.45612 6.21331,1.24542 13.68922,2.44156 16.61313,2.65811 4.5622,0.33787 5.37348,-0.008 5.72009,-2.43782 0.35247,-2.47114 -1.19875,-3.39786 -12.18823,-7.2813 -9.33099,-3.29738 -12.54904,-5.0217 -12.42578,-6.65807 0.0978,-1.2982 0.92183,-1.91838 1.99952,-1.50483 1.52001,0.58328 1.53034,0.91861 0.0605,1.96285 -1.25144,0.88903 -0.85567,1.05679 1.34579,0.57047 3.84519,-0.84943 7.11816,0.2772 6.01074,2.06904 -0.49148,0.79522 0.18122,1.0236 1.66894,0.56661 1.37076,-0.42106 6.03082,0.68474 10.3557,2.45732 4.32489,1.7726 8.36188,2.91484 8.97109,2.53832 2.11416,-1.30662 1.08904,-4.33659 -2.39419,-7.07649 -3.90752,-3.07365 -6.46428,-3.63257 -5.0011,-1.09325 0.5265,0.91372 -0.48482,0.40252 -2.2474,-1.13598 -1.76257,-1.53851 -5.7398,-4.18669 -8.83826,-5.88484 -3.09849,-1.69815 -5.38821,-3.33295 -5.08829,-3.63287 0.29993,-0.29992 3.18663,1.00259 6.41489,2.89448 3.22827,1.89189 6.81776,3.43979 7.97667,3.43979 1.15891,0 3.88403,1.49518 6.05582,3.32263 2.1718,1.82744 4.25494,3.32262 4.62923,3.32262 1.69048,0 -1.00835,-5.32933 -5.72988,-11.31465 -7.35456,-9.32311 -5.22381,-9.26685 3.3508,0.0885 3.9842,4.34696 6.69112,8.0917 6.0154,8.32168 -0.67573,0.22997 -0.86152,1.3747 -0.41287,2.54386 0.54187,1.4121 0.29371,1.80312 -0.73919,1.16475 -1.07248,-0.66282 -1.55491,0.46247 -1.55491,3.62692 0,2.85212 -0.75425,4.87737 -1.99358,5.35294 -1.09646,0.42075 -1.99357,1.44584 -1.99357,2.27795 0,0.83214 0.8709,1.17877 1.93533,0.77031 1.15818,-0.44444 0.49106,1.33685 -1.66131,4.43589 -1.97816,2.84821 -5.39087,5.89037 -7.5838,6.76036 -17.43059,6.91512 -31.77672,15.84303 -25.45795,15.84303 1.20977,0 2.19957,-0.57704 2.19957,-1.2823 0,-0.70526 1.22844,-1.93972 2.72987,-2.74326 4.27297,-2.28683 14.62608,-5.15065 13.80243,-3.81795 -0.40732,0.65903 -1.62115,1.19826 -2.69742,1.19826 -1.07626,0 -2.31429,0.93147 -2.75117,2.06995 -0.43688,1.13848 -1.61425,1.75532 -2.61639,1.37077 -1.85155,-0.71051 -2.55458,2.02901 -0.93603,3.64754 1.31768,1.31769 1.98582,1.10174 3.65528,-1.18138 z m 60.68624,-21.66101 c -0.86635,-1.61878 -0.9474,-2.99592 -0.20337,-3.45574 0.68033,-0.42048 1.63366,0.48542 2.11852,2.01307 1.19705,3.77159 -0.13268,4.77327 -1.91515,1.44267 z m -56.58873,-7.1615 c -3.65489,-1.48937 -9.63562,-3.5207 -13.29051,-4.51406 l -6.64525,-1.80614 5.98073,0.72266 c 6.57217,0.7941 20.93658,5.64205 22.04859,7.44132 0.98412,1.59234 -0.47982,1.25884 -8.09356,-1.84378 z m 54.49107,0.32177 c -0.45177,-0.73098 -0.18804,-1.32905 0.58608,-1.32905 0.77412,0 1.40749,0.59807 1.40749,1.32905 0,0.73098 -0.26373,1.32905 -0.58608,1.32905 -0.32235,0 -0.95572,-0.59807 -1.40749,-1.32905 z m 3.98715,-1.32905 c -0.45177,-0.73098 -0.22332,-1.32905 0.50766,-1.32905 0.73097,0 1.69867,0.59807 2.15044,1.32905 0.45177,0.73097 0.22332,1.32905 -0.50766,1.32905 -0.73098,0 -1.69867,-0.59808 -2.15044,-1.32905 z m 55.15559,-13.29051 c 0,-0.73098 0.26374,-1.32905 0.58609,-1.32905 0.32235,0 0.95572,0.59807 1.40749,1.32905 0.45177,0.73098 0.18803,1.32905 -0.58609,1.32905 -0.77412,0 -1.40749,-0.59807 -1.40749,-1.32905 z m 15.34085,-9.21151 c -0.42057,-0.68048 -0.12818,-1.63058 0.64973,-2.11135 1.96694,-1.21564 5.62462,0.37733 4.61551,2.01013 -1.03878,1.68077 -4.25086,1.74253 -5.26524,0.10122 z m -62.52214,53.07018 c 1.03956,-1.68205 -0.71985,-1.68205 -3.32263,0 -1.71805,1.11029 -1.68296,1.29116 0.25383,1.3087 1.23607,0.0112 2.61703,-0.57772 3.0688,-1.3087 z m -62.79763,-0.88021 c -0.91373,-0.36869 -2.40891,-0.36869 -3.32263,0 -0.91372,0.3687 -0.16613,0.67036 1.66131,0.67036 1.82745,0 2.57504,-0.30166 1.66132,-0.67036 z m 62.13311,-1.7726 c 6.07633,-1.91458 16.33391,-6.70825 15.70347,-7.3387 -0.95066,-0.95064 -20.81646,6.58098 -22.69175,8.60302 -1.3521,1.4579 -1.16991,1.59914 1.00755,0.78115 1.46195,-0.5492 4.15328,-1.46966 5.98073,-2.04547 z m -3.32263,-5.90848 c 2.92391,-1.0361 4.23093,-1.92596 2.90448,-1.97747 -3.25983,-0.12658 -15.53046,5.23853 -15.53046,6.79041 0,0.68229 1.6447,0.30236 3.65489,-0.84431 2.01019,-1.14665 6.04718,-2.93253 8.97109,-3.96863 z m -80.88818,2.58056 c -0.48924,-1.27496 0.0243,-1.99358 1.42477,-1.99358 3.16167,0 11.01731,-3.00986 11.01731,-4.22125 0,-0.56604 -1.53669,-0.44491 -3.41486,0.26918 -1.87818,0.71407 -4.82521,0.94434 -6.54898,0.51171 -1.72376,-0.43265 -4.22407,-0.12637 -5.55623,0.6806 -2.01345,1.21969 -1.74941,1.33924 1.56504,0.70861 l 3.98715,-0.75862 -3.32262,2.02233 c -1.82745,1.11226 -2.53974,2.0435 -1.58288,2.06939 0.95687,0.0259 1.37012,0.64518 0.91835,1.37616 -0.45177,0.73097 -0.12404,1.32905 0.72828,1.32905 0.85233,0 1.20544,-0.89711 0.78467,-1.99358 z m 115.47866,-1.7369 c -0.4092,-0.4092 -1.48161,-8.5e-4 -2.38316,0.90745 -1.30282,1.3126 -1.15016,1.46526 0.744,0.74401 1.31074,-0.4991 2.04836,-1.24225 1.63916,-1.65146 z m -43.22931,-0.9212 c 1.82745,-1.04466 2.72455,-1.89939 1.99358,-1.89939 -0.73098,0 -2.82424,0.85473 -4.65168,1.89939 -1.82744,1.04466 -2.72455,1.89939 -1.99358,1.89939 0.73098,0 2.82424,-0.85473 4.65168,-1.89939 z m -34.55531,-1.16632 c 0,-0.27598 -0.9108,-1.25768 -2.024,-2.18156 -1.69234,-1.40451 -1.88682,-1.3223 -1.18685,0.5018 0.71488,1.86297 3.21085,3.16875 3.21085,1.67976 z m 53.41122,-1.73514 c -0.95942,-0.38393 -2.10571,-0.33672 -2.54736,0.10491 -0.44163,0.44165 0.34335,0.75575 1.74438,0.69805 1.54828,-0.0638 1.8632,-0.3787 0.80298,-0.80296 z m 21.12431,-0.42117 c 1.51526,0 1.53154,-1.43827 0.0429,-3.7874 -0.94239,-1.48711 -1.79116,-1.43646 -4.96358,0.29616 l -3.82681,2.09001 4.65167,-0.7089 4.65168,-0.70892 -3.32263,2.16585 c -1.97928,1.2902 -2.33834,1.86006 -0.88808,1.40953 1.33899,-0.41598 2.98369,-0.75633 3.65489,-0.75633 z m -105.31772,-2.62886 c 4.56749,-0.77097 5.1474,-1.08287 2.2076,-1.18735 -6.03201,-0.21436 -13.95503,1.34732 -13.95503,2.75062 0,0.68459 1.24935,0.84819 2.77634,0.36354 1.52698,-0.48464 5.56397,-1.35171 8.97109,-1.92681 z m 36.97628,-1.12253 c -1.21382,-1.34125 -2.20694,-3.40287 -2.20694,-4.58138 0,-1.17852 -0.59807,-2.51238 -1.32905,-2.96416 -2.56069,-1.58259 -1.31354,5.99624 1.4398,8.74958 3.34066,3.34066 5.22801,2.25658 2.09619,-1.20404 z m 10.86944,-0.0577 c -1.70968,-2.09501 -3.72333,-4.85909 -4.4748,-6.1424 -1.21987,-2.08325 -1.39571,-1.99549 -1.6406,0.81873 -0.17769,2.04201 1.00555,4.20284 3.35988,6.13581 5.0579,4.1527 6.46803,3.7371 2.75552,-0.81214 z m -16.67488,-1.49347 c -0.37997,-1.45299 -1.16478,-2.34892 -1.74403,-1.99093 -0.57925,0.35801 -0.7423,1.83973 -0.36233,3.29274 0.37998,1.453 1.16478,2.34892 1.74404,1.99093 0.57925,-0.35801 0.7423,-1.83972 0.36232,-3.29274 z m 8.4074,-0.8929 c -1.1244,-2.07483 -2.06832,-3.01668 -2.09758,-2.09305 -0.0607,1.91499 2.91737,7.09001 3.65536,6.35201 0.26763,-0.26761 -0.43337,-2.18416 -1.55778,-4.25896 z m 10.91686,0.25644 c -0.82219,-1.80454 -2.04447,-2.9413 -2.71618,-2.52617 -0.6717,0.41514 -0.19252,1.89157 1.06487,3.28096 3.04676,3.36664 3.44602,3.18415 1.65131,-0.75479 z m 6.20357,0.62284 c -1.32305,-1.46195 -3.00361,-2.6581 -3.7346,-2.6581 -0.73098,0 -0.24655,1.19615 1.0765,2.6581 1.32306,1.46196 3.00363,2.6581 3.73461,2.6581 0.73098,0 0.24655,-1.19614 -1.07651,-2.6581 z m 35.21984,1.37076 c 0,-0.70803 -0.89711,-0.94308 -1.99357,-0.52233 -1.09647,0.42076 -1.99358,1.00005 -1.99358,1.28734 0,0.28728 0.89711,0.52233 1.99358,0.52233 1.09646,0 1.99357,-0.5793 1.99357,-1.28734 z m -75.75736,-1.70302 c 8.2e-4,-0.54823 -5.23165,-1.06755 -11.62771,-1.15403 -8.64696,-0.11693 -10.60671,-0.43808 -7.64204,-1.25236 3.43132,-0.94245 3.1157,-1.05884 -2.26405,-0.83489 -3.49758,0.14561 -5.74683,-0.24413 -5.1062,-0.88476 0.62976,-0.62976 3.83426,-0.93089 7.12114,-0.66919 3.28687,0.26171 5.69888,0.0273 5.36002,-0.52097 -0.33886,-0.54824 -3.69079,-0.99679 -7.44873,-0.99679 -4.62499,0 -6.39651,-0.43612 -5.48286,-1.34977 1.24919,-1.24919 15.83563,-0.0385 25.76286,2.13833 2.08357,0.45688 2.827,0.26781 1.99358,-0.50703 -1.46527,-1.36225 -18.12243,-4.26868 -24.46442,-4.26868 -6.76153,0 -9.01419,9.17677 -2.30666,9.39677 2.38211,0.0781 2.47472,0.24124 0.56594,0.99679 -1.25522,0.49685 3.97725,0.90337 11.62772,0.90337 7.65046,0 13.91059,-0.44856 13.91141,-0.99679 z m 43.08472,-2.80014 c -0.85448,-2.22672 -3.21172,-3.04916 -3.21172,-1.12056 0,1.29299 2.96504,4.38903 3.59757,3.75651 0.24867,-0.24868 0.075,-1.43486 -0.38585,-2.63595 z m -33.77988,-7.5 c 0,-2.19294 -0.23115,-3.98715 -0.51368,-3.98715 -0.28253,0 -0.77702,1.79421 -1.09887,3.98715 -0.32186,2.19293 -0.0907,3.98715 0.51368,3.98715 0.60438,0 1.09887,-1.79422 1.09887,-3.98715 z m -7.30978,-7.9743 c -3.65368,-1.57004 -5.75209,-1.57004 -3.32263,0 1.09647,0.70859 2.89069,1.25547 3.98715,1.21528 1.31452,-0.0482 1.08815,-0.46214 -0.66452,-1.21528 z m 38.54246,-17.31525 c 2.61867,-1.86206 10.75346,-3.9474 16.23676,-4.16225 3.07053,-0.12032 5.27317,-0.71976 4.89472,-1.33209 -0.37843,-0.61232 0.0948,-1.16473 1.05168,-1.22756 0.95686,-0.0628 -0.003,-0.63545 -2.13353,-1.27252 -2.13029,-0.63705 -4.37306,-0.84938 -4.98394,-0.47185 -0.61085,0.37754 -1.11066,-0.0135 -1.11066,-0.86896 0,-1.06836 1.56065,-1.27882 4.98394,-0.6721 7.72593,1.36925 9.73819,2.15848 8.91195,3.49536 -0.41924,0.67835 -0.085,1.23336 0.74269,1.23336 3.40677,0 0.42392,-4.45907 -3.31765,-4.95957 -5.01481,-0.67081 -6.122,-1.67306 -1.90682,-1.7261 6.05259,-0.0762 -1.26865,-2.98922 -10.0374,-3.99381 l -8.01553,-0.91828 7.30977,-0.26609 c 6.23017,-0.22679 6.82957,-0.45789 4.05835,-1.56465 -1.78829,-0.71421 -5.82528,-1.35021 -8.97109,-1.41336 -3.14582,-0.0631 -5.71966,-0.6896 -5.71966,-1.39212 0,-1.17771 7.70606,-0.5348 13.62277,1.13655 4.11232,1.16164 2.478,-0.92324 -2.28315,-2.91258 -2.53495,-1.05916 -6.45771,-1.92575 -8.71727,-1.92575 -2.25955,0 -3.78683,-0.52012 -3.39393,-1.15582 0.67424,-1.09094 6.85806,-0.23781 13.90775,1.91875 2.39978,0.7341 3.02034,0.51733 2.55828,-0.89366 -0.75028,-2.29117 -8.21445,-5.009399 -14.03314,-5.11046 -2.37568,-0.04125 -4.31941,-0.684474 -4.31941,-1.429381 0,-1.334552 1.66289,-1.123818 12.42787,1.575005 2.81495,0.705712 5.44859,0.952623 5.85253,0.548685 1.19089,-1.190896 -7.57886,-4.359698 -18.07218,-6.530064 -5.36782,-1.110248 -10.12994,-2.388915 -10.58251,-2.841483 -1.12321,-1.123207 9.73645,0.631326 16.7622,2.708166 4.24481,1.254784 5.58974,1.290987 5.20613,0.140122 -0.2845,-0.853463 -5.85038,-2.855172 -12.36864,-4.448252 -6.51826,-1.593093 -10.3562,-2.932244 -8.52876,-2.975903 1.82745,-0.04366 8.70529,1.389176 15.28409,3.184086 7.43635,2.028888 11.06481,2.583434 9.59131,1.465889 -2.28158,-1.730424 -23.83673,-7.420487 -28.11033,-7.420487 -1.90381,0 -2.69772,1.593239 -2.20406,4.423212 0.1056,0.605316 -1.46828,0.990502 -3.4975,0.855949 -5.42133,-0.359442 -7.01211,-0.09541 -7.01211,1.163836 0,0.619736 1.85565,1.179559 4.12364,1.244044 5.08887,0.144681 6.98139,1.616312 2.0786,1.616312 -1.94928,0 -3.54414,0.598073 -3.54414,1.32905 0,0.730978 0.74759,1.338208 1.66131,1.349399 1.17851,0.01445 1.22704,0.304126 0.16697,0.996787 -0.82188,0.537043 -1.9159,2.919592 -2.43115,5.294548 -0.81222,3.74389 -0.63033,4.20051 1.36786,3.43374 2.11858,-0.81298 2.10395,-0.54459 -0.18123,3.32393 -1.36726,2.31457 -2.82688,4.2083 -3.24362,4.2083 -0.7298,0 -1.21819,-3.06945 -1.37185,-8.62207 -0.0543,-1.96093 -0.35752,-2.18115 -1.1772,-0.85489 -1.50892,2.4415 -3.02026,-0.21885 -1.90958,-3.361346 0.69864,-1.976643 0.52794,-2.134029 -0.88997,-0.820516 -1.38456,1.28264 -1.42579,2.346502 -0.1956,5.046482 0.85735,1.88167 1.55881,4.6573 1.55881,6.16809 0,3.17455 4.66942,12.34095 8.5588,16.80155 2.02336,2.32051 2.26572,3.30928 1.00251,4.08999 -1.26207,0.77999 -0.983,1.89787 1.15105,4.61087 l 2.81701,3.58126 7.52261,-4.22715 c 4.13743,-2.32493 8.12068,-4.65242 8.85165,-5.1722 z m 5.31621,-5.9378 c 4.4857,-2.11398 9.55947,-2.80012 5.98072,-0.8088 -1.09646,0.61011 -3.78779,1.46445 -5.98072,1.89856 l -3.98716,0.78926 3.98716,-1.87902 z m -2.73635,-2.7057 c 1.41892,-1.07322 4.11025,-1.92507 5.98073,-1.89298 2.81715,0.0483 2.48841,0.38706 -1.91533,1.97357 -6.6342,2.39005 -7.31406,2.37657 -4.0654,-0.0806 z m -26.25705,-1.4841 c -1.06917,-1.06916 0.31669,-7.30761 2.02287,-9.10604 0.79865,-0.84184 0.91473,0.61983 0.31663,3.98715 -1.08137,6.0881 -1.172,6.28641 -2.3395,5.11889 z m 37.27467,-2.66804 c 0.89981,-0.36406 2.69402,-0.38621 3.98715,-0.0492 1.29313,0.33696 0.55691,0.63483 -1.63602,0.66192 -2.19293,0.0271 -3.25094,-0.24862 -2.35113,-0.61268 z m 9.20424,-8.09932 c -1.27814,-4.1448 -1.61003,-4.46813 -1.97119,-1.92042 -0.35623,2.51286 1.63506,6.90436 3.13071,6.90436 0.20757,0 -0.31421,-2.24277 -1.15952,-4.98394 z m -3.53048,-12.293713 c 0,-0.730978 -0.63338,-1.32905 -1.4075,-1.32905 -0.77411,0 -1.03785,0.598072 -0.58608,1.32905 0.45177,0.730978 1.08514,1.329051 1.40749,1.329051 0.32235,0 0.58609,-0.598073 0.58609,-1.329051 z m -51.37384,-9.620518 c -0.31197,-4.576917 -1.20865,-8.543575 -1.99262,-8.814807 -0.90972,-0.314746 -0.80088,-0.879114 0.30085,-1.560026 1.4143,-0.874077 1.41207,-1.445423 -0.0123,-3.161732 -1.34969,-1.626292 -1.3685,-2.094876 -0.0841,-2.094876 1.29787,0 1.30829,-0.417189 0.0483,-1.935363 -0.88342,-1.064437 -1.25375,-2.505646 -0.82296,-3.202679 1.04669,-1.69357 -0.48677,-5.494361 -2.21674,-5.494361 -1.65486,0 -0.38676,18.480659 1.97701,28.812126 2.08561,9.115704 3.50935,7.821143 2.80255,-2.548282 z m 7.51517,6.155697 c 0,-0.287274 -0.89711,-0.52233 -1.99358,-0.52233 -1.09646,0 -1.99357,0.579306 -1.99357,1.287345 0,0.708025 0.89711,0.943081 1.99357,0.52233 1.09647,-0.420764 1.99358,-1.000057 1.99358,-1.287345 z m 39.87151,-5.75447 c -2.77564,-1.620843 -15.41493,-5.096868 -34.31738,-9.437879 -5.75126,-1.320784 -8.21223,-0.883885 -8.21223,1.457955 0,0.687836 2.84084,1.28983 6.31299,1.337769 3.47214,0.04793 12.89179,1.777179 20.93254,3.842776 16.08586,4.132311 18.24337,4.527477 15.28408,2.799379 z m -34.77521,-2.280172 c 2.3174,-0.620494 2.65378,-1.115339 1.32905,-1.955073 -2.88608,-1.829451 -8.73866,-1.322432 -9.56408,0.828557 -0.83191,2.167947 2.5948,2.636703 8.23503,1.126516 z m 36.14939,-1.072145 c -3.65455,-4.40345 -41.06776,-13.389904 -43.91058,-10.547078 -0.87993,0.879924 1.93059,1.902841 8.37363,3.047645 5.33395,0.947746 15.35218,3.405426 22.26271,5.461507 15.00423,4.464188 15.32928,4.514093 13.27424,2.037926 z m 1.28392,-6.548192 c 0,-2.280491 -1.21321,-3.734273 -4.31941,-5.175947 -8.68617,-4.031488 -23.84246,-8.927817 -27.32475,-8.827433 -2.20076,0.06345 0.76821,1.49784 7.72126,3.730378 6.95836,2.234241 10.5313,3.960863 9.30335,4.495846 -1.09647,0.477714 -0.47506,0.560088 1.38092,0.183077 4.96969,-1.009534 10.58053,1.524952 10.58053,4.779358 0,2.602441 -0.1802,2.631932 -4.00282,0.655182 -4.65751,-2.408492 -28.05722,-8.686953 -29.36464,-7.87893 -0.48766,0.301402 -1.61531,-0.329963 -2.50587,-1.403025 -1.24584,-1.50115 -2.23889,-1.619355 -4.30676,-0.512668 -2.04078,1.092187 -2.95342,1.008178 -3.79225,-0.349089 -0.87979,-1.423519 -1.44066,-1.451456 -2.75489,-0.137211 -1.31423,1.314232 -1.19022,1.650202 0.60918,1.650202 1.24266,0 2.25939,0.481143 2.25939,1.069208 0,0.588065 2.50039,1.216746 5.55643,1.397071 6.50081,0.383578 24.68636,4.513296 32.32151,7.339828 7.42398,2.748357 8.63882,2.605497 8.63882,-1.015847 z m -7.9743,-3.474058 c -1.09646,-0.708596 -2.59165,-1.288341 -3.32262,-1.288341 -0.73098,0 -0.43195,0.579745 0.66452,1.288341 1.09647,0.708597 2.59165,1.288342 3.32263,1.288342 0.73097,0 0.43194,-0.579745 -0.66453,-1.288342 z m -14.43988,-4.703695 c -2.45961,-1.067853 -5.74899,-1.878853 -7.30978,-1.802206 -1.86041,0.09136 -1.00682,0.742793 2.47843,1.891438 7.19648,2.37177 10.36501,2.313252 4.83135,-0.08923 z m 21.89185,-0.05668 c -0.44369,-1.156248 -0.80672,-2.551751 -0.80672,-3.101114 0,-0.549363 -0.74759,-1.044992 -1.66131,-1.101384 -0.91372,-0.05641 -6.44589,-2.197651 -12.29372,-4.758346 -7.42533,-3.251456 -13.63902,-4.935801 -20.60028,-5.584112 -5.48233,-0.510595 -9.58367,-0.526942 -9.11408,-0.03634 0.46958,0.490592 3.54637,1.155662 6.8373,1.47793 12.5376,1.227764 35.50304,9.926492 35.50304,13.447652 0,0.966884 0.66206,1.757988 1.47125,1.757988 0.80918,0 1.10821,-0.946018 0.66452,-2.102278 z m -4.79387,0.02535 c 0,-0.411328 -4.03699,-2.580259 -8.97109,-4.819842 -10.28579,-4.668702 -34.51883,-8.689518 -36.88115,-6.119413 -0.93564,1.017933 -0.59072,1.184556 1.16525,0.562892 1.37186,-0.485688 3.30798,-0.20777 4.30248,0.617597 0.99451,0.825367 2.75301,1.138119 3.90778,0.694987 2.48671,-0.954245 15.73645,2.215766 27.4539,6.568367 9.83503,3.653347 9.02283,3.428711 9.02283,2.495412 z m 8.24748,-9.426357 c 0.1389,-13.164897 -0.22654,-17.73582 -1.41793,-17.73582 -0.62961,0 -0.85892,1.495182 -0.50958,3.322626 0.34934,1.827445 0.0541,3.322626 -0.65607,3.322626 -0.71017,0 -1.64997,-4.27909 -2.08843,-9.50909 -0.43847,-5.229986 -1.46464,-10.164086 -2.28039,-10.964666 -1.08672,-1.06651 -1.29048,-0.567452 -0.7623,1.86705 1.50855,6.95318 2.11201,18.606706 0.96351,18.606706 -1.41531,0 -0.89735,11.721136 0.5765,13.04588 0.5563,0.500029 0.60679,0.20288 0.11219,-0.660325 -0.49461,-0.863219 -0.38026,-1.890256 0.25411,-2.282326 0.63437,-0.392056 1.88172,1.718104 2.77189,4.689236 2.08919,6.973089 2.93476,5.942238 3.0365,-3.701897 z m -42.80279,3.528987 c 1.65081,-1.066842 1.53657,-1.288341 -0.66452,-1.288341 -1.46196,0 -3.55521,0.579745 -4.65168,1.288341 -1.65081,1.066843 -1.53657,1.288342 0.66452,1.288342 1.46196,0 3.55521,-0.579745 4.65168,-1.288342 z m -7.9743,-1.407491 c 0,-0.774118 -0.59807,-1.037855 -1.32905,-0.586084 -0.73098,0.451771 -1.32905,1.085143 -1.32905,1.407491 0,0.322348 0.59807,0.586084 1.32905,0.586084 0.73098,0 1.32905,-0.633372 1.32905,-1.407491 z m 29.90363,-5.862707 c -7.80963,-3.597939 -14.53132,-5.369882 -13.3949,-3.531114 0.43057,0.696661 3.02249,1.654455 5.75983,2.128408 2.73734,0.473952 6.47215,1.700945 8.2996,2.726653 1.82744,1.025695 3.9207,1.836256 4.65168,1.801235 0.73097,-0.03503 -1.66132,-1.441355 -5.31621,-3.125182 z m 11.29693,2.707422 c 0,-1.005068 -17.76669,-10.053549 -19.89225,-10.131033 -1.12039,-0.04084 -4.72841,-1.252803 -8.01781,-2.693241 l -5.98072,-2.618987 4.98393,0.759885 c 5.99382,0.913868 6.45861,0.08449 1.01592,-1.812838 -2.95295,-1.029403 -4.3979,-0.958644 -5.64847,0.276615 -0.92423,0.912925 -2.87658,2.138761 -4.33854,2.724075 -1.96678,0.787436 0.61928,1.739528 9.94332,3.660816 7.28021,1.500139 15.41788,4.183944 19.27123,6.355666 6.67069,3.759565 8.66339,4.559786 8.66339,3.479042 z m -46.51676,-4.897445 c 0,-0.730977 -0.59808,-0.959428 -1.32905,-0.507657 -0.73098,0.451771 -1.32906,1.419466 -1.32906,2.150443 0,0.730978 0.59808,0.959429 1.32906,0.507658 0.73097,-0.451771 1.32905,-1.419466 1.32905,-2.150444 z m 5.3162,0.156868 c 1.71805,-1.110289 1.68296,-1.291159 -0.25382,-1.308703 -1.23607,-0.01119 -2.61704,0.577725 -3.06881,1.308703 -1.03956,1.682046 0.71986,1.682046 3.32263,0 z m 39.17045,-0.485502 c -1.44186,-0.998011 -4.11675,-2.214703 -5.94419,-2.703767 -2.4803,-0.663781 -2.14337,-0.217885 1.32905,1.758852 5.29369,3.013529 8.5741,3.685165 4.61514,0.944915 z m -26.61093,-2.001005 c -2.0245,-1.855913 -8.33874,-2.953908 -9.17798,-1.595977 -0.6746,1.091536 1.93519,1.874546 8.51346,2.554302 1.16939,0.120837 1.43068,-0.255975 0.66452,-0.958325 z m -11.895,-1.500644 c 0.45177,-0.730978 -0.0757,-1.329051 -1.17218,-1.329051 -1.09647,0 -2.3632,0.598073 -2.81497,1.329051 -0.45177,0.730978 0.0757,1.32905 1.17218,1.32905 1.09647,0 2.3632,-0.598072 2.81497,-1.32905 z m -1.99357,-6.143456 c 0,-1.006969 0.86181,-1.830847 1.91513,-1.830847 1.05333,0 2.34188,-0.690482 2.86346,-1.534402 0.58754,-0.95067 0.36458,-1.173631 -0.58609,-0.586085 -0.84392,0.521573 -1.5344,0.59471 -1.5344,0.162517 0,-0.432181 1.34566,-1.326672 2.99036,-1.987768 l 2.99037,-1.20198 -2.91193,-0.08423 c -1.60156,-0.04634 -3.28156,0.513824 -3.73333,1.244802 -0.45177,0.730977 -1.50379,1.32905 -2.33782,1.32905 -1.09228,0 -1.07035,-0.446069 0.0784,-1.594861 2.25986,-2.259864 1.98836,-3.308418 -1.06324,-4.106433 -1.46196,-0.382315 -2.6581,-1.349173 -2.6581,-2.148583 0,-1.80311 1.43142,-1.829943 6.22646,-0.116677 3.48981,1.246901 3.56792,1.202205 1.16155,-0.664526 -1.41892,-1.100733 -3.32735,-2.001324 -4.24097,-2.001324 -0.91361,0 -2.07035,-0.662146 -2.57052,-1.471431 -0.61729,-0.998808 0.10459,-1.190152 2.2474,-0.595721 3.04875,0.845755 3.0685,0.805139 0.57694,-1.186656 -1.41892,-1.134318 -3.1633,-2.062394 -3.8764,-2.062394 -0.71309,0 -0.94461,-0.351919 -0.51449,-0.78204 0.43012,-0.430133 4.76311,1.117931 9.62885,3.440141 4.86575,2.32221 9.08206,3.986952 9.36957,3.699426 0.71183,-0.711827 -17.24977,-10.344678 -19.28887,-10.344678 -2.07543,0 -0.64658,12.206332 2.09009,17.855222 1.27882,2.63964 1.45332,4.336372 0.53994,5.249749 -0.74226,0.742261 -1.34955,2.499319 -1.34955,3.904577 0,2.120447 0.33908,2.27362 1.99357,0.900512 1.09647,-0.909988 1.99358,-2.4784 1.99358,-3.485355 z m 31.26785,2.412984 c -0.4092,-0.409201 -1.48161,-8.51e-4 -2.38316,0.907449 -1.30282,1.312597 -1.15016,1.465252 0.744,0.744002 1.31074,-0.499098 2.04836,-1.24225 1.63916,-1.651451 z m 8.31143,0.262049 c 1.12852,-1.208094 1.00384,-1.800319 -0.50052,-2.377605 -1.13607,-0.435955 -1.65188,-0.199982 -1.19141,0.545044 1.20804,1.954674 -0.77888,1.508777 -5.99014,-1.344269 -5.09979,-2.792016 -4.79854,-3.406103 0.65396,-1.333064 2.49956,0.950324 3.22863,0.910068 2.57818,-0.142394 -0.61652,-0.997546 0.10391,-1.176781 2.24989,-0.559756 1.99386,0.573285 1.19836,-0.338204 -2.15941,-2.474241 -5.96613,-3.795342 -5.39695,-4.540448 1.06279,-1.391276 l 4.25342,2.073584 -3.32263,-2.821414 c -3.22426,-2.737884 -3.2341,-2.796615 -0.33226,-1.98402 5.6153,1.572466 2.99994,-0.632535 -6.31299,-5.322449 -5.11685,-2.576802 -9.30336,-4.069831 -9.30336,-3.317828 0,1.261336 4.84845,3.841594 11.29693,6.012026 2.49934,0.841223 2.46095,0.970393 -0.64255,2.162552 -3.5473,1.362635 -9.32532,-0.393745 -9.32532,-2.834679 0,-0.746647 -0.91815,-1.357545 -2.04034,-1.357545 -1.58064,0 -1.74089,0.559517 -0.71129,2.483357 0.73098,1.365839 1.00598,2.80641 0.61114,3.201271 -0.39486,0.394861 0.60231,1.136949 2.21594,1.649099 1.87953,0.596544 2.38433,1.270798 1.40468,1.876247 -0.91251,0.563969 1.1704,2.209506 5.16512,4.08053 4.43414,2.076841 6.13077,3.483721 5.02522,4.166986 -1.09559,0.677111 -0.72743,0.960624 1.0715,0.825114 1.50732,-0.113554 3.41687,-0.930415 4.24345,-1.81527 z m -13.12719,-6.8995 c 1.0657,-0.355229 0.79979,-1.138877 -0.79743,-2.350027 -3.38208,-2.564589 -0.56994,-2.233709 4.64374,0.546399 l 4.38192,2.336577 -4.91354,0 c -2.70245,0 -4.19406,-0.239827 -3.31469,-0.532949 z m -17.14874,-6.909733 c 0,-0.730978 -0.63337,-1.329051 -1.40749,-1.329051 -0.77412,0 -1.03786,0.598073 -0.58609,1.329051 0.45178,0.730977 1.08515,1.32905 1.4075,1.32905 0.32234,0 0.58608,-0.598073 0.58608,-1.32905 z m 29.23911,-3.322627 c -0.90999,-1.096466 -2.66312,-1.993575 -3.89586,-1.993575 -1.23275,0 -3.40229,-0.928076 -4.82121,-2.062394 -2.47869,-1.981521 -2.44956,-2.027174 0.74277,-1.164248 3.16497,0.855536 3.13343,0.753412 -0.66453,-2.152238 -6.01622,-4.602754 -6.66795,-5.254228 -5.24975,-5.247809 0.69443,0.0032 4.46444,2.433159 8.37782,5.400012 3.91336,2.966866 7.3413,5.168212 7.61764,4.891862 0.27633,-0.276336 -1.81331,-2.76368 -4.64364,-5.527427 -3.88431,-3.792924 -6.302,-5.057755 -9.86057,-5.15863 -2.59299,-0.0735 -4.45623,-0.551569 -4.14054,-1.062377 0.31571,-0.510794 -0.31967,-1.271662 -1.41194,-1.690804 -2.22731,-0.854699 -2.3322,-0.636164 -1.16037,2.417582 0.45407,1.183281 2.60291,3.070519 4.77519,4.193846 2.17228,1.123326 3.64621,2.345814 3.2754,2.716632 -0.37081,0.370805 -1.92158,0.0066 -3.44613,-0.809285 -1.52457,-0.815931 -2.77194,-0.944211 -2.77194,-0.285082 0,0.659143 4.037,3.040788 8.9711,5.292572 10.58841,4.832228 10.41881,4.786469 8.30656,2.241363 z m -21.88214,-1.917221 c -0.42581,-0.68898 -5.53462,-3.78915 -11.35288,-6.889253 -5.81826,-3.100103 -10.31148,-5.903735 -9.98492,-6.230296 0.32656,-0.326561 5.34187,1.876486 11.14512,4.895664 11.83674,6.158155 12.00995,6.212207 11.63094,3.629929 -0.46141,-3.143776 -3.66884,-6.16189 -13.84847,-13.0310211 -5.38035,-3.6306337 -9.4809,-6.9027293 -9.1123,-7.2713149 0.3686,-0.3685989 4.29088,1.7885962 8.71619,4.7937654 4.42532,3.0051692 7.71876,4.6111006 7.31877,3.5687266 -0.40001,-1.0423877 -4.3098,-4.4082213 -8.68842,-7.4796569 -4.37863,-3.07143568 -7.69273,-5.8528459 -7.36467,-6.1809087 0.7776,-0.7776009 16.84177,10.242859 16.84177,11.5539142 0,0.5511306 0.93476,1.3607483 2.07724,1.7991622 5.0678,1.9447062 -4.95982,-8.8428506 -16.03227,-17.2472475 -8.31613,-6.3122453 -8.85292,-6.5129453 -7.97119,-2.9803293 0.4258,1.705956 0.93919,5.9335858 1.14084,9.3947389 0.20166,3.4611531 0.62484,6.4515167 0.9404,6.6452523 0.31557,0.1937357 1.7699,1.0951775 3.23185,2.0031981 1.46196,0.9080338 5.98329,3.4010397 10.0474,5.5400137 6.42706,3.38262 12.32857,8.093107 10.1394,8.093107 -0.84551,0 -13.09424,-7.190788 -18.47167,-10.844042 -4.71115,-3.2006192 -4.84599,-3.1456364 -3.87311,1.57967 0.70648,3.431395 2.49774,4.896368 12.12586,9.917095 12.55085,6.544816 12.42791,6.493448 11.34412,4.739833 z M 268.69632,12.337495 C 266.16201,10.374208 262.286,6.7250744 260.08297,4.2282936 246.09645,-11.623225 242.14563,-15.235026 238.54809,-15.458758 c -3.62989,-0.225739 -3.56645,-0.09331 2.2453,4.687388 3.2894,2.7058404 9.1478,8.14276 13.01866,12.0820523 7.94545,8.0858766 17.89184,16.1042377 18.85309,15.1985427 0.35148,-0.331173 -1.43449,-2.208443 -3.96882,-4.17173 z m 9.64068,-0.456874 c -0.41249,-1.577397 -1.85168,-3.969688 -3.1982,-5.3162022 -1.34651,-1.3465142 -2.4482,-3.3453131 -2.4482,-4.4417797 0,-1.0964667 -0.61911,-1.99357572 -1.37581,-1.99357572 -0.94228,0 -0.93662,0.8206355 0.0179,2.60426112 0.76657,1.4323443 1.25268,3.0770442 1.08025,3.6548888 -0.41428,1.3883394 4.27432,8.3604057 5.62224,8.3604057 0.57847,0 0.71427,-1.290601 0.30177,-2.867998 z m -17.64634,-1.171067 c -1.0753,-0.680035 -2.8522,-1.2244006 -3.94867,-1.209688 -1.15576,0.015497 -0.59808,0.799052 1.32705,1.864472 3.56847,1.974889 5.87056,1.399915 2.62162,-0.654784 z m 11.33541,0.05191 c -0.45177,-0.730978 -1.08514,-1.3290503 -1.40749,-1.3290503 -0.32234,0 -0.58608,0.5980723 -0.58608,1.3290503 0,0.730978 0.63337,1.329051 1.40749,1.329051 0.77412,0 1.03786,-0.598073 0.58608,-1.329051 z M 253.90301,4.330152 c -4.41685,-5.9488564 -17.66493,-16.637678 -19.75697,-15.940326 -0.77931,0.259763 1.45349,2.6152394 4.96174,5.2343992 3.50826,2.6191598 8.16356,6.85920291 10.34512,9.4223166 3.87572,4.5535927 7.69616,5.6555882 4.45011,1.2836102 z m 16.12949,0.1956363 c 0,-1.7955206 -10.59563,-18.4329333 -15.00162,-23.5557583 -2.80461,-3.260918 -5.08068,-4.830181 -6.09579,-4.202803 -1.1385,0.703626 -0.1057,2.645435 3.47472,6.533067 2.80209,3.042516 7.40044,9.2697948 10.21856,13.8384058 4.52034,7.328185 7.40413,10.20534 7.40413,7.3870885 z m -11.50529,-9.3806642 c -3.34072,-4.9340999 -7.92305,-10.9203291 -10.18294,-13.3027451 -3.47731,-3.66584 -4.28898,-4.009838 -5.28056,-2.238002 -0.88444,1.580414 0.63068,3.945486 6.18063,9.647857 4.04376,4.1548111 8.62456,9.1989032 10.17953,11.209092 5.67259,7.3331689 5.01066,3.4086157 -0.89666,-5.3162019 z m 13.56839,-5.0225482 c -1.13471,-2.7157289 -2.0631,-6.5900839 -2.0631,-8.6096689 0,-2.403149 -1.09548,-4.389774 -3.17029,-5.749246 -1.74366,-1.142492 -3.44297,-1.804572 -3.77626,-1.471299 -0.33327,0.333273 0.94384,3.741065 2.83804,7.572863 1.89419,3.831799 4.24432,9.0601639 5.22251,11.618586 0.97819,2.5584222 2.05609,3.9597464 2.39536,3.1140716 0.33925,-0.8456881 -0.31156,-3.7595781 -1.44626,-6.4753067 z m -6.80873,-3.5502929 c -2.38288,-6.753795 -5.44522,-10.366128 -8.78788,-10.366128 -2.00322,0 -1.24955,1.554524 3.86088,7.963431 3.4925,4.379873 6.47299,7.9683089 6.62331,7.9743029 0.15031,0.00598 -0.61301,-2.5012459 -1.69631,-5.5716059 z M 229.07559,-32.0561 c -0.95367,-0.953687 -1.57271,-1.032154 -1.57271,-0.199358 0,1.77399 1.57175,3.345739 2.45875,2.458731 0.37767,-0.377663 -0.021,-1.394387 -0.88604,-2.259373 z m 9.0597,-16.911263 c 0,-0.687837 -0.59807,-1.620246 -1.32905,-2.072017 -0.73098,-0.451771 -1.32905,0.111016 -1.32905,1.250623 0,1.139595 0.59807,2.072003 1.32905,2.072003 0.73098,0 1.32905,-0.562773 1.32905,-1.250609 z m 8.77173,-4.863023 c -0.47299,-1.232614 -1.15904,-1.942075 -1.52453,-1.576586 -0.36549,0.365489 -0.27752,1.673022 0.19548,2.905637 0.473,1.232614 1.15904,1.942088 1.52453,1.576599 0.36549,-0.365489 0.27752,-1.673035 -0.19548,-2.90565 z m 9.74156,-2.857458 c -0.0514,-0.548234 -0.60741,-2.192934 -1.23564,-3.654889 -1.01215,-2.35541 -1.15285,-2.241896 -1.23563,0.996788 -0.0514,2.010189 0.50466,3.654889 1.23563,3.654889 0.73098,0 1.28702,-0.448555 1.23564,-0.996788 z"
+         sodipodi:nodetypes="cssssssssssssssssssssssssssssssssssssscccsssssssssssssssssssssssccssssccssssssssccssccsssccsssssccsssccssccsssccssssccsssccsssssccsssccssssssssssssscccsssssssssssssssssssssssssssssscccssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssccsscccccsccsssccsssccsssccssccssccssccsssccsssccssssscccsssccssccsssccssccssccscccccsccsssccsssccsssccsssccssccssccsssccsssccssssssssssssssccssccsssccssccssssssssssscccsssssssssssssssssssssssssssssssssssssssssscccccsccccssccssccssccssccsssccssssssssccsssccssssccssccsssccssssssssssssssssccsssccssccssssssssccssssssccsssssssssssccsssccsssccssssccscccsssssccsssccssccssccssccsssccsssscccssssssssssssssssssssccssccssssssscccssssssssssssssccscccccsssccsssssssssssssssssccssssssssssssssssssssssccsssssccssssssccssccsssccsssccssssccssssccssssssccsssccssccsssccsssccsssc"
          id="path1952"
-         sodipodi:nodetypes="cssssssssssssssssssssssssssssssssssssscccsssssssssssssssssssssssccssssccssssssssccssccsssccsssssccsssccssccsssccssssccsssccsssssccsssccssssssssssssscccsssssssssssssssssssssssssssssscccssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssccsscccccsccsssccsssccsssccssccssccssccsssccsssccssssscccsssccssccsssccssccssccscccccsccsssccsssccsssccsssccssccssccsssccsssccssssssssssssssccssccsssccssccssssssssssscccsssssssssssssssssssssssssssssssssssssssssscccccsccccssccssccssccssccsssccssssssssccsssccssssccssccsssccssssssssssssssssccsssccssccssssssssccssssssccsssssssssssccsssccsssccssssccscccsssssccsssccssccssccssccsssccsssscccssssssssssssssssssssccssccssssssscccssssssssssssssccscccccsssccsssssssssssssssssccssssssssssssssssssssssccsssssccssssssccssccsssccsssccssssccssssccssssssccsssccssccsssccsssccsssc" />
+         d="m 357.46891,198.7627 c -0.25309,-0.2531 -4.60633,-1.12253 -9.67387,-1.93208 -5.06752,-0.80954 -9.84096,-1.9925 -10.60765,-2.62878 -3.11316,-2.58369 -23.41771,-6.91363 -35.25768,-7.51868 -13.03966,-0.66637 -25.61015,-2.28571 -29.43528,-3.79189 -1.82193,-0.71741 -2.11485,-0.0895 -1.74391,3.73836 0.74294,7.66642 -1.69467,9.50477 -12.90351,9.7313 -5.35912,0.10831 -11.26519,0.59074 -13.12462,1.07207 -2.46779,0.63881 -4.03454,0.15273 -5.80169,-1.79993 -2.18161,-2.41065 -2.62358,-2.47244 -4.47104,-0.62498 -1.34625,1.34625 -3.23292,1.76222 -5.49523,1.21157 -1.89482,-0.4612 -5.08573,-1.01456 -7.09093,-1.22968 -2.00519,-0.21512 -4.69652,-1.26899 -5.98073,-2.34194 -1.28421,-1.07292 -3.8301,-2.68819 -5.65754,-3.58944 -6.43476,-3.17351 -9.96905,-5.44338 -10.07924,-6.4733 -0.0613,-0.57246 -0.86007,-2.83507 -1.77515,-5.028 -2.55195,-6.11558 -1.90042,-33.9581 0.85921,-36.71773 0.87621,-0.87622 1.21552,-3.20947 0.78197,-5.37724 -0.90041,-4.502 2.44192,-9.02694 6.76431,-9.15772 2.7559,-0.0834 2.75485,-0.0961 -0.10275,-1.24803 -4.37757,-1.76458 -1.8187,-8.39625 4.54844,-11.7879 1.6447,-0.87609 2.99036,-2.39921 2.99036,-3.3847 0,-3.11538 5.47037,-3.40625 11.00058,-0.58496 2.91052,1.48486 7.99622,5.48894 11.30154,8.898 5.71226,5.89153 5.87162,5.96589 3.22042,1.50254 -1.53407,-2.58265 -3.14051,-6.68969 -3.56986,-9.12679 -0.42936,-2.43709 -1.58792,-6.00571 -2.57461,-7.93026 -0.98667,-1.92455 -1.67872,-4.994368 -1.53788,-6.821813 0.14084,-1.827444 -0.19549,-3.943824 -0.74738,-4.703057 -1.61709,-2.224618 -3.99077,-19.33706 -3.62954,-26.166346 0.18276,-3.455093 -0.0565,-6.670797 -0.53177,-7.146025 -0.47521,-0.475216 -0.042,-2.453587 0.96259,-4.396353 2.85746,-5.525714 3.77922,-12.824141 2.22801,-17.641125 -0.78039,-2.423324 -1.77321,-9.190623 -2.20626,-15.038445 -0.43306,-5.847822 -1.55184,-17.5102403 -2.48619,-25.9164845 -1.73582,-15.6169675 -1.56242,-26.4965085 0.49779,-31.2326865 0.63595,-1.461955 1.47686,-4.153282 1.86869,-5.980727 1.02237,-4.768287 8.62292,-14.619555 11.27942,-14.619555 1.31284,0 2.94606,-1.801063 3.91687,-4.319414 l 1.66512,-4.319414 4.0633,4.651677 c 2.23483,2.558422 3.72594,3.597965 3.31361,2.310089 -0.91184,-2.847983 1.67622,-8.955342 3.79493,-8.955342 3.12505,0 12.30643,26.273255 15.80367,45.223468 3.53712,19.1663696 11.37117,46.860206 16.53223,58.442469 1.38003,3.097033 2.40463,11.314433 3.06567,24.587434 0.68668,13.78737 1.86177,22.973687 3.81021,29.786054 4.03563,14.109866 9.13422,23.868776 13.7054,26.232626 3.83532,1.98333 16.94292,2.74285 19.54814,1.13274 0.75834,-0.46868 5.48559,-0.83917 10.50501,-0.8233 9.66389,0.0305 13.08004,1.35764 24.16505,9.38758 3.08215,2.2327 6.96664,4.05945 8.6322,4.05945 1.66555,0 3.96812,0.93982 5.11679,2.08851 4.57694,4.57694 1.86624,5.87811 -10.85121,5.20865 -12.66623,-0.66675 -24.37874,3.45457 -32.82338,11.54968 -2.24197,2.14915 -6.91714,5.3767 -10.38928,7.17231 -3.47215,1.7956 -6.31299,3.59301 -6.31299,3.99425 0,3.97664 13.76529,20.00038 19.84875,23.1053 2.60627,1.33022 5.87799,3.67836 7.27051,5.2181 1.59902,1.7681 4.14541,2.79952 6.91147,2.79952 2.50045,0 4.85574,0.85073 5.48922,1.98269 0.88722,1.58539 2.03056,1.71854 5.70573,0.66453 2.52788,-0.725 5.7749,-1.31817 7.21556,-1.31817 2.28864,0 2.37366,0.23698 0.67331,1.87671 -1.90768,1.83965 -11.28857,4.95094 -12.19491,4.04461 z m -108.64029,-6.03515 c 0.81591,-1.52456 1.05411,-3.16926 0.52933,-3.65489 -0.52479,-0.48562 -1.22116,-0.13536 -1.54749,0.77836 -0.32633,0.91372 -1.4406,1.66131 -2.47614,1.66131 -1.03556,0 -1.88283,0.89711 -1.88283,1.99358 0,2.94923 3.6662,2.41854 5.37713,-0.77836 z m -17.35893,-2.95497 c 0.0112,-0.59138 -0.57773,-0.7056 -1.30871,-0.25382 -2.09833,1.29684 -1.5512,-0.8548 0.98729,-3.88251 1.57532,-1.87893 1.12161,-1.70519 -1.41826,0.54309 -2.05402,1.81821 -4.68959,3.31339 -5.8568,3.32263 -1.16723,0.009 -2.40081,0.84763 -2.74132,1.8631 -0.42827,1.27721 -0.0611,1.50143 1.19127,0.72744 3.09335,-1.91181 6.50768,-1.57779 6.52912,0.63872 0.0178,1.84358 0.17968,1.8572 1.3087,0.11015 0.7086,-1.09647 1.29752,-2.47743 1.30871,-3.0688 z m 2.42177,1.04006 c -0.40919,-0.4092 -1.15236,0.32842 -1.65145,1.63916 -0.72125,1.89416 -0.5686,2.04681 0.744,0.744 0.9083,-0.90155 1.31665,-1.97396 0.90745,-2.38316 z m 21.33466,-3.28746 c 0,-1.25659 -0.42225,-1.01093 -1.14223,0.66452 -0.62823,1.46196 -1.14222,3.55521 -1.14222,4.65168 0,1.25659 0.42225,1.01093 1.14222,-0.66452 0.62823,-1.46196 1.14223,-3.55521 1.14223,-4.65168 z m 2.86308,3.65489 c 0.01,-1.6447 0.3527,-4.23635 0.7616,-5.75922 0.52767,-1.96521 0.1238,-2.76886 -1.3915,-2.76886 -1.28356,0 -1.65233,0.48263 -0.92473,1.21023 0.66903,0.66903 0.75143,3.24447 0.18426,5.75922 -0.57605,2.55415 -0.50452,4.54899 0.16313,4.54899 0.654,0 1.19726,-1.34566 1.20724,-2.99036 z m 3.969,0.33226 c 0,-1.46195 -0.59808,-2.6581 -1.32905,-2.6581 -0.73098,0 -1.32905,1.19615 -1.32905,2.6581 0,1.46196 0.59807,2.6581 1.32905,2.6581 0.73097,0 1.32905,-1.19614 1.32905,-2.6581 z m -19.12556,-3.46628 c 1.10198,-2.63742 1.68627,-5.11266 1.29842,-5.50052 -0.61151,-0.61151 -1.53914,1.34211 -4.09992,8.63454 -1.35348,3.85438 0.9655,1.26014 2.8015,-3.13402 z m 80.9264,-1.84992 c 0.45177,-0.73098 -0.111,-1.32905 -1.25061,-1.32905 -1.1396,0 -2.07201,0.59807 -2.07201,1.32905 0,0.73098 0.56277,1.32905 1.25061,1.32905 0.68783,0 1.62024,-0.59807 2.07201,-1.32905 z m -1.91095,-2.86541 c 3.69601,-1.7956 5.1786,-3.11055 3.97098,-3.52198 -1.05992,-0.36112 -2.15638,0.0312 -2.43659,0.87183 -0.28021,0.84062 -1.24243,1.52841 -2.13827,1.52841 -1.59597,0 -7.5101,3.86179 -6.04137,3.94489 0.41093,0.0232 3.40129,-1.24717 6.64525,-2.82315 z m -13.37313,-7.9713 c 0,-0.63965 -3.58843,0.64843 -7.9743,2.86241 -4.38587,2.21397 -7.9743,4.64995 -7.9743,5.41327 0,0.76332 3.58843,-0.52476 7.9743,-2.8624 4.38587,-2.33765 7.9743,-4.77362 7.9743,-5.41328 z m 5.246,0.49375 c 0.0386,-0.93729 1.41587,-2.24504 3.06057,-2.90613 1.89892,-0.76328 2.22601,-1.23272 0.89619,-1.28622 -1.15178,-0.0463 -3.42009,1.32713 -5.04065,3.05215 -1.62056,1.72502 -5.30639,4.26683 -8.19073,5.64847 -2.88433,1.38163 -5.2511,2.96131 -5.25949,3.51038 -0.0267,1.75089 14.46095,-6.24215 14.53411,-8.01865 z m 10.70125,0.70734 c 0.002,-1.82516 -2.23143,-1.03013 -5.60171,1.99358 -1.83321,1.6447 -4.46235,3.75812 -5.84254,4.69649 -1.38018,0.93838 0.62985,0.0413 4.46674,-1.99357 3.83689,-2.03485 6.97677,-4.14826 6.97751,-4.6965 z m -105.76851,4.9101 c 1.47174,-2.01271 2.67716,-2.1285 16.72349,-1.60633 3.50598,0.13034 8.06268,-0.78542 11.01219,-2.21309 2.7673,-1.33949 4.86055,-2.53283 4.65168,-2.65186 -0.20889,-0.11904 -5.91284,0.10877 -12.67545,0.50624 -6.76262,0.39748 -12.29479,0.41531 -12.29372,0.0396 0.001,-0.37567 2.35944,-2.14005 5.24082,-3.92084 2.88138,-1.7808 5.59001,-4.63686 6.01918,-6.34682 0.42917,-1.70995 2.40771,-4.73015 4.39675,-6.71156 3.71351,-3.69926 9.59715,-5.39108 9.59715,-2.75962 0,0.97111 0.71669,0.88132 2.09487,-0.26246 1.72607,-1.43252 2.28486,-1.43119 3.17403,0.008 0.59914,0.96941 1.80255,1.29904 2.70541,0.74105 0.90962,-0.56217 2.11634,-0.21206 2.73844,0.79452 0.85289,1.38002 1.36642,1.11238 2.20255,-1.1479 l 1.09036,-2.94749 3.62958,3.36553 c 1.99626,1.85105 3.62957,4.17446 3.62957,5.16314 0,0.98868 0.89711,2.14184 1.99358,2.56261 2.58445,0.99175 2.52314,0.54309 -0.71313,-5.21884 -1.73552,-3.08994 -2.09318,-4.61906 -0.99679,-4.26169 0.94045,0.30654 2.54984,2.30741 3.57639,4.44636 2.24586,4.67947 4.37629,6.28 5.63919,4.23659 0.6778,-1.09669 1.49962,-1.03344 3.02545,0.23289 2.73034,2.26598 2.66283,0.85737 -0.16578,-3.45965 -2.20395,-3.36364 -2.19008,-3.4278 0.55267,-2.55728 1.55616,0.4939 3.20761,0.25496 3.69566,-0.53473 0.54178,-0.87663 1.92585,-0.10104 3.58599,2.00951 1.48701,1.89043 3.01974,3.12106 3.40607,2.73475 0.38631,-0.38632 -0.01,-1.56072 -0.88059,-2.60978 -2.48992,-3.00017 0.55159,-3.73896 3.22614,-0.78362 2.76724,3.05777 5.76398,3.60901 3.2676,0.60106 -0.92465,-1.11413 -1.25206,-2.45481 -0.72758,-2.97929 0.52449,-0.52447 1.53655,0.0881 2.24901,1.36117 1.958,3.49873 4.19774,2.85366 2.34576,-0.67559 -1.52269,-2.90173 -1.49143,-2.92143 1.05467,-0.66453 2.92799,2.59541 5.84732,3.23338 3.34491,0.73098 -0.87717,-0.87717 -1.59486,-1.9238 -1.59486,-2.32584 0,-1.18024 7.13993,-0.7978 9.17645,0.49151 1.33838,0.84734 1.57338,0.70725 0.83035,-0.495 -0.77087,-1.24728 -0.27017,-1.43363 1.95466,-0.72749 1.84856,0.58671 2.68182,0.44909 2.18158,-0.36032 -0.44517,-0.72029 1.01476,-1.67445 3.24428,-2.12035 2.251,-0.4502 3.68409,-1.4087 3.22261,-2.1554 -0.45707,-0.73955 0.0826,-1.34465 1.19926,-1.34465 1.34763,0 1.74494,-0.74362 1.18163,-2.2116 -0.56555,-1.47378 -0.33661,-1.89513 0.68622,-1.26298 1.0982,0.67872 1.30128,-0.2991 0.71378,-3.43687 l -0.82113,-4.38548 3.09306,3.2121 c 1.75146,1.81886 3.30649,2.57183 3.58511,1.73596 0.27062,-0.81186 1.50002,-1.12266 2.73201,-0.69064 1.82497,0.63994 1.93218,0.45375 0.57866,-1.005 -2.74077,-2.95385 -1.95327,-3.55421 4.31941,-3.29289 3.2894,0.13702 5.98073,-0.20561 5.98073,-0.76142 0,-0.55582 5.53217,-0.71619 12.29372,-0.35639 9.13164,0.48591 11.91108,0.26801 10.80611,-0.84719 -1.37368,-1.38639 -4.23412,-2.29367 -8.02227,-2.54452 -0.84456,-0.0559 -3.96833,-2.13422 -6.94173,-4.61841 -2.97339,-2.4842 -8.7937,-5.58224 -12.93401,-6.88453 -6.55419,-2.06154 -8.71077,-2.16494 -16.67358,-0.79947 -12.26368,2.10298 -16.09808,1.98178 -22.29939,-0.70483 -4.53961,-1.9667 -5.87402,-3.62396 -9.89874,-12.29371 -4.70856,-10.14285 -8.77859,-23.75464 -8.81583,-29.483644 -0.0112,-1.721945 -0.57973,-4.015408 -1.26342,-5.096617 -1.63672,-2.588339 -0.77863,17.147024 1.09674,25.224209 2.15946,9.300732 5.19962,17.136952 8.05862,20.771572 4.79369,6.09419 2.99454,7.10623 -15.99855,8.99945 -7.37849,0.7355 -13.9659,3.36089 -21.94577,8.74644 -7.63253,5.15112 -10.65407,5.11429 -13.51549,-0.16473 -6.67615,-12.31682 -22.438,-27.18019 -27.74033,-26.15905 -4.07873,0.78549 -3.59011,4.55776 0.82738,6.38755 2.22675,0.92236 4.04864,2.18772 4.04864,2.81192 0,1.48609 -6.98204,-1.18094 -8.18434,-3.1263 -1.36979,-2.21636 -7.22269,0.78344 -8.10401,4.15358 -0.493,1.88527 0.25965,3.34415 2.47367,4.79485 4.48384,2.93792 3.95391,4.68193 -1.42264,4.68193 -5.91408,0 -9.17601,4.68597 -5.25681,7.55174 2.33074,1.70428 2.30602,1.87269 -0.57093,3.88778 -2.24848,1.57489 -2.90454,3.16393 -2.60026,6.29807 0.40157,4.13641 0.55607,4.22163 11.70387,6.45612 6.21331,1.24542 13.68922,2.44156 16.61313,2.65811 4.5622,0.33787 5.37348,-0.008 5.72009,-2.43782 0.35247,-2.47114 -1.19875,-3.39786 -12.18823,-7.2813 -9.33099,-3.29738 -12.54904,-5.0217 -12.42578,-6.65807 0.0978,-1.2982 0.92183,-1.91838 1.99952,-1.50483 1.52001,0.58328 1.53034,0.91861 0.0605,1.96285 -1.25144,0.88903 -0.85567,1.05679 1.34579,0.57047 3.84519,-0.84943 7.11816,0.2772 6.01074,2.06904 -0.49148,0.79522 0.18122,1.0236 1.66894,0.56661 1.37076,-0.42106 6.03082,0.68474 10.3557,2.45732 4.32489,1.7726 8.36188,2.91484 8.97109,2.53832 2.11416,-1.30662 1.08904,-4.33659 -2.39419,-7.07649 -3.90752,-3.07365 -6.46428,-3.63257 -5.0011,-1.09325 0.5265,0.91372 -0.48482,0.40252 -2.2474,-1.13598 -1.76257,-1.53851 -5.7398,-4.18669 -8.83826,-5.88484 -3.09849,-1.69815 -5.38821,-3.33295 -5.08829,-3.63287 0.29993,-0.29992 3.18663,1.00259 6.41489,2.89448 3.22827,1.89189 6.81776,3.43979 7.97667,3.43979 1.15891,0 3.88403,1.49518 6.05582,3.32263 2.1718,1.82744 4.25494,3.32262 4.62923,3.32262 1.69048,0 -1.00835,-5.32933 -5.72988,-11.31465 -7.35456,-9.32311 -5.22381,-9.26685 3.3508,0.0885 3.9842,4.34696 6.69112,8.0917 6.0154,8.32168 -0.67573,0.22997 -0.86152,1.3747 -0.41287,2.54386 0.54187,1.4121 0.29371,1.80312 -0.73919,1.16475 -1.07248,-0.66282 -1.55491,0.46247 -1.55491,3.62692 0,2.85212 -0.75425,4.87737 -1.99358,5.35294 -1.09646,0.42075 -1.99357,1.44584 -1.99357,2.27795 0,0.83214 0.8709,1.17877 1.93533,0.77031 1.15818,-0.44444 0.49106,1.33685 -1.66131,4.43589 -1.97816,2.84821 -5.39087,5.89037 -7.5838,6.76036 -17.43059,6.91512 -31.77672,15.84303 -25.45795,15.84303 1.20977,0 2.19957,-0.57704 2.19957,-1.2823 0,-0.70526 1.22844,-1.93972 2.72987,-2.74326 4.27297,-2.28683 14.62608,-5.15065 13.80243,-3.81795 -0.40732,0.65903 -1.62115,1.19826 -2.69742,1.19826 -1.07626,0 -2.31429,0.93147 -2.75117,2.06995 -0.43688,1.13848 -1.61425,1.75532 -2.61639,1.37077 -1.85155,-0.71051 -2.55458,2.02901 -0.93603,3.64754 1.31768,1.31769 1.98582,1.10174 3.65528,-1.18138 z m 60.68624,-21.66101 c -0.86635,-1.61878 -0.9474,-2.99592 -0.20337,-3.45574 0.68033,-0.42048 1.63366,0.48542 2.11852,2.01307 1.19705,3.77159 -0.13268,4.77327 -1.91515,1.44267 z m -56.58873,-7.1615 c -3.65489,-1.48937 -9.63562,-3.5207 -13.29051,-4.51406 l -6.64525,-1.80614 5.98073,0.72266 c 6.57217,0.7941 20.93658,5.64205 22.04859,7.44132 0.98412,1.59234 -0.47982,1.25884 -8.09356,-1.84378 z m 54.49107,0.32177 c -0.45177,-0.73098 -0.18804,-1.32905 0.58608,-1.32905 0.77412,0 1.40749,0.59807 1.40749,1.32905 0,0.73098 -0.26373,1.32905 -0.58608,1.32905 -0.32235,0 -0.95572,-0.59807 -1.40749,-1.32905 z m 3.98715,-1.32905 c -0.45177,-0.73098 -0.22332,-1.32905 0.50766,-1.32905 0.73097,0 1.69867,0.59807 2.15044,1.32905 0.45177,0.73097 0.22332,1.32905 -0.50766,1.32905 -0.73098,0 -1.69867,-0.59808 -2.15044,-1.32905 z m 55.15559,-13.29051 c 0,-0.73098 0.26374,-1.32905 0.58609,-1.32905 0.32235,0 0.95572,0.59807 1.40749,1.32905 0.45177,0.73098 0.18803,1.32905 -0.58609,1.32905 -0.77412,0 -1.40749,-0.59807 -1.40749,-1.32905 z m 15.34085,-9.21151 c -0.42057,-0.68048 -0.12818,-1.63058 0.64973,-2.11135 1.96694,-1.21564 5.62462,0.37733 4.61551,2.01013 -1.03878,1.68077 -4.25086,1.74253 -5.26524,0.10122 z m -62.52214,53.07018 c 1.03956,-1.68205 -0.71985,-1.68205 -3.32263,0 -1.71805,1.11029 -1.68296,1.29116 0.25383,1.3087 1.23607,0.0112 2.61703,-0.57772 3.0688,-1.3087 z m -62.79763,-0.88021 c -0.91373,-0.36869 -2.40891,-0.36869 -3.32263,0 -0.91372,0.3687 -0.16613,0.67036 1.66131,0.67036 1.82745,0 2.57504,-0.30166 1.66132,-0.67036 z m 62.13311,-1.7726 c 6.07633,-1.91458 16.33391,-6.70825 15.70347,-7.3387 -0.95066,-0.95064 -20.81646,6.58098 -22.69175,8.60302 -1.3521,1.4579 -1.16991,1.59914 1.00755,0.78115 1.46195,-0.5492 4.15328,-1.46966 5.98073,-2.04547 z m -3.32263,-5.90848 c 2.92391,-1.0361 4.23093,-1.92596 2.90448,-1.97747 -3.25983,-0.12658 -15.53046,5.23853 -15.53046,6.79041 0,0.68229 1.6447,0.30236 3.65489,-0.84431 2.01019,-1.14665 6.04718,-2.93253 8.97109,-3.96863 z m -80.88818,2.58056 c -0.48924,-1.27496 0.0243,-1.99358 1.42477,-1.99358 3.16167,0 11.01731,-3.00986 11.01731,-4.22125 0,-0.56604 -1.53669,-0.44491 -3.41486,0.26918 -1.87818,0.71407 -4.82521,0.94434 -6.54898,0.51171 -1.72376,-0.43265 -4.22407,-0.12637 -5.55623,0.6806 -2.01345,1.21969 -1.74941,1.33924 1.56504,0.70861 l 3.98715,-0.75862 -3.32262,2.02233 c -1.82745,1.11226 -2.53974,2.0435 -1.58288,2.06939 0.95687,0.0259 1.37012,0.64518 0.91835,1.37616 -0.45177,0.73097 -0.12404,1.32905 0.72828,1.32905 0.85233,0 1.20544,-0.89711 0.78467,-1.99358 z m 115.47866,-1.7369 c -0.4092,-0.4092 -1.48161,-8.5e-4 -2.38316,0.90745 -1.30282,1.3126 -1.15016,1.46526 0.744,0.74401 1.31074,-0.4991 2.04836,-1.24225 1.63916,-1.65146 z m -43.22931,-0.9212 c 1.82745,-1.04466 2.72455,-1.89939 1.99358,-1.89939 -0.73098,0 -2.82424,0.85473 -4.65168,1.89939 -1.82744,1.04466 -2.72455,1.89939 -1.99358,1.89939 0.73098,0 2.82424,-0.85473 4.65168,-1.89939 z m -34.55531,-1.16632 c 0,-0.27598 -0.9108,-1.25768 -2.024,-2.18156 -1.69234,-1.40451 -1.88682,-1.3223 -1.18685,0.5018 0.71488,1.86297 3.21085,3.16875 3.21085,1.67976 z m 53.41122,-1.73514 c -0.95942,-0.38393 -2.10571,-0.33672 -2.54736,0.10491 -0.44163,0.44165 0.34335,0.75575 1.74438,0.69805 1.54828,-0.0638 1.8632,-0.3787 0.80298,-0.80296 z m 21.12431,-0.42117 c 1.51526,0 1.53154,-1.43827 0.0429,-3.7874 -0.94239,-1.48711 -1.79116,-1.43646 -4.96358,0.29616 l -3.82681,2.09001 4.65167,-0.7089 4.65168,-0.70892 -3.32263,2.16585 c -1.97928,1.2902 -2.33834,1.86006 -0.88808,1.40953 1.33899,-0.41598 2.98369,-0.75633 3.65489,-0.75633 z m -105.31772,-2.62886 c 4.56749,-0.77097 5.1474,-1.08287 2.2076,-1.18735 -6.03201,-0.21436 -13.95503,1.34732 -13.95503,2.75062 0,0.68459 1.24935,0.84819 2.77634,0.36354 1.52698,-0.48464 5.56397,-1.35171 8.97109,-1.92681 z m 36.97628,-1.12253 c -1.21382,-1.34125 -2.20694,-3.40287 -2.20694,-4.58138 0,-1.17852 -0.59807,-2.51238 -1.32905,-2.96416 -2.56069,-1.58259 -1.31354,5.99624 1.4398,8.74958 3.34066,3.34066 5.22801,2.25658 2.09619,-1.20404 z m 10.86944,-0.0577 c -1.70968,-2.09501 -3.72333,-4.85909 -4.4748,-6.1424 -1.21987,-2.08325 -1.39571,-1.99549 -1.6406,0.81873 -0.17769,2.04201 1.00555,4.20284 3.35988,6.13581 5.0579,4.1527 6.46803,3.7371 2.75552,-0.81214 z m -16.67488,-1.49347 c -0.37997,-1.45299 -1.16478,-2.34892 -1.74403,-1.99093 -0.57925,0.35801 -0.7423,1.83973 -0.36233,3.29274 0.37998,1.453 1.16478,2.34892 1.74404,1.99093 0.57925,-0.35801 0.7423,-1.83972 0.36232,-3.29274 z m 8.4074,-0.8929 c -1.1244,-2.07483 -2.06832,-3.01668 -2.09758,-2.09305 -0.0607,1.91499 2.91737,7.09001 3.65536,6.35201 0.26763,-0.26761 -0.43337,-2.18416 -1.55778,-4.25896 z m 10.91686,0.25644 c -0.82219,-1.80454 -2.04447,-2.9413 -2.71618,-2.52617 -0.6717,0.41514 -0.19252,1.89157 1.06487,3.28096 3.04676,3.36664 3.44602,3.18415 1.65131,-0.75479 z m 6.20357,0.62284 c -1.32305,-1.46195 -3.00361,-2.6581 -3.7346,-2.6581 -0.73098,0 -0.24655,1.19615 1.0765,2.6581 1.32306,1.46196 3.00363,2.6581 3.73461,2.6581 0.73098,0 0.24655,-1.19614 -1.07651,-2.6581 z m 35.21984,1.37076 c 0,-0.70803 -0.89711,-0.94308 -1.99357,-0.52233 -1.09647,0.42076 -1.99358,1.00005 -1.99358,1.28734 0,0.28728 0.89711,0.52233 1.99358,0.52233 1.09646,0 1.99357,-0.5793 1.99357,-1.28734 z m -75.75736,-1.70302 c 8.2e-4,-0.54823 -5.23165,-1.06755 -11.62771,-1.15403 -8.64696,-0.11693 -10.60671,-0.43808 -7.64204,-1.25236 3.43132,-0.94245 3.1157,-1.05884 -2.26405,-0.83489 -3.49758,0.14561 -5.74683,-0.24413 -5.1062,-0.88476 0.62976,-0.62976 3.83426,-0.93089 7.12114,-0.66919 3.28687,0.26171 5.69888,0.0273 5.36002,-0.52097 -0.33886,-0.54824 -3.69079,-0.99679 -7.44873,-0.99679 -4.62499,0 -6.39651,-0.43612 -5.48286,-1.34977 1.24919,-1.24919 15.83563,-0.0385 25.76286,2.13833 2.08357,0.45688 2.827,0.26781 1.99358,-0.50703 -1.46527,-1.36225 -18.12243,-4.26868 -24.46442,-4.26868 -6.76153,0 -9.01419,9.17677 -2.30666,9.39677 2.38211,0.0781 2.47472,0.24124 0.56594,0.99679 -1.25522,0.49685 3.97725,0.90337 11.62772,0.90337 7.65046,0 13.91059,-0.44856 13.91141,-0.99679 z m 43.08472,-2.80014 c -0.85448,-2.22672 -3.21172,-3.04916 -3.21172,-1.12056 0,1.29299 2.96504,4.38903 3.59757,3.75651 0.24867,-0.24868 0.075,-1.43486 -0.38585,-2.63595 z m -33.77988,-7.5 c 0,-2.19294 -0.23115,-3.98715 -0.51368,-3.98715 -0.28253,0 -0.77702,1.79421 -1.09887,3.98715 -0.32186,2.19293 -0.0907,3.98715 0.51368,3.98715 0.60438,0 1.09887,-1.79422 1.09887,-3.98715 z m -7.30978,-7.9743 c -3.65368,-1.57004 -5.75209,-1.57004 -3.32263,0 1.09647,0.70859 2.89069,1.25547 3.98715,1.21528 1.31452,-0.0482 1.08815,-0.46214 -0.66452,-1.21528 z m 38.54246,-17.31525 c 2.61867,-1.86206 10.75346,-3.9474 16.23676,-4.16225 3.07053,-0.12032 5.27317,-0.71976 4.89472,-1.33209 -0.37843,-0.61232 0.0948,-1.16473 1.05168,-1.22756 0.95686,-0.0628 -0.003,-0.63545 -2.13353,-1.27252 -2.13029,-0.63705 -4.37306,-0.84938 -4.98394,-0.47185 -0.61085,0.37754 -1.11066,-0.0135 -1.11066,-0.86896 0,-1.06836 1.56065,-1.27882 4.98394,-0.6721 7.72593,1.36925 9.73819,2.15848 8.91195,3.49536 -0.41924,0.67835 -0.085,1.23336 0.74269,1.23336 3.40677,0 0.42392,-4.45907 -3.31765,-4.95957 -5.01481,-0.67081 -6.122,-1.67306 -1.90682,-1.7261 6.05259,-0.0762 -1.26865,-2.98922 -10.0374,-3.99381 l -8.01553,-0.91828 7.30977,-0.26609 c 6.23017,-0.22679 6.82957,-0.45789 4.05835,-1.56465 -1.78829,-0.71421 -5.82528,-1.35021 -8.97109,-1.41336 -3.14582,-0.0631 -5.71966,-0.6896 -5.71966,-1.39212 0,-1.17771 7.70606,-0.5348 13.62277,1.13655 4.11232,1.16164 2.478,-0.92324 -2.28315,-2.91258 -2.53495,-1.05916 -6.45771,-1.92575 -8.71727,-1.92575 -2.25955,0 -3.78683,-0.52012 -3.39393,-1.15582 0.67424,-1.09094 6.85806,-0.23781 13.90775,1.91875 2.39978,0.7341 3.02034,0.51733 2.55828,-0.89366 -0.75028,-2.29117 -8.21445,-5.009399 -14.03314,-5.11046 -2.37568,-0.04125 -4.31941,-0.684474 -4.31941,-1.429381 0,-1.334552 1.66289,-1.123818 12.42787,1.575005 2.81495,0.705712 5.44859,0.952623 5.85253,0.548685 1.19089,-1.190896 -7.57886,-4.359698 -18.07218,-6.530064 -5.36782,-1.110248 -10.12994,-2.388915 -10.58251,-2.841483 -1.12321,-1.123207 9.73645,0.631326 16.7622,2.708166 4.24481,1.254784 5.58974,1.290987 5.20613,0.140122 -0.2845,-0.853463 -5.85038,-2.855172 -12.36864,-4.448252 -6.51826,-1.593093 -10.3562,-2.932244 -8.52876,-2.975903 1.82745,-0.04366 8.70529,1.389176 15.28409,3.184086 7.43635,2.028888 11.06481,2.583434 9.59131,1.465889 -2.28158,-1.730424 -23.83673,-7.420487 -28.11033,-7.420487 -1.90381,0 -2.69772,1.593239 -2.20406,4.423212 0.1056,0.605316 -1.46828,0.990502 -3.4975,0.855949 -5.42133,-0.359442 -7.01211,-0.09541 -7.01211,1.163836 0,0.619736 1.85565,1.179559 4.12364,1.244044 5.08887,0.144681 6.98139,1.616312 2.0786,1.616312 -1.94928,0 -3.54414,0.598073 -3.54414,1.32905 0,0.730978 0.74759,1.338208 1.66131,1.349399 1.17851,0.01445 1.22704,0.304126 0.16697,0.996787 -0.82188,0.537043 -1.9159,2.919592 -2.43115,5.294548 -0.81222,3.74389 -0.63033,4.20051 1.36786,3.43374 2.11858,-0.81298 2.10395,-0.54459 -0.18123,3.32393 -1.36726,2.31457 -2.82688,4.2083 -3.24362,4.2083 -0.7298,0 -1.21819,-3.06945 -1.37185,-8.62207 -0.0543,-1.96093 -0.35752,-2.18115 -1.1772,-0.85489 -1.50892,2.4415 -3.02026,-0.21885 -1.90958,-3.361346 0.69864,-1.976643 0.52794,-2.134029 -0.88997,-0.820516 -1.38456,1.28264 -1.42579,2.346502 -0.1956,5.046482 0.85735,1.88167 1.55881,4.6573 1.55881,6.16809 0,3.17455 4.66942,12.34095 8.5588,16.80155 2.02336,2.32051 2.26572,3.30928 1.00251,4.08999 -1.26207,0.77999 -0.983,1.89787 1.15105,4.61087 l 2.81701,3.58126 7.52261,-4.22715 c 4.13743,-2.32493 8.12068,-4.65242 8.85165,-5.1722 z m 5.31621,-5.9378 c 4.4857,-2.11398 9.55947,-2.80012 5.98072,-0.8088 -1.09646,0.61011 -3.78779,1.46445 -5.98072,1.89856 l -3.98716,0.78926 3.98716,-1.87902 z m -2.73635,-2.7057 c 1.41892,-1.07322 4.11025,-1.92507 5.98073,-1.89298 2.81715,0.0483 2.48841,0.38706 -1.91533,1.97357 -6.6342,2.39005 -7.31406,2.37657 -4.0654,-0.0806 z m -26.25705,-1.4841 c -1.06917,-1.06916 0.31669,-7.30761 2.02287,-9.10604 0.79865,-0.84184 0.91473,0.61983 0.31663,3.98715 -1.08137,6.0881 -1.172,6.28641 -2.3395,5.11889 z m 37.27467,-2.66804 c 0.89981,-0.36406 2.69402,-0.38621 3.98715,-0.0492 1.29313,0.33696 0.55691,0.63483 -1.63602,0.66192 -2.19293,0.0271 -3.25094,-0.24862 -2.35113,-0.61268 z m 9.20424,-8.09932 c -1.27814,-4.1448 -1.61003,-4.46813 -1.97119,-1.92042 -0.35623,2.51286 1.63506,6.90436 3.13071,6.90436 0.20757,0 -0.31421,-2.24277 -1.15952,-4.98394 z m -3.53048,-12.293713 c 0,-0.730978 -0.63338,-1.32905 -1.4075,-1.32905 -0.77411,0 -1.03785,0.598072 -0.58608,1.32905 0.45177,0.730978 1.08514,1.329051 1.40749,1.329051 0.32235,0 0.58609,-0.598073 0.58609,-1.329051 z m -51.37384,-9.620518 c -0.31197,-4.576917 -1.20865,-8.543575 -1.99262,-8.814807 -0.90972,-0.314746 -0.80088,-0.879114 0.30085,-1.560026 1.4143,-0.874077 1.41207,-1.445423 -0.0123,-3.161732 -1.34969,-1.626292 -1.3685,-2.094876 -0.0841,-2.094876 1.29787,0 1.30829,-0.417189 0.0483,-1.935363 -0.88342,-1.064437 -1.25375,-2.505646 -0.82296,-3.202679 1.04669,-1.69357 -0.48677,-5.494361 -2.21674,-5.494361 -1.65486,0 -0.38676,18.480659 1.97701,28.812126 2.08561,9.115704 3.50935,7.821143 2.80255,-2.548282 z m 7.51517,6.155697 c 0,-0.287274 -0.89711,-0.52233 -1.99358,-0.52233 -1.09646,0 -1.99357,0.579306 -1.99357,1.287345 0,0.708025 0.89711,0.943081 1.99357,0.52233 1.09647,-0.420764 1.99358,-1.000057 1.99358,-1.287345 z m 39.87151,-5.75447 c -2.77564,-1.620843 -15.41493,-5.096868 -34.31738,-9.437879 -5.75126,-1.320784 -8.21223,-0.883885 -8.21223,1.457955 0,0.687836 2.84084,1.28983 6.31299,1.337769 3.47214,0.04793 12.89179,1.777179 20.93254,3.842776 16.08586,4.132311 18.24337,4.527477 15.28408,2.799379 z m -34.77521,-2.280172 c 2.3174,-0.620494 2.65378,-1.115339 1.32905,-1.955073 -2.88608,-1.829451 -8.73866,-1.322432 -9.56408,0.828557 -0.83191,2.167947 2.5948,2.636703 8.23503,1.126516 z m 36.14939,-1.072145 c -3.65455,-4.40345 -41.06776,-13.389904 -43.91058,-10.547078 -0.87993,0.879924 1.93059,1.902841 8.37363,3.047645 5.33395,0.947746 15.35218,3.405426 22.26271,5.461507 15.00423,4.464188 15.32928,4.514093 13.27424,2.037926 z m 1.28392,-6.548192 c 0,-2.280491 -1.21321,-3.734273 -4.31941,-5.175947 -8.68617,-4.031488 -23.84246,-8.927817 -27.32475,-8.827433 -2.20076,0.06345 0.76821,1.49784 7.72126,3.730378 6.95836,2.234241 10.5313,3.960863 9.30335,4.495846 -1.09647,0.477714 -0.47506,0.560088 1.38092,0.183077 4.96969,-1.009534 10.58053,1.524952 10.58053,4.779358 0,2.602441 -0.1802,2.631932 -4.00282,0.655182 -4.65751,-2.408492 -28.05722,-8.686953 -29.36464,-7.87893 -0.48766,0.301402 -1.61531,-0.329963 -2.50587,-1.403025 -1.24584,-1.50115 -2.23889,-1.619355 -4.30676,-0.512668 -2.04078,1.092187 -2.95342,1.008178 -3.79225,-0.349089 -0.87979,-1.423519 -1.44066,-1.451456 -2.75489,-0.137211 -1.31423,1.314232 -1.19022,1.650202 0.60918,1.650202 1.24266,0 2.25939,0.481143 2.25939,1.069208 0,0.588065 2.50039,1.216746 5.55643,1.397071 6.50081,0.383578 24.68636,4.513296 32.32151,7.339828 7.42398,2.748357 8.63882,2.605497 8.63882,-1.015847 z m -7.9743,-3.474058 c -1.09646,-0.708596 -2.59165,-1.288341 -3.32262,-1.288341 -0.73098,0 -0.43195,0.579745 0.66452,1.288341 1.09647,0.708597 2.59165,1.288342 3.32263,1.288342 0.73097,0 0.43194,-0.579745 -0.66453,-1.288342 z m -14.43988,-4.703695 c -2.45961,-1.067853 -5.74899,-1.878853 -7.30978,-1.802206 -1.86041,0.09136 -1.00682,0.742793 2.47843,1.891438 7.19648,2.37177 10.36501,2.313252 4.83135,-0.08923 z m 21.89185,-0.05668 c -0.44369,-1.156248 -0.80672,-2.551751 -0.80672,-3.101114 0,-0.549363 -0.74759,-1.044992 -1.66131,-1.101384 -0.91372,-0.05641 -6.44589,-2.197651 -12.29372,-4.758346 -7.42533,-3.251456 -13.63902,-4.935801 -20.60028,-5.584112 -5.48233,-0.510595 -9.58367,-0.526942 -9.11408,-0.03634 0.46958,0.490592 3.54637,1.155662 6.8373,1.47793 12.5376,1.227764 35.50304,9.926492 35.50304,13.447652 0,0.966884 0.66206,1.757988 1.47125,1.757988 0.80918,0 1.10821,-0.946018 0.66452,-2.102278 z m -4.79387,0.02535 c 0,-0.411328 -4.03699,-2.580259 -8.97109,-4.819842 -10.28579,-4.668702 -34.51883,-8.689518 -36.88115,-6.119413 -0.93564,1.017933 -0.59072,1.184556 1.16525,0.562892 1.37186,-0.485688 3.30798,-0.20777 4.30248,0.617597 0.99451,0.825367 2.75301,1.138119 3.90778,0.694987 2.48671,-0.954245 15.73645,2.215766 27.4539,6.568367 9.83503,3.653347 9.02283,3.428711 9.02283,2.495412 z m 8.24748,-9.426357 c 0.1389,-13.164897 -0.22654,-17.73582 -1.41793,-17.73582 -0.62961,0 -0.85892,1.495182 -0.50958,3.322626 0.34934,1.827445 0.0541,3.322626 -0.65607,3.322626 -0.71017,0 -1.64997,-4.27909 -2.08843,-9.50909 -0.43847,-5.229986 -1.46464,-10.164086 -2.28039,-10.964666 -1.08672,-1.06651 -1.29048,-0.567452 -0.7623,1.86705 1.50855,6.95318 2.11201,18.606706 0.96351,18.606706 -1.41531,0 -0.89735,11.721136 0.5765,13.04588 0.5563,0.500029 0.60679,0.20288 0.11219,-0.660325 -0.49461,-0.863219 -0.38026,-1.890256 0.25411,-2.282326 0.63437,-0.392056 1.88172,1.718104 2.77189,4.689236 2.08919,6.973089 2.93476,5.942238 3.0365,-3.701897 z m -42.80279,3.528987 c 1.65081,-1.066842 1.53657,-1.288341 -0.66452,-1.288341 -1.46196,0 -3.55521,0.579745 -4.65168,1.288341 -1.65081,1.066843 -1.53657,1.288342 0.66452,1.288342 1.46196,0 3.55521,-0.579745 4.65168,-1.288342 z m -7.9743,-1.407491 c 0,-0.774118 -0.59807,-1.037855 -1.32905,-0.586084 -0.73098,0.451771 -1.32905,1.085143 -1.32905,1.407491 0,0.322348 0.59807,0.586084 1.32905,0.586084 0.73098,0 1.32905,-0.633372 1.32905,-1.407491 z m 29.90363,-5.862707 c -7.80963,-3.597939 -14.53132,-5.369882 -13.3949,-3.531114 0.43057,0.696661 3.02249,1.654455 5.75983,2.128408 2.73734,0.473952 6.47215,1.700945 8.2996,2.726653 1.82744,1.025695 3.9207,1.836256 4.65168,1.801235 0.73097,-0.03503 -1.66132,-1.441355 -5.31621,-3.125182 z m 11.29693,2.707422 c 0,-1.005068 -17.76669,-10.053549 -19.89225,-10.131033 -1.12039,-0.04084 -4.72841,-1.252803 -8.01781,-2.693241 l -5.98072,-2.618987 4.98393,0.759885 c 5.99382,0.913868 6.45861,0.08449 1.01592,-1.812838 -2.95295,-1.029403 -4.3979,-0.958644 -5.64847,0.276615 -0.92423,0.912925 -2.87658,2.138761 -4.33854,2.724075 -1.96678,0.787436 0.61928,1.739528 9.94332,3.660816 7.28021,1.500139 15.41788,4.183944 19.27123,6.355666 6.67069,3.759565 8.66339,4.559786 8.66339,3.479042 z m -46.51676,-4.897445 c 0,-0.730977 -0.59808,-0.959428 -1.32905,-0.507657 -0.73098,0.451771 -1.32906,1.419466 -1.32906,2.150443 0,0.730978 0.59808,0.959429 1.32906,0.507658 0.73097,-0.451771 1.32905,-1.419466 1.32905,-2.150444 z m 5.3162,0.156868 c 1.71805,-1.110289 1.68296,-1.291159 -0.25382,-1.308703 -1.23607,-0.01119 -2.61704,0.577725 -3.06881,1.308703 -1.03956,1.682046 0.71986,1.682046 3.32263,0 z m 39.17045,-0.485502 c -1.44186,-0.998011 -4.11675,-2.214703 -5.94419,-2.703767 -2.4803,-0.663781 -2.14337,-0.217885 1.32905,1.758852 5.29369,3.013529 8.5741,3.685165 4.61514,0.944915 z m -26.61093,-2.001005 c -2.0245,-1.855913 -8.33874,-2.953908 -9.17798,-1.595977 -0.6746,1.091536 1.93519,1.874546 8.51346,2.554302 1.16939,0.120837 1.43068,-0.255975 0.66452,-0.958325 z m -11.895,-1.500644 c 0.45177,-0.730978 -0.0757,-1.329051 -1.17218,-1.329051 -1.09647,0 -2.3632,0.598073 -2.81497,1.329051 -0.45177,0.730978 0.0757,1.32905 1.17218,1.32905 1.09647,0 2.3632,-0.598072 2.81497,-1.32905 z m -1.99357,-6.143456 c 0,-1.006969 0.86181,-1.830847 1.91513,-1.830847 1.05333,0 2.34188,-0.690482 2.86346,-1.534402 0.58754,-0.95067 0.36458,-1.173631 -0.58609,-0.586085 -0.84392,0.521573 -1.5344,0.59471 -1.5344,0.162517 0,-0.432181 1.34566,-1.326672 2.99036,-1.987768 l 2.99037,-1.20198 -2.91193,-0.08423 c -1.60156,-0.04634 -3.28156,0.513824 -3.73333,1.244802 -0.45177,0.730977 -1.50379,1.32905 -2.33782,1.32905 -1.09228,0 -1.07035,-0.446069 0.0784,-1.594861 2.25986,-2.259864 1.98836,-3.308418 -1.06324,-4.106433 -1.46196,-0.382315 -2.6581,-1.349173 -2.6581,-2.148583 0,-1.80311 1.43142,-1.829943 6.22646,-0.116677 3.48981,1.246901 3.56792,1.202205 1.16155,-0.664526 -1.41892,-1.100733 -3.32735,-2.001324 -4.24097,-2.001324 -0.91361,0 -2.07035,-0.662146 -2.57052,-1.471431 -0.61729,-0.998808 0.10459,-1.190152 2.2474,-0.595721 3.04875,0.845755 3.0685,0.805139 0.57694,-1.186656 -1.41892,-1.134318 -3.1633,-2.062394 -3.8764,-2.062394 -0.71309,0 -0.94461,-0.351919 -0.51449,-0.78204 0.43012,-0.430133 4.76311,1.117931 9.62885,3.440141 4.86575,2.32221 9.08206,3.986952 9.36957,3.699426 0.71183,-0.711827 -17.24977,-10.344678 -19.28887,-10.344678 -2.07543,0 -0.64658,12.206332 2.09009,17.855222 1.27882,2.63964 1.45332,4.336372 0.53994,5.249749 -0.74226,0.742261 -1.34955,2.499319 -1.34955,3.904577 0,2.120447 0.33908,2.27362 1.99357,0.900512 1.09647,-0.909988 1.99358,-2.4784 1.99358,-3.485355 z m 31.26785,2.412984 c -0.4092,-0.409201 -1.48161,-8.51e-4 -2.38316,0.907449 -1.30282,1.312597 -1.15016,1.465252 0.744,0.744002 1.31074,-0.499098 2.04836,-1.24225 1.63916,-1.651451 z m 8.31143,0.262049 c 1.12852,-1.208094 1.00384,-1.800319 -0.50052,-2.377605 -1.13607,-0.435955 -1.65188,-0.199982 -1.19141,0.545044 1.20804,1.954674 -0.77888,1.508777 -5.99014,-1.344269 -5.09979,-2.792016 -4.79854,-3.406103 0.65396,-1.333064 2.49956,0.950324 3.22863,0.910068 2.57818,-0.142394 -0.61652,-0.997546 0.10391,-1.176781 2.24989,-0.559756 1.99386,0.573285 1.19836,-0.338204 -2.15941,-2.474241 -5.96613,-3.795342 -5.39695,-4.540448 1.06279,-1.391276 l 4.25342,2.073584 -3.32263,-2.821414 c -3.22426,-2.737884 -3.2341,-2.796615 -0.33226,-1.98402 5.6153,1.572466 2.99994,-0.632535 -6.31299,-5.322449 -5.11685,-2.576802 -9.30336,-4.069831 -9.30336,-3.317828 0,1.261336 4.84845,3.841594 11.29693,6.012026 2.49934,0.841223 2.46095,0.970393 -0.64255,2.162552 -3.5473,1.362635 -9.32532,-0.393745 -9.32532,-2.834679 0,-0.746647 -0.91815,-1.357545 -2.04034,-1.357545 -1.58064,0 -1.74089,0.559517 -0.71129,2.483357 0.73098,1.365839 1.00598,2.80641 0.61114,3.201271 -0.39486,0.394861 0.60231,1.136949 2.21594,1.649099 1.87953,0.596544 2.38433,1.270798 1.40468,1.876247 -0.91251,0.563969 1.1704,2.209506 5.16512,4.08053 4.43414,2.076841 6.13077,3.483721 5.02522,4.166986 -1.09559,0.677111 -0.72743,0.960624 1.0715,0.825114 1.50732,-0.113554 3.41687,-0.930415 4.24345,-1.81527 z m -13.12719,-6.8995 c 1.0657,-0.355229 0.79979,-1.138877 -0.79743,-2.350027 -3.38208,-2.564589 -0.56994,-2.233709 4.64374,0.546399 l 4.38192,2.336577 -4.91354,0 c -2.70245,0 -4.19406,-0.239827 -3.31469,-0.532949 z m -17.14874,-6.909733 c 0,-0.730978 -0.63337,-1.329051 -1.40749,-1.329051 -0.77412,0 -1.03786,0.598073 -0.58609,1.329051 0.45178,0.730977 1.08515,1.32905 1.4075,1.32905 0.32234,0 0.58608,-0.598073 0.58608,-1.32905 z m 29.23911,-3.322627 c -0.90999,-1.096466 -2.66312,-1.993575 -3.89586,-1.993575 -1.23275,0 -3.40229,-0.928076 -4.82121,-2.062394 -2.47869,-1.981521 -2.44956,-2.027174 0.74277,-1.164248 3.16497,0.855536 3.13343,0.753412 -0.66453,-2.152238 -6.01622,-4.602754 -6.66795,-5.254228 -5.24975,-5.247809 0.69443,0.0032 4.46444,2.433159 8.37782,5.400012 3.91336,2.966866 7.3413,5.168212 7.61764,4.891862 0.27633,-0.276336 -1.81331,-2.76368 -4.64364,-5.527427 -3.88431,-3.792924 -6.302,-5.057755 -9.86057,-5.15863 -2.59299,-0.0735 -4.45623,-0.551569 -4.14054,-1.062377 0.31571,-0.510794 -0.31967,-1.271662 -1.41194,-1.690804 -2.22731,-0.854699 -2.3322,-0.636164 -1.16037,2.417582 0.45407,1.183281 2.60291,3.070519 4.77519,4.193846 2.17228,1.123326 3.64621,2.345814 3.2754,2.716632 -0.37081,0.370805 -1.92158,0.0066 -3.44613,-0.809285 -1.52457,-0.815931 -2.77194,-0.944211 -2.77194,-0.285082 0,0.659143 4.037,3.040788 8.9711,5.292572 10.58841,4.832228 10.41881,4.786469 8.30656,2.241363 z m -21.88214,-1.917221 c -0.42581,-0.68898 -5.53462,-3.78915 -11.35288,-6.889253 -5.81826,-3.100103 -10.31148,-5.903735 -9.98492,-6.230296 0.32656,-0.326561 5.34187,1.876486 11.14512,4.895664 11.83674,6.158155 12.00995,6.212207 11.63094,3.629929 -0.46141,-3.143776 -3.66884,-6.16189 -13.84847,-13.0310211 -5.38035,-3.6306337 -9.4809,-6.9027293 -9.1123,-7.2713149 0.3686,-0.3685989 4.29088,1.7885962 8.71619,4.7937654 4.42532,3.0051692 7.71876,4.6111006 7.31877,3.5687266 -0.40001,-1.0423877 -4.3098,-4.4082213 -8.68842,-7.4796569 -4.37863,-3.07143568 -7.69273,-5.8528459 -7.36467,-6.1809087 0.7776,-0.7776009 16.84177,10.242859 16.84177,11.5539142 0,0.5511306 0.93476,1.3607483 2.07724,1.7991622 5.0678,1.9447062 -4.95982,-8.8428506 -16.03227,-17.2472475 -8.31613,-6.3122453 -8.85292,-6.5129453 -7.97119,-2.9803293 0.4258,1.705956 0.93919,5.9335858 1.14084,9.3947389 0.20166,3.4611531 0.62484,6.4515167 0.9404,6.6452523 0.31557,0.1937357 1.7699,1.0951775 3.23185,2.0031981 1.46196,0.9080338 5.98329,3.4010397 10.0474,5.5400137 6.42706,3.38262 12.32857,8.093107 10.1394,8.093107 -0.84551,0 -13.09424,-7.190788 -18.47167,-10.844042 -4.71115,-3.2006192 -4.84599,-3.1456364 -3.87311,1.57967 0.70648,3.431395 2.49774,4.896368 12.12586,9.917095 12.55085,6.544816 12.42791,6.493448 11.34412,4.739833 z M 268.69632,12.337495 C 266.16201,10.374208 262.286,6.7250744 260.08297,4.2282936 246.09645,-11.623225 242.14563,-15.235026 238.54809,-15.458758 c -3.62989,-0.225739 -3.56645,-0.09331 2.2453,4.687388 3.2894,2.7058404 9.1478,8.14276 13.01866,12.0820523 7.94545,8.0858766 17.89184,16.1042377 18.85309,15.1985427 0.35148,-0.331173 -1.43449,-2.208443 -3.96882,-4.17173 z m 9.64068,-0.456874 c -0.41249,-1.577397 -1.85168,-3.969688 -3.1982,-5.3162022 -1.34651,-1.3465142 -2.4482,-3.3453131 -2.4482,-4.4417797 0,-1.0964667 -0.61911,-1.99357572 -1.37581,-1.99357572 -0.94228,0 -0.93662,0.8206355 0.0179,2.60426112 0.76657,1.4323443 1.25268,3.0770442 1.08025,3.6548888 -0.41428,1.3883394 4.27432,8.3604057 5.62224,8.3604057 0.57847,0 0.71427,-1.290601 0.30177,-2.867998 z m -17.64634,-1.171067 c -1.0753,-0.680035 -2.8522,-1.2244006 -3.94867,-1.209688 -1.15576,0.015497 -0.59808,0.799052 1.32705,1.864472 3.56847,1.974889 5.87056,1.399915 2.62162,-0.654784 z m 11.33541,0.05191 c -0.45177,-0.730978 -1.08514,-1.3290503 -1.40749,-1.3290503 -0.32234,0 -0.58608,0.5980723 -0.58608,1.3290503 0,0.730978 0.63337,1.329051 1.40749,1.329051 0.77412,0 1.03786,-0.598073 0.58608,-1.329051 z M 253.90301,4.330152 c -4.41685,-5.9488564 -17.66493,-16.637678 -19.75697,-15.940326 -0.77931,0.259763 1.45349,2.6152394 4.96174,5.2343992 3.50826,2.6191598 8.16356,6.85920291 10.34512,9.4223166 3.87572,4.5535927 7.69616,5.6555882 4.45011,1.2836102 z m 16.12949,0.1956363 c 0,-1.7955206 -10.59563,-18.4329333 -15.00162,-23.5557583 -2.80461,-3.260918 -5.08068,-4.830181 -6.09579,-4.202803 -1.1385,0.703626 -0.1057,2.645435 3.47472,6.533067 2.80209,3.042516 7.40044,9.2697948 10.21856,13.8384058 4.52034,7.328185 7.40413,10.20534 7.40413,7.3870885 z m -11.50529,-9.3806642 c -3.34072,-4.9340999 -7.92305,-10.9203291 -10.18294,-13.3027451 -3.47731,-3.66584 -4.28898,-4.009838 -5.28056,-2.238002 -0.88444,1.580414 0.63068,3.945486 6.18063,9.647857 4.04376,4.1548111 8.62456,9.1989032 10.17953,11.209092 5.67259,7.3331689 5.01066,3.4086157 -0.89666,-5.3162019 z m 13.56839,-5.0225482 c -1.13471,-2.7157289 -2.0631,-6.5900839 -2.0631,-8.6096689 0,-2.403149 -1.09548,-4.389774 -3.17029,-5.749246 -1.74366,-1.142492 -3.44297,-1.804572 -3.77626,-1.471299 -0.33327,0.333273 0.94384,3.741065 2.83804,7.572863 1.89419,3.831799 4.24432,9.0601639 5.22251,11.618586 0.97819,2.5584222 2.05609,3.9597464 2.39536,3.1140716 0.33925,-0.8456881 -0.31156,-3.7595781 -1.44626,-6.4753067 z m -6.80873,-3.5502929 c -2.38288,-6.753795 -5.44522,-10.366128 -8.78788,-10.366128 -2.00322,0 -1.24955,1.554524 3.86088,7.963431 3.4925,4.379873 6.47299,7.9683089 6.62331,7.9743029 0.15031,0.00598 -0.61301,-2.5012459 -1.69631,-5.5716059 z M 229.07559,-32.0561 c -0.95367,-0.953687 -1.57271,-1.032154 -1.57271,-0.199358 0,1.77399 1.57175,3.345739 2.45875,2.458731 0.37767,-0.377663 -0.021,-1.394387 -0.88604,-2.259373 z m 9.0597,-16.911263 c 0,-0.687837 -0.59807,-1.620246 -1.32905,-2.072017 -0.73098,-0.451771 -1.32905,0.111016 -1.32905,1.250623 0,1.139595 0.59807,2.072003 1.32905,2.072003 0.73098,0 1.32905,-0.562773 1.32905,-1.250609 z m 8.77173,-4.863023 c -0.47299,-1.232614 -1.15904,-1.942075 -1.52453,-1.576586 -0.36549,0.365489 -0.27752,1.673022 0.19548,2.905637 0.473,1.232614 1.15904,1.942088 1.52453,1.576599 0.36549,-0.365489 0.27752,-1.673035 -0.19548,-2.90565 z m 9.74156,-2.857458 c -0.0514,-0.548234 -0.60741,-2.192934 -1.23564,-3.654889 -1.01215,-2.35541 -1.15285,-2.241896 -1.23563,0.996788 -0.0514,2.010189 0.50466,3.654889 1.23563,3.654889 0.73098,0 1.28702,-0.448555 1.23564,-0.996788 z"
+         style="fill:#000000"
+         inkscape:connector-curvature="0" />
     </g>
     <g
-       transform="matrix(0.99999005,0,0,0.99999005,543.5375,71.497973)"
+       style="overflow:visible"
        id="g9770"
-       style="overflow:visible">
+       transform="matrix(0.99999005,0,0,0.99999005,543.5375,71.497973)">
       <path
-         style="fill:#221e1f"
-         inkscape:connector-curvature="0"
+         id="path9756"
          d="m 49.708,102.93 c 0,0.009 -10e-4,0.017 -10e-4,0.026 -10e-4,-0.01 0,-0.02 10e-4,-0.03 z M 46.684,67.966 h -0.002 0.002 z"
-         id="path9756" />
+         inkscape:connector-curvature="0"
+         style="fill:#221e1f" />
       <line
-         style="fill:none;stroke:#221e1f;stroke-width:0;stroke-linecap:round;stroke-linejoin:round"
-         y2="67.966003"
-         y1="67.966003"
-         x2="46.681999"
+         id="line9758"
          x1="46.683998"
-         id="line9758" />
+         x2="46.681999"
+         y1="67.966003"
+         y2="67.966003"
+         style="fill:none;stroke:#221e1f;stroke-width:0;stroke-linecap:round;stroke-linejoin:round" />
       <path
-         style="fill:none;stroke:#221e1f;stroke-width:0;stroke-linecap:round;stroke-linejoin:round"
-         inkscape:connector-curvature="0"
+         id="path9760"
          d="m 49.706,102.96 c 0,-0.009 10e-4,-0.017 10e-4,-0.026"
-         id="path9760" />
-      <path
-         style="fill:#221e1f"
          inkscape:connector-curvature="0"
+         style="fill:none;stroke:#221e1f;stroke-width:0;stroke-linecap:round;stroke-linejoin:round" />
+      <path
+         id="path9762"
          d="m 297.64,48.24 c -1.162,-7.312 2.811,-11.605 -3.135,-17.026 -7.397,-6.746 5.662,-5.724 3.613,-13.454 -3.357,0.205 -5.162,4.034 -8.639,3.6 1.922,-1.047 4.295,-1.844 4.799,-4.32 -7.314,0.799 -15.301,2.748 -19.68,-4.8 4.149,0.379 8.181,-0.188 12.271,-0.778 3.576,-0.516 7.963,-3.407 1.333,-3.691 -3.885,-0.167 -17.949,1.537 -20.804,-1.77 0.111,-2.35 9.595,0.212 7.68,-5.04 -6.63,3.494 -16.453,-0.125 -23.52,-0.96 -2.094,3.654 -7.729,0.044 -10.561,1.44 -5.99,-2.684 -9.076,2.784 -13.199,3.12 -2.134,1.161 -4.002,2.653 -5.605,4.476 -3.007,3.271 -4.594,2.841 -8.582,4.457 -3.82,1.548 -9.482,2.219 -14.373,3.547 -0.21,1.166 -7.586,4.177 -8.881,4.56 -2.188,-1.65 -6.521,1.453 -8.16,3.12 1.421,0.358 2.861,0.598 4.32,0.72 -2.998,0.962 -6.49,-2.513 -8.16,1.2 1.11,0.287 2.23,0.527 3.361,0.72 -3.463,1.215 -19.441,7.36 -19.441,10.56 4.381,-2.629 10.123,-3.267 15.121,-3.36 0.087,1.438 -7.659,2.199 -9.402,2.718 -4.352,1.295 -4.011,1.748 -4.998,4.481 -1.371,0.211 -2.651,-0.029 -3.84,-0.72 0.047,0.78 0.447,1.26 1.199,1.44 -2.393,1.33 -1.778,0.309 -3.6,2.16 -3.367,0.871 -6.502,-1.176 -9.6,4.08 1.063,0.175 2.103,0.095 3.12,-0.24 -0.579,0.302 -0.899,0.782 -0.96,1.44 1.478,0.442 3.653,-2.38 5.76,-1.68 -0.08,1.281 8.924,-0.969 11.28,-0.72 -2.367,-0.097 -14.574,3.557 -14.639,3.12 0.824,0.438 1.704,0.678 2.64,0.72 -4.347,2.105 -11.691,-1.899 -4.32,2.16 -3.293,1.436 -16.143,1.886 -17.04,6.24 0.688,0.224 1.329,0.543 1.92,0.96 -7.658,1.659 -10.065,1.47 -17.734,0.454 -3.841,-0.509 -7.435,-1.67 -11.06,-2.283 C 95.644,57.079 84.407,57.251 73.478,58.8 62,60.43 52.843,61.797 41.314,60.087 35.316,59.198 29.138,60.477 23.557,62.279 18.765,63.83 6.903,70.615 6.316,76.5 6.237,77.296 5.389,79.757 4.457,79.893 1.313,80.352 0.004,99.716 0.004,102.26 c 0.002,11.718 1.193,23.372 2.006,35.001 -0.064,1.418 -0.168,2.842 -0.026,4.258 0.706,6.783 2.686,12.66 3.635,19.705 0.926,6.875 2.333,11.672 2.143,19.074 -0.186,7.223 -2.552,18.102 5.485,16.258 0.002,-1.48 0.242,-2.922 0.72,-4.32 -0.322,9.625 2.604,-5.184 2.88,-7.439 0.459,2.721 -0.661,12.902 4.08,9.119 -0.054,0.85 0.346,1.168 1.2,0.961 -0.159,-1.971 0.082,-3.891 0.72,-5.76 1.062,0.131 -0.369,0.789 2.038,0.947 3.568,0.236 -0.164,-3.26 2.042,-4.309 2.912,7.422 5.605,-6.33 7.92,-7.68 0.204,1.287 0.444,2.566 0.72,3.84 3.914,-0.799 2.41,-17.211 3.12,-20.639 4.542,3.926 8.977,8.688 13.121,13.135 3.387,3.635 4.44,5.096 5.104,9.76 0.491,3.443 2.216,3.779 5.055,3.744 -0.011,1.115 -3.126,4.801 -3.12,4.801 -0.479,-0.547 -0.719,-1.186 -0.72,-1.92 -2.154,-0.299 -4.154,0.102 -6,1.199 -0.899,3.053 -0.482,4.893 -0.391,7.957 -0.782,6.795 2.818,12.58 9.287,6.268 3.075,-3 7.175,-6.236 7.361,-10.707 0.119,-2.275 2.656,-6.24 4.382,-6.637 1.102,5.525 6.725,12.506 9.063,17.377 2.596,4.902 3.936,10.158 7.15,14.809 3.648,5.279 5.441,10.848 8.747,6.215 6.532,3.102 3.178,12.719 10.8,12.719 7.718,0 11.974,2.162 16.079,-3.6 -13.425,-11.414 -28.75,-19.877 -34.722,-37.758 -2.87,-8.592 -3.786,-13.787 2.545,-20.156 3.234,-3.234 6.37,-6.859 8.764,-10.832 7.061,-11.721 19.929,-13.754 23.653,-29.414 15.772,5.758 27.183,9.873 44.35,10.09 5.32,0.068 9.873,-2.584 11.811,3.111 1.227,3.574 2.312,19.531 4.531,20.908 1.738,1.078 0.508,14.979 0.508,18.211 4.068,9.271 4.818,16.83 4.933,26.748 0.037,3.197 1.067,5.828 1.067,9.012 4.486,5.594 0.605,0.639 5.041,-0.24 0.279,1.906 2.767,2.09 1.785,5.211 -1.131,3.594 -0.296,6.299 3.975,7.27 -0.593,0.285 -0.832,0.766 -0.721,1.439 h 15.361 c -0.379,-1.748 -0.059,-3.348 0.959,-4.799 -1.789,-1.992 -3.469,-4.072 -5.039,-6.24 -5.068,-2.098 -8.865,-6.805 -10.488,-11.594 -3.291,-9.711 -3.882,-19.773 -3.395,-30.432 0.243,-5.307 -0.369,-10.336 -0.105,-15.57 0.139,-2.77 2.428,-11.377 1.988,-12.965 -2.143,-9.725 24.445,-6.848 30.225,-8.141 9.549,-2.137 22.231,-7.883 27.717,4.402 1.434,3.139 1.834,6.018 2.945,9.332 1.518,4.525 1.982,9.582 1.65,14.43 -0.359,5.248 1.056,5.311 4.422,6.857 -1.451,2.885 -4.467,3.439 -7.199,6 0.296,6.77 1.253,10.248 5.039,15.84 4.139,0.254 5.767,-4.375 7.336,-7.805 1.033,-2.225 1.626,-4.625 1.494,-7.09 -0.385,-8.865 2.275,-14.871 -1.666,-23.871 -3.52,-8.037 -5.225,-37.025 -17.723,-34.676 -1.723,-1.723 -12.762,-2.613 -15.361,-2.879 -2.916,-3.834 -5.414,0.092 -4.496,-6.236 0.481,-3.31 1.47,-6.517 1.857,-9.844 0.082,-1.289 1.705,-3.129 1.918,-4.298 1.096,-7.032 -0.719,-13.02 -3.498,-18.781 -1.115,-2.371 -0.711,-10.231 0.451,-11.394 3.408,-6.725 0.079,-12.74 6.891,-18.685 3.479,-3.037 4.91,-5.466 8.143,-1.116 2.29,3.082 4.07,6.506 5.752,9.944 3.447,7.048 -0.07,11.674 0.023,18.409 2.574,3.292 9.108,6.682 12.7,7.54 4.03,0.962 15.855,-5.256 12.038,-11.395 -2.354,-3.813 -0.117,-13.268 0.502,-17.665 0.281,-2.03 0.604,-4.054 0.92,-6.08 3.813,1.024 4.582,-9.652 5.279,-11.28 1.894,2.926 0.373,15.72 3.119,17.04 1.941,-0.527 -0.34,-4.143 1.201,-5.04 0,5.273 -0.731,6.442 2.879,5.52 -0.014,0.869 0.387,1.429 1.201,1.68 1.471,-1.53 -0.032,-3.538 -0.48,-5.04 2.642,-2.893 2.42,4.732 3.316,-3.232 0.47,-4.153 -0.19,-8.924 -2.36,-12.585 m -250.08,93.6 c -1.921,0.15 -5.92,4.219 -9.36,3.84 4.626,-12.363 2.466,-28.209 0.89,-40.646 -0.523,-4.124 -4.83,-14.213 -2.496,-17.918 1.628,-2.585 4.037,-6.814 3.766,-9.834 2.999,-0.441 8.613,-4.625 11.52,-6 -3.8,6.729 -8.412,10.979 -9.782,18.752 -1.115,6.326 0.18,12.775 1.26,18.839 1.631,9.188 8.824,18.908 15.002,25.289 -3.588,2.6 -6.634,5.94 -10.8,7.68 m 34.709,11.51 c -0.548,8.227 -9.277,17.598 -14.549,22.566 -4.468,-6.471 -12.896,-9.549 -12.48,-18.479 3.42,0.07 27.294,-8.46 27.029,-4.09"
-         id="path9762" />
+         inkscape:connector-curvature="0"
+         style="fill:#221e1f" />
     </g>
     <path
-       inkscape:connector-curvature="0"
-       id="path9776"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:url(#EmptyTriangleInL);marker-end:url(#EmptyTriangleOutL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
        d="m 190,334.09448 0,80 520,0 0,-80"
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:url(#EmptyTriangleInL);marker-end:url(#EmptyTriangleOutL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       id="path9776"
+       inkscape:connector-curvature="0" />
     <path
-       sodipodi:nodetypes="cc"
-       inkscape:connector-curvature="0"
-       id="path11166"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 450,464.09448 0,-50"
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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="path11166"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
   </g>
   <g
-     style="display:none"
-     inkscape:label="Java domain model"
+     inkscape:groupmode="layer"
      id="layer1"
-     inkscape:groupmode="layer">
+     inkscape:label="Java domain model"
+     style="display:none">
     <rect
-       y="315.08536"
-       x="588.88416"
-       height="40.60965"
-       width="159.0397"
+       style="color:#000000;fill:#ececec;fill-opacity:1;stroke:#000000;stroke-width:2.69337845;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="rect4705-6-7"
-       style="color:#000000;fill:#ececec;fill-opacity:1;stroke:#000000;stroke-width:2.69337845;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" />
+       width="159.0397"
+       height="40.60965"
+       x="588.88416"
+       y="315.08536" />
     <rect
-       y="316.77905"
-       x="326.73404"
-       height="40.306622"
-       width="151.98105"
+       style="color:#000000;fill:#ececec;fill-opacity:1;stroke:#000000;stroke-width:2.69337845;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="rect4705-6"
-       style="color:#000000;fill:#ececec;fill-opacity:1;stroke:#000000;stroke-width:2.69337845;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" />
+       width="151.98105"
+       height="40.306622"
+       x="326.73404"
+       y="316.77905" />
     <rect
-       y="115.73355"
-       x="421.59729"
-       height="40"
-       width="190"
+       style="color:#000000;fill:#ececec;fill-opacity:1;stroke:#000000;stroke-width:3;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="rect4705"
-       style="color:#000000;fill:#ececec;fill-opacity:1;stroke:#000000;stroke-width:3;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" />
+       width="190"
+       height="40"
+       x="421.59729"
+       y="115.73355" />
     <text
-       sodipodi:linespacing="125%"
-       id="text3763"
-       y="144.09448"
-       x="430"
+       xml:space="preserve"
        style="font-size:22px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace Italic"
-       xml:space="preserve"><tspan
-         style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;stroke:none;font-family:Monospace;-inkscape-font-specification:Monospace Italic"
-         y="144.09448"
-         x="430"
-         id="tspan3765"
-         sodipodi:role="line">BillingDetail</tspan></text>
-    <text
-       sodipodi:linespacing="125%"
-       id="text3767"
-       y="344.09448"
-       x="340"
+       x="430"
+       y="144.09448"
+       id="text3763"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
+         id="tspan3765"
+         x="430"
+         y="144.09448"
+         style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;stroke:none;font-family:Monospace;-inkscape-font-specification:Monospace Italic">BillingDetail</tspan></text>
+    <text
+       xml:space="preserve"
        style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       xml:space="preserve"><tspan
-         y="344.09448"
-         x="340"
+       x="340"
+       y="344.09448"
+       id="text3767"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan3769"
-         sodipodi:role="line">CreditCard</tspan></text>
+         x="340"
+         y="344.09448">CreditCard</tspan></text>
     <text
-       sodipodi:linespacing="125%"
-       id="text3771"
-       y="344.09448"
-       x="600"
+       xml:space="preserve"
        style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       xml:space="preserve"><tspan
-         y="344.09448"
-         x="600"
+       x="600"
+       y="344.09448"
+       id="text3771"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan3773"
-         sodipodi:role="line">BankAccount</tspan></text>
+         x="600"
+         y="344.09448">BankAccount</tspan></text>
     <text
-       sodipodi:linespacing="125%"
-       id="text3775"
-       y="175.73355"
-       x="431.59729"
+       xml:space="preserve"
        style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       xml:space="preserve"><tspan
-         y="175.73355"
-         x="431.59729"
+       x="431.59729"
+       y="175.73355"
+       id="text3775"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan3777"
-         sodipodi:role="line">owner</tspan></text>
+         x="431.59729"
+         y="175.73355">owner</tspan></text>
     <text
-       sodipodi:linespacing="125%"
-       id="text3779"
-       y="375.57126"
-       x="337.42084"
+       xml:space="preserve"
        style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       xml:space="preserve"><tspan
-         y="375.57126"
-         x="337.42084"
+       x="337.42084"
+       y="375.57126"
+       id="text3779"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan3781"
-         sodipodi:role="line">cardCompany</tspan></text>
+         x="337.42084"
+         y="375.57126">cardCompany</tspan></text>
     <text
-       sodipodi:linespacing="125%"
-       id="text3783"
-       y="405.57126"
-       x="337.42084"
+       xml:space="preserve"
        style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       xml:space="preserve"><tspan
-         y="405.57126"
-         x="337.42084"
+       x="337.42084"
+       y="405.57126"
+       id="text3783"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan3785"
-         sodipodi:role="line">expiry</tspan></text>
+         x="337.42084"
+         y="405.57126">expiry</tspan></text>
     <text
-       sodipodi:linespacing="125%"
-       id="text3787"
-       y="375.69501"
-       x="597.92383"
+       xml:space="preserve"
        style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       xml:space="preserve"><tspan
-         y="375.69501"
-         x="597.92383"
+       x="597.92383"
+       y="375.69501"
+       id="text3787"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan3789"
-         sodipodi:role="line">iban</tspan></text>
+         x="597.92383"
+         y="375.69501">iban</tspan></text>
     <rect
-       y="115.73355"
-       x="421.59729"
-       height="70"
-       width="190"
+       style="fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
        id="rect3791"
-       style="fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+       width="190"
+       height="70"
+       x="421.59729"
+       y="115.73355" />
     <rect
-       y="316.91632"
-       x="327.13809"
-       height="100.87887"
-       width="151.45897"
+       style="fill:none;stroke:#000000;stroke-width:3.21545959;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
        id="rect3791-6"
-       style="fill:none;stroke:#000000;stroke-width:3.21545959;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
+       width="151.45897"
+       height="100.87887"
+       x="327.13809"
+       y="316.91632" />
     <rect
-       y="314.85843"
-       x="589.77087"
-       height="82.311127"
-       width="159.6468"
+       style="fill:none;stroke:#000000;stroke-width:2.9819808;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
        id="rect3791-6-0"
-       style="fill:none;stroke:#000000;stroke-width:2.9819808;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
+       width="159.6468"
+       height="82.311127"
+       x="589.77087"
+       y="314.85843" />
     <path
-       sodipodi:nodetypes="cccc"
-       inkscape:connector-curvature="0"
-       id="path4781"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 391.59729,315.73355 0,-40 L 670,274.09448 l 0,40"
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
-    <path
-       sodipodi:nodetypes="cc"
+       id="path4781"
        inkscape:connector-curvature="0"
-       id="path4783"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:url(#EmptyTriangleOutL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
        d="m 530,254.09448 -0.46763,-67.63781"
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:url(#EmptyTriangleOutL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       id="path4783"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
     <flowRoot
-       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"
        id="flowRoot5599"
-       xml:space="preserve"><flowRegion
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"><flowRegion
          id="flowRegion5601"><rect
+           id="rect5603"
+           width="779.52753"
+           height="63.634903"
+           x="5.0618672"
+           y="465.69177" /></flowRegion><flowPara
+         id="flowPara5605" /></flowRoot>    <text
+       xml:space="preserve"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:#008000;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
+       x="510"
+       y="454.09448"
+       id="text3787-1-7-6"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
+         id="tspan3789-4-9-5"
+         x="510"
+         y="454.09448" /></text>
+    <text
+       xml:space="preserve"
+       style="font-size:40px;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:Monospace;-inkscape-font-specification:Monospace"
+       x="10"
+       y="44.094482"
+       id="text5053"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
+         id="tspan5055"
+         x="10"
+         y="44.094482" /></text>
+    <text
+       xml:space="preserve"
+       style="font-size:40px;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:Monospace;-inkscape-font-specification:Monospace"
+       x="155.11115"
+       y="113.40673"
+       id="text5057"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
+         id="tspan5059"
+         x="155.11115"
+         y="113.40673" /></text>
+    <text
+       xml:space="preserve"
+       style="font-size:40px;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;display:inline;font-family:Sans;-inkscape-font-specification:Sans"
+       x="10"
+       y="44.094482"
+       id="text5053-4"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
+         id="tspan5055-3"
+         x="10"
+         y="44.094482">OO domain model</tspan></text>
+  </g>
+  <g
+     style="display:none"
+     inkscape:label="Mapping strategies"
+     id="g3683"
+     inkscape:groupmode="layer">
+    <flowRoot
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
+       id="flowRoot3729"
+       xml:space="preserve"><flowRegion
+         id="flowRegion3731"><rect
            y="465.69177"
            x="5.0618672"
            height="63.634903"
            width="779.52753"
-           id="rect5603" /></flowRegion><flowPara
-         id="flowPara5605" /></flowRoot>    <text
+           id="rect3733" /></flowRegion><flowPara
+         id="flowPara3735" /></flowRoot>    <text
        sodipodi:linespacing="125%"
-       id="text3787-1-7-6"
+       id="text3737"
        y="454.09448"
        x="510"
        style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:#008000;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
        xml:space="preserve"><tspan
          y="454.09448"
          x="510"
-         id="tspan3789-4-9-5"
+         id="tspan3739"
          sodipodi:role="line" /></text>
     <text
        sodipodi:linespacing="125%"
-       id="text5053"
+       id="text3741"
        y="44.094482"
        x="10"
        style="font-size:40px;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:Monospace;-inkscape-font-specification:Monospace"
        xml:space="preserve"><tspan
          y="44.094482"
          x="10"
-         id="tspan5055"
+         id="tspan3743"
          sodipodi:role="line" /></text>
     <text
        sodipodi:linespacing="125%"
-       id="text5057"
+       id="text3745"
        y="113.40673"
        x="155.11115"
        style="font-size:40px;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:Monospace;-inkscape-font-specification:Monospace"
        xml:space="preserve"><tspan
          y="113.40673"
          x="155.11115"
-         id="tspan5059"
+         id="tspan3747"
          sodipodi:role="line" /></text>
     <text
        sodipodi:linespacing="125%"
-       id="text5053-4"
+       id="text3749"
        y="44.094482"
        x="10"
        style="font-size:40px;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;display:inline;font-family:Sans;-inkscape-font-specification:Sans"
        xml:space="preserve"><tspan
          y="44.094482"
          x="10"
-         id="tspan5055-3"
-         sodipodi:role="line">OO domain model</tspan></text>
-  </g>
-  <g
-     inkscape:groupmode="layer"
-     id="g3683"
-     inkscape:label="Mapping strategies"
-     style="display:none">
-    <flowRoot
-       xml:space="preserve"
-       id="flowRoot3729"
-       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"><flowRegion
-         id="flowRegion3731"><rect
-           id="rect3733"
-           width="779.52753"
-           height="63.634903"
-           x="5.0618672"
-           y="465.69177" /></flowRegion><flowPara
-         id="flowPara3735" /></flowRoot>    <text
+         id="tspan3751"
+         sodipodi:role="line">Mapping strategies</tspan></text>
+    <text
        xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:#008000;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="510"
-       y="454.09448"
-       id="text3737"
+       style="font-size:36px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+       x="20"
+       y="134.09448"
+       id="text3067-9-8"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3739"
-         x="510"
-         y="454.09448" /></text>
+         id="tspan3069-9-1"
+         x="20"
+         y="134.09448">➢ Table per class hierarchy</tspan></text>
     <text
        xml:space="preserve"
-       style="font-size:40px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="10"
-       y="44.094482"
-       id="text3741"
+       style="font-size:36px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+       x="20"
+       y="304.09448"
+       id="text3067-9-8-2"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3743"
-         x="10"
-         y="44.094482" /></text>
-    <text
-       xml:space="preserve"
-       style="font-size:40px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="155.11115"
-       y="113.40673"
-       id="text3745"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3747"
-         x="155.11115"
-         y="113.40673" /></text>
+         id="tspan3069-9-1-0"
+         x="20"
+         y="304.09448">➢ Joined sub tables</tspan></text>
     <text
        xml:space="preserve"
-       style="font-size:40px;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;display:inline;font-family:Sans;-inkscape-font-specification:Sans"
-       x="10"
-       y="44.094482"
-       id="text3749"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3751"
-         x="10"
-         y="44.094482">Mapping strategies</tspan></text>
-    <text
-       sodipodi:linespacing="125%"
-       id="text3067-9-8"
-       y="134.09448"
-       x="20"
        style="font-size:36px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
-       xml:space="preserve"><tspan
-         y="134.09448"
-         x="20"
-         id="tspan3069-9-1"
-         sodipodi:role="line">➢ Table per class hierarchy</tspan></text>
-    <text
-       sodipodi:linespacing="125%"
-       id="text3067-9-8-2"
-       y="304.09448"
        x="20"
-       style="font-size:36px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
-       xml:space="preserve"><tspan
-         y="304.09448"
-         x="20"
-         id="tspan3069-9-1-0"
-         sodipodi:role="line">➢ Joined sub tables</tspan></text>
-    <text
-       sodipodi:linespacing="125%"
-       id="text3067-9-8-5"
        y="404.09448"
-       x="20"
-       style="font-size:36px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
-       xml:space="preserve"><tspan
-         y="404.09448"
-         x="20"
+       id="text3067-9-8-5"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan3069-9-1-6"
-         sodipodi:role="line">➢ Table per concrete class</tspan></text>
+         x="20"
+         y="404.09448">➢ Table per concrete class</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="60"
-       y="174.09448"
+       sodipodi:linespacing="125%"
        id="text3804"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3806"
-         x="60"
-         y="174.09448">@Entity</tspan><tspan
-         sodipodi:role="line"
+       y="174.09448"
+       x="60"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="174.09448"
          x="60"
+         id="tspan3806"
+         sodipodi:role="line">@Entity</tspan><tspan
+         id="tspan3808"
          y="201.59448"
-         id="tspan3808">@Inheritance(<tspan
-   style="fill:#d40000"
-   id="tspan3812">strategy=InheritanceType.SINGLE_TABLE</tspan>)</tspan><tspan
-         sodipodi:role="line"
          x="60"
+         sodipodi:role="line">@Inheritance(<tspan
+   id="tspan3812"
+   style="fill:#d40000">strategy=InheritanceType.SINGLE_TABLE</tspan>)</tspan><tspan
+         id="tspan3810"
          y="229.09448"
-         id="tspan3810">public abstract class BillingDetail {...</tspan></text>
+         x="60"
+         sodipodi:role="line">public abstract class BillingDetail {...</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="60"
-       y="344.09448"
+       sodipodi:linespacing="125%"
        id="text3814"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3816"
+       y="344.09448"
+       x="60"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="344.09448"
          x="60"
-         y="344.09448">... strategy=<tspan
-   style="fill:#d40000"
-   id="tspan3818">InheritanceType.JOINED</tspan> ...</tspan></text>
+         id="tspan3816"
+         sodipodi:role="line">... strategy=<tspan
+   id="tspan3818"
+   style="fill:#d40000">InheritanceType.JOINED</tspan> ...</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="50"
-       y="454.09448"
+       sodipodi:linespacing="125%"
        id="text3814-1"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3816-1"
+       y="454.09448"
+       x="50"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="454.09448"
          x="50"
-         y="454.09448">... strategy=<tspan
-   style="fill:#d40000"
-   id="tspan3818-5">InheritanceType.TABLE_PER_CLASS</tspan> ...</tspan></text>
+         id="tspan3816-1"
+         sodipodi:role="line">... strategy=<tspan
+   id="tspan3818-5"
+   style="fill:#d40000">InheritanceType.TABLE_PER_CLASS</tspan> ...</tspan></text>
   </g>
   <g
-     inkscape:groupmode="layer"
-     id="g4923"
+     style="display:none"
      inkscape:label="Billing, Table per hierarchy"
-     style="display:none">
+     id="g4923"
+     inkscape:groupmode="layer">
     <rect
-       style="color:#000000;fill:#f2f2f2;stroke:#000000;stroke-width:3;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="rect4925"
-       width="160"
+       y="494.09448"
+       x="130"
        height="110"
-       x="10"
-       y="494.09448" />
+       width="160"
+       id="rect4925"
+       style="color:#000000;fill:#f2f2f2;stroke:#000000;stroke-width:3;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" />
     <rect
-       style="color:#000000;fill:#ececec;fill-opacity:1;stroke:#000000;stroke-width:2.69337845;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="rect4927"
-       width="159.0397"
+       y="295.08536"
+       x="578.88416"
        height="40.60965"
-       x="488.88412"
-       y="275.08536" />
+       width="159.0397"
+       id="rect4927"
+       style="color:#000000;fill:#ececec;fill-opacity:1;stroke:#000000;stroke-width:2.69337845;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" />
     <rect
-       style="color:#000000;fill:#ececec;fill-opacity:1;stroke:#000000;stroke-width:2.69337845;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="rect4929"
-       width="151.98105"
+       y="296.77905"
+       x="316.73404"
        height="40.306622"
-       x="226.73404"
-       y="276.77905" />
+       width="151.98105"
+       id="rect4929"
+       style="color:#000000;fill:#ececec;fill-opacity:1;stroke:#000000;stroke-width:2.69337845;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" />
     <rect
-       style="color:#000000;fill:#ececec;fill-opacity:1;stroke:#000000;stroke-width:3;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="rect4931"
-       width="190"
+       y="95.733551"
+       x="411.59729"
        height="40"
-       x="321.59729"
-       y="75.733551" />
+       width="190"
+       id="rect4931"
+       style="color:#000000;fill:#ececec;fill-opacity:1;stroke:#000000;stroke-width:3;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" />
     <text
-       xml:space="preserve"
-       style="font-size:22px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace Italic"
-       x="330"
-       y="104.09448"
+       sodipodi:linespacing="125%"
        id="text4933"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="124.09448"
+       x="420"
+       style="font-size:22px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace Italic"
+       xml:space="preserve"><tspan
+         style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#ff0000;stroke:none;font-family:Monospace;-inkscape-font-specification:Monospace Italic"
+         y="124.09448"
+         x="420"
          id="tspan4935"
-         x="330"
-         y="104.09448"
-         style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#ff0000;stroke:none;font-family:Monospace;-inkscape-font-specification:Monospace Italic">BillingDetail</tspan></text>
+         sodipodi:role="line">BillingDetail</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="240"
-       y="304.09448"
+       sodipodi:linespacing="125%"
        id="text4937"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="324.09448"
+       x="330"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="324.09448"
+         x="330"
          id="tspan4939"
-         x="240"
-         y="304.09448">CreditCard</tspan></text>
+         sodipodi:role="line">CreditCard</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="500"
-       y="304.09448"
+       sodipodi:linespacing="125%"
        id="text4941"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="324.09448"
+       x="590"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="324.09448"
+         x="590"
          id="tspan4943"
-         x="500"
-         y="304.09448">BankAccount</tspan></text>
+         sodipodi:role="line">BankAccount</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="331.59729"
-       y="135.73355"
+       sodipodi:linespacing="125%"
        id="text4945"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="155.73355"
+       x="421.59729"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="155.73355"
+         x="421.59729"
          id="tspan4947"
-         x="331.59729"
-         y="135.73355">owner</tspan></text>
+         sodipodi:role="line">owner</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="237.42085"
-       y="335.57126"
+       sodipodi:linespacing="125%"
        id="text4949"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="355.57126"
+       x="327.42084"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="355.57126"
+         x="327.42084"
          id="tspan4951"
-         x="237.42085"
-         y="335.57126">cardCompany</tspan></text>
+         sodipodi:role="line">cardCompany</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="237.42085"
-       y="365.57126"
+       sodipodi:linespacing="125%"
        id="text4953"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="385.57126"
+       x="327.42084"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="385.57126"
+         x="327.42084"
          id="tspan4955"
-         x="237.42085"
-         y="365.57126">expiry</tspan></text>
+         sodipodi:role="line">expiry</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="497.92383"
-       y="335.69501"
+       sodipodi:linespacing="125%"
        id="text4957"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="355.69501"
+       x="587.92383"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="355.69501"
+         x="587.92383"
          id="tspan4959"
-         x="497.92383"
-         y="335.69501">iban</tspan></text>
+         sodipodi:role="line">iban</tspan></text>
     <rect
-       style="fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
-       id="rect4961"
-       width="190"
+       y="95.733551"
+       x="411.59729"
        height="70"
-       x="321.59729"
-       y="75.733551" />
+       width="190"
+       id="rect4961"
+       style="fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
     <rect
-       style="fill:none;stroke:#000000;stroke-width:3.21545959;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
-       id="rect4963"
-       width="151.45897"
+       y="296.91632"
+       x="317.13809"
        height="100.87887"
-       x="227.13809"
-       y="276.91632" />
+       width="151.45897"
+       id="rect4963"
+       style="fill:none;stroke:#000000;stroke-width:3.21545959;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
     <rect
-       style="fill:none;stroke:#000000;stroke-width:2.9819808;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
-       id="rect4965"
-       width="159.6468"
+       y="294.85843"
+       x="579.77087"
        height="82.311127"
-       x="489.77084"
-       y="274.85843" />
+       width="159.6468"
+       id="rect4965"
+       style="fill:none;stroke:#000000;stroke-width:2.9819808;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0" />
     <path
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 291.59729,275.73355 0,-40 L 570,234.09448 l 0,40"
-       id="path4967"
+       sodipodi:nodetypes="cccc"
        inkscape:connector-curvature="0"
-       sodipodi:nodetypes="cccc" />
+       id="path4967"
+       d="m 381.59729,295.73355 0,-40 L 660,254.09448 l 0,40"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
     <path
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:url(#EmptyTriangleOutL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="m 430,214.09448 -0.46763,-67.63781"
-       id="path4969"
+       sodipodi:nodetypes="cc"
        inkscape:connector-curvature="0"
-       sodipodi:nodetypes="cc" />
+       id="path4969"
+       d="m 520,234.09448 -0.46763,-67.63781"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:url(#EmptyTriangleOutL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <flowRoot
-       xml:space="preserve"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
        id="flowRoot4971"
-       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"><flowRegion
+       xml:space="preserve"><flowRegion
          id="flowRegion4973"><rect
-           id="rect4975"
-           width="779.52753"
-           height="63.634903"
+           y="465.69177"
            x="5.0618672"
-           y="465.69177" /></flowRegion><flowPara
+           height="63.634903"
+           width="779.52753"
+           id="rect4975" /></flowRegion><flowPara
          id="flowPara4977" /></flowRoot>    <text
-       xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       x="20"
-       y="514.09448"
+       sodipodi:linespacing="125%"
        id="text4979"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="514.09448"
+       x="140"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+       xml:space="preserve"><tspan
+         y="514.09448"
+         x="140"
          id="tspan4981"
-         x="20"
-         y="514.09448">billingType</tspan></text>
+         sodipodi:role="line">billingType</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       x="180"
-       y="514.09448"
+       sodipodi:linespacing="125%"
        id="text4983"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="514.09448"
+       x="300"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+       xml:space="preserve"><tspan
+         y="514.09448"
+         x="300"
          id="tspan4985"
-         x="180"
-         y="514.09448">owner</tspan></text>
+         sodipodi:role="line">owner</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       x="310"
-       y="514.09448"
+       sodipodi:linespacing="125%"
        id="text4987"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="514.09448"
+       x="430"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+       xml:space="preserve"><tspan
+         y="514.09448"
+         x="430"
          id="tspan4989"
-         x="310"
-         y="514.09448">cardCompany</tspan></text>
+         sodipodi:role="line">cardCompany</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       x="450"
-       y="514.09448"
+       sodipodi:linespacing="125%"
        id="text4991"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="514.09448"
+       x="570"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+       xml:space="preserve"><tspan
+         y="514.09448"
+         x="570"
          id="tspan4993"
-         x="450"
-         y="514.09448">expiry</tspan></text>
+         sodipodi:role="line">expiry</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       x="540"
-       y="514.09448"
+       sodipodi:linespacing="125%"
        id="text4995"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="514.09448"
+       x="660"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+       xml:space="preserve"><tspan
+         y="514.09448"
+         x="660"
          id="tspan4997"
-         x="540"
-         y="514.09448">iban</tspan></text>
+         sodipodi:role="line">iban</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="180"
-       y="554.09448"
+       sodipodi:linespacing="125%"
        id="text4999"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         x="180"
+       y="554.09448"
+       x="300"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         id="tspan5001"
          y="554.09448"
-         id="tspan5001">Jim Evans</tspan></text>
+         x="300"
+         sodipodi:role="line">Jim Evans</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="310"
-       y="554.09448"
+       sodipodi:linespacing="125%"
        id="text5003"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         x="310"
+       y="554.09448"
+       x="430"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         id="tspan5005"
          y="554.09448"
-         id="tspan5005">Visa</tspan></text>
+         x="430"
+         sodipodi:role="line">Visa</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="450"
-       y="554.09448"
+       sodipodi:linespacing="125%"
        id="text5007"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="554.09448"
+       x="570"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="554.09448"
+         x="570"
          id="tspan5009"
-         x="450"
-         y="554.09448">11/2021</tspan></text>
+         sodipodi:role="line">11/2021</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="540"
-       y="554.09448"
+       sodipodi:linespacing="125%"
        id="text5011"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="554.09448"
+       x="660"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="554.09448"
+         x="660"
          id="tspan5013"
-         x="540"
-         y="554.09448">NULL</tspan></text>
+         sodipodi:role="line">NULL</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="180"
-       y="594.09448"
+       sodipodi:linespacing="125%"
        id="text5015"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="594.09448"
+       x="300"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="594.09448"
+         x="300"
          id="tspan5017"
-         x="180"
-         y="594.09448">Tim Lee</tspan></text>
+         sodipodi:role="line">Tim Lee</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="310"
-       y="594.09448"
+       sodipodi:linespacing="125%"
        id="text5019"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="594.09448"
+       x="430"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="594.09448"
+         x="430"
          id="tspan5021"
-         x="310"
-         y="594.09448">NULL</tspan></text>
+         sodipodi:role="line">NULL</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="450"
-       y="594.09448"
+       sodipodi:linespacing="125%"
        id="text5023"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="594.09448"
+       x="570"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="594.09448"
+         x="570"
          id="tspan5025"
-         x="450"
-         y="594.09448">NULL</tspan></text>
+         sodipodi:role="line">NULL</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="20"
-       y="594.09448"
+       sodipodi:linespacing="125%"
        id="text5027"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="594.09448"
+       x="140"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="594.09448"
+         x="140"
          id="tspan5029"
-         x="20"
-         y="594.09448">bankAccount</tspan></text>
+         sodipodi:role="line">bankAccount</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="20"
-       y="554.09448"
+       sodipodi:linespacing="125%"
        id="text5031"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="554.09448"
+       x="140"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="554.09448"
+         x="140"
          id="tspan5033"
-         x="20"
-         y="554.09448">creditCard</tspan></text>
+         sodipodi:role="line">creditCard</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:#008000;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="510"
-       y="454.09448"
+       sodipodi:linespacing="125%"
        id="text5035"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5037"
+       y="454.09448"
+       x="510"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:#008000;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="454.09448"
          x="510"
-         y="454.09448" /></text>
+         id="tspan5037"
+         sodipodi:role="line" /></text>
     <text
-       xml:space="preserve"
-       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="540"
-       y="594.09448"
+       sodipodi:linespacing="125%"
        id="text5039"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="594.09448"
+       x="660"
+       style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="594.09448"
+         x="660"
          id="tspan5041"
-         x="540"
-         y="594.09448">DE12500105170648489890</tspan></text>
+         sodipodi:role="line">DE12500105170648489890</tspan></text>
     <rect
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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="rect5043"
-       width="780"
+       y="494.09448"
+       x="130"
        height="110"
-       x="10"
-       y="494.09448" />
+       width="780"
+       id="rect5043"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
     <path
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 10,524.09448 780,0"
+       inkscape:connector-curvature="0"
        id="path5045"
-       inkscape:connector-curvature="0" />
+       d="m 130,524.09448 780,0"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
     <path
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 290,494.09448 0,110"
+       inkscape:connector-curvature="0"
        id="path5047"
-       inkscape:connector-curvature="0" />
+       d="m 410,494.09448 0,110"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
     <path
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 531.21002,494.31463 0,110"
+       inkscape:connector-curvature="0"
        id="path5049"
-       inkscape:connector-curvature="0" />
+       d="m 651.21002,494.31463 0,110"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
     <path
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 440.81954,495.03775 0,110"
+       inkscape:connector-curvature="0"
        id="path5051"
-       inkscape:connector-curvature="0" />
+       d="m 560.81954,495.03775 0,110"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
     <text
-       sodipodi:linespacing="125%"
-       id="text5053-9"
-       y="44.094482"
-       x="10"
+       xml:space="preserve"
        style="font-size:40px;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;display:inline;font-family:Sans;-inkscape-font-specification:Sans"
-       xml:space="preserve"><tspan
-         y="44.094482"
-         x="10"
+       x="10"
+       y="44.094482"
+       id="text5053-9"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan5055-7"
-         sodipodi:role="line">Table per class hierarchy</tspan></text>
+         x="10"
+         y="44.094482">Table per class hierarchy</tspan></text>
     <g
-       transform="matrix(-1.487447,0,0,-0.47349439,3510.1862,1298.7078)"
+       inkscape:label="Layer 1"
        id="layer1-7"
-       inkscape:label="Layer 1">
+       transform="matrix(-1.487447,0,0,-0.47349439,3630.1862,1298.7078)">
       <path
-         id="path1308"
-         d="m 2169.4958,1258.4355 c -0.2962,0 -0.6001,0.014 -0.8966,0.019 -7.9161,0.128 -15.9197,1.277 -23.6368,3.5293 l -0.2671,0.076 c -32.2361,9.5214 -47.0877,34.9655 -33.2136,56.9076 9.2252,14.5898 28.8568,23.9695 50.4786,25.888 -6.9274,12.8259 -6.8762,27.368 1.7742,40.8827 18.0542,28.2063 66.8086,41.267 108.8361,29.1501 3.03,-0.8736 5.9475,-1.8595 8.7374,-2.9379 8.559,15.4975 9.0392,34.0721 7.4402,53.4356 0,0 12.6419,-25.9263 15.2427,-44.5265 1.2179,-8.7092 0.2271,-15.816 -1.1637,-20.9087 19.8508,-15.5973 26.0543,-37.9996 13.1824,-58.1095 -14.3869,-22.477 -48.2795,-35.3352 -82.7192,-33.4998 1.742,-7.7448 0.4197,-15.894 -4.4641,-23.6178 -10.4734,-16.5638 -34.3459,-26.4542 -59.3305,-26.2885 z"
+         inkscape:connector-curvature="0"
          style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:5.09198713;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
-         inkscape:connector-curvature="0" />
+         d="m 2169.4958,1258.4355 c -0.2962,0 -0.6001,0.014 -0.8966,0.019 -7.9161,0.128 -15.9197,1.277 -23.6368,3.5293 l -0.2671,0.076 c -32.2361,9.5214 -47.0877,34.9655 -33.2136,56.9076 9.2252,14.5898 28.8568,23.9695 50.4786,25.888 -6.9274,12.8259 -6.8762,27.368 1.7742,40.8827 18.0542,28.2063 66.8086,41.267 108.8361,29.1501 3.03,-0.8736 5.9475,-1.8595 8.7374,-2.9379 8.559,15.4975 9.0392,34.0721 7.4402,53.4356 0,0 12.6419,-25.9263 15.2427,-44.5265 1.2179,-8.7092 0.2271,-15.816 -1.1637,-20.9087 19.8508,-15.5973 26.0543,-37.9996 13.1824,-58.1095 -14.3869,-22.477 -48.2795,-35.3352 -82.7192,-33.4998 1.742,-7.7448 0.4197,-15.894 -4.4641,-23.6178 -10.4734,-16.5638 -34.3459,-26.4542 -59.3305,-26.2885 z"
+         id="path1308" />
     </g>
     <text
-       xml:space="preserve"
-       style="font-size:28px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="70"
-       y="664.09448"
+       sodipodi:linespacing="125%"
        id="text3892"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="664.09448"
+       x="190"
+       style="font-size:28px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="664.09448"
+         x="190"
          id="tspan3894"
-         x="70"
-         y="664.09448">Discriminator</tspan></text>
+         sodipodi:role="line">Discriminator</tspan></text>
     <flowRoot
-       xml:space="preserve"
+       style="font-size:28px;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:Monospace;-inkscape-font-specification:Monospace"
        id="flowRoot3896"
-       style="font-size:28px;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:Monospace;-inkscape-font-specification:Monospace"><flowRegion
+       xml:space="preserve"><flowRegion
          id="flowRegion3898"><rect
-           id="rect3900"
-           width="388.50952"
-           height="141.20967"
+           y="613.85968"
            x="143.40465"
-           y="613.85968" /></flowRegion><flowPara
+           height="141.20967"
+           width="388.50952"
+           id="rect3900" /></flowRegion><flowPara
          id="flowPara3902" /></flowRoot>    <path
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 11.457042,564.33558 779.999998,0"
+       inkscape:connector-curvature="0"
        id="path5045-6"
-       inkscape:connector-curvature="0" />
+       d="m 131.45704,564.33558 780,0"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
     <text
-       xml:space="preserve"
-       style="font-size:28px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="230"
-       y="694.09448"
+       sodipodi:linespacing="125%"
        id="text3892-6"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="694.09448"
+       x="350"
+       style="font-size:28px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="694.09448"
+         x="350"
          id="tspan3894-3"
-         x="230"
-         y="694.09448">Type!</tspan></text>
+         sodipodi:role="line">Type!</tspan></text>
   </g>
   <g
-     style="display:none"
-     inkscape:label="2-nd normal form"
+     inkscape:groupmode="layer"
      id="layer2"
-     inkscape:groupmode="layer">
+     inkscape:label="Reminder functional dependency"
+     style="display:none">
     <text
-       sodipodi:linespacing="125%"
-       id="text5053-9-9"
-       y="44.094482"
-       x="10"
+       xml:space="preserve"
        style="font-size:40px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       xml:space="preserve"><tspan
-         y="44.094482"
-         x="10"
+       x="10"
+       y="44.094482"
+       id="text5053-9-9"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan5055-7-4"
-         sodipodi:role="line">Reminder: functional dependency</tspan></text>
+         x="10"
+         y="44.094482">Reminder: functional dependency</tspan></text>
     <text
-       sodipodi:linespacing="125%"
-       id="text3216"
-       y="254.61639"
-       x="395.09442"
+       xml:space="preserve"
        style="font-size:40px;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:Monospace;-inkscape-font-specification:Monospace"
-       xml:space="preserve"><tspan
-         y="254.61639"
-         x="395.09442"
+       x="395.09442"
+       y="254.61639"
+       id="text3216"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan3218"
-         sodipodi:role="line" /></text>
+         x="395.09442"
+         y="254.61639" /></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       x="60"
-       y="204.09448"
+       sodipodi:linespacing="125%"
        id="text3405-0"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="284.09448"
+       x="120"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+       xml:space="preserve"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+         y="284.09448"
+         x="120"
          id="tspan3407-3"
-         x="60"
-         y="204.09448"
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">a</tspan></text>
+         sodipodi:role="line">a</tspan></text>
     <path
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 100.31632,176.48127 99.8153,365.01796"
-       id="path4440-5"
+       sodipodi:nodetypes="cc"
        inkscape:connector-curvature="0"
-       sodipodi:nodetypes="cc" />
+       id="path4440-5"
+       d="M 160.31632,256.48127 159.8153,445.01796"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
     <text
-       xml:space="preserve"
-       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       x="160"
-       y="204.09448"
+       sodipodi:linespacing="125%"
        id="text3405-0-5"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="284.09448"
+       x="220"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+       xml:space="preserve"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+         y="284.09448"
+         x="220"
          id="tspan3407-3-2"
-         x="160"
-         y="204.09448"
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">c</tspan></text>
+         sodipodi:role="line">c</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       x="210"
-       y="204.09448"
+       sodipodi:linespacing="125%"
        id="text3405-0-5-2"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="284.09448"
+       x="270"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+       xml:space="preserve"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+         y="284.09448"
+         x="270"
          id="tspan3407-3-2-9"
-         x="210"
-         y="204.09448"
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">...</tspan></text>
+         sodipodi:role="line">...</tspan></text>
     <path
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 201.66951,175.23761 200.1847,365.94145"
+       sodipodi:nodetypes="cc"
+       inkscape:connector-curvature="0"
        id="path4440-5-1"
+       d="M 261.66951,255.23761 260.1847,445.94145"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
+    <path
        inkscape:connector-curvature="0"
+       id="path5267"
+       d="M 112.16937,345.66446 310,344.09448"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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:nodetypes="cc" />
     <path
-       sodipodi:nodetypes="cc"
+       inkscape:connector-curvature="0"
+       id="path5267-2"
+       d="M 108.11666,394.48497 310,394.09448"
        style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 52.16937,265.66446 250,264.09448"
-       id="path5267"
-       inkscape:connector-curvature="0" />
+       sodipodi:nodetypes="cc" />
     <path
        sodipodi:nodetypes="cc"
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 48.11666,314.48497 250,314.09448"
-       id="path5267-2"
-       inkscape:connector-curvature="0" />
-    <path
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 150.38951,176.23181 0.006,188.78615"
-       id="path4440-5-6"
        inkscape:connector-curvature="0"
-       sodipodi:nodetypes="cc" />
+       id="path4440-5-6"
+       d="m 210.38951,256.23181 0.006,188.78615"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
     <text
-       xml:space="preserve"
-       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       x="110"
-       y="204.09448"
+       sodipodi:linespacing="125%"
        id="text3405-0-5-6"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="284.09448"
+       x="170"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+       xml:space="preserve"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+         y="284.09448"
+         x="170"
          id="tspan3407-3-2-3"
-         x="110"
-         y="204.09448"
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">b</tspan></text>
+         sodipodi:role="line">b</tspan></text>
     <text
-       sodipodi:linespacing="125%"
-       id="text4082"
-       y="244.09448"
-       x="60"
+       xml:space="preserve"
        style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       xml:space="preserve"><tspan
-         y="244.09448"
-         x="60"
+       x="120"
+       y="324.09448"
+       id="text4082"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan4084"
-         sodipodi:role="line">a</tspan></text>
+         x="120"
+         y="324.09448">a</tspan></text>
     <text
-       sodipodi:linespacing="125%"
-       id="text4086"
-       y="464.09448"
-       x="150"
+       xml:space="preserve"
        style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       xml:space="preserve"><tspan
-         y="464.09448"
-         x="150"
+       x="150"
+       y="464.09448"
+       id="text4086"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan4088"
-         sodipodi:role="line" /></text>
+         x="150"
+         y="464.09448" /></text>
     <text
-       sodipodi:linespacing="125%"
-       id="text4090"
-       y="514.09448"
-       x="150"
+       xml:space="preserve"
        style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       xml:space="preserve"><tspan
-         y="514.09448"
-         x="150"
+       x="150"
+       y="514.09448"
+       id="text4090"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan4092"
-         sodipodi:role="line" /></text>
+         x="150"
+         y="514.09448" /></text>
     <text
-       sodipodi:linespacing="125%"
-       id="text4094"
-       y="564.09448"
-       x="150"
+       xml:space="preserve"
        style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       xml:space="preserve"><tspan
-         y="564.09448"
-         x="150"
+       x="150"
+       y="564.09448"
+       id="text4094"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan4096"
-         sodipodi:role="line" /></text>
+         x="150"
+         y="564.09448" /></text>
     <path
-       sodipodi:nodetypes="cccc"
-       inkscape:connector-curvature="0"
+       style="color:#000000;fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:url(#DotMQ);marker-end:url(#Arrow1Mend-6FL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 150,274.09448 0,-80 90,0 0,50"
        id="path5147"
-       d="m 90,194.09448 0,-80 90,0 0,50"
-       style="color:#000000;fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:url(#DotMQ);marker-end:url(#Arrow1Mend-6FL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cccc" />
     <rect
-       style="fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
-       id="rect4390-4"
-       width="199.65698"
+       ry="0"
+       y="255.16953"
+       x="110"
        height="38.924957"
-       x="50"
-       y="175.16953"
-       ry="0" />
+       width="199.65698"
+       id="rect4390-4"
+       style="fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
     <path
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 50,214.09448 0,150 200,0 0,-150"
-       id="path4392-7"
+       sodipodi:nodetypes="cccc"
        inkscape:connector-curvature="0"
-       sodipodi:nodetypes="cccc" />
-    <text
-       xml:space="preserve"
-       style="font-size:20px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="80"
-       y="254.09448"
-       id="text5282"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5284"
-         x="80"
-         y="254.09448">1</tspan></text>
+       id="path4392-7"
+       d="m 110,294.09448 0,150 200,0 0,-150"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
     <text
        sodipodi:linespacing="125%"
-       id="text4082-4"
-       y="294.09448"
-       x="60"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       id="text5282"
+       y="334.09448"
+       x="140"
+       style="font-size:20px;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:Monospace;-inkscape-font-specification:Monospace"
        xml:space="preserve"><tspan
-         y="294.09448"
-         x="60"
-         id="tspan4084-3"
-         sodipodi:role="line">a</tspan></text>
+         y="334.09448"
+         x="140"
+         id="tspan5284"
+         sodipodi:role="line">1</tspan></text>
     <text
        xml:space="preserve"
-       style="font-size:20px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="80"
-       y="304.09448"
-       id="text5282-1"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       x="120"
+       y="374.09448"
+       id="text4082-4"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan5284-3"
-         x="80"
-         y="304.09448">2</tspan></text>
+         id="tspan4084-3"
+         x="120"
+         y="374.09448">a</tspan></text>
     <text
        sodipodi:linespacing="125%"
-       id="text4082-48"
-       y="244.09448"
-       x="110"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       id="text5282-1"
+       y="384.09448"
+       x="140"
+       style="font-size:20px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
        xml:space="preserve"><tspan
-         y="244.09448"
-         x="110"
-         id="tspan4084-34"
-         sodipodi:role="line">b</tspan></text>
+         y="384.09448"
+         x="140"
+         id="tspan5284-3"
+         sodipodi:role="line">2</tspan></text>
     <text
        xml:space="preserve"
-       style="font-size:20px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="130"
-       y="254.09448"
-       id="text5282-6"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       x="170"
+       y="324.09448"
+       id="text4082-48"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan5284-39"
-         x="130"
-         y="254.09448">1</tspan></text>
+         id="tspan4084-34"
+         x="170"
+         y="324.09448">b</tspan></text>
     <text
        sodipodi:linespacing="125%"
-       id="text4082-48-3"
-       y="294.09448"
-       x="110"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       id="text5282-6"
+       y="334.09448"
+       x="190"
+       style="font-size:20px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
        xml:space="preserve"><tspan
-         y="294.09448"
-         x="110"
-         id="tspan4084-34-8"
-         sodipodi:role="line">b</tspan></text>
+         y="334.09448"
+         x="190"
+         id="tspan5284-39"
+         sodipodi:role="line">1</tspan></text>
     <text
        xml:space="preserve"
-       style="font-size:20px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="130"
-       y="304.09448"
-       id="text5282-6-4"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       x="170"
+       y="374.09448"
+       id="text4082-48-3"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan5284-39-4"
-         x="130"
-         y="304.09448">2</tspan></text>
+         id="tspan4084-34-8"
+         x="170"
+         y="374.09448">b</tspan></text>
     <text
        sodipodi:linespacing="125%"
-       id="text4082-48-35"
-       y="244.09448"
-       x="160"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       id="text5282-6-4"
+       y="384.09448"
+       x="190"
+       style="font-size:20px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
        xml:space="preserve"><tspan
-         y="244.09448"
-         x="160"
-         id="tspan4084-34-5"
-         sodipodi:role="line">c</tspan></text>
+         y="384.09448"
+         x="190"
+         id="tspan5284-39-4"
+         sodipodi:role="line">2</tspan></text>
     <text
        xml:space="preserve"
-       style="font-size:20px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="180"
-       y="254.09448"
-       id="text5282-6-0"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       x="220"
+       y="324.09448"
+       id="text4082-48-35"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan5284-39-7"
-         x="180"
-         y="254.09448">1</tspan></text>
+         id="tspan4084-34-5"
+         x="220"
+         y="324.09448">c</tspan></text>
     <text
        sodipodi:linespacing="125%"
-       id="text4082-48-3-9"
-       y="294.09448"
-       x="160"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       id="text5282-6-0"
+       y="334.09448"
+       x="240"
+       style="font-size:20px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
        xml:space="preserve"><tspan
-         y="294.09448"
-         x="160"
-         id="tspan4084-34-8-4"
-         sodipodi:role="line">c</tspan></text>
+         y="334.09448"
+         x="240"
+         id="tspan5284-39-7"
+         sodipodi:role="line">1</tspan></text>
     <text
        xml:space="preserve"
-       style="font-size:20px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="180"
-       y="304.09448"
-       id="text5282-6-4-2"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       x="220"
+       y="374.09448"
+       id="text4082-48-3-9"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
+         id="tspan4084-34-8-4"
+         x="220"
+         y="374.09448">c</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text5282-6-4-2"
+       y="384.09448"
+       x="240"
+       style="font-size:20px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="384.09448"
+         x="240"
          id="tspan5284-39-4-7"
-         x="180"
-         y="304.09448">2</tspan></text>
+         sodipodi:role="line">2</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       x="210"
-       y="344.09448"
+       sodipodi:linespacing="125%"
        id="text3405-0-5-2-4"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="424.09448"
+       x="270"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+       xml:space="preserve"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+         y="424.09448"
+         x="270"
          id="tspan3407-3-2-9-2"
-         x="210"
-         y="344.09448"
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">...</tspan></text>
+         sodipodi:role="line">...</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       x="210"
-       y="294.09448"
+       sodipodi:linespacing="125%"
        id="text3405-0-5-2-3"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="374.09448"
+       x="270"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+       xml:space="preserve"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+         y="374.09448"
+         x="270"
          id="tspan3407-3-2-9-0"
-         x="210"
-         y="294.09448"
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">...</tspan></text>
+         sodipodi:role="line">...</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       x="210"
-       y="244.09448"
+       sodipodi:linespacing="125%"
        id="text3405-0-5-2-8"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="324.09448"
+       x="270"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+       xml:space="preserve"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+         y="324.09448"
+         x="270"
          id="tspan3407-3-2-9-6"
-         x="210"
-         y="244.09448"
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">...</tspan></text>
+         sodipodi:role="line">...</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       x="110"
-       y="344.09448"
+       sodipodi:linespacing="125%"
        id="text3405-0-5-2-4-3"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="424.09448"
+       x="170"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+       xml:space="preserve"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+         y="424.09448"
+         x="170"
          id="tspan3407-3-2-9-2-2"
-         x="110"
-         y="344.09448"
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">...</tspan></text>
+         sodipodi:role="line">...</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       x="60"
-       y="344.09448"
+       sodipodi:linespacing="125%"
        id="text3405-0-5-2-4-73"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3407-3-2-9-2-28"
-         x="60"
-         y="344.09448"
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">...</tspan></text>
-    <text
-       xml:space="preserve"
+       y="424.09448"
+       x="120"
        style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       x="160"
-       y="344.09448"
-       id="text3405-0-5-2-4-6"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3407-3-2-9-2-24"
-         x="160"
-         y="344.09448"
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">...</tspan></text>
-    <path
-       sodipodi:nodetypes="cc"
-       inkscape:connector-curvature="0"
-       id="path5147-3"
-       d="m 130,114.09448 0,50"
-       style="color:#000000;fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-end:url(#Arrow1Mend-6FL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       xml:space="preserve"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+         y="424.09448"
+         x="120"
+         id="tspan3407-3-2-9-2-28"
+         sodipodi:role="line">...</tspan></text>
     <text
        sodipodi:linespacing="125%"
-       id="text5638-9"
-       y="104.09448"
-       x="60"
-       style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008000;fill-opacity:1;stroke:none;display:inline;font-family:Sans;-inkscape-font-specification:Sans"
+       id="text3405-0-5-2-4-6"
+       y="424.09448"
+       x="220"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
        xml:space="preserve"><tspan
-         y="104.09448"
-         x="60"
-         sodipodi:role="line"
-         id="tspan6204-5">Functional dependency a ⇨ (b,c)</tspan></text>
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+         y="424.09448"
+         x="220"
+         id="tspan3407-3-2-9-2-24"
+         sodipodi:role="line">...</tspan></text>
     <text
-       sodipodi:linespacing="125%"
-       id="text5638-9-1"
-       y="464.09448"
-       x="80"
+       xml:space="preserve"
        style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008000;fill-opacity:1;stroke:none;display:inline;font-family:Sans;-inkscape-font-specification:Sans"
-       xml:space="preserve"><tspan
-         y="464.09448"
-         x="80"
+       x="120"
+       y="184.09448"
+       id="text5638-9"
+       sodipodi:linespacing="125%"><tspan
+         id="tspan6204-5"
          sodipodi:role="line"
-         id="tspan6204-5-2">Functional dependency a → (b,c)</tspan></text>
+         x="120"
+         y="184.09448">Functional dependency a → (b, c)</tspan></text>
     <g
        id="surface1"
-       transform="matrix(3.75,0,0,3.75,84.200894,500.68798)">
+       transform="matrix(4.3080509,0,0,5.2131263,43.386788,502.19541)">
+      <desc
+         id="desc8291">a\to (b,c):\Longleftrightarrow \forall_{i,j}: a_i=a_j \Rightarrow b_i=b_j \wedge c_i = c_j</desc>
       <g
-         id="g7103"
+         id="g7756"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7105"
+           id="use7758"
            y="7.7660198"
            x="-0.28398401"
-           xlink:href="#glyph0-0-2"
+           xlink:href="#glyph0-0-26"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7107"
+         id="g7760"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7109"
+           id="use7762"
            y="7.7660198"
            x="7.7441359"
-           xlink:href="#glyph1-0-6"
+           xlink:href="#glyph1-0-62"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7111"
+         id="g7764"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7113"
+           id="use7766"
            y="7.7660198"
            x="20.479336"
-           xlink:href="#glyph2-0-2"
+           xlink:href="#glyph2-0-6"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7115"
+         id="g7768"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7117"
+           id="use7770"
            y="7.7660198"
            x="24.349257"
-           xlink:href="#glyph0-1-96"
+           xlink:href="#glyph0-1-88"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7119"
+         id="g7772"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7121"
+           id="use7774"
            y="7.7660198"
            x="28.624256"
-           xlink:href="#glyph0-2-6"
+           xlink:href="#glyph0-2-4"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7123"
+         id="g7776"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7125"
+           id="use7778"
            y="7.7660198"
            x="33.043396"
-           xlink:href="#glyph0-3"
+           xlink:href="#glyph0-3-1"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7127"
+         id="g7780"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7129"
+           id="use7782"
            y="7.7660198"
            x="37.354355"
-           xlink:href="#glyph2-1-8"
+           xlink:href="#glyph2-1-4"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7131"
+         id="g7784"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7133"
+           id="use7786"
            y="7.7660198"
            x="44.005535"
-           xlink:href="#glyph2-2"
+           xlink:href="#glyph2-2-5"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7135"
+         id="g7788"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7137"
+           id="use7790"
            y="7.7660198"
            x="46.768417"
-           xlink:href="#glyph1-1-5"
+           xlink:href="#glyph1-1-59"
+           width="1"
+           height="1" />
+      </g>
+      <g
+         id="g7792"
+         style="fill:#000000;fill-opacity:1">
+        <use
+           id="use7794"
+           y="7.7660198"
+           x="55.075085"
+           xlink:href="#glyph1-2-2"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7139"
+         id="g7796"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7141"
+           id="use7798"
            y="7.7660198"
-           x="59.503208"
-           xlink:href="#glyph1-2-99"
+           x="67.809883"
+           xlink:href="#glyph1-3-8"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7143"
+         id="g7800"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7145"
+           id="use7802"
            y="9.2601604"
-           x="65.037918"
-           xlink:href="#glyph3-0-6"
+           x="73.345016"
+           xlink:href="#glyph3-0-1"
            width="1"
            height="1" />
         <use
-           id="use7147"
+           id="use7804"
            y="9.2601604"
-           x="67.855354"
-           xlink:href="#glyph3-1-0"
+           x="76.162453"
+           xlink:href="#glyph3-1-8"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7149"
+         id="g7806"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7151"
+           id="use7808"
            y="9.2601604"
-           x="70.222359"
-           xlink:href="#glyph3-2-35"
+           x="78.529457"
+           xlink:href="#glyph3-2-5"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7153"
+         id="g7810"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7155"
+           id="use7812"
            y="7.7660198"
-           x="77.18792"
-           xlink:href="#glyph2-2"
+           x="85.495018"
+           xlink:href="#glyph2-2-5"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7157"
+         id="g7814"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7159"
+           id="use7816"
            y="7.7660198"
-           x="82.723076"
-           xlink:href="#glyph0-1-96"
+           x="91.030174"
+           xlink:href="#glyph0-0-26"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7161"
+         id="g7818"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7163"
+           id="use7820"
            y="9.2601604"
-           x="86.998077"
-           xlink:href="#glyph3-0-6"
+           x="96.295013"
+           xlink:href="#glyph3-0-1"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7165"
+         id="g7822"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7167"
+           id="use7824"
            y="7.7660198"
-           x="93.082054"
-           xlink:href="#glyph2-3"
+           x="102.379"
+           xlink:href="#glyph2-3-7"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7169"
+         id="g7826"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7171"
+           id="use7828"
            y="7.7660198"
-           x="103.60316"
-           xlink:href="#glyph0-1-96"
+           x="112.8911"
+           xlink:href="#glyph0-0-26"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7173"
+         id="g7830"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7175"
+           id="use7832"
            y="9.2601604"
-           x="107.87816"
-           xlink:href="#glyph3-2-35"
+           x="118.15594"
+           xlink:href="#glyph3-2-5"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7177"
+         id="g7834"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7179"
+           id="use7836"
            y="7.7660198"
-           x="114.28596"
-           xlink:href="#glyph1-3"
+           x="125.12196"
+           xlink:href="#glyph1-2-2"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7181"
+         id="g7838"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7183"
+           id="use7840"
            y="7.7660198"
-           x="123.14182"
-           xlink:href="#glyph0-3"
+           x="137.85716"
+           xlink:href="#glyph0-1-88"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7185"
+         id="g7842"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7187"
+           id="use7844"
            y="9.2601604"
-           x="127.45316"
-           xlink:href="#glyph3-0-6"
+           x="142.13216"
+           xlink:href="#glyph3-0-1"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7189"
+         id="g7846"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7191"
+           id="use7848"
            y="7.7660198"
-           x="133.53714"
-           xlink:href="#glyph2-3"
+           x="148.21614"
+           xlink:href="#glyph2-3-7"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7193"
+         id="g7850"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7195"
+           id="use7852"
            y="7.7660198"
-           x="144.05824"
-           xlink:href="#glyph0-3"
+           x="158.72824"
+           xlink:href="#glyph0-1-88"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7197"
+         id="g7854"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7199"
+           id="use7856"
            y="9.2601604"
-           x="148.36917"
-           xlink:href="#glyph3-2-35"
-           width="1"
-           height="1" />
-      </g>
-      <g
-         id="g7201"
-         style="fill:#000000;fill-opacity:1">
-        <use
-           id="use7203"
-           y="7.7660198"
-           x="155.33519"
-           xlink:href="#glyph2-3"
+           x="163.00323"
+           xlink:href="#glyph3-2-5"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7205"
+         id="g7858"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7207"
+           id="use7860"
            y="7.7660198"
-           x="161.41917"
-           xlink:href="#glyph1-4"
+           x="169.42003"
+           xlink:href="#glyph1-4-7"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7209"
+         id="g7862"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7211"
+           id="use7864"
            y="7.7660198"
-           x="174.14537"
-           xlink:href="#glyph0-0-2"
+           x="178.27589"
+           xlink:href="#glyph0-3-1"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7213"
+         id="g7866"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7215"
+           id="use7868"
            y="9.2601604"
-           x="179.41022"
-           xlink:href="#glyph3-0-6"
+           x="182.58722"
+           xlink:href="#glyph3-0-1"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7217"
+         id="g7870"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7219"
+           id="use7872"
            y="7.7660198"
-           x="185.50319"
-           xlink:href="#glyph2-3"
+           x="188.6712"
+           xlink:href="#glyph2-3-7"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7221"
+         id="g7874"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7223"
+           id="use7876"
            y="7.7660198"
-           x="196.01529"
-           xlink:href="#glyph0-0-2"
+           x="199.1833"
+           xlink:href="#glyph0-3-1"
            width="1"
            height="1" />
       </g>
       <g
-         id="g7225"
+         id="g7878"
          style="fill:#000000;fill-opacity:1">
         <use
-           id="use7227"
+           id="use7880"
            y="9.2601604"
-           x="201.28012"
-           xlink:href="#glyph3-2-35"
+           x="203.49425"
+           xlink:href="#glyph3-2-5"
            width="1"
            height="1" />
       </g>
     </g>
+    <path
+       style="color:#000000;fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-end:url(#Arrow1Mend-6FL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 190.82758,194.34195 0,50"
+       id="path5147-0"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
   </g>
   <g
-     inkscape:groupmode="layer"
+     style="display:none"
+     inkscape:label="Violating 2-nd normal form"
      id="g5148"
-     inkscape:label="2-nd normal form copy"
-     style="display:none">
+     inkscape:groupmode="layer">
     <rect
-       style="color:#000000;fill:#ffaaaa;fill-opacity:1;stroke:#ff5555;stroke-width:0;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="rect5150"
-       width="127.32493"
-       height="35.853241"
-       x="260.97275"
+       ry="0"
        y="346.52844"
-       ry="0" />
+       x="260.97275"
+       height="35.853241"
+       width="127.32493"
+       id="rect5150"
+       style="color:#000000;fill:#ffaaaa;fill-opacity:1;stroke:#ff5555;stroke-width:0;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" />
     <rect
-       style="color:#000000;fill:#ff2a2a;fill-opacity:1;stroke:#000000;stroke-width:0;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="rect5152"
-       width="120.00837"
-       height="36.584896"
-       x="139.51781"
+       ry="0"
        y="346.52844"
-       ry="0" />
+       x="139.51781"
+       height="36.584896"
+       width="120.00837"
+       id="rect5152"
+       style="color:#000000;fill:#ff2a2a;fill-opacity:1;stroke:#000000;stroke-width:0;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" />
     <rect
-       style="color:#000000;fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:3;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="rect5154"
-       width="380"
-       height="40"
+       y="344.09448"
        x="390"
-       y="344.09448" />
+       height="40"
+       width="380"
+       id="rect5154"
+       style="color:#000000;fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:3;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" />
     <text
-       xml:space="preserve"
-       style="font-size:40px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="10"
-       y="44.094482"
+       sodipodi:linespacing="125%"
        id="text5156"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5158"
+       y="44.094482"
+       x="10"
+       style="font-size:40px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="44.094482"
          x="10"
-         y="44.094482">Non-2nd normal form</tspan></text>
+         id="tspan5158"
+         sodipodi:role="line">Violating 2-nd normal form</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:40px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="395.09442"
-       y="254.61639"
+       sodipodi:linespacing="125%"
        id="text5160"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5162"
+       y="254.61639"
+       x="395.09442"
+       style="font-size:40px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="254.61639"
          x="395.09442"
-         y="254.61639" /></text>
+         id="tspan5162"
+         sodipodi:role="line" /></text>
     <rect
-       style="color:#000000;fill:#ff0000;fill-opacity:1;stroke:#ff0000;stroke-width:0;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="rect5164"
-       width="249.51154"
-       height="35.853241"
-       x="140"
+       ry="0"
        y="308.48444"
-       ry="0" />
+       x="140"
+       height="35.853241"
+       width="249.51154"
+       id="rect5164"
+       style="color:#000000;fill:#ff0000;fill-opacity:1;stroke:#ff0000;stroke-width:0;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" />
     <text
-       sodipodi:linespacing="125%"
-       id="text5166"
-       y="374.09448"
-       x="150"
+       xml:space="preserve"
        style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       xml:space="preserve"><tspan
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-         y="374.09448"
-         x="150"
+       x="150"
+       y="374.09448"
+       id="text5166"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan5168"
-         sodipodi:role="line">ortKreis</tspan></text>
+         x="150"
+         y="374.09448"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">ortKreis</tspan></text>
     <path
-       sodipodi:nodetypes="cc"
-       inkscape:connector-curvature="0"
-       id="path5170"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 260.50102,345.55779 260,584.09448"
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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="path5170"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
     <text
-       sodipodi:linespacing="125%"
-       id="text5172"
-       y="374.09448"
-       x="400"
+       xml:space="preserve"
        style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       xml:space="preserve"><tspan
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-         y="374.09448"
-         x="400"
+       x="400"
+       y="374.09448"
+       id="text5172"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan5174"
-         sodipodi:role="line">ortKreisName</tspan></text>
+         x="400"
+         y="374.09448"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">ortKreisName</tspan></text>
     <text
-       sodipodi:linespacing="125%"
-       id="text5176"
-       y="374.09448"
-       x="580"
+       xml:space="preserve"
        style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       xml:space="preserve"><tspan
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-         y="374.09448"
-         x="580"
+       x="580"
+       y="374.09448"
+       id="text5176"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan5178"
-         sodipodi:role="line">halter</tspan></text>
+         x="580"
+         y="374.09448"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">halter</tspan></text>
     <path
-       sodipodi:nodetypes="cc"
-       inkscape:connector-curvature="0"
-       id="path5180"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 571.48481,343.39064 570,584.09448"
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
-    <path
+       id="path5180"
        inkscape:connector-curvature="0"
-       id="path5182"
-       d="M 142.16937,435.66446 770,434.09448"
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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:nodetypes="cc" />
     <path
-       inkscape:connector-curvature="0"
-       id="path5184"
-       d="M 138.11666,484.48497 770,484.09448"
+       sodipodi:nodetypes="cc"
        style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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:nodetypes="cc" />
+       d="M 142.16937,435.66446 770,434.09448"
+       id="path5182"
+       inkscape:connector-curvature="0" />
     <path
-       inkscape:connector-curvature="0"
-       id="path5186"
-       d="M 141.00916,535.82676 770,534.09448"
+       sodipodi:nodetypes="cc"
        style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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:nodetypes="cc" />
+       d="M 138.11666,484.48497 770,484.09448"
+       id="path5184"
+       inkscape:connector-curvature="0" />
     <path
        sodipodi:nodetypes="cc"
-       inkscape:connector-curvature="0"
-       id="path5188"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 141.00916,535.82676 770,534.09448"
+       id="path5186"
+       inkscape:connector-curvature="0" />
+    <path
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 389.99373,345.30833 -1.45704,240.98112"
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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="path5188"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
     <text
-       sodipodi:linespacing="125%"
-       id="text5190"
-       y="374.09448"
-       x="270"
+       xml:space="preserve"
        style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       xml:space="preserve"><tspan
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-         y="374.09448"
-         x="270"
+       x="270"
+       y="374.09448"
+       id="text5190"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan5192"
-         sodipodi:role="line">erkennNr</tspan></text>
+         x="270"
+         y="374.09448"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">erkennNr</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="150"
-       y="414.09448"
+       sodipodi:linespacing="125%"
        id="text5194"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5196"
+       y="414.09448"
+       x="150"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="414.09448"
          x="150"
-         y="414.09448">S</tspan></text>
+         id="tspan5196"
+         sodipodi:role="line">S</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="150"
-       y="464.09448"
+       sodipodi:linespacing="125%"
        id="text5198"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5200"
+       y="464.09448"
+       x="150"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="464.09448"
          x="150"
-         y="464.09448">K</tspan></text>
+         id="tspan5200"
+         sodipodi:role="line">K</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="150"
-       y="514.09448"
+       sodipodi:linespacing="125%"
        id="text5202"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5204"
+       y="514.09448"
+       x="150"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="514.09448"
          x="150"
-         y="514.09448">D</tspan></text>
+         id="tspan5204"
+         sodipodi:role="line">D</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="150"
-       y="564.09448"
+       sodipodi:linespacing="125%"
        id="text5206"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5208"
+       y="564.09448"
+       x="150"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="564.09448"
          x="150"
-         y="564.09448">K</tspan></text>
+         id="tspan5208"
+         sodipodi:role="line">K</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="270"
-       y="564.09448"
+       sodipodi:linespacing="125%"
        id="text5210"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5212"
+       y="564.09448"
+       x="270"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="564.09448"
          x="270"
-         y="564.09448">pq 12</tspan></text>
+         id="tspan5212"
+         sodipodi:role="line">pq 12</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="270"
-       y="514.09448"
+       sodipodi:linespacing="125%"
        id="text5214"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5216"
+       y="514.09448"
+       x="270"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="514.09448"
          x="270"
-         y="514.09448">ag 822</tspan></text>
+         id="tspan5216"
+         sodipodi:role="line">ag 822</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="270"
-       y="464.09448"
+       sodipodi:linespacing="125%"
        id="text5218"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5220"
+       y="464.09448"
+       x="270"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="464.09448"
          x="270"
-         y="464.09448">tt 677</tspan></text>
+         id="tspan5220"
+         sodipodi:role="line">tt 677</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="270"
-       y="414.09448"
+       sodipodi:linespacing="125%"
        id="text5222"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5224"
+       y="414.09448"
+       x="270"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="414.09448"
          x="270"
-         y="414.09448">zp 739</tspan></text>
+         id="tspan5224"
+         sodipodi:role="line">zp 739</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="400"
-       y="414.09448"
+       sodipodi:linespacing="125%"
        id="text5226"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5228"
+       y="414.09448"
+       x="400"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="414.09448"
          x="400"
-         y="414.09448">Stuttgart</tspan></text>
+         id="tspan5228"
+         sodipodi:role="line">Stuttgart</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="400"
-       y="464.09448"
+       sodipodi:linespacing="125%"
        id="text5230"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5232"
+       y="464.09448"
+       x="400"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="464.09448"
          x="400"
-         y="464.09448">Köln</tspan></text>
+         id="tspan5232"
+         sodipodi:role="line">Köln</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="400"
-       y="514.09448"
+       sodipodi:linespacing="125%"
        id="text5234"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5236"
+       y="514.09448"
+       x="400"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="514.09448"
          x="400"
-         y="514.09448">Düsseldorf</tspan></text>
+         id="tspan5236"
+         sodipodi:role="line">Düsseldorf</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="400"
-       y="564.09448"
+       sodipodi:linespacing="125%"
        id="text5238"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5240"
+       y="564.09448"
+       x="400"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="564.09448"
          x="400"
-         y="564.09448">Köln</tspan></text>
+         id="tspan5240"
+         sodipodi:role="line">Köln</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="580"
-       y="414.09448"
+       sodipodi:linespacing="125%"
        id="text5242"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5244"
-         x="580"
-         y="414.09448">Hans Wurst</tspan></text>
-    <text
-       xml:space="preserve"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       y="414.09448"
        x="580"
-       y="564.09448"
-       id="text5246"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5248"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="414.09448"
          x="580"
-         y="564.09448">Eva Witzig</tspan></text>
+         id="tspan5244"
+         sodipodi:role="line">Hans Wurst</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       sodipodi:linespacing="125%"
+       id="text5246"
+       y="564.09448"
        x="580"
-       y="514.09448"
-       id="text5250"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5252"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="564.09448"
          x="580"
-         y="514.09448">Tina Schräg</tspan></text>
+         id="tspan5248"
+         sodipodi:role="line">Eva Witzig</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       sodipodi:linespacing="125%"
+       id="text5250"
+       y="514.09448"
        x="580"
-       y="464.09448"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="514.09448"
+         x="580"
+         id="tspan5252"
+         sodipodi:role="line">Tina Schräg</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
        id="text5254"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5256"
+       y="464.09448"
+       x="580"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="464.09448"
          x="580"
-         y="464.09448">Seppl Deppl</tspan></text>
+         id="tspan5256"
+         sodipodi:role="line">Seppl Deppl</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:36px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="32.192879"
-       y="114.87004"
+       sodipodi:linespacing="125%"
        id="text5258"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5260"
+       y="114.87004"
+       x="32.192879"
+       style="font-size:36px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="114.87004"
          x="32.192879"
-         y="114.87004">Number plates S-zp 739, K-tt 677,...</tspan></text>
+         id="tspan5260"
+         sodipodi:role="line">Number plates S-zp 739, K-tt 677,...</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans Bold"
-       x="161.69604"
-       y="334.36694"
+       sodipodi:linespacing="125%"
        id="text5262"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan5264"
+       y="334.36694"
+       x="161.69604"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans Bold"
+       xml:space="preserve"><tspan
+         y="334.36694"
          x="161.69604"
-         y="334.36694">Primary key</tspan></text>
+         id="tspan5264"
+         sodipodi:role="line">Primary key</tspan></text>
     <path
-       style="color:#000000;fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:url(#DotMQ);marker-end:url(#Arrow1Mend-6FL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="m 160,354.09448 -50,0 0,-70 370,0 0,50"
-       id="path5266"
+       sodipodi:nodetypes="ccccc"
        inkscape:connector-curvature="0"
-       sodipodi:nodetypes="ccccc" />
+       id="path5266"
+       d="m 160,354.09448 -50,0 0,-70 370,0 0,50"
+       style="color:#000000;fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:url(#DotMQ);marker-end:url(#Arrow1Mend-6FL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <rect
-       ry="0"
-       y="345.16953"
-       x="140"
-       height="38.924957"
-       width="630"
+       style="fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
        id="rect5268"
-       style="fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+       width="630"
+       height="38.924957"
+       x="140"
+       y="345.16953"
+       ry="0" />
     <path
-       sodipodi:nodetypes="cccc"
-       inkscape:connector-curvature="0"
-       id="path5270"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 140,384.09448 0,200 630,0 0,-200"
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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="path5270"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cccc" />
     <text
-       xml:space="preserve"
-       style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
-       x="80"
-       y="234.09448"
+       sodipodi:linespacing="125%"
        id="text5272"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
+       y="234.09448"
+       x="80"
+       style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
+       xml:space="preserve"><tspan
+         y="234.09448"
+         x="80"
          id="tspan5274"
+         sodipodi:role="line">Functional dependency:</tspan><tspan
+         y="274.09448"
          x="80"
-         y="234.09448">Functional dependency:</tspan><tspan
-         id="tspan5276"
          sodipodi:role="line"
-         x="80"
-         y="274.09448"><tspan
-           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace"
-           id="tspan5278">ortKreis → ortKreisName</tspan></tspan></text>
+         id="tspan5276"><tspan
+           id="tspan5278"
+           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace">ortKreis → ortKreisName</tspan></tspan></text>
   </g>
   <g
      inkscape:groupmode="layer"
-     id="g3265"
-     inkscape:label="2-nd normal form decomposition"
-     style="display:none">
+     id="g8293"
+     inkscape:label="Downside: Anomalies"
+     style="display:inline">
     <rect
        style="color:#000000;fill:#ffaaaa;fill-opacity:1;stroke:#ff5555;stroke-width:0;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="rect3267"
+       id="rect8295"
        width="127.32493"
        height="35.853241"
-       x="319.2767"
-       y="116.25598"
+       x="180.97275"
+       y="136.52844"
        ry="0" />
     <rect
        style="color:#000000;fill:#ff2a2a;fill-opacity:1;stroke:#000000;stroke-width:0;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="rect3269"
+       id="rect8297"
        width="120.00837"
        height="36.584896"
-       x="197.82176"
-       y="116.25598"
+       x="59.517807"
+       y="136.52844"
        ry="0" />
     <rect
        style="color:#000000;fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:3;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="rect3271"
+       id="rect8299"
        width="380"
        height="40"
-       x="448.30396"
-       y="113.82202" />
+       x="310"
+       y="134.09448" />
     <text
        xml:space="preserve"
        style="font-size:40px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
        x="10"
        y="44.094482"
-       id="text3273"
+       id="text8301"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3275"
+         id="tspan8303"
          x="10"
-         y="44.094482">Decomposition to 2-nd normal form</tspan></text>
+         y="44.094482">Downside: Anomalies</tspan></text>
     <text
        xml:space="preserve"
        style="font-size:40px;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:Monospace;-inkscape-font-specification:Monospace"
        x="395.09442"
        y="254.61639"
-       id="text3277"
+       id="text8305"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3279"
+         id="tspan8307"
          x="395.09442"
          y="254.61639" /></text>
     <rect
        style="color:#000000;fill:#ff0000;fill-opacity:1;stroke:#ff0000;stroke-width:0;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="rect3281"
+       id="rect8309"
        width="249.51154"
        height="35.853241"
-       x="198.30396"
-       y="78.211975"
+       x="60"
+       y="98.484436"
        ry="0" />
     <text
        sodipodi:linespacing="125%"
-       id="text3283"
-       y="143.82202"
-       x="208.30396"
+       id="text8311"
+       y="164.09448"
+       x="70"
        style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
        xml:space="preserve"><tspan
          style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-         y="143.82202"
-         x="208.30396"
-         id="tspan3285"
+         y="164.09448"
+         x="70"
+         id="tspan8313"
          sodipodi:role="line">ortKreis</tspan></text>
     <path
        sodipodi:nodetypes="cc"
        inkscape:connector-curvature="0"
-       id="path3287"
-       d="m 318.80498,115.28533 -0.50102,238.53669"
+       id="path8315"
+       d="M 180.50102,135.55779 180,374.09448"
        style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
     <text
        sodipodi:linespacing="125%"
-       id="text3289"
-       y="143.82202"
-       x="458.30396"
+       id="text8317"
+       y="164.09448"
+       x="320"
        style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
        xml:space="preserve"><tspan
          style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-         y="143.82202"
-         x="458.30396"
-         id="tspan3291"
+         y="164.09448"
+         x="320"
+         id="tspan8319"
          sodipodi:role="line">ortKreisName</tspan></text>
     <text
        sodipodi:linespacing="125%"
-       id="text3293"
-       y="143.82202"
-       x="638.30396"
+       id="text8321"
+       y="164.09448"
+       x="500"
        style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
        xml:space="preserve"><tspan
          style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-         y="143.82202"
-         x="638.30396"
-         id="tspan3295"
+         y="164.09448"
+         x="500"
+         id="tspan8323"
          sodipodi:role="line">halter</tspan></text>
     <path
        sodipodi:nodetypes="cc"
        inkscape:connector-curvature="0"
-       id="path3297"
-       d="m 629.78877,113.11818 -1.48481,240.70384"
+       id="path8325"
+       d="M 491.48481,133.39064 490,374.09448"
        style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
     <path
        inkscape:connector-curvature="0"
-       id="path3299"
-       d="m 200.47333,205.392 627.83063,-1.56998"
+       id="path8327"
+       d="M 62.16937,225.66446 690,224.09448"
        style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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:nodetypes="cc" />
     <path
        inkscape:connector-curvature="0"
-       id="path3301"
-       d="m 196.42062,254.21251 631.88334,-0.39049"
+       id="path8329"
+       d="M 58.11666,274.48497 690,274.09448"
        style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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:nodetypes="cc" />
     <path
        inkscape:connector-curvature="0"
-       id="path3303"
-       d="m 199.31312,305.5543 628.99084,-1.73228"
+       id="path8331"
+       d="M 61.00916,325.82676 690,324.09448"
        style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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:nodetypes="cc" />
     <path
        sodipodi:nodetypes="cc"
        inkscape:connector-curvature="0"
-       id="path3305"
-       d="m 448.29769,115.03587 -1.45704,240.98112"
+       id="path8333"
+       d="m 309.99373,135.30833 -1.45704,240.98112"
        style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
     <text
        sodipodi:linespacing="125%"
-       id="text3307"
-       y="143.82202"
-       x="328.30396"
+       id="text8335"
+       y="164.09448"
+       x="190"
        style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
        xml:space="preserve"><tspan
          style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-         y="143.82202"
-         x="328.30396"
-         id="tspan3309"
+         y="164.09448"
+         x="190"
+         id="tspan8337"
          sodipodi:role="line">erkennNr</tspan></text>
     <text
        xml:space="preserve"
        style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="208.30396"
-       y="183.82202"
-       id="text3311"
+       x="70"
+       y="204.09448"
+       id="text8339"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3313"
-         x="208.30396"
-         y="183.82202">S</tspan></text>
+         id="tspan8341"
+         x="70"
+         y="204.09448">S</tspan></text>
     <text
        xml:space="preserve"
        style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="208.30396"
-       y="233.82202"
-       id="text3315"
+       x="70"
+       y="254.09448"
+       id="text8343"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3317"
-         x="208.30396"
-         y="233.82202">K</tspan></text>
+         id="tspan8345"
+         x="70"
+         y="254.09448">K</tspan></text>
     <text
        xml:space="preserve"
        style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="208.30396"
-       y="283.82202"
-       id="text3319"
+       x="70"
+       y="304.09448"
+       id="text8347"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3321"
-         x="208.30396"
-         y="283.82202">D</tspan></text>
+         id="tspan8349"
+         x="70"
+         y="304.09448">D</tspan></text>
     <text
        xml:space="preserve"
        style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="208.30396"
-       y="333.82202"
-       id="text3323"
+       x="70"
+       y="354.09448"
+       id="text8351"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3325"
-         x="208.30396"
-         y="333.82202">K</tspan></text>
+         id="tspan8353"
+         x="70"
+         y="354.09448">K</tspan></text>
     <text
        xml:space="preserve"
        style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="328.30396"
-       y="333.82202"
-       id="text3327"
+       x="190"
+       y="354.09448"
+       id="text8355"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3329"
-         x="328.30396"
-         y="333.82202">pq 12</tspan></text>
+         id="tspan8357"
+         x="190"
+         y="354.09448">pq 12</tspan></text>
     <text
        xml:space="preserve"
        style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="328.30396"
-       y="283.82202"
-       id="text3331"
+       x="190"
+       y="304.09448"
+       id="text8359"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3333"
-         x="328.30396"
-         y="283.82202">ag 822</tspan></text>
+         id="tspan8361"
+         x="190"
+         y="304.09448">ag 822</tspan></text>
     <text
        xml:space="preserve"
        style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="328.30396"
-       y="233.82202"
-       id="text3335"
+       x="190"
+       y="254.09448"
+       id="text8363"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3337"
-         x="328.30396"
-         y="233.82202">tt 677</tspan></text>
+         id="tspan8365"
+         x="190"
+         y="254.09448">tt 677</tspan></text>
     <text
        xml:space="preserve"
        style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="328.30396"
-       y="183.82202"
-       id="text3339"
+       x="190"
+       y="204.09448"
+       id="text8367"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3341"
-         x="328.30396"
-         y="183.82202">zp 739</tspan></text>
+         id="tspan8369"
+         x="190"
+         y="204.09448">zp 739</tspan></text>
     <text
        xml:space="preserve"
        style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="458.30396"
-       y="183.82202"
-       id="text3343"
+       x="320"
+       y="204.09448"
+       id="text8371"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3345"
-         x="458.30396"
-         y="183.82202">Stuttgart</tspan></text>
+         id="tspan8373"
+         x="320"
+         y="204.09448">Stuttgart</tspan></text>
     <text
        xml:space="preserve"
        style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="458.30396"
-       y="233.82202"
-       id="text3347"
+       x="320"
+       y="254.09448"
+       id="text8375"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3349"
-         x="458.30396"
-         y="233.82202">Köln</tspan></text>
+         id="tspan8377"
+         x="320"
+         y="254.09448">Köln</tspan></text>
     <text
        xml:space="preserve"
        style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="458.30396"
-       y="283.82202"
-       id="text3351"
+       x="320"
+       y="304.09448"
+       id="text8379"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3353"
-         x="458.30396"
-         y="283.82202">Düsseldorf</tspan></text>
+         id="tspan8381"
+         x="320"
+         y="304.09448">Düsseldorf</tspan></text>
     <text
        xml:space="preserve"
        style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="458.30396"
-       y="333.82202"
-       id="text3355"
+       x="320"
+       y="354.09448"
+       id="text8383"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3357"
-         x="458.30396"
-         y="333.82202">Köln</tspan></text>
+         id="tspan8385"
+         x="320"
+         y="354.09448">Köln</tspan></text>
     <text
        xml:space="preserve"
        style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="638.30396"
-       y="183.82202"
-       id="text3359"
+       x="500"
+       y="204.09448"
+       id="text8387"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3361"
-         x="638.30396"
-         y="183.82202">Hans Wurst</tspan></text>
+         id="tspan8389"
+         x="500"
+         y="204.09448">Hans Wurst</tspan></text>
     <text
        xml:space="preserve"
        style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="638.30396"
-       y="333.82202"
-       id="text3363"
+       x="500"
+       y="354.09448"
+       id="text8391"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3365"
-         x="638.30396"
-         y="333.82202">Eva Witzig</tspan></text>
+         id="tspan8393"
+         x="500"
+         y="354.09448">Eva Witzig</tspan></text>
     <text
        xml:space="preserve"
        style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="638.30396"
-       y="283.82202"
-       id="text3367"
+       x="500"
+       y="304.09448"
+       id="text8395"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3369"
-         x="638.30396"
-         y="283.82202">Tina Schräg</tspan></text>
+         id="tspan8397"
+         x="500"
+         y="304.09448">Tina Schräg</tspan></text>
     <text
        xml:space="preserve"
        style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="638.30396"
-       y="233.82202"
-       id="text3371"
+       x="500"
+       y="254.09448"
+       id="text8399"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3373"
-         x="638.30396"
-         y="233.82202">Seppl Deppl</tspan></text>
+         id="tspan8401"
+         x="500"
+         y="254.09448">Seppl Deppl</tspan></text>
     <text
        xml:space="preserve"
        style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans Bold"
-       x="220"
-       y="104.09448"
-       id="text3379"
+       x="81.696045"
+       y="124.36694"
+       id="text8407"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3381"
-         x="220"
-         y="104.09448">Primary key</tspan></text>
-    <path
-       style="color:#000000;fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:url(#DotMQ);marker-end:url(#Arrow1Mend-6FL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="m 210,124.09448 -160,0 0,270 0,70 250,0"
-       id="path3383"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="ccccc" />
+         id="tspan8409"
+         x="81.696045"
+         y="124.36694">Primary key</tspan></text>
     <rect
        ry="0"
-       y="114.89707"
-       x="198.30396"
+       y="135.16953"
+       x="60"
        height="38.924957"
        width="630"
-       id="rect3385"
+       id="rect8413"
        style="fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
     <path
        sodipodi:nodetypes="cccc"
        inkscape:connector-curvature="0"
-       id="path3387"
-       d="m 198.30396,153.82202 0,200 630,0 0,-200"
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
-    <text
-       xml:space="preserve"
-       style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
-       x="60"
-       y="444.09448"
-       id="text3389"
-       sodipodi:linespacing="125%"><tspan
-         id="tspan3393"
-         sodipodi:role="line"
-         x="60"
-         y="444.09448">Foreign key</tspan></text>
-    <rect
-       style="color:#000000;fill:#ff2a2a;fill-opacity:1;stroke:#000000;stroke-width:0;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="rect3269-9"
-       width="116.82181"
-       height="72.92247"
-       x="311.71277"
-       y="410.67725"
-       ry="0" />
-    <text
-       sodipodi:linespacing="125%"
-       id="text3283-8"
-       y="474.09448"
-       x="320"
-       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       xml:space="preserve"><tspan
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-         y="474.09448"
-         x="320"
-         id="tspan3285-7"
-         sodipodi:role="line">ortKreis</tspan></text>
-    <path
-       sodipodi:nodetypes="cc"
-       inkscape:connector-curvature="0"
-       id="path3287-2"
-       d="M 430.50102,445.55779 430,684.09448"
+       id="path8415"
+       d="m 60,174.09448 0,200 630,0 0,-200"
        style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
-    <text
-       sodipodi:linespacing="125%"
-       id="text3289-9"
-       y="474.09448"
-       x="440"
-       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       xml:space="preserve"><tspan
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-         y="474.09448"
-         x="440"
-         id="tspan3291-4"
-         sodipodi:role="line">ortKreisName</tspan></text>
-    <path
-       inkscape:connector-curvature="0"
-       id="path3299-5"
-       d="M 312.16937,535.66446 610,534.09448"
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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:nodetypes="cc" />
-    <path
-       inkscape:connector-curvature="0"
-       id="path3301-4"
-       d="M 308.11666,584.48497 610,584.09448"
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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:nodetypes="cc" />
-    <path
-       inkscape:connector-curvature="0"
-       id="path3303-0"
-       d="M 311.00916,635.82676 610,634.09448"
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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:nodetypes="cc" />
-    <text
-       xml:space="preserve"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="320"
-       y="514.09448"
-       id="text3311-0"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3313-7"
-         x="320"
-         y="514.09448">S</tspan></text>
     <text
        xml:space="preserve"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="320"
-       y="564.09448"
-       id="text3315-1"
+       style="font-size:36px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+       x="370"
+       y="494.09448"
+       id="text3067-8"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3317-3"
-         x="320"
-         y="564.09448">K</tspan></text>
+         x="370"
+         y="494.09448"
+         id="tspan3151-2">➢ Update </tspan></text>
     <text
        xml:space="preserve"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="320"
+       style="font-size:36px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+       x="370"
        y="614.09448"
-       id="text3319-9"
+       id="text3067-8-5"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3321-2"
-         x="320"
-         y="614.09448">D</tspan></text>
+         x="370"
+         y="614.09448"
+         id="tspan3151-2-8">➢ Delete </tspan></text>
     <text
        xml:space="preserve"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="320"
-       y="664.09448"
-       id="text3323-3"
+       style="font-size:36px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+       x="370"
+       y="554.09448"
+       id="text3067-8-2"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3325-6"
-         x="320"
-         y="664.09448">K</tspan></text>
+         x="370"
+         y="554.09448"
+         id="tspan3151-2-9">➢ Insert </tspan></text>
+  </g>
+  <g
+     style="display:none"
+     inkscape:label="Decomposition to 2-nd normal form"
+     id="g3265"
+     inkscape:groupmode="layer">
+    <rect
+       ry="0"
+       y="116.25598"
+       x="319.2767"
+       height="35.853241"
+       width="127.32493"
+       id="rect3267"
+       style="color:#000000;fill:#ffaaaa;fill-opacity:1;stroke:#ff5555;stroke-width:0;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" />
+    <rect
+       ry="0"
+       y="116.25598"
+       x="197.82176"
+       height="36.584896"
+       width="120.00837"
+       id="rect3269"
+       style="color:#000000;fill:#ff2a2a;fill-opacity:1;stroke:#000000;stroke-width:0;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" />
+    <rect
+       y="113.82202"
+       x="448.30396"
+       height="40"
+       width="380"
+       id="rect3271"
+       style="color:#000000;fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:3;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" />
     <text
-       xml:space="preserve"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="440"
-       y="514.09448"
-       id="text3343-9"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3345-4"
-         x="440"
-         y="514.09448">Stuttgart</tspan></text>
+       sodipodi:linespacing="125%"
+       id="text3273"
+       y="44.094482"
+       x="10"
+       style="font-size:40px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="44.094482"
+         x="10"
+         id="tspan3275"
+         sodipodi:role="line">Decomposition to 2-nd normal form</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3277"
+       y="254.61639"
+       x="395.09442"
+       style="font-size:40px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="254.61639"
+         x="395.09442"
+         id="tspan3279"
+         sodipodi:role="line" /></text>
+    <rect
+       ry="0"
+       y="78.211975"
+       x="198.30396"
+       height="35.853241"
+       width="249.51154"
+       id="rect3281"
+       style="color:#000000;fill:#ff0000;fill-opacity:1;stroke:#ff0000;stroke-width:0;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" />
     <text
        xml:space="preserve"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="440"
-       y="564.09448"
-       id="text3347-4"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+       x="208.30396"
+       y="143.82202"
+       id="text3283"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3349-1"
-         x="440"
-         y="564.09448">Köln</tspan></text>
+         id="tspan3285"
+         x="208.30396"
+         y="143.82202"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">ortKreis</tspan></text>
+    <path
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 318.80498,115.28533 -0.50102,238.53669"
+       id="path3287"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
     <text
        xml:space="preserve"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="440"
-       y="614.09448"
-       id="text3351-3"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+       x="458.30396"
+       y="143.82202"
+       id="text3289"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3353-8"
-         x="440"
-         y="614.09448">Düsseldorf</tspan></text>
+         id="tspan3291"
+         x="458.30396"
+         y="143.82202"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">ortKreisName</tspan></text>
     <text
        xml:space="preserve"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="440"
-       y="664.09448"
-       id="text3355-0"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+       x="638.30396"
+       y="143.82202"
+       id="text3293"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3357-6"
-         x="440"
-         y="664.09448">Köln</tspan></text>
-    <rect
-       ry="0"
-       y="445.16956"
-       x="310"
-       height="238.92496"
-       width="300"
-       id="rect3385-3"
-       style="fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+         id="tspan3295"
+         x="638.30396"
+         y="143.82202"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">halter</tspan></text>
     <path
-       inkscape:connector-curvature="0"
-       id="path3299-5-6"
-       d="m 310.46496,485.18017 297.83063,-1.56998"
        style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 629.78877,113.11818 -1.48481,240.70384"
+       id="path3297"
+       inkscape:connector-curvature="0"
        sodipodi:nodetypes="cc" />
+    <path
+       sodipodi:nodetypes="cc"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 200.47333,205.392 627.83063,-1.56998"
+       id="path3299"
+       inkscape:connector-curvature="0" />
+    <path
+       sodipodi:nodetypes="cc"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 196.42062,254.21251 631.88334,-0.39049"
+       id="path3301"
+       inkscape:connector-curvature="0" />
+    <path
+       sodipodi:nodetypes="cc"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 199.31312,305.5543 628.99084,-1.73228"
+       id="path3303"
+       inkscape:connector-curvature="0" />
+    <path
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 448.29769,115.03587 -1.45704,240.98112"
+       id="path3305"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
+    <text
+       xml:space="preserve"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+       x="328.30396"
+       y="143.82202"
+       id="text3307"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
+         id="tspan3309"
+         x="328.30396"
+         y="143.82202"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">erkennNr</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3311"
+       y="183.82202"
+       x="208.30396"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="183.82202"
+         x="208.30396"
+         id="tspan3313"
+         sodipodi:role="line">S</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3315"
+       y="233.82202"
+       x="208.30396"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="233.82202"
+         x="208.30396"
+         id="tspan3317"
+         sodipodi:role="line">K</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3319"
+       y="283.82202"
+       x="208.30396"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="283.82202"
+         x="208.30396"
+         id="tspan3321"
+         sodipodi:role="line">D</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3323"
+       y="333.82202"
+       x="208.30396"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="333.82202"
+         x="208.30396"
+         id="tspan3325"
+         sodipodi:role="line">K</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3327"
+       y="333.82202"
+       x="328.30396"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="333.82202"
+         x="328.30396"
+         id="tspan3329"
+         sodipodi:role="line">pq 12</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3331"
+       y="283.82202"
+       x="328.30396"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="283.82202"
+         x="328.30396"
+         id="tspan3333"
+         sodipodi:role="line">ag 822</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3335"
+       y="233.82202"
+       x="328.30396"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="233.82202"
+         x="328.30396"
+         id="tspan3337"
+         sodipodi:role="line">tt 677</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3339"
+       y="183.82202"
+       x="328.30396"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="183.82202"
+         x="328.30396"
+         id="tspan3341"
+         sodipodi:role="line">zp 739</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3343"
+       y="183.82202"
+       x="458.30396"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="183.82202"
+         x="458.30396"
+         id="tspan3345"
+         sodipodi:role="line">Stuttgart</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3347"
+       y="233.82202"
+       x="458.30396"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="233.82202"
+         x="458.30396"
+         id="tspan3349"
+         sodipodi:role="line">Köln</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3351"
+       y="283.82202"
+       x="458.30396"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="283.82202"
+         x="458.30396"
+         id="tspan3353"
+         sodipodi:role="line">Düsseldorf</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3355"
+       y="333.82202"
+       x="458.30396"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="333.82202"
+         x="458.30396"
+         id="tspan3357"
+         sodipodi:role="line">Köln</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3359"
+       y="183.82202"
+       x="638.30396"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="183.82202"
+         x="638.30396"
+         id="tspan3361"
+         sodipodi:role="line">Hans Wurst</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3363"
+       y="333.82202"
+       x="638.30396"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="333.82202"
+         x="638.30396"
+         id="tspan3365"
+         sodipodi:role="line">Eva Witzig</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3367"
+       y="283.82202"
+       x="638.30396"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="283.82202"
+         x="638.30396"
+         id="tspan3369"
+         sodipodi:role="line">Tina Schräg</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3371"
+       y="233.82202"
+       x="638.30396"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="233.82202"
+         x="638.30396"
+         id="tspan3373"
+         sodipodi:role="line">Seppl Deppl</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3379"
+       y="104.09448"
+       x="220"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans Bold"
+       xml:space="preserve"><tspan
+         y="104.09448"
+         x="220"
+         id="tspan3381"
+         sodipodi:role="line">Primary key</tspan></text>
+    <path
+       sodipodi:nodetypes="ccccc"
+       inkscape:connector-curvature="0"
+       id="path3383"
+       d="m 210,124.09448 -160,0 0,270 0,70 250,0"
+       style="color:#000000;fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:url(#DotMQ);marker-end:url(#Arrow1Mend-6FL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <rect
+       style="fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+       id="rect3385"
+       width="630"
+       height="38.924957"
+       x="198.30396"
+       y="114.89707"
+       ry="0" />
+    <path
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 198.30396,153.82202 0,200 630,0 0,-200"
+       id="path3387"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cccc" />
+    <text
+       sodipodi:linespacing="125%"
+       id="text3389"
+       y="444.09448"
+       x="60"
+       style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
+       xml:space="preserve"><tspan
+         y="444.09448"
+         x="60"
+         sodipodi:role="line"
+         id="tspan3393">Foreign key</tspan></text>
+    <rect
+       ry="0"
+       y="410.67725"
+       x="311.71277"
+       height="72.92247"
+       width="116.82181"
+       id="rect3269-9"
+       style="color:#000000;fill:#ff2a2a;fill-opacity:1;stroke:#000000;stroke-width:0;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" />
+    <text
+       xml:space="preserve"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+       x="320"
+       y="474.09448"
+       id="text3283-8"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
+         id="tspan3285-7"
+         x="320"
+         y="474.09448"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">ortKreis</tspan></text>
+    <path
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 430.50102,445.55779 430,684.09448"
+       id="path3287-2"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
+    <text
+       xml:space="preserve"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+       x="440"
+       y="474.09448"
+       id="text3289-9"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
+         id="tspan3291-4"
+         x="440"
+         y="474.09448"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">ortKreisName</tspan></text>
+    <path
+       sodipodi:nodetypes="cc"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 312.16937,535.66446 610,534.09448"
+       id="path3299-5"
+       inkscape:connector-curvature="0" />
+    <path
+       sodipodi:nodetypes="cc"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 308.11666,584.48497 610,584.09448"
+       id="path3301-4"
+       inkscape:connector-curvature="0" />
+    <path
+       sodipodi:nodetypes="cc"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 311.00916,635.82676 610,634.09448"
+       id="path3303-0"
+       inkscape:connector-curvature="0" />
+    <text
+       sodipodi:linespacing="125%"
+       id="text3311-0"
+       y="514.09448"
+       x="320"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="514.09448"
+         x="320"
+         id="tspan3313-7"
+         sodipodi:role="line">S</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3315-1"
+       y="564.09448"
+       x="320"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="564.09448"
+         x="320"
+         id="tspan3317-3"
+         sodipodi:role="line">K</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3319-9"
+       y="614.09448"
+       x="320"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="614.09448"
+         x="320"
+         id="tspan3321-2"
+         sodipodi:role="line">D</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1;display:inline;font-family:Sans;-inkscape-font-specification:Sans Bold"
+       sodipodi:linespacing="125%"
+       id="text3323-3"
+       y="664.09448"
        x="320"
-       y="434.09448"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="664.09448"
+         x="320"
+         id="tspan3325-6"
+         sodipodi:role="line">K</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3343-9"
+       y="514.09448"
+       x="440"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="514.09448"
+         x="440"
+         id="tspan3345-4"
+         sodipodi:role="line">Stuttgart</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3347-4"
+       y="564.09448"
+       x="440"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="564.09448"
+         x="440"
+         id="tspan3349-1"
+         sodipodi:role="line">Köln</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3351-3"
+       y="614.09448"
+       x="440"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="614.09448"
+         x="440"
+         id="tspan3353-8"
+         sodipodi:role="line">Düsseldorf</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3355-0"
+       y="664.09448"
+       x="440"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="664.09448"
+         x="440"
+         id="tspan3357-6"
+         sodipodi:role="line">Köln</tspan></text>
+    <rect
+       style="fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
+       id="rect3385-3"
+       width="300"
+       height="238.92496"
+       x="310"
+       y="445.16956"
+       ry="0" />
+    <path
+       sodipodi:nodetypes="cc"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 310.46496,485.18017 297.83063,-1.56998"
+       id="path3299-5-6"
+       inkscape:connector-curvature="0" />
+    <text
+       sodipodi:linespacing="125%"
        id="text3379-5"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3381-6"
+       y="434.09448"
+       x="320"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1;display:inline;font-family:Sans;-inkscape-font-specification:Sans Bold"
+       xml:space="preserve"><tspan
+         y="434.09448"
          x="320"
-         y="434.09448">P. key</tspan></text>
+         id="tspan3381-6"
+         sodipodi:role="line">P. key</tspan></text>
     <path
-       style="color:#000000;fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:url(#DotMQ);marker-end:url(#Arrow1Mend-6FL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="m 420,454.09448 0,-60 50,0 50,0 0,50"
-       id="path3383-2"
+       sodipodi:nodetypes="ccccc"
        inkscape:connector-curvature="0"
-       sodipodi:nodetypes="ccccc" />
+       id="path3383-2"
+       d="m 420,454.09448 0,-60 50,0 50,0 0,50"
+       style="color:#000000;fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:url(#DotMQ);marker-end:url(#Arrow1Mend-6FL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <text
-       xml:space="preserve"
-       style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008000;fill-opacity:1;stroke:none;display:inline;font-family:Sans;-inkscape-font-specification:Sans"
-       x="440"
-       y="424.09448"
+       sodipodi:linespacing="125%"
        id="text3389-4"
-       sodipodi:linespacing="125%"><tspan
-         id="tspan3393-8"
-         sodipodi:role="line"
+       y="424.09448"
+       x="440"
+       style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008000;fill-opacity:1;stroke:none;display:inline;font-family:Sans;-inkscape-font-specification:Sans"
+       xml:space="preserve"><tspan
+         y="424.09448"
          x="440"
-         y="424.09448">F. d.</tspan></text>
+         sodipodi:role="line"
+         id="tspan3393-8">F. d.</tspan></text>
   </g>
   <g
-     inkscape:groupmode="layer"
+     style="display:none"
+     inkscape:label="Violating 3-rd normal form"
      id="g3407"
-     inkscape:label="3-rd normal form"
-     style="display:inline">
+     inkscape:groupmode="layer">
     <rect
-       style="color:#000000;fill:#ff2a2a;fill-opacity:1;stroke:#000000;stroke-width:0;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="rect3411"
-       width="60.482193"
-       height="37.56604"
-       x="99.517807"
+       ry="0"
        y="246.52844"
-       ry="0" />
+       x="99.517807"
+       height="37.56604"
+       width="60.482193"
+       id="rect3411"
+       style="color:#000000;fill:#ff2a2a;fill-opacity:1;stroke:#000000;stroke-width:0;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" />
     <text
-       xml:space="preserve"
-       style="font-size:40px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="10"
-       y="44.094482"
+       sodipodi:linespacing="125%"
        id="text3415"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3417"
+       y="44.094482"
+       x="10"
+       style="font-size:40px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="44.094482"
          x="10"
-         y="44.094482">Non-3rd normal form</tspan></text>
+         id="tspan3417"
+         sodipodi:role="line">Non-3rd normal form</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:40px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="395.09442"
-       y="254.61639"
+       sodipodi:linespacing="125%"
        id="text3419"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3421"
+       y="254.61639"
+       x="395.09442"
+       style="font-size:40px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="254.61639"
          x="395.09442"
-         y="254.61639" /></text>
+         id="tspan3421"
+         sodipodi:role="line" /></text>
     <text
-       sodipodi:linespacing="125%"
-       id="text3425"
-       y="274.09448"
-       x="360"
+       xml:space="preserve"
        style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       xml:space="preserve"><tspan
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-         y="274.09448"
-         x="360"
+       x="360"
+       y="274.09448"
+       id="text3425"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan3427"
-         sodipodi:role="line">ortKreis</tspan></text>
+         x="360"
+         y="274.09448"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">ortKreis</tspan></text>
     <path
-       sodipodi:nodetypes="cc"
-       inkscape:connector-curvature="0"
-       id="path3429"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 158.44939,246.39633 -0.50102,238.53669"
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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="path3429"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
     <text
-       sodipodi:linespacing="125%"
-       id="text3431"
-       y="274.09448"
-       x="490"
+       xml:space="preserve"
        style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       xml:space="preserve"><tspan
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-         y="274.09448"
-         x="490"
+       x="490"
+       y="274.09448"
+       id="text3431"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan3433"
-         sodipodi:role="line">ortKreisName</tspan></text>
+         x="490"
+         y="274.09448"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">ortKreisName</tspan></text>
     <text
-       sodipodi:linespacing="125%"
-       id="text3435"
-       y="274.09448"
-       x="170"
+       xml:space="preserve"
        style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       xml:space="preserve"><tspan
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-         y="274.09448"
-         x="170"
+       x="170"
+       y="274.09448"
+       id="text3435"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan3437"
-         sodipodi:role="line">name</tspan></text>
+         x="170"
+         y="274.09448"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">name</tspan></text>
     <path
-       sodipodi:nodetypes="cc"
-       inkscape:connector-curvature="0"
-       id="path3439"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 481.17267,243.39064 -1.48481,240.70384"
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
-    <path
+       id="path3439"
        inkscape:connector-curvature="0"
-       id="path3441"
-       d="M 102.16937,335.66446 790,334.09448"
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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:nodetypes="cc" />
     <path
-       inkscape:connector-curvature="0"
-       id="path3443"
-       d="M 98.11666,384.48497 790,384.09448"
+       sodipodi:nodetypes="cc"
        style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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:nodetypes="cc" />
+       d="M 102.16937,335.66446 790,334.09448"
+       id="path3441"
+       inkscape:connector-curvature="0" />
     <path
-       inkscape:connector-curvature="0"
-       id="path3445"
-       d="M 101.00916,435.82676 790,434.09448"
+       sodipodi:nodetypes="cc"
        style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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:nodetypes="cc" />
+       d="M 98.11666,384.48497 790,384.09448"
+       id="path3443"
+       inkscape:connector-curvature="0" />
     <path
        sodipodi:nodetypes="cc"
-       inkscape:connector-curvature="0"
-       id="path3447"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 101.00916,435.82676 790,434.09448"
+       id="path3445"
+       inkscape:connector-curvature="0" />
+    <path
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 349.99373,245.30833 -1.45704,240.98112"
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
-    <text
-       sodipodi:linespacing="125%"
-       id="text3449"
-       y="274.09448"
-       x="680"
-       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       xml:space="preserve"><tspan
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-         y="274.09448"
-         x="680"
-         id="tspan3451"
-         sodipodi:role="line">erkennNr</tspan></text>
-    <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="360"
-       y="314.09448"
-       id="text3453"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3455"
-         x="360"
-         y="314.09448">S</tspan></text>
+       id="path3447"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
     <text
        xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="360"
-       y="364.09448"
-       id="text3457"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
+       x="680"
+       y="274.09448"
+       id="text3449"
        sodipodi:linespacing="125%"><tspan
          sodipodi:role="line"
-         id="tspan3459"
-         x="360"
-         y="364.09448">K</tspan></text>
+         id="tspan3451"
+         x="680"
+         y="274.09448"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">erkennNr</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       sodipodi:linespacing="125%"
+       id="text3453"
+       y="314.09448"
        x="360"
-       y="414.09448"
-       id="text3461"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3463"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="314.09448"
          x="360"
-         y="414.09448">D</tspan></text>
+         id="tspan3455"
+         sodipodi:role="line">S</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       sodipodi:linespacing="125%"
+       id="text3457"
+       y="364.09448"
        x="360"
-       y="464.09448"
-       id="text3465"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3467"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="364.09448"
          x="360"
-         y="464.09448">K</tspan></text>
+         id="tspan3459"
+         sodipodi:role="line">K</tspan></text>
     <text
-       xml:space="preserve"
+       sodipodi:linespacing="125%"
+       id="text3461"
+       y="414.09448"
+       x="360"
        style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="680"
+       xml:space="preserve"><tspan
+         y="414.09448"
+         x="360"
+         id="tspan3463"
+         sodipodi:role="line">D</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text3465"
        y="464.09448"
+       x="360"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="464.09448"
+         x="360"
+         id="tspan3467"
+         sodipodi:role="line">K</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
        id="text3469"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3471"
+       y="464.09448"
+       x="680"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="464.09448"
          x="680"
-         y="464.09448">pq 12</tspan></text>
+         id="tspan3471"
+         sodipodi:role="line">pq 12</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="680"
-       y="414.09448"
+       sodipodi:linespacing="125%"
        id="text3473"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3475"
+       y="414.09448"
+       x="680"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="414.09448"
          x="680"
-         y="414.09448">ag 822</tspan></text>
+         id="tspan3475"
+         sodipodi:role="line">ag 822</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="680"
-       y="364.09448"
+       sodipodi:linespacing="125%"
        id="text3477"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3479"
+       y="364.09448"
+       x="680"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="364.09448"
          x="680"
-         y="364.09448">tt 677</tspan></text>
+         id="tspan3479"
+         sodipodi:role="line">tt 677</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="680"
-       y="314.09448"
+       sodipodi:linespacing="125%"
        id="text3481"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3483"
+       y="314.09448"
+       x="680"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="314.09448"
          x="680"
-         y="314.09448">zp 739</tspan></text>
+         id="tspan3483"
+         sodipodi:role="line">zp 739</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="490"
-       y="314.09448"
+       sodipodi:linespacing="125%"
        id="text3485"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3487"
+       y="314.09448"
+       x="490"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="314.09448"
          x="490"
-         y="314.09448">Stuttgart</tspan></text>
+         id="tspan3487"
+         sodipodi:role="line">Stuttgart</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="490"
-       y="364.09448"
+       sodipodi:linespacing="125%"
        id="text3489"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3491"
+       y="364.09448"
+       x="490"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="364.09448"
          x="490"
-         y="364.09448">Köln</tspan></text>
+         id="tspan3491"
+         sodipodi:role="line">Köln</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="490"
-       y="414.09448"
+       sodipodi:linespacing="125%"
        id="text3493"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3495"
+       y="414.09448"
+       x="490"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="414.09448"
          x="490"
-         y="414.09448">Düsseldorf</tspan></text>
+         id="tspan3495"
+         sodipodi:role="line">Düsseldorf</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
-       x="490"
-       y="464.09448"
+       sodipodi:linespacing="125%"
        id="text3497"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3499"
+       y="464.09448"
+       x="490"
+       style="font-size:22px;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:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="464.09448"
          x="490"
-         y="464.09448">Köln</tspan></text>
+         id="tspan3499"
+         sodipodi:role="line">Köln</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="170"
-       y="314.09448"
+       sodipodi:linespacing="125%"
        id="text3501"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3503"
+       y="314.09448"
+       x="170"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="314.09448"
          x="170"
-         y="314.09448">Hans Wurst</tspan></text>
+         id="tspan3503"
+         sodipodi:role="line">Hans Wurst</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="170"
-       y="464.09448"
+       sodipodi:linespacing="125%"
        id="text3505"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3507"
+       y="464.09448"
+       x="170"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="464.09448"
          x="170"
-         y="464.09448">Eva Witzig</tspan></text>
+         id="tspan3507"
+         sodipodi:role="line">Eva Witzig</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="170"
-       y="414.09448"
+       sodipodi:linespacing="125%"
        id="text3509"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3511"
+       y="414.09448"
+       x="170"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="414.09448"
          x="170"
-         y="414.09448">Tina Schräg</tspan></text>
+         id="tspan3511"
+         sodipodi:role="line">Tina Schräg</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="170"
-       y="364.09448"
+       sodipodi:linespacing="125%"
        id="text3513"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3515"
+       y="364.09448"
+       x="170"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="364.09448"
          x="170"
-         y="364.09448">Seppl Deppl</tspan></text>
+         id="tspan3515"
+         sodipodi:role="line">Seppl Deppl</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans Bold"
-       x="80"
-       y="94.094482"
+       sodipodi:linespacing="125%"
        id="text3521"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3523"
+       y="94.094482"
+       x="80"
+       style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans Bold"
+       xml:space="preserve"><tspan
+         y="94.094482"
          x="80"
-         y="94.094482">Primary key</tspan></text>
+         id="tspan3523"
+         sodipodi:role="line">Primary key</tspan></text>
     <path
-       style="color:#000000;fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:url(#DotMQ);marker-end:url(#Arrow1Mend-6FL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="m 150,264.09448 0,-140 540,0 0,110"
-       id="path3525"
+       sodipodi:nodetypes="cccc"
        inkscape:connector-curvature="0"
-       sodipodi:nodetypes="cccc" />
+       id="path3525"
+       d="m 110,254.09448 0,-130 580,0 0,110"
+       style="color:#000000;fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:url(#DotMQ);marker-end:url(#Arrow1Mend-6FL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <rect
-       ry="0"
-       y="245.16953"
-       x="100"
-       height="38.924957"
-       width="690"
+       style="fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
        id="rect3527"
-       style="fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
+       width="690"
+       height="38.924957"
+       x="100"
+       y="245.16953"
+       ry="0" />
     <path
-       sodipodi:nodetypes="cccc"
-       inkscape:connector-curvature="0"
-       id="path3529"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 100,284.09448 0,200 690,0 0,-200"
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
-    <text
-       xml:space="preserve"
-       style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
-       x="200"
-       y="104.09448"
+       id="path3529"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cccc" />
+    <text
+       sodipodi:linespacing="125%"
        id="text3531"
-       sodipodi:linespacing="125%"><tspan
-         id="tspan3535"
-         sodipodi:role="line"
+       y="104.09448"
+       x="200"
+       style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
+       xml:space="preserve"><tspan
+         y="104.09448"
          x="200"
-         y="104.09448">F.d. 1: id → all other attributes</tspan></text>
+         sodipodi:role="line"
+         id="tspan3535">F.d. 1: id → all other attributes</tspan></text>
     <text
-       sodipodi:linespacing="125%"
-       id="text3425-7"
-       y="274.09448"
-       x="110"
+       xml:space="preserve"
        style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-       xml:space="preserve"><tspan
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold"
-         y="274.09448"
-         x="110"
+       x="110"
+       y="274.09448"
+       id="text3425-7"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan3427-7"
-         sodipodi:role="line">id</tspan></text>
+         x="110"
+         y="274.09448"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Monospace;-inkscape-font-specification:Monospace Bold">id</tspan></text>
     <flowRoot
-       xml:space="preserve"
+       style="font-size:36px;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:Monospace;-inkscape-font-specification:Monospace"
        id="flowRoot3495"
-       style="font-size:36px;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:Monospace;-inkscape-font-specification:Monospace"><flowRegion
+       xml:space="preserve"><flowRegion
          id="flowRegion3497"><rect
-           id="rect3499"
-           width="239.82118"
-           height="271.68555"
+           y="679.52722"
            x="686.76068"
-           y="679.52722" /></flowRegion><flowPara
-         id="flowPara3501"></flowPara></flowRoot>    <text
-       xml:space="preserve"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="110"
-       y="464.09448"
+           height="271.68555"
+           width="239.82118"
+           id="rect3499" /></flowRegion><flowPara
+         id="flowPara3501" /></flowRoot>    <text
+       sodipodi:linespacing="125%"
        id="text3481-1-0"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3483-7-0"
+       y="464.09448"
+       x="110"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="464.09448"
          x="110"
-         y="464.09448">92</tspan></text>
+         id="tspan3483-7-0"
+         sodipodi:role="line">92</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="110"
-       y="414.09448"
+       sodipodi:linespacing="125%"
        id="text3481-1-6"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3483-7-7"
+       y="414.09448"
+       x="110"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="414.09448"
          x="110"
-         y="414.09448">48</tspan></text>
+         id="tspan3483-7-7"
+         sodipodi:role="line">48</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="110"
-       y="364.09448"
+       sodipodi:linespacing="125%"
        id="text3481-1-2"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3483-7-8"
+       y="364.09448"
+       x="110"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="364.09448"
          x="110"
-         y="364.09448">35</tspan></text>
+         id="tspan3483-7-8"
+         sodipodi:role="line">35</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
-       x="110"
-       y="314.09448"
+       sodipodi:linespacing="125%"
        id="text3481-1-4"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3483-7-9"
+       y="314.09448"
+       x="110"
+       style="font-size:22px;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;display:inline;font-family:Monospace;-inkscape-font-specification:Monospace"
+       xml:space="preserve"><tspan
+         y="314.09448"
          x="110"
-         y="314.09448">21</tspan></text>
+         id="tspan3483-7-9"
+         sodipodi:role="line">21</tspan></text>
     <path
-       sodipodi:nodetypes="cc"
-       inkscape:connector-curvature="0"
-       id="path3439-0"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 664.81196,245.37985 -1.48481,240.70384"
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
-    <path
-       style="color:#000000;fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-end:url(#Arrow1Mend-6FL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="m 370,124.09448 0.62428,106.64586"
-       id="path3525-4-2-0"
+       id="path3439-0"
        inkscape:connector-curvature="0"
        sodipodi:nodetypes="cc" />
     <path
-       style="color:#000000;fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-end:url(#Arrow1Mend-6FL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="m 640,124.09448 0.63274,106.83314"
-       id="path3525-4-2-0-3"
+       sodipodi:nodetypes="cc"
        inkscape:connector-curvature="0"
-       sodipodi:nodetypes="cc" />
+       id="path3525-4-2-0"
+       d="m 370,124.09448 0.62428,106.64586"
+       style="color:#000000;fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-end:url(#Arrow1Mend-6FL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <path
-       style="color:#000000;fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-end:url(#Arrow1Mend-6FL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="m 200,124.09448 0.40155,105.99461"
-       id="path3525-4-2-0-5"
+       sodipodi:nodetypes="cc"
        inkscape:connector-curvature="0"
-       sodipodi:nodetypes="cc" />
+       id="path3525-4-2-0-3"
+       d="m 652.29311,124.09448 0.63274,106.83314"
+       style="color:#000000;fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-end:url(#Arrow1Mend-6FL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <path
-       style="color:#000000;fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:url(#DotMQ);marker-end:url(#Arrow1Mend-6FL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="M 470.16876,255.30758 470,184.09448 l 140,0 0,50"
-       id="path3525-5"
+       sodipodi:nodetypes="cc"
        inkscape:connector-curvature="0"
-       sodipodi:nodetypes="cccc" />
+       id="path3525-4-2-0-5"
+       d="m 200,124.09448 0.40155,105.99461"
+       style="color:#000000;fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-end:url(#Arrow1Mend-6FL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       sodipodi:nodetypes="cccc"
+       inkscape:connector-curvature="0"
+       id="path3525-5"
+       d="M 470.16876,255.30758 470,184.09448 l 140,0 0,50"
+       style="color:#000000;fill:none;stroke:#008000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:url(#DotMQ);marker-end:url(#Arrow1Mend-6FL);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <text
-       xml:space="preserve"
-       style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008000;fill-opacity:1;stroke:none;display:inline;font-family:Sans;-inkscape-font-specification:Sans"
-       x="490"
-       y="174.09448"
-       id="text3531-0"
-       sodipodi:linespacing="125%"
+       inkscape:transform-center-y="388.07031"
        inkscape:transform-center-x="242.625"
-       inkscape:transform-center-y="388.07031"><tspan
-         id="tspan3535-2"
-         sodipodi:role="line"
+       sodipodi:linespacing="125%"
+       id="text3531-0"
+       y="174.09448"
+       x="490"
+       style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008000;fill-opacity:1;stroke:none;display:inline;font-family:Sans;-inkscape-font-specification:Sans"
+       xml:space="preserve"><tspan
+         y="174.09448"
          x="490"
-         y="174.09448">F.d. 2</tspan><tspan
          sodipodi:role="line"
-         x="490"
+         id="tspan3535-2">F.d. 2</tspan><tspan
+         id="tspan5081"
          y="214.09448"
-         id="tspan5081" /></text>
+         x="490"
+         sodipodi:role="line" /></text>
     <text
-       xml:space="preserve"
-       style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008000;fill-opacity:1;stroke:none;display:inline;font-family:Sans;-inkscape-font-specification:Sans"
-       x="170"
-       y="534.09448"
+       sodipodi:linespacing="125%"
        id="text3531-3"
-       sodipodi:linespacing="125%"><tspan
-         id="tspan3535-3"
-         sodipodi:role="line"
+       y="534.09448"
+       x="170"
+       style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008000;fill-opacity:1;stroke:none;display:inline;font-family:Sans;-inkscape-font-specification:Sans"
+       xml:space="preserve"><tspan
+         y="534.09448"
          x="170"
-         y="534.09448">F.d. 1: id → ortKreis</tspan></text>
+         sodipodi:role="line"
+         id="tspan3535-3">F.d. 1: id → ortKreis</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008000;fill-opacity:1;stroke:none;display:inline;font-family:Sans;-inkscape-font-specification:Sans"
-       x="170"
-       y="594.09448"
+       sodipodi:linespacing="125%"
        id="text3531-3-7"
-       sodipodi:linespacing="125%"><tspan
-         id="tspan3535-3-8"
-         sodipodi:role="line"
+       y="594.09448"
+       x="170"
+       style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008000;fill-opacity:1;stroke:none;display:inline;font-family:Sans;-inkscape-font-specification:Sans"
+       xml:space="preserve"><tspan
+         y="594.09448"
          x="170"
-         y="594.09448">F.d. 2:         ortKreis → ortKreisName</tspan></text>
+         sodipodi:role="line"
+         id="tspan3535-3-8">F.d. 2:         ortKreis → ortKreisName</tspan></text>
     <text
-       xml:space="preserve"
-       style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008000;fill-opacity:1;stroke:none;display:inline;font-family:Sans;-inkscape-font-specification:Sans"
-       x="40"
-       y="654.09448"
+       sodipodi:linespacing="125%"
        id="text3531-3-0"
-       sodipodi:linespacing="125%"><tspan
-         id="tspan3535-3-4"
+       y="654.09448"
+       x="10"
+       style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ff00ff;fill-opacity:1;stroke:none;display:inline;font-family:Sans;-inkscape-font-specification:Sans"
+       xml:space="preserve"><tspan
+         y="654.09448"
+         x="10"
          sodipodi:role="line"
-         x="40"
-         y="654.09448">Transitive F.d.: id       →            ortKreisName</tspan></text>
+         id="tspan3535-3-4">Transitive F.d. 3: id       →            ortKreisName</tspan></text>
     <path
-       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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 40,614.09448 710,0"
+       inkscape:connector-curvature="0"
        id="path5146"
-       inkscape:connector-curvature="0" />
+       d="m 40,614.09448 710,0"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:3;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" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4118"
+       d="m 150,254.09448 0,-90 240,0 0,70"
+       style="color:#000000;fill:none;stroke:#ff00ff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:url(#DotM1);marker-end:url(#Arrow1Mend-6-8n);visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:nodetypes="cccc" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path5688"
+       d="m 400,234.09448 60,0 0,-100 170,0 0,100"
+       style="color:#000000;fill:none;stroke:#ff00ff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-end:url(#Arrow1Mend-6-8l);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <text
+       inkscape:transform-center-y="388.07031"
+       inkscape:transform-center-x="242.625"
+       sodipodi:linespacing="125%"
+       id="text3531-0-7"
+       y="194.09448"
+       x="250"
+       style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ff00ff;fill-opacity:1;stroke:none;display:inline;font-family:Sans;-inkscape-font-specification:Sans"
+       xml:space="preserve"><tspan
+         y="194.09448"
+         x="250"
+         sodipodi:role="line"
+         id="tspan3535-2-1">F.d. 3</tspan><tspan
+         id="tspan5081-0"
+         y="234.09448"
+         x="250"
+         sodipodi:role="line" /></text>
   </g>
   <g
-     inkscape:groupmode="layer"
-     id="layer5"
+     style="display:none"
      inkscape:label="Helpful links"
-     style="display:none">
+     id="layer5"
+     inkscape:groupmode="layer">
     <text
-       xml:space="preserve"
-       style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
-       x="290"
-       y="44.094482"
+       sodipodi:linespacing="125%"
        id="text6985"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan6987"
+       y="44.094482"
+       x="290"
+       style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
+       xml:space="preserve"><tspan
+         y="44.094482"
          x="290"
-         y="44.094482">Helpful links</tspan></text>
+         id="tspan6987"
+         sodipodi:role="line">Helpful links</tspan></text>
     <text
-       sodipodi:linespacing="125%"
-       id="text3063"
-       y="381.0863"
-       x="53.511169"
+       xml:space="preserve"
        style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Monospace;-inkscape-font-specification:Monospace"
-       xml:space="preserve"><tspan
-         y="381.0863"
-         x="53.511169"
+       x="53.511169"
+       y="381.0863"
+       id="text3063"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan3065"
-         sodipodi:role="line" /></text>
+         x="53.511169"
+         y="381.0863" /></text>
     <text
-       sodipodi:linespacing="125%"
-       id="text3067"
-       y="114.09448"
-       x="10"
+       xml:space="preserve"
        style="font-size:36px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
-       xml:space="preserve"><tspan
-         y="114.09448"
-         x="10"
+       x="10"
+       y="114.09448"
+       id="text3067"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan3069"
-         sodipodi:role="line">➢ Patterns of Enterprise Application</tspan><tspan
-         id="tspan3151"
-         y="159.09448"
          x="10"
-         sodipodi:role="line">   Architecture </tspan></text>
+         y="114.09448">➢ Patterns of Enterprise Application</tspan><tspan
+         sodipodi:role="line"
+         x="10"
+         y="159.09448"
+         id="tspan3151">   Architecture </tspan></text>
     <text
-       sodipodi:linespacing="125%"
-       id="text3067-9"
-       y="234.09448"
-       x="10"
+       xml:space="preserve"
        style="font-size:36px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
-       xml:space="preserve"><tspan
-         y="234.09448"
-         x="10"
+       x="10"
+       y="234.09448"
+       id="text3067-9"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
          id="tspan3069-9"
-         sodipodi:role="line">➢</tspan></text>
+         x="10"
+         y="234.09448">➢</tspan></text>
   </g>
   <script
-     id="JessyInk"
-     ns1:version="1.5.5">// Copyright 2008, 2009 Hannes Hochreiner
+     ns1:version="1.5.5"
+     id="JessyInk">// Copyright 2008, 2009 Hannes Hochreiner
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU General Public License as published by
 // the Free Software Foundation, either version 3 of the License, or