[TOB-73,359,403,430] doc: userdoc and finish

Commit contains all backend tasks for the sprint ten.

The focus of sprint 10 was to:

- move documentation from backend repo to docu repo
- finish architecture documentation
- add userdocumentation
- finish howto Documentation
- add howto for using other databases

Details:

[TOB-430] doc: architecture documentation
 * cleanup documentation

[TOB-430] doc: Add building block view for front end

[TOB-450] doc: Add user doc link to how to run

[TOB-430] doc: update images
 * fixed typos in architecture documentation images
 * fixed userdoc images
 * added frontend component diag
 * added feature modules diag

[TOB-430] doc: Update front-end dependencies
 * Fix typos/grammar
 * Remove text block newline/pagebreak markdown

[TOB-449] doc: userdoc
 * add portrait version of workflow in attachment
 * fix typos

[TOB-449] doc: userdoc cleanup
 * replaced placeholder images of admin sections
 * replaced popup image
 * fixed typos and formulations in documentation
 * added java parameter to build script

[TOB-359] doc: howto alternate databases
 * added documentation for alternate databases (i.e. Oracle)

[TOB-449] doc: enhance userdoc
 * enhanced content
 * fixed some typos
 * fixed references

[TOB-449] doc: enhance userdocumentation
 * added workflow data section
 * added admin sections

[TOB-449] doc: enhance userdocumentation
 * added sections for textblock editor
 * added images
 * added sections for statement official in charge
 * added sections for approver
 * added sections for department member

[TOB-448] doc: user documentation
 * added basic document structure
 * added description of main user interface views

[TOB-394] doc: architecture documentation
 * enhance architecture documentation by adding database and workflow
   engine sections and cleaned up some typos, etc.
 * update image references from png to svg for smaller document size and
   sharper images

[TOB-403] doc: Update howtoRun/howtoBuild for front end

[TOB-403] doc: move doc to documentation repo
 * copied documentation from statement module back-end repo.
 * added /README.md
 * added /pom.xml for maven build
 * added /build script to run the build in an encapsulated docker
   environment

Signed-off-by: Tobias Stummer <stummer@develop-group.de>
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..fa462bc
--- /dev/null
+++ b/README.md
@@ -0,0 +1,9 @@
+# Eclipse openK User Modules - Statement Public Affairs documentation
+
+This application represents a user module for the [Eclipse openK User Modules](https://projects.eclipse.org/projects/technology.openk-usermodules) project.
+
+## Build
+
+Run `mvn clean build` to build the documentation. All build artifacts will be stored in the `targets/` directory.
+
+
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..cd816fa
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,124 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+*******************************************************************************
+* Copyright (c) 2019 Contributors to the Eclipse Foundation
+*
+* See the NOTICE file(s) distributed with this work for additional
+* information regarding copyright ownership.
+*
+* This program and the accompanying materials are made available under the
+* terms of the Eclipse Public License v. 2.0 which is available at
+* http://www.eclipse.org/legal/epl-2.0.
+*
+* SPDX-License-Identifier: EPL-2.0
+*******************************************************************************
+-->
+<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+<modelVersion>4.0.0</modelVersion>
+<groupId>org.eclipse.openk</groupId>
+<artifactId>statement-public-affairs-doc</artifactId>
+<version>1.0.0</version>
+<name>statement-public-affairs documentation</name>
+<description>StatementPublicAffairs project documentation for openKONSEQUENZ</description>
+
+<properties>
+	<jruby-complete-version>9.0.0.0</jruby-complete-version>
+	<asciidoctor-maven-plugin-version>1.5.3</asciidoctor-maven-plugin-version>
+	<asciidoctorj-pdf-version>1.5.0-alpha.11</asciidoctorj-pdf-version>
+	<asciidoctorj-version>1.5.4</asciidoctorj-version>
+	<asciidoctorj-diagram-versions>1.5.4.1</asciidoctorj-diagram-versions>
+</properties>
+
+<build>
+	<defaultGoal>compile</defaultGoal>
+	<finalName>${project.artifactId}</finalName>
+
+	<plugins>
+		<plugin>
+			<groupId>org.asciidoctor</groupId>
+			<artifactId>asciidoctor-maven-plugin</artifactId>
+			<version>${asciidoctor-maven-plugin-version}</version>
+			<dependencies>
+				<dependency>
+					<groupId>org.jruby</groupId>
+					<artifactId>jruby-complete</artifactId>
+					<version>${jruby-complete-version}</version>
+				</dependency>
+				<dependency>
+					<groupId>org.asciidoctor</groupId>
+					<artifactId>asciidoctorj-pdf</artifactId>
+					<version>${asciidoctorj-pdf-version}</version>
+				</dependency>
+				<dependency>
+					<groupId>org.asciidoctor</groupId>
+					<artifactId>asciidoctorj</artifactId>
+					<version>${asciidoctorj-version}</version>
+				</dependency>
+				<dependency>
+					<groupId>org.asciidoctor</groupId>
+					<artifactId>asciidoctorj-diagram</artifactId>
+					<version>${asciidoctorj-diagram-versions}</version>
+				</dependency>
+			</dependencies>
+			<configuration>
+				<sourceDirectory>src/main/asciidoc</sourceDirectory>
+				<requires>
+					<require>asciidoctor-diagram</require>
+				</requires>
+				<attributes>
+					<imagesoutdir>${project.build.directory}/generated-docs/images</imagesoutdir>
+					<imagesDir>${project.build.directory}/generated-docs/images</imagesDir>
+				</attributes>
+			</configuration>
+			<executions>
+				<execution>
+					<id>output-html</id>
+					<phase>generate-resources</phase>
+					<goals>
+						<goal>process-asciidoc</goal>
+					</goals>
+					<configuration>
+						<skip>${skip.asciidoc}</skip>
+						<imagesDir>./images</imagesDir>
+						<requires>
+							<require>asciidoctor-diagram</require>
+						</requires>
+						<sourceHighlighter>coderay</sourceHighlighter>
+						<backend>html</backend>
+						<doctype>article</doctype>
+					</configuration>
+				</execution>
+				<execution>
+					<id>output-pdf</id>
+					<phase>generate-resources</phase>
+					<goals>
+						<goal>process-asciidoc</goal>
+					</goals>
+					<configuration>
+						<skip>${skip.asciidoc}</skip>
+						<imagesDir>${project.build.directory}/generated-docs/images</imagesDir>
+						<requires>
+							<require>asciidoctor-diagram</require>
+						</requires>
+						<sourceHighlighter>coderay</sourceHighlighter>
+						<backend>pdf</backend>
+						<doctype>article</doctype>
+						<attributes>
+							<icons>font</icons>
+							<pagenums />
+							<toc />
+							<idprefix />
+							<idseparator>-</idseparator>
+						</attributes>
+					</configuration>
+				</execution>
+			</executions>
+		</plugin>
+
+	</plugins>
+</build>
+
+</project>
diff --git a/src/main/asciidoc/api/openapi.yaml b/src/main/asciidoc/api/openapi.yaml
new file mode 100644
index 0000000..c38b40a
--- /dev/null
+++ b/src/main/asciidoc/api/openapi.yaml
@@ -0,0 +1,2841 @@
+openapi: 3.0.0
+info:
+  description: "REST interface description of the openKONSEQUENZ module statement-public-affairs backend."
+  version: "0.0.1"
+  title: "OpenKONSEQUENZ Module Statement-Public-Affairs back-end"
+  license:
+    name: "EPL-2.0"
+    url: "http://www.eclipse.org/legal/epl-2.0"
+    
+tags:
+  - 
+    name: basic
+    description: Basic interfaces
+paths:
+
+
+  /admin/departments:
+    get:
+      tags:
+        - "admin"
+      summary: "Get department and sector configuration"
+      responses:
+        200:
+          description: "Latest department and sector configuration"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/DepartmentStructure'
+        403:
+          description: "Forbidden"
+      security:
+        - JWT:
+          - spa_access
+    put:
+      tags:
+        - "admin"
+      summary: "Set department and sector configuration"
+      requestBody:
+        content:
+          application/json:
+            schema:
+              $ref: '#/components/schemas/DepartmentStructure'
+      responses:
+        204:
+          description: "Successfully set"
+        400:
+          description: "Bad Request"
+        403:
+          description: "Forbidden"
+      security:
+        - JWT:
+          - spa_access
+        
+  /admin/textblockconfig:
+    get:
+      tags:
+        - "admin"
+      summary: "Get latest Textblock Configuration"
+      responses:
+        200:
+          description: "Latest Textblock Configuration"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/TextblockConfiguration'
+        403:
+          description: "Forbidden"
+      security:
+        - JWT:
+          - spa_access
+    put:
+      tags:
+        - "admin"
+      summary: "Set Textblock Configuration"
+      requestBody:
+        content:
+          application/json:
+            schema:
+              $ref: '#/components/schemas/TextblockConfiguration'
+      responses:
+        204:
+          description: "Successfully set"
+        400:
+          description: "Bad Request"
+        403:
+          description: "Forbidden"
+      security:
+        - JWT:
+          - spa_access
+          
+  /admin/users-sync:
+    post:
+      tags:
+        - "admin"
+      summary: "Sync users from auth-n-auth"
+      responses:
+        204:
+          description: "Successful"
+        403:
+          description: "Forbidden"
+      security:
+        - JWT:
+          - spa_access
+          
+  /admin/users:
+    get:
+      tags:
+        - "admin"
+      summary: "Get user list"
+      responses:
+        200:
+          description: "List of all users"
+          content:
+            application/json:
+              schema:
+                type: array
+                items:
+                  $ref: '#/components/schemas/User'
+        403:
+          description: "Forbidden"
+      security:
+        - JWT:
+          - spa_access
+          
+  /admin/users/{userId}/settings:  
+    post:
+      tags:
+        - "admin"
+      summary: "Set user detail settings"
+      parameters:
+        - name: userId
+          in: path
+          description: User ID
+          required: true
+          schema:
+            type: integer
+      requestBody:
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/UserSettings'
+    
+      responses:
+        204:
+          description: "Successfully set"    
+        400:
+          description: "Bad Request, maybe malformed email"
+        403:
+          description: "Forbidden"
+        404:
+          description: "User not found"
+        424:
+          description: "Departement not found"
+      security:
+        - JWT:
+          - spa_access
+          
+  /logout:
+    get:
+      tags:
+        - "basic"
+      summary: "Logout of the service"
+      description: "Invalidate the access token"
+      responses:
+        204:
+          description: "Logout successful"
+        401:
+          description: "Not Authorized - Please provide a security token"
+      security:
+        - JWT:
+          - spa_access
+  /geo-coordinate-transform:
+    post:
+      tags:
+        - "map"
+      summary: "Transform geo coordinates"
+      description: "Transform geo coordinates"
+      parameters:
+        - name: from
+          in: query
+          description: "Input position format"
+          required: true
+          schema:
+            type: string
+        - name: to
+          in: query
+          description: "Output position format"
+          required: true
+          schema:
+            type: string
+      requestBody:
+        description: "Geo coordinates dictionary"
+        content:
+          application/json:
+            schema:
+              $ref: '#/components/schemas/GeoPositions'
+      responses:
+        200:
+          description: "Transformed Geo Positions"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/GeoPositions'
+        400:
+          description: "Bad Request"
+      
+      
+    
+  /keepalive-session:
+    get:
+      tags:
+      - "basic"
+      summary: "Extend session validity"
+      description: "Should be called every minute to ensure that the session for the given token identifer is not "
+      responses:
+        204:
+          description: "Successfully extended"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+      security:
+        - JWT:
+          - spa_access
+        
+  /version:
+    get:
+      tags:
+      - "basic"
+      summary: "Service version"
+      description: "Application name, build version, etc."
+      responses:
+        200:
+          description: "Version response"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/VersionModel'
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+      security:
+        - JWT:
+          - spa_access
+
+
+  /contacts:
+    get:
+      tags:
+        - "contacts"
+      summary: "Get contact details for contact with given contactId"
+      description: "Get contact details for contact with given contactId"
+      parameters:
+        - name: q
+          in: query
+          description: "Search string"
+          required: true
+          schema:
+            type: string
+        - name: size
+          in: query
+          description: "Page size"
+          required: false
+          schema:
+            type: integer
+        - name: page
+          in: query
+          description: "Page number"
+          required: false
+          schema:
+            type: integer
+        - name: sort
+          in: query
+          description: "Sort parameter"
+          required: false
+          schema:
+            type: string
+            example: "name|email|firstName|lastName"
+      responses:
+        200:
+          description: "Paged list of matching contacts"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/PagedContacts'
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden, maybe not enough rights to access contact module."
+      security:
+      - JWT:
+        - spa_access
+        
+  /contacts/{contactId}:
+    get:
+      tags:
+        - "contacts"
+      summary: "Get contact details for contact with given contactId"
+      description: "Get contact details for contact with given contactId"
+      parameters:
+        - name: contactId
+          in: path
+          description: Contact ID
+          required: true
+          schema:
+            type: string
+            format: uuid
+      responses:
+        200:
+          description: "Contact details"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/ContactDetails'
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden, maybe not enough rights to access contact module."
+        404:
+          description: "Not Found - Contact with given contactId could not be found."
+      security:
+      - JWT:
+        - spa_access
+        
+  /sectors:
+    get:
+      tags:
+        - "statement"
+      summary: "Get all sectors"
+      responses:
+        200:
+          description: "Map of sectors by location."
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/Sectors'
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+      security:
+      - JWT:
+        - spa_access
+        
+  /statements/{statementId}/sectors:
+    get:
+      tags:
+        - "statement"
+      summary: "Get all sectors"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+      responses:
+        200:
+          description: "Map of sectors by location."
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/Sectors'
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+      security:
+      - JWT:
+        - spa_access
+        
+  /statementpositionsearch:
+    get:
+      tags:
+        - "statement"
+      summary: "Search statementpositions with queries"
+      parameters:
+        - name: dueDateFrom
+          in: query
+          description: "Search substrings of city, district or type"
+          required: false
+          schema:
+            type: string
+        - name: dueDateTo
+          in: query
+          description: "Search substrings of city, district or type"
+          required: false
+          schema:
+            type: string
+        - name: typeId
+          in: query
+          description: "Search substrings of city, district or type"
+          required: false
+          schema:
+            type: integer
+      responses:
+        200:
+          description: "List of searched Statements filtered according to url parameters"
+          content:
+            application/json:
+              schema:
+                type: array
+                items:
+                  $ref: '#/components/schemas/StatementPositionModel'
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+      security:
+      - JWT:
+        - spa_access
+  
+  /statementsearch:
+    get:
+      tags:
+        - "statement"
+      summary: "Search statements with queries"
+        
+      parameters:
+        - name: q
+          in: query
+          description: "Search substrings of city, district or type"
+          required: false
+          schema:
+            type: array
+            items:
+              type: string
+        - name: dueDateFrom
+          in: query
+          description: "Search substrings of city, district or type"
+          required: false
+          schema:
+            type: string
+        - name: dueDateTo
+          in: query
+          description: "Search substrings of city, district or type"
+          required: false
+          schema:
+            type: string
+        - name: receiptDateFrom
+          in: query
+          description: "Search substrings of city, district or type"
+          required: false
+          schema:
+            type: string
+        - name: receiptDateTo
+          in: query
+          description: "Search substrings of city, district or type"
+          required: false
+          schema:
+            type: string
+        - name: creationDateFrom
+          in: query
+          description: "Search substrings of city, district or type"
+          required: false
+          schema:
+            type: string
+        - name: creationDateTo
+          in: query
+          description: "Search substrings of city, district or type"
+          required: false
+          schema:
+            type: string
+        - name: city
+          in: query
+          description: "Search substrings of city, district or type"
+          required: false
+          schema:
+            type: string
+        - name: district
+          in: query
+          description: "Search substrings of city, district or type"
+          required: false
+          schema:
+            type: string
+        - name: typeId
+          in: query
+          description: "Search substrings of city, district or type"
+          required: false
+          schema:
+            type: integer
+        - name: finished
+          in: query
+          description: "Search substrings of city, district or type"
+          required: false
+          schema:
+            type: boolean
+        - name: editedByMe
+          in: query
+          description: "Search substrings of city, district or type"
+          required: false
+          schema:
+            type: boolean
+        - name: size
+          in: query
+          description: "Page size"
+          required: false
+          schema:
+            type: integer
+        - name: page
+          in: query
+          description: "Page number"
+          required: false
+          schema:
+            type: integer
+        - name: sort
+          in: query
+          description: "Sort parameter sortkey,[asc|desc]"
+          required: false
+          schema:
+            type: string
+            example: "dueDate,asc | dueDate,desc"
+
+      responses:
+        200:
+          description: "List of searched Statements filtered according to url parameters"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/ListStatementModel'
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+      security:
+      - JWT:
+        - spa_access
+      
+  /statements:
+    get:
+      tags:
+        - "statement"
+      summary: "List all Statements"
+      description: "List all Statements. Filtering by statement Ids via query parameter"
+      parameters:
+        - name: ids
+          in: query
+          description: Statement IDs
+          required: false
+          schema:
+            type: array
+            items:
+              type: integer
+      responses:
+        200:
+          description: "List of all Statements filtered according to url parameters"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/ListStatementModel'
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+      security:
+      - JWT:
+        - spa_access
+    post:
+      tags:
+        - "statement"
+      summary: "Create a new Statement"
+      description: "Create a new Statement."
+      requestBody:
+        description: "New Statement. Fields like id, finished and taskId are overridden by the backend."
+        content:
+          application/json:
+            schema:
+              $ref: '#/components/schemas/StatementModel'
+              
+      responses:
+        200:
+          description: "New Staetement with correct id and other additional information added by the creation process"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/StatementModel'
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+      security:
+      - JWT:
+        - spa_access
+        
+  /process/statements/{statementId}/task/{taskId}/statement:
+    post:
+      tags:
+        - "process"
+      summary: "Update a Statement"
+      description: "Update a Statement."
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+        - name: taskId
+          in: path
+          description: Task ID
+          required: true
+          schema:
+            type: string
+            format: uuid
+      requestBody:
+        description: "Updated Statement."
+        content:
+          application/json:
+            schema:
+              $ref: '#/components/schemas/StatementModel'
+              
+      responses:
+        204:
+          description: "Successful"
+        400:
+          description: "Bad Request - Invalid statement model"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+      security:
+      - JWT:
+        - spa_access
+        
+  /statement-data/types:
+    get:
+      tags: 
+        - "statement"
+      summary: "Get List of available Statement types"
+      description: "Get List of available Statement types"
+      responses:
+        200:
+          description: "List of Statement Types"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/ListStatementType'
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+      security:
+      - JWT:
+        - spa_access
+        
+  /statements/{statementId}:
+    get:
+      tags:
+        - "statement"
+      summary: "Get Statement with statementId"
+      description: "Get Statement with statementId"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+      responses:
+        200:
+          description: "Statement with statementId"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/StatementModel'
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+  /statements/{statementId}/contact:
+    get:
+      tags:
+        - "statement"
+      summary: "Get statement contact"
+      description: "Get statement contact"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+      responses:
+        200:
+          description: "Contact details"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/ContactDetails'
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+        
+          
+  /statements/{statementId}/workflowmodel:
+    get:
+      tags:
+        - "statement"
+      summary: "Get Statement with statementId"
+      description: "Get Statement with statementId"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+      responses:
+        200:
+          description: "Statement with statementId"
+          content:
+            application/xml:
+              schema:
+                type: string
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+        
+        
+  /statements/{statementId}/attachments:
+    parameters:
+      - name: statementId
+        in: path
+        description: Statement ID
+        required: true
+        schema:
+          type: integer
+          format: int64
+    get:
+      tags:
+        - "attachment"
+      summary: "List Attachments for Statement with statementId"
+      description: "List Attachments for Statement with statementId"
+
+      responses:
+        200:
+          description: "List of Attachments"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/ListAttachmentModel'
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+        
+  /process/statements/{statementId}/task/{taskId}/transfermailtext:
+    parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+        - name: taskId
+          in: path
+          description: Task ID
+          required: true
+          schema:
+            type: string
+            format: uuid
+    post:
+      tags:
+        - "attachment"
+        - "mail"
+      summary: "Transfer mail text to statement attachment"
+      responses:
+        200:
+          description: "successful"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId or task with taskId does not exist"
+      security:
+      - JWT:
+        - spa_access
+          
+  /process/statements/{statementId}/task/{taskId}/transfermailattachments:
+    parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+        - name: taskId
+          in: path
+          description: Task ID
+          required: true
+          schema:
+            type: string
+            format: uuid
+    post:
+      tags:
+        - "attachment"
+        - "mail"
+      summary: "Transfer mail attachments to statement attachment"
+      requestBody:
+        content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/ListTransferAttachments'
+      responses:
+        200:
+          description: "successful"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/ListAttachmentModel'
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId or task with taskId does not exist"
+      security:
+      - JWT:
+        - spa_access
+    
+
+  /process/statements/{statementId}/task/{taskId}/attachments:   
+    parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+        - name: taskId
+          in: path
+          description: Task ID
+          required: true
+          schema:
+            type: string
+            format: uuid
+        - name: tagId
+          in: query
+          description: Tag ID
+          required: false
+          schema:
+            type: string
+    post:
+      tags:
+        - "attachment"
+      summary: "Create a new Attachment"
+      description: "Create a new Attachment."
+      requestBody:
+        content:
+          multipart/form-data:
+            schema:
+              type: object
+              properties:
+                attachment:
+                  type: array
+                  items:
+                    type: string
+                    format: binary
+      responses:
+        200:
+          description: "New Attachment with correct id and other additional information added by the creation process"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/AttachmentModel'
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+  /process/statements/{statementId}/task/{taskId}/attachments/{attachmentId}:   
+    parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+        - name: taskId
+          in: path
+          description: Task ID
+          required: true
+          schema:
+            type: string
+            format: uuid
+        - name: attachmentId
+          in: path
+          description: Attachment ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+    delete:
+      tags:
+        - "attachment"
+      summary: "Delete Attachment with Id"
+      description: "Delete Attachment with Id"
+      responses:
+        204:
+          description: "Deletion successful."
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Attachment not found"
+      security:
+      - JWT:
+        - spa_access
+  
+  /statements/{statementId}/consideration:
+    parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+    post:
+      tags:
+        - "attachment"
+      summary: "Create a new Attachment with consideration tag only allowed when statement is finished."
+      description: "Create a new Attachment with consideration tag only allowed when statement is finished."
+      requestBody:
+        content:
+          multipart/form-data:
+            schema:
+              type: object
+              properties:
+                attachment:
+                  type: array
+                  items:
+                    type: string
+                    format: binary
+      responses:
+        200:
+          description: "New Attachment with correct id and other additional information added by the creation process"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/AttachmentModel'
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+    
+  /statements/{statementId}/attachments/{attachmentId}:
+    get:
+      tags:
+        - "attachment"
+      summary: "Get Attachment details with attachmentId for Statement with statementId"
+      description: "Get Attachment details with attachmentId for Statement with statementId"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+        - name: attachmentId
+          in: path
+          description: Attachment ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+      responses:
+        200:
+          description: "Requested Attachment"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/AttachmentModel'
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Attachment with given statementId and attachmentId does not exist"
+      security:
+      - JWT:
+        - spa_access
+        
+  /process/statements/{statementId}/task/{taskId}/attachments/{attachmentId}/tags:
+    parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+        - name: taskId
+          in: path
+          description: Task ID
+          required: true
+          schema:
+            type: string
+            format: uuid
+        - name: attachmentId
+          in: path
+          description: Task ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+    post:
+      tags:
+        - "attachment"
+      summary: "Set Attachment tags"
+      description:  "Set Attachment tags"
+      requestBody:
+        description: "Taglist"
+        content:
+          application/json:
+            schema:
+              type: array
+              items:
+                type: string
+      responses:
+        204:
+          description: "Attachment tags set"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+  
+  /tags:
+    get:
+      tags:
+        - "attachment"
+      summary: "Get list of available tags"
+      responses:
+        200:
+          description: "Tag list"
+          content:
+            application/json:
+              schema:
+                type: array
+                items:
+                  $ref: '#/components/schemas/Tag'
+    put:
+      tags:
+        - "attachment"
+      summary: "Add a new tag"
+      parameters:
+        - name: "label"
+          in: query
+          required: true
+          schema:
+            type: string
+      responses:
+        201:
+          description: "Successfully added"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Attachment with given statementId and attachmentId does not exist"
+        409:
+          description: "Tag already exists"
+      security:
+      - JWT:
+        - spa_access
+        
+  /statements/{statementId}/attachments/{attachmentId}/file:
+    get:
+      tags:
+        - "attachment"
+      summary: "Get Attachment file for Attachmetn with attachmentId for Statement with statementId"
+      description: "Get Attachment file for Attachmetn with attachmentId for Statement with statementId"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+        - name: attachmentId
+          in: path
+          description: Attachment ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+        - name: accessToken
+          in: query
+          required: true
+          schema:
+            type: string
+      responses:
+        200:
+          description: "Requested Attachment File"
+          content:
+            application/pdf:
+              schema:
+                type: string
+                format: binary
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Attachment with given statementId and attachmentId does not exist"
+
+        
+  /process/statements/{statementId}/task:
+    get:
+      tags:
+        - "process"
+      summary: "Get all current workflow tasks for Statement with statementId"
+      description: "Get all current workflow tasks for Statement with statementId"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+      responses:
+        200:
+          description: "List of Current Statement Tasks"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/ListTaskModel'
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Task with given taskId of Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+
+  /process/statements/{statementId}/task/{taskId}/claim:
+    post:
+      tags:
+        - "process"
+      summary: "Claim task with taskId of Statement with statementId"
+      description: "Claim task with taskId of Statement with statementId"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+        - name: taskId
+          in: path
+          description: Task ID
+          required: true
+          schema:
+            type: string
+            format: uuid
+      responses:
+        200:
+          description: "Statement Task"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/TaskModel'
+        400:
+          description: "Bad Request - Invalid parameters or already claimed"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+  
+  /process/statements/{statementId}/task/{taskId}/unclaim:
+    post:
+      tags:
+        - "process"
+      summary: "Unclaim task with taskId of Statement with statementId"
+      description: "Unclaim task with taskId of Statement with statementId"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+        - name: taskId
+          in: path
+          description: Task ID
+          required: true
+          schema:
+            type: string
+            format: uuid
+      responses:
+        200:
+          description: "Statement Task"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/TaskModel'
+        400:
+          description: "Bad Request - Invalid parameters or not claimed"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+    
+  /process/statements/{statementId}/workflow:
+    get:
+      tags:
+        - "process"
+      summary: "Get workflow data in task context of task with taskId of Statement with statementId"
+      description: "Get workflow data in task context of task with taskId of Statement with statementId"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+        - name: taskId
+          in: path
+          description: Task ID
+          required: true
+          schema:
+            type: string
+            format: uuid
+      responses:
+        200:
+          description: "WorkflowDataModel"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/WorkflowDataModel'
+        400:
+          description: "Bad Request - Invalid parameters"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+        
+  /process/statements/{statementId}/workflow/children:
+   get:
+      tags:
+        - "process"
+      summary: "Get children of Statement with statementId"
+      description: "Get children of Statement with statementId"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+      responses:
+        200:
+          description: "Children statement ids"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/StatementIds'
+        400:
+          description: "Bad Request - Invalid parameters"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+  /process/statements/{statementId}/workflow/parents:
+   get:
+      tags:
+        - "process"
+      summary: "Get Statement parents of Statement with statementId"
+      description: "Get Statement parents of Statement with statementId"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+      responses:
+        200:
+          description: "Parent statement ids"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/StatementIds'
+        400:
+          description: "Bad Request - Invalid parameters"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+        
+  /process/statements/{statementId}/task/{taskId}/workflow/parents:
+   post:
+      tags:
+        - "process"
+      summary: "Set Statement parents of Statement with statementId"
+      description: "Set Statement parents of Statement with statementId"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+        - name: taskId
+          in: path
+          description: Task ID
+          required: true
+          schema:
+            type: string
+            format: uuid
+      requestBody:
+        description: "Statement parent statement Ids."
+        content:
+          application/json:
+            schema:
+              $ref: '#/components/schemas/StatementIds'
+      responses:
+        200:
+          description: "Parent statement ids"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/StatementIds'
+        400:
+          description: "Bad Request - Invalid parameters"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+        
+  /process/statements/{statementId}/departmentconfig:
+    get:
+      tags:
+        - "process"
+      summary: "Get department configuration of the Statement with statementId"
+      description: "Get department configuration of the Statement with statementId"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+      responses:
+        200:
+          description: "Comments"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/DepartmentConfiguration'
+        400:
+          description: "Bad Request - Invalid parameters"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+       
+  /process/statements/{statementId}/comments:
+    get:
+      tags:
+        - "process"
+      summary: "Get comments of Statement with statementId"
+      description: "Get commetns of Statement with statementId"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+      responses:
+        200:
+          description: "Comments"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/CommentList'
+        400:
+          description: "Bad Request - Invalid parameters"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+        
+    put:
+      tags:
+        - "process"
+      summary: "Put comment of Statement with statementId"
+      description: "Put comment of Statement with statementId"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+      requestBody:
+        content:
+          text/plain:
+            schema:
+              type: string
+              example: "I have a comment."
+      responses:
+        204:
+          description: "Successful"
+        400:
+          description: "Bad Request - Invalid parameters"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+        
+  /process/statements/{statementId}/comments/{commentId}:
+    delete:
+      tags:
+        - "process"
+      summary: "Delete Comment with commentId of Statement with statementId"
+      description: "Delete Comment with commentId of Statement with statementId"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+        - name: commentId
+          in: path
+          description: Comment ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+      responses:
+        204:
+          description: "Successful"
+        400:
+          description: "Bad Request - Invalid parameters"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId or Commetn with given commentId does not exist"
+      security:
+      - JWT:
+        - spa_access     
+    
+    
+  /process/statements/{statementId}/task/{taskId}/complete:
+    post:
+      tags:
+        - "process"
+      summary: "Complete task with taskId of Statement with statementId"
+      description: "Complete task with taskId of Statement with statementId"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+        - name: taskId
+          in: path
+          description: Task ID
+          required: true
+          schema:
+            type: string
+            format: uuid
+      requestBody:
+        description: "Required variables to successfully complete the task."
+        content:
+          application/json:
+            schema:
+              $ref: '#/components/schemas/MapCompleteVariable'
+      responses:
+        204:
+          description: "Complete sucessful"
+        400:
+          description: "Bad Request - Invalid parameters or not claimed"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+        
+  /process/statements/{statementId}/task/{taskId}/workflow:
+    get:
+      tags:
+        - "process"
+      summary: "Get workflow data in task context of task with taskId of Statement with statementId"
+      description: "Get workflow data in task context of task with taskId of Statement with statementId"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+        - name: taskId
+          in: path
+          description: Task ID
+          required: true
+          schema:
+            type: string
+            format: uuid
+      responses:
+        200:
+          description: "WorkflowDataModel"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/WorkflowDataModel'
+        400:
+          description: "Bad Request - Invalid parameters"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+    post:
+      tags:
+         - "process"
+      summary: "Set workflow data in task context of task with taskId of Statement with statementId"
+      description: "Set workflow data in task context of task with taskId of Statement with statementId"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+        - name: taskId
+          in: path
+          description: Task ID
+          required: true
+          schema:
+            type: string
+            format: uuid
+      requestBody:
+        description: "Required variables to successfully complete the task."
+        content:
+          application/json:
+            schema:
+              $ref: '#/components/schemas/WorkflowDataModel'   
+      responses:
+        204:
+          description: "Successful"
+        400:
+          description: "Bad Request - Invalid parameters"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+        
+  /process/statements/{statementId}/workflow/textblockconfig:
+    get:
+      tags:
+        - "process"
+        - "textblock"
+      summary: "Get Textblock configuration of version assigned for statement with statementId"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+      responses:
+        200:
+          description: "TextblockConfigModel"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/TextConfig'
+        400:
+          description: "Bad Request - Invalid parameters"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+        
+  /process/statements/{statementId}/workflow/textarrangement:
+    get:
+      tags:
+        - "process"
+        - "textblock"
+      summary: "Get TextArrangement of statement with statementId"
+      description: "Get TextArrangement of statement with statementId"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+      responses:
+        200:
+          description: "Current TextArrangement"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/TextArrangementModel'
+        400:
+          description: "Bad Request - Invalid parameters"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+        
+  /process/statements/{statementId}/workflow/contributions:
+    get:
+      tags:
+        - "process"
+        - "contributions"
+      summary: "Get Contribution status"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+      responses:
+        200:
+          description: "Current Contribution status"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/DepartmentGroup'
+        400:
+          description: "Bad Request - Invalid parameters"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+  
+  /process/statements/{statementId}/task/{taskId}/workflow/contribute:
+    patch:
+      tags:
+        - "process"
+        - "contributions"
+      summary: "Set contribution status to contributed for division of requested user"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+        - name: taskId
+          in: path
+          description: Task ID
+          required: true
+          schema:
+            type: string
+            format: uuid
+      responses:
+        204:
+          description: "Ok"
+        400:
+          description: "Bad Request - Invalid parameters"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access   
+  
+  /process/statements/{statementId}/task/{taskId}/workflow/contributions:
+    post:
+      tags:
+        - "process"
+        - "contributions"
+      summary: "Get Contribution status"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+        - name: taskId
+          in: path
+          description: Task ID
+          required: true
+          schema:
+            type: string
+            format: uuid
+      requestBody:
+        content:
+          application/json:
+            schema:
+              $ref: '#/components/schemas/DepartmentGroup'    
+      responses:
+        204:
+          description: "Ok"
+        400:
+          description: "Bad Request - Invalid parameters"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access    
+           
+  /process/statements/{statementId}/task/{taskId}/workflow/textarrangement:
+    post:
+      tags:
+        - "process"
+        - "textblock"
+      summary: "Post TextArrangement for statement with statementId"
+      description: "Post TextArrangement for statement with statementId"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+        - name: taskId
+          in: path
+          description: Task ID
+          required: true
+          schema:
+            type: string
+            format: uuid
+      requestBody:
+        description: "New TextArrangement"
+        content:
+          application/json:
+            schema:
+              $ref: '#/components/schemas/TextArrangementModel'   
+      responses:
+        204:
+          description: "Successfully set"
+        400:
+          description: "Bad Request - Invalid parameters"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+  /process/statements/{statementId}/workflow/textarrangement/validate:
+    post:
+      tags:
+        - "process"
+        - "textblock"
+      summary: "Post TextArrangement for validation statement with statementId, without storing"
+      description: "Post TextArrangement for validation statement with statementId, without storing"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+      requestBody:
+        description: "New TextArrangement"
+        content:
+          application/json:
+            schema:
+              $ref: '#/components/schemas/TextArrangementModel'   
+      responses:
+        200:
+          description: "Validation result"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/ValidationResultModel'
+        400:
+          description: "Bad Request - Invalid parameters"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+        
+  /process/statements/{statementId}/workflow/textarrangement/compile:
+    post:
+      tags:
+        - "process"
+        - "textblock"
+      summary: "Post TextArrangement for validation statement with statementId and compile statement response pdf"
+      description: "Post TextArrangement for validation statement with statementId and compile statement response pdf"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+      requestBody:
+        description: "New TextArrangement"
+        content:
+          application/json:
+            schema:
+              $ref: '#/components/schemas/TextArrangementModel'
+      responses:
+        200:
+          description: "Statement pdf"
+          content:
+            application/pdf:
+              schema:
+                type: string
+                format: binary
+        400:
+          description: "Bad Request - Invalid parameters or invalid text arrangement"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+        422:
+          description: "Validation result"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/ValidationResultModel'
+      security:
+      - JWT:
+        - spa_access
+        
+  /process/statements/{statementId}/task/{taskId}/mailAndComplete:
+    post:
+      tags:
+        - "process"
+        - "mail"
+      summary: "Send statement response via mail and complete task"
+      description: "Send statement response via mail and complete task"
+      parameters:
+        - name: statementId
+          in: path
+          description: Statement ID
+          required: true
+          schema:
+            type: integer
+            format: int64
+        - name: taskId
+          in: path
+          description: Task ID
+          required: true
+          schema:
+            type: string
+            format: uuid
+      responses:
+        200:
+          description: "Sending mail without errors and complete"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/MailSendReport'
+        424:
+          description: "Send mail failed"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/MailSendReport'
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Statement with given statementId does not exist"
+      security:
+      - JWT:
+        - spa_access
+  /mail/inbox:
+    get:
+      tags:
+        - "mail"
+      summary: "Show mail inbox"
+      responses:
+        200:
+          description: "Sending mail without errors"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/EmailModelList'   
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+      security:
+      - JWT:
+        - spa_access
+        
+  /mail/inbox/{mailId}:
+    delete:
+      tags:
+        - "mail"
+      summary: "Delete mail with mailId from inbox"
+      parameters:
+        - name: mailId
+          in: path
+          description: Mail ID
+          required: true
+          schema:
+            type: string
+            format: uuid
+      responses:
+        200:
+          description: "Deleted"
+        404:
+          description: "Mail with id does not exist in inbox"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+      security:
+      - JWT:
+        - spa_access
+        
+    patch:
+      tags:
+        - "mail"
+      summary: "Move mail with mailId from inbox to processed statements"
+      parameters:
+        - name: mailId
+          in: path
+          description: Mail ID
+          required: true
+          schema:
+            type: string
+            format: uuid
+      responses:
+        200:
+          description: "Moved"
+        404:
+          description: "Mail with id does not exist in inbox"
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+      security:
+      - JWT:
+        - spa_access
+
+  /mail/identifier/{mailId}:
+    get:
+      tags:
+        - "mail"
+      summary: "Show mail with identifier"
+      parameters:
+        - name: mailId
+          in: path
+          description: Mail ID
+          required: true
+          schema:
+            type: string
+            format: mailid
+      responses:
+        200:
+          description: "Mail details"
+          content:
+            application/json:
+              schema:
+                $ref: '#/components/schemas/EmailModel'  
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Mail with given mailId does not exist"
+      security:
+      - JWT:
+        - spa_access
+        
+  /mail/identifier/{mailId}/{attachmentName}:
+    get:
+      tags:
+        - "mail"
+      summary: "Get mail attachment file by mailId and attachmentName"
+      parameters:
+        - name: mailId
+          in: path
+          description: Mail ID
+          required: true
+          schema:
+            type: string
+            format: mailid
+        - name: attachmentName
+          in: path
+          description: "Attachment file name"
+          required: true
+          schema:
+            type: string
+        - name: accessToken
+          in: query
+          required: true
+          schema:
+            type: string
+      responses:
+        200:
+          description: "Requested Attachment File"
+          content:
+            application/pdf:
+              schema:
+                type: string
+                format: binary
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Attachment with given attachmentName or Mail with given mailId does not exist"
+          
+  /dashboard/statements:
+    get:
+      tags:
+        - "statement"
+      summary: "Get dashboard statements"
+      responses:
+        200:
+          description: "Dashboard statements"
+          content:
+            application/json:
+              schema:
+                type: array
+                items:
+                  $ref: '#/components/schemas/DashboardStatement'  
+        401:
+          description: "Not Authorized - Please provide a security token"
+        403:
+          description: "Forbidden"
+        404:
+          description: "Not Found - Attachment with given attachmentName or Mail with given mailId does not exist"
+      
+      
+components:
+  securitySchemes:
+    JWT:
+      type: oauth2
+      flows: 
+        implicit:
+          authorizationUrl: http://localhost/portal/rest/beservice/login
+          scopes:
+            spa_access: Grant basic access the statement public affairs back-end interfaces
+  schemas:
+    VersionModel:
+      type: "object"
+      properties:
+        buildVersion:
+          type: "string"
+        applicationName:
+          type: "string"
+      xml:
+        name: "VersionModel"
+    
+
+
+        
+    ListStatementModel:
+      type: "array"
+      items:
+        $ref: '#/components/schemas/StatementModel'
+        
+    StatementModel:
+      type: "object"
+      properties:
+        id:
+          type: integer
+          format: int64
+        title:
+          type: "string"
+        dueDate:
+          type: "string"
+          example: "2020-04-22"
+          format: date
+          pattern: "YYYY-MM-DD"
+        receiptDate:
+          type: "string"
+          example: "2020-04-22"
+          format: date
+          pattern: "YYYY-MM-DD"
+        creationDate:
+          type: "string"
+          example: "2020-04-22"
+          format: date
+          pattern: "YYYY-MM-DD"
+        taskId:
+          type: "string"
+          example: "123e4567-e89b-12d3-a456-426655440000"
+          format: uuid
+          pattern: "xxxxxxxx-xxxx-Mxxx-Nxxx-xxxxxxxxxxxx"
+        finished:
+          type: "boolean"
+        typeId:
+          type: integer
+          format: int64
+        city:
+          type: "string"
+        customerReference:
+          type: "string"
+        district:
+          type: "string"
+        contactId:
+          type: string
+        mailId:
+          type: string
+          
+    DashboardStatement:
+      type: "object"
+      properties:
+        info:
+          $ref: '#/components/schemas/StatementModel'
+        tasks:
+          $ref: '#/components/schemas/ListTaskModel'
+        editedByMe:
+          type: boolean
+        mandatoryDepartmentsCount:
+          type: integer
+        mandatoryContributionsCount:
+          type: integer
+        optionalForMyDepartment:
+          type: boolean
+        completedForMyDepartment:
+          type: boolean
+        
+    ListAttachmentModel:
+      type: "array"
+      items:
+        $ref: '#/components/schemas/AttachmentModel'
+        
+    AttachmentModel:
+      type: "object"
+      properties:
+        id:
+          type: integer
+          format: int64
+        name:
+          type: "string"
+        type:
+          type: "string"
+        tagIds:
+          type: array
+          items:
+            type: integer
+            format: int64
+        size:
+          type: integer
+        timestamp:
+          type: string
+            
+    Tag:
+      type: "object"
+      properties:
+        id:
+          type: string
+        name:
+          type: string
+          
+    ListStatementType:
+      type: "array"
+      items:
+        $ref: '#/components/schemas/StatementType'
+        
+    StatementType:
+      type: "object"
+      properties:
+        id:
+          type: integer
+          format: int64
+        name:
+          type: "string"
+          
+    ListTaskModel:
+      type: "array"
+      items:
+        $ref: '#/components/schemas/TaskModel'
+        
+    TaskModel:
+      type: "object"
+      properties:
+        statementId:
+          type: integer
+          format: int64
+        taskId:
+          type: string
+          example: "123e4567-e89b-12d3-a456-426655440000"
+          format: uuid
+          pattern: "xxxxxxxx-xxxx-Mxxx-Nxxx-xxxxxxxxxxxx"
+        taskDefinitionKey:
+          type: string
+        processDefinitionKey:
+          type: string
+        assignee:
+          type: string
+        authorized:
+          type: boolean
+        name:
+          type: string
+        requiredVariables:
+          $ref: '#/components/schemas/TaskModelRequiredVariables'
+          
+    TaskModelRequiredVariables:
+      type: "object"
+      properties:
+        name:
+          type: string
+          enum: 
+            - Boolean
+    MapCompleteVariable:
+      type: "object"
+      properties:
+        name:
+          $ref: '#/components/schemas/CompleteVariable'
+    
+    CompleteVariable:
+      type: "object"
+      properties:
+        type:
+          type: string
+          enum:
+            - Boolean
+        value:
+          type: boolean
+ 
+    DepartmentGroup:
+      type: object
+      properties:
+        groupname:
+          type: array
+          items:
+            type: string
+                
+    
+    WorkflowDataModel:
+      type: "object"
+      properties:
+        geoPosition: 
+          type: string
+        mandatoryDepartments:
+          $ref: '#/components/schemas/DepartmentGroup'
+        optionalDepartments:
+          $ref: '#/components/schemas/DepartmentGroup'
+
+    DepartmentConfiguration:
+      type: "object"
+      properties:
+        suggestedDepartments:
+          $ref: '#/components/schemas/DepartmentGroup'
+        allDepartments:
+          $ref: '#/components/schemas/DepartmentGroup'
+
+    
+    CommentList:
+      type: array
+      items:
+        type: object
+        properties:
+          id:
+            type: integer
+          text:
+            type: string
+          userName:
+            type: string
+          firstName:
+            type: string
+          lastName:
+            type: string
+          timestamp:
+            type: string
+           
+           
+    PagedContacts:
+      type: object
+      properties:
+        content:
+          $ref: '#/components/schemas/Contacts'
+        totalElements:
+          type: integer
+        totalPages:
+          type: integer
+        last:
+          type: boolean
+        numberOfElements:
+          type: integer
+        first:
+          type: boolean
+        size:
+          type: integer
+        number:
+          type: integer
+        empty:
+          type: boolean
+     
+    Contacts:
+      type: array
+      items:
+        type: object
+        properties:
+          id:
+            type: string
+          email:
+            type: string
+          firstName:
+            type: string
+          lastName:
+            type: string
+          companyId:
+            type: string
+          companyName:
+            type: string
+    
+    ContactDetails:
+      type: object
+      properties:
+        company:
+          type: string
+        salutation:
+          type: string
+        title:
+          type: string
+        firstName:
+          type: string
+        lastName:
+          type: string
+        email:
+          type: string
+        street:
+          type: string
+        houseNumber:
+          type: string
+        postCode:
+          type: string
+        community:
+          type: string
+        communitySuffix:
+          type: string
+            
+    StatementIds:
+      type: array
+      items:
+        type: integer
+    
+    Sectors:
+      type: object
+      properties:
+        city#district:
+          type: array
+          items:
+            type: string
+            example: Strom
+    
+    TextConfig:
+      type: object
+      properties:
+        configuration:
+           $ref: '#/components/schemas/TextblockConfig'
+        replacements:
+          type: object
+          properties:
+            key:
+              type: string
+              example: "value"
+           
+    TextblockConfig:
+      type: object
+      properties:
+        selects:
+          type: object
+          properties:
+            key:
+              type: array
+              items:
+                type: string
+              
+        groups:
+          type: array
+          items:
+            type: object
+            properties:
+              groupName:
+                type: string
+              textBlocks:
+                type: array
+                items:
+                  $ref: '#/components/schemas/TextblockItem'
+        negativeGroups:
+          type: array
+          items:
+            type: object
+            properties:
+              groupName:
+                type: string
+              textBlocks:
+                type: array
+                items:
+                  $ref: '#/components/schemas/TextblockItem'
+                
+    TextblockItem:
+      type: object
+      properties:
+        id:
+          type: string
+        text:
+          type: string
+        excludes:
+          type: array
+          items:
+            type: string
+        requires:
+          type: array
+          items:
+            type: object
+            properties:
+              ids:
+                type: array
+                items:
+                  type: string
+              type:
+                type: string
+                example: "and|xor|or"
+                
+    TextArrangementModel:
+      type: array
+      items:
+        type: object
+        properties:
+          type:
+            type: string
+            example: "block|text|newline|pagebreak"
+          textblockId:
+            type: string
+          addNewline:
+            type: boolean
+          placeholderValues:
+            type: object
+            properties:
+              varname:
+                type: string
+                example: "value or id"
+          replacement:
+            type: string
+            
+    ValidationResultModel:
+      type: object
+      properties:
+        valid:
+          type: boolean
+        errors:
+          type: array
+          items:
+            type: object
+            properties:
+              arrangementId:
+                type: integer
+              textblockId:
+                type: string
+              textblockGroup:
+                type: string
+              missingVariables:
+                type: array
+                items:
+                  type: string
+              requires:
+                type: array
+                items:
+                  type: object
+                  properties:
+                    ids:
+                      type: array
+                      items: 
+                        type: string
+                    type:
+                      type: string
+                      example: "and|xor|or"
+              excludes:
+                type: array
+                items:
+                  type: string
+              after:
+                type: string
+    MailSendReport:
+      type: object
+      properties:
+        successful:
+          type: boolean
+        reason:
+          type: string
+          
+    EmailModelList:
+      type: array
+      items:
+        $ref: '#/components/schemas/EmailModel'
+         
+    EmailModel:
+      type: object
+      properties:
+        identifier:
+          type: string
+        subject:
+          type: string
+        date:
+          type: string
+          example: "date-time-format"
+        from:
+          type: string
+        textplain:
+           type: string
+        texthtml:
+          type: string
+        attachments:
+          type: array
+          items: 
+            type: object
+            properties:
+              name: 
+               type: string
+              size:
+                type: integer
+              type: 
+                type: string
+      
+    ListTransferAttachments:
+      type: array
+      items:
+        type: object
+        properties:
+          name:
+            type: string
+          tagIds: 
+            type: array
+            items:
+              type: string
+    
+    StatementPositionModel:
+      type: object
+      properties:
+        id: 
+          type: integer
+        title:
+          type: string
+        geoPosition:
+          type: string
+        typeId:
+          type: integer
+          
+    GeoPositions:
+      type: object
+      properties:
+        position1:
+          type: object
+          properties:
+            x:
+              type: number
+            y:
+              type: number
+              
+    DepartmentStructure:
+      type: object
+      properties:
+        city#district:
+          type: object
+          properties:
+            provides:
+              type: array
+              items:
+                type: string
+            departments:
+              type: object
+              properties:
+                groupKey:
+                  type: array
+                  items:
+                    type: string
+                    
+    TextblockConfiguration:
+      type: object
+      properties:
+        groups:
+          type: array
+          items:
+            type: object
+            properties:
+              groupName:
+                type: string
+              textBlocks:
+                type: array
+                items:
+                  type: object
+                  properties:
+                    id:
+                      type: string
+                    requires:
+                      type: array
+                      items:
+                        type: object
+                        properties:
+                          ids:
+                            type: array
+                            items:
+                              type: string
+                          type:
+                            type: string
+                            example: "xor"
+                    excludes:
+                      type: array
+                      items: 
+                        type: string
+                    text:
+                      type: string
+        negativeGroups:
+          type: array
+          items:
+            type: object
+            properties:
+              groupName:
+                type: string
+              textBlocks:
+                type: array
+                items:
+                  type: object
+                  properties:
+                    id:
+                      type: string
+                    requires:
+                      type: array
+                      items:
+                        type: object
+                        properties:
+                          ids:
+                            type: array
+                            items:
+                              type: string
+                          type:
+                            type: string
+                            example: "xor"
+                    excludes:
+                      type: array
+                      items: 
+                        type: string
+                    text:
+                      type: string
+        selects:
+          type: object
+          properties:
+            name:
+              type: array
+              items:
+                type: string
+             
+    UserSettings:
+      type: object
+      properties:
+        email:
+          type: string
+        department:
+          type: object
+          properties:
+            group:
+              type: string
+            name:
+              type: string
+                
+    User:
+      type: object
+      properties:
+        id:
+          type: integer
+        userName:
+          type: string
+        firstName:
+          type: string
+        lastName:
+          type: string
+        roles:
+          type: array
+          items:
+            type: string
+        settings:
+          $ref: '#/components/schemas/UserSettings'
+            
+     
+      
+      
+externalDocs:
+  description: "Find out more about OpenKONSEQUENZ"
+  url: "https://www.openkonsequenz.de/"
diff --git a/src/main/asciidoc/arch/architecture.adoc b/src/main/asciidoc/arch/architecture.adoc
new file mode 100644
index 0000000..a0869d8
--- /dev/null
+++ b/src/main/asciidoc/arch/architecture.adoc
@@ -0,0 +1,85 @@
+// header file for arc42-template,
+// including all help texts
+//
+// ====================================
+:source-highlighter: highlightjs
+:highlightjs-theme: solarized_dark
+
+= OpenKONSEQUENZ - Architecture of the module Statement Public Affairs
+Tobias Stummer, Dr. Christopher Keim, Christian Simon
+// toc-title definition MUST follow document title without blank line!
+:toc-title: Table of Contents
+
+//additional style for arc42 help callouts
+ifdef::basebackend-html[]
+++++
+<style>
+.arc42help {font-size:small; width: 14px; height: 16px; overflow: hidden; position: absolute; right: 0px; padding: 2px 0px 3px 2px;}
+.arc42help::before {content: "?";}
+.arc42help:hover {width:auto; height: auto; z-index: 100; padding: 10px;}
+.arc42help:hover::before {content: "";}
+@media print {
+	.arc42help {display:hidden;}
+}
+</style>
+++++
+endif::basebackend-html[]
+
+// configure EN settings for asciidoc
+include::arch/src/config.adoc[]
+
+This documentation is based on the ARC42-Template (v7.0):
+
+
+// numbering from here on
+:numbered:
+
+<<<<
+// 1. Introduction and Goals
+include::arch/src/01_introduction_and_goals.adoc[]
+
+<<<<
+// 2. Architecture Constraints
+include::arch/src/02_architecture_constraints.adoc[]
+
+<<<<
+// 3. System Scope and Context
+include::arch/src/03_system_scope_and_context.adoc[]
+
+<<<<
+// 4. Solution Strategy
+include::arch/src/04_solution_strategy.adoc[]
+
+<<<<
+// 5. Building Block View
+include::arch/src/05_building_block_view.adoc[]
+
+<<<<
+// 6. Runtime View
+include::arch/src/06_runtime_view.adoc[]
+
+<<<<
+// 7. Deployment View
+include::arch/src/07_deployment_view.adoc[]
+
+<<<<
+// 8. Concepts
+include::arch/src/08_concepts.adoc[]
+
+<<<<
+// 9. Design Decisions
+include::arch/src/09_design_decisions.adoc[]
+
+<<<<
+// 10. Quality Scenarios
+include::arch/src/10_quality_scenarios.adoc[]
+
+<<<<
+// 11. Technical Risks
+include::arch/src/11_technical_risks.adoc[]
+
+<<<<
+// 12. Glossary
+include::arch/src/12_glossary.adoc[]
+
+
diff --git a/src/main/asciidoc/arch/src/01_introduction_and_goals.adoc b/src/main/asciidoc/arch/src/01_introduction_and_goals.adoc
new file mode 100644
index 0000000..3b2ff9f
--- /dev/null
+++ b/src/main/asciidoc/arch/src/01_introduction_and_goals.adoc
@@ -0,0 +1,44 @@
+[[section-introduction-and-goals]]
+== Introduction and Goals
+
+Distribution System Operators (DSO) are bodies of public affairs (BPA). As such they are included in the coordination processes for project planning, land use planning and infrastructure projects. Their comments, objections and notices must be taken into account in the upcoming planning processes. The procedure of these inquiries follow a standardized process and are triggered in a similar form on a regular basis.
+
+To support these processes, a systematic management of these inquiries are recommended to the network operator.
+
+The openKONSEQUENZ platform already provides a rich set of modules providing solutions to support network operators.
+
+The new module statement public affairs is planned as an openKONSEQUENZ user module to support network operator staff with these recurring processes.
+
+=== Requirements Overview
+
+The module Statement Public Affairs shall support the processing of statement requests from the receiving of new statement requests, over the evaluation of the request and the creation of the statement response, to the dispatch of the response to the receiver. New requests can come in via mail or e-mail. Both sources shall be considered as entry points to process new statement requests with the module. The creation process of a statement response requires a joint contribution of multiple workers in different user roles. The statement processing shall address these workflows in the module implementation. The dispatch of statement responses shall also be possible via mail or e-mail.
+
+=== Quality Goals
+
+The following documents contain the quality goals in detail:
+
+* Architecture Committee Handbook v1.6.0 from 10-07-2019
+* Quality Committee Handbook v2.0.1 from 15-10-2018
+
+The architecture is based on the AC-Handbook. The quality demands are described in the QC-Handbook.
+Both specifications were fully complied with in the project, so that a high quality is given.
+
+The code quality regarding static code analysis and unit test code coverage on the back-end and front-end sides are ensured by the use of sonarqube. The rule set and the quality gate are defined by the default, the so called "sonar way" in agreement with the AC/QC.
+
+The module 'Statement Public Affairs' is part of the Eclipse project 'Eclipse openK User Modules'.
+This project bases on the Eclipse Public Licence 2.0.
+
+=== Stakeholders
+
+
+.Stakeholders
+[options="header",cols="1,2,2"]
+|===
+|Role/Name|Contact|Expectations
+| Product Owner | Benedikt Herget, Holger Kronschnabel | The software must fulfil their functional and nonfunctional requirements.
+| Module Developer | Dr. Christopher Keim, Tobias Stummer| All relevant technical information must be available for implementing the software.
+| Scrum Master | Samir Al-Hilank | The module development follows the scrum process.
+|External Reviewer (represents the AC/QC)| Heiko Oberländer, Alexander Langold |The software and the documentation is realized according to the Quality and Architecture Handbook of openKONSEQUENZ.
+|External Reviewer (represents the Eclipse-Requirements)|n.n.|The software is  licensed under the EPL 2.0. It must be validated that all requirements are fulfilled.
+|System Integrator|n.n.|A documentation for the integration of the module in the DSO specific environments must be available.
+|===
diff --git a/src/main/asciidoc/arch/src/02_architecture_constraints.adoc b/src/main/asciidoc/arch/src/02_architecture_constraints.adoc
new file mode 100644
index 0000000..517eb7c
--- /dev/null
+++ b/src/main/asciidoc/arch/src/02_architecture_constraints.adoc
@@ -0,0 +1,121 @@
+[[section-architecture-constraints]]
+== Architecture Constraints
+The main architecture constraints are:
+
+* *Public License* The module must be available under the “Eclipse Public License 2.0”.
+* *Standardization* The module must use the reference platform.
+* *Availability* The source code of the module must be accessible to any interested person/company.
+
+Therefore the project is published under the following repositories:
+
+* https://git.eclipse.org/r/plugins/gitiles/openk-usermodules/org.eclipse.openk-usermodules.statementPublicAffairs.backend
+* https://git.eclipse.org/r/plugins/gitiles/openk-usermodules/org.eclipse.openk-usermodules.statementPublicAffairs.frontend
+* https://git.eclipse.org/r/plugins/gitiles/openk-usermodules/org.eclipse.openk-usermodules.statementPublicAffairs.documentation
+
+=== Technical Constraints
+
+The following technical constraints are given:
+
+.Technical Constraints
+[options="header"]
+|===
+|Component|Constraints
+|Base components of the reference platform
+a|* Application Server Tomcat
+* JPA EclipseLink
+* Database PostgreSQL
+
+|Programming language frontend
+a|* Angular
+* Bootstrap
+* REST/JSON Interfaces
+
+|GUI design
+a|* According to oK-GUI-Styleguide
+
+|Java QA environment
+a|* Sonarqube 5.6.6
+
+|Programming language
+a|* Backend: Java 1.8
+* Frontend: Angular 9+ (Javascript, Typescript, HTML5, CSS3)
+
+|IDE
+a|* Not restricted (Eclipse, Webstorm, Vim ...)
+
+|Build system
+a|* Backend: Maven
+* Frontend: NodeJS + Angular/cli
+
+|Libraries, frameworks, components
+a|* Used Libraries/Frameworks have to be compatible to the Eclipse Public License
+
+|Architecture Documentation
+a|* According ARC42-Template
+|===
+
+
+
+=== Technical Dependencies
+
+
+==== Modules
+The following modules are required to use the 'Statement Public Affairs' module:
+
+.Modules
+[options="header,footer"]
+|=========================================================
+|Name of the module|Purpose|Status of the module
+|'Auth&Auth'|Authentification and Authorization|available
+|'Contact Base Data'| Customer and user contact details|available
+|=========================================================
+
+
+==== Libraries
+
+The following libraries are used:
+
+.Libraries
+[options="header,footer"]
+|=========================================================
+|Name of the library|Version|License|Tier
+| spring-cloud-core-openfeign |2.2.0|Apache-2.0 | Back-end
+| spring-boot-starter-data-jpa |2.2.1|Apache-2.0 | Back-end
+| spring-boot |2.2.1|Apache-2.0 | Back-end
+| spring-boot-starter-web |2.2.1|Apache-2.0 | Back-end
+| lombok |1.18.10|MIT | Back-end
+| postgresql |42.2.8|BSD 2-clause | Back-end
+| spring-cloud-starter-netflix-ribbon |2.2.0|Apache-2.0 | Back-end
+| keycloak-core |3.4.2|Apache-2.0 | Back-end
+| jjwt |0.9.1|Apache-2.0 | Back-end
+| h2 |1.4.200|EPL 1.0 | Back-end
+| proj4j | 1.1.0 | Apache-2.0 | Back-end
+| angular/animations |9.1.12| MIT | Front-end
+| angular/cdk |9.2.4| MIT | Front-end
+| angular/common |9.1.12| MIT | Front-end
+| angular/compiler |9.1.12| MIT | Front-end
+| angular/core |9.1.12| MIT | Front-end
+| angular/forms |9.1.12| MIT | Front-end
+| angular/material |9.2.4| MIT | Front-end
+| angular/platform-browser-dynamic |9.1.12| MIT | Front-end
+| angular/platform-browser |9.1.12| MIT | Front-end
+| angular/router |9.1.12| MIT | Front-end
+| ngrx/effects |9.2.0| MIT | Front-end
+| ngrx/store |9.2.0| MIT | Front-end
+| ngx-translate/core |12.1.2| MIT | Front-end
+| ngx-translate/http-loader |5.0.0| MIT | Front-end
+| leaflet |1.6.0| BSD-2-Clause | Front-end
+| material-design-icons |3.0.1| Apache-2.0 | Front-end
+| rxjs |6.5.4| Apache-2.0 | Front-end
+| source-sans-pro |3.6.0| OFL-1.1 | Front-end
+| tslib |1.10.0| Apache-2.0 | Front-end
+| zone.js |0.10.2| MIT | Front-end
+| bpmn-js |6.5.1| bpmn.io License https://bpmn.io/license | Front-end
+| moment-js |2.27.0| MIT | Front-end
+| primeng |9.1.3| MIT | Front-end
+|=========================================================
+
+The used libraries can also be found in the dependency configuration of each project repository.
+
+* Back-end: file pom.xml
+* Front-end: file package.json
diff --git a/src/main/asciidoc/arch/src/03_system_scope_and_context.adoc b/src/main/asciidoc/arch/src/03_system_scope_and_context.adoc
new file mode 100644
index 0000000..2758c08
--- /dev/null
+++ b/src/main/asciidoc/arch/src/03_system_scope_and_context.adoc
@@ -0,0 +1,24 @@
+[[section-system-scope-and-context]]
+== System Scope and Context
+
+The following image shows an overview of the module 'Statement Public Affairs' as a C4-Model container diagram:
+
+image::architecture-system-context.svg[]
+
+
+=== Business Context
+
+The user module 'Statement Public Affairs' communicates via Restful Webservices with the following modules:
+
+* *Core Module 'Auth & Auth'* To authenticate and validate the access rights to the module interfaces, the 'Auth & Auth' module is used to verify the user authorization and limit the allowed user access accordingly.
+
+* *Core Module 'Contact Base Data'* Customer and user contact details are not managed within the statement public affairs module. Therefore the openKONSEQUENZ core module 'Contact Base Data' is used instead.
+
+=== Technical Context
+
+The following aspects have to be taken into account for the frontend to backend communication of the module 'Statement Public Affairs':
+
+* RESTful web services are used as interface-technology.
+* External interfaces have to be documented.
+* Dependencies of modules to services realized by other modules have to be specified and documented explicitly.
+
diff --git a/src/main/asciidoc/arch/src/04_solution_strategy.adoc b/src/main/asciidoc/arch/src/04_solution_strategy.adoc
new file mode 100644
index 0000000..e2086b0
--- /dev/null
+++ b/src/main/asciidoc/arch/src/04_solution_strategy.adoc
@@ -0,0 +1,12 @@
+[[section-solution-strategy]]
+== Solution Strategy
+
+The module 'Statement Public Affairs' is realized in the following main architecture tiers:
+
+. *Frontend* - The GUI is implemented as a web-frontend with rich-client functionality.
+. *Backend* - The business functionalities are implemented in the backend tier. It provides the business functions via RESTful webservices.
+. *Database* - The database stores all module specific data.
+. *WorkflowEngine* - The workflow engine drives the processing of each statement according to a predefined workflow.
+
+
+
diff --git a/src/main/asciidoc/arch/src/05_building_block_view.adoc b/src/main/asciidoc/arch/src/05_building_block_view.adoc
new file mode 100644
index 0000000..4be295e
--- /dev/null
+++ b/src/main/asciidoc/arch/src/05_building_block_view.adoc
@@ -0,0 +1,155 @@
+[[section-building-block-view]]
+
+== Building Block View
+
+=== Whitebox Overall System
+
+image::architecture-container-diag.svg[]
+
+Motivation::
+
+The statement module is part of the openKONSEQUENZ module framework. It makes use of the rich feature set of other openKONSEQUENZ core modules and user modules. Other external services with standardized interfaces are used for communication and context visualization.
+
+Contained Building Blocks::
+
+The module consists of the following main components:
+
+.Module Components
+[options="header,footer"]
+|========================================================
+|Component|Description
+|Web Application | Web application server that delivers the frontend single page application
+|Frontend| The single page application that provides the user interface
+|API Application | The module back-end logic
+|Statement DB| Database where the statement module configuration and the statement process data is stored
+|Workflow Engine | External process workflow engine that is used by the API Application to manage the statement workflow tasks
+|========================================================
+
+
+The system context describes the following components:
+
+.System Context Components
+[options="header,footer"]
+|========================================================
+|Component|Description
+|SPA User | Authenticated person that operates the statement process. Initiates a new statement process, browses existing statement processes, enhances statement data, approves statements or administrates the statement service base data.
+|Map Tile Server | Server that provides open streetmap tiles that are used in map views.
+|Kontaktstammdaten | OpenKONSEQUENZ module that manages the contact data.
+|Email Server | Inbox for new statement requests and outbox for statement responses and user notification.
+|AuthNAuth | OpenKONSEQUENZ module that manages user authentication for OpenKONSEQUENZ modules.
+|========================================================
+
+==== Web Application
+
+The component Web Application is accessed by the SPA User to log into the OpenK portal. When access is granted, the single page application component Frontend is provided to the user. The web application itself is deployed in a tomcat application server.
+
+The Web Application can be accessed via HTTPS at the entry point with the url /statementpaFE relative to the base url of the application server.
+
+==== Frontend
+
+The component Frontend is delivered by the Web Application when a SPA User requests the Web Application. It provides a web based user interface to browse existing statement processes. According to the current status of each statement process different statement views are presented to work on the current statement process task that are derived from the workflow process. Based on the User Roles of the SPA User, access to some of these interfaces may be limited.
+
+==== API Application
+
+The component API Application contains the backend logic of the openKONSEQUENZ module. It provides authenticated access to list all statement processes, to initiate a new statement process instances and push existing processes. Besides managing the statement processes data such as pdf attachments, comments and text building blocks can be set. These contributions are used to compose the resulting statement response document at the end of the process. For persistence of statement data, the component Statement DB is used. Each statement instance is tethered to a workflow process instance that is managed by the component Workflow Engine. To control the workflow process of a statement, the API application acts as a surrogate that provides similar interfaces as the component Workflow Engine.
+
+The API Application can be accessed via the HTTPS protocol. The interfaces to access the backend functionality are implemented RESTful as sub entry points with the url /statementpaBE relative to the base url of the application server. Access to these interfaces may be restricted based on a role based authorization mechanism.
+
+==== Workflow Engine
+
+The concrete process definition of the statement process workflow is deployed in the component Workflow Engine. It is based on a full distribution of Camunda BPM. Each statement workflow process itself is managed using the Workflow Engine component.
+ 
+The Workflow Engine provides a RESTful interface to start new process instances, list current process tasks, claim and complete user tasks and provides a fetch-lock and complete interface for external service tasks.
+
+==== Statement DB
+
+The component Statement DB is based on a postgres database. All statement data is persisted there except for workflow process related data which is managed and persisted by the Workflow Engine internal database.
+
+The Statement DB provides a SQL interface.
+
+=== Level 2
+
+==== White Box API Application
+
+The statement back-end itself is structured into the three main tiers controller, service and resource. The following architecture diagram shows its main components:
+
+image::architecture-backend-component-diag.svg[]
+
+The controller tier contains RESTful interface endpoints to get an overview over the existing statements via the 'StatementOverviewController' and to get statement details via the 'StatementController' and the 'StatementWorkflowDataController'. Task specific manipulations are handled by the 'StatementProcessController'. Other controllers are more related to a specific data set type, like the 'TextblockController' and 'MailController' or provide utility and context interfaces like the 'UsersController' and the 'GeoPositionController'.
+
+The service tier contains main services that abstract the controller functionality and modularize the back-end logic. Besides the central 'StatementService' and 'StatementProcessService' utility services such as the 'NotifyService', 'UserInfoService' and 'AuthorizationService' are widely used by many services.
+
+The resources tier contains components such as database repositories and facades for external services, such as the 'AuthNAuthApi', 'ContactDatabaseApi' and 'CamundaApi'.
+
+
+==== White Box Front-end
+
+The front-end application is structured into five different kind of modules: Feature modules, shared modules, store
+modules, core modules and utility modules:
+
+image::architecture-frontend-component-diag.svg[]
+
+===== Feature Modules
+
+Feature modules are a collection of Angular components which make up the main user interfaces of the application. Some
+of these modules include a routing configuration (routing modules) to specify certain components which are used as an
+entry point for routed views. Feature modules deliver the top components of the front-end application which dispatch
+actions to the global store and subscribe to data changes in the global store state. As such, they connect the view
+model with the deeper lying data model of the application.
+
+The following diagram shows a more detailed overview of the different feature modules of the front-end.
+
+image::architecture-feature-modules-diag.svg[]
+
+The navigation module implements a basic frame and router outlet which is used for the whole front-end application.
+It forms, together with the routing modules like the dashboard, mail, search, statement details, new statement and
+edit module, the whole user interface for a specific URL route for the front-end.
+For a better modularization and reuse, certain aspects of the user interface are implemented in their own feature module
+like the map module for displaying and searching for geographic positions, the comments module for viewing, adding and
+deleting comments, the attachments module for handling file uploads and downloads and the three main form modules
+(statement info form module, workflow data form module and the statement editor form module) for submitting changes
+to the actual statement model in the back-end data base.
+
+===== Shared Modules
+
+Shared modules are merely a collection of Angular components, directives and pipes which provide independent building
+blocks for the user interface, for example a common select component or a side menu component.
+
+===== Store Modules
+
+All global data is managed in a central store and accessed in a reactive way. Store modules offer actions to alter
+the global state or trigger side effects (like sending a message to the back-end API), and selectors to access and
+subscribe to data changes of parts in the global state.
+
+===== Core Modules
+
+Core modules offer services for data access and messaging. They provide injection tokens for the application's
+configuration files, offer facades for sending messages to the back-end and geocoder API and for accessing
+basic browser API, e.g. opening a new tab, triggering the download of a file or showing a confirmation dialog.
+
+===== Utility Modules
+
+Utility modules are no actual Angular modules but merely a collection of constants and utility functions. Those
+helper functions (e.g. for altering arrays or formatting date strings) are pure and independent from the rest
+of the front-end.
+
+
+==== White Box Workflow Engine
+
+The process of creating a new statement response is defined by the following statement workflow.
+
+image::Statement-workflow.svg[]
+
+The business process model represents a general workflow for statement processing that was developed in coordination with the customer. All actions to process a statement response are grouped together into a set of tasks that can be worked on by different users or user groups. The three lanes indicate the main user groups required to process the response. The process starts with the creation of a new statement process instance by a user with the user-role 'Official-In-Charge' (OIC) (In table as 'Sachbearbeiter'). There all relevant data is added to the statement database that is required to decide whether the DSO is the appropriate authority for the request. If not, a negative response will be formulated and sent to the customer after an approval by a user with the user-role 'Approver' (In table as 'Genehmiger'). In the positive case additional information relevant for other contributing users such as the 'Departement-Members' is added to the statement data set. After providing a draft of the statement response, the department members contribute the data set with their expertise. When all relevant departments have contributed, the statement response is formulated. An approver is then required to verify the statement response and initiate the dispatch. In cases the automatic dispatch is not successful or manual mail delivery is chosen, an OIC can correct the automatic dispatch error or manually send the the mail and finish the statement process.
+ 
+To process each of the tasks in the model above, one or more users with the appropriate user role have to claim the task, provide decision information and contribute documents where necessary and complete the task afterwards. The management of the workflow process is handled by an external Camunda workflow engine instance that is controlled via its RESTful interfaces by the module back-end. This architecture allows adaptions to the workflow process.
+
+==== White Box Statement DB
+
+All case relevant data to create a statement response is stored in a relational database structured as follows:
+
+image::database-structure.svg[]
+
+The center of a statement data set is represented as a 'Statement' in the database structure above. It stores the main case data such as the title, due dates and city and contact references. Attachments can be added and assigned with tags to classify them. Each attachment is directly assigned to a specific statement. Next to the attachments, the 'WorkflowData' is the center to further processing such as the response text arrangement, required department contributions and comments. To reduce migration efforts when updating the department structure and overall text block configuration, the 'DepartmentStructure' and the 'TextblockDefinition' contain a consistent configuration set.
+
+
diff --git a/src/main/asciidoc/arch/src/06_runtime_view.adoc b/src/main/asciidoc/arch/src/06_runtime_view.adoc
new file mode 100644
index 0000000..8e1751d
--- /dev/null
+++ b/src/main/asciidoc/arch/src/06_runtime_view.adoc
@@ -0,0 +1,37 @@
+[[section-runtime-view]]
+== Runtime View
+
+=== Login and authentication
+
+The login and authentication process is as follows:
+
+.StatementPublicAffairs application is called by the *portal* application. The User is already logged in
+[plantuml]
+....
+actor User
+participant PortalFrontend
+participant PortalBackend
+participant StatementPublicAffairsFrontend
+entity FrontendAuthService
+participant StatementPublicAffairsBackend
+
+User->PortalFrontend: Start StatementPublicAffairs(JWT)
+PortalFrontend->StatementPublicAffairsFrontend: navigate to frontend-URL with JWT
+StatementPublicAffairsFrontend->FrontendAuthService: Extract JWT and store token in session
+... some delay ...
+StatementPublicAffairsFrontend->StatementPublicAffairsBackend: Call any secured service with JWT
+group Call secured service
+
+StatementPublicAffairsBackend->PortalBackend: "/checkAut(JWT)"
+group Authorization succeeded
+StatementPublicAffairsBackend->StatementPublicAffairsBackend: run service
+StatementPublicAffairsBackend->StatementPublicAffairsFrontend: return service result
+end
+group Authorization failed
+StatementPublicAffairsBackend->StatementPublicAffairsFrontend: return HTTP Code 401
+end
+end
+....
+
+The user authenticates himself via the openKONSEQUENZ Portal Application (AuthNAuth). In that SSO (single sign on) process, he returns a JWT (JSON Web Token) that can be used as a authentication token for all other openKONSEQUENZ applications. The front-end application provides the token for all HTTPS requests at the module back-end. There it is verified against the AuthNAuth module. Furher request specific authorization processes then use the roles appended in the verified token for the authorization mechanism.
+
diff --git a/src/main/asciidoc/arch/src/07_deployment_view.adoc b/src/main/asciidoc/arch/src/07_deployment_view.adoc
new file mode 100644
index 0000000..112ab98
--- /dev/null
+++ b/src/main/asciidoc/arch/src/07_deployment_view.adoc
@@ -0,0 +1,20 @@
+[[section-deployment-view]]
+
+== Deployment View
+
+=== Deployment of the front-end
+
+See _howtoRun_ documentation.
+
+=== Deployment of the back-end
+
+See _howtoRun_ documentation.
+
+=== Deployment of the database
+
+See _howtoRun_ documentation.
+
+=== Configuration of the system
+
+See _howtoRun_ documentation.
+
diff --git a/src/main/asciidoc/arch/src/08_concepts.adoc b/src/main/asciidoc/arch/src/08_concepts.adoc
new file mode 100644
index 0000000..5a5cc30
--- /dev/null
+++ b/src/main/asciidoc/arch/src/08_concepts.adoc
@@ -0,0 +1,335 @@
+[[section-concepts]]
+== Cross-cutting Concepts
+
+=== Role concept
+
+The creation of a new statement response requires the collaboration of multiple editors from different company domains. They enhance the statement by adding domain specific information, comments that should support the final creation of the response document or verify the document for approval. The statement process is therefore divided up into multiple sequenced tasks each of which can be matched to one or more abstract user roles. A suitable role and rights concept must restrict general access to a previously defined group of editors as well as restricting the editing according to additional parameters like the current task and assigned user roles. This should be ensured by an adapted front-end visualization as well as a verification of the concrete edit type and parameters in the back-end service.
+
+The authorization logic is therefore implemented in a multi-tier validation process.
+
+To identify an access user, the external core module AuthNAuth is used. Each user of the Statement Public Affairs module is verified by a token generated by the AuthNAuth module. The assigned user roles managed by the AuthNAuth module can be used by the statement module to authorize the access interfaces.
+
+The overall access to the user interface as well as the back-end api is authorized by a basic role SPA_ACCESS that has to be assigned to each user of the Statement Public Affairs module.
+This role grants the user readable access to statement overview and details. Besides that, editing of statement details like attachments, comments or text-blocks is only allowed in certain statement process tasks and only granted to specific user roles. To prevent inconsistencies it shall be ensured, that only one user can edit a statement at the same time. This is ensured by a user to task assignment where only the currently assigned process task user is authorized to edit the statement.
+
+With this in mind one can abstract the following basic rules:
+
+* General read access is granted by the basic SPA_ACCESS role
+* Editing access is only granted for the currently assigned user
+* The concrete edit authorization is specific to the statement process task and the user roles
+
+==== Roles
+
+[cols="30%, 70%", options="header"]
+|===
+| Role | Description
+| SPA_ACCESS | Basic role that provides module access
+| SPA_ADMIN | Configures the statement module
+| SPA_OIC | Official in charge who does the formal statement editing
+| SPA_DIVISION_MEMBER | Member of a division who enhances the statement with domain specific information
+| SPA_APPROVER | Approves finished statements or negative responses
+| SPA_GUEST | Browses statements that are still in process or already finished
+|===
+
+==== Verification
+
+As shown in the authorization process diagram the verification is a multi-tier process.
+
+image::authorization-process.svg[]
+
+
+The first tier is the only granted based on the SPA_ACCESS user role that every statement module user shares.
+
+The next tiers differ in the concrete access types. Access types can be grouped into process task specific access and general access. General access is only verified by the user roles. Examples for these access types are reading statement details or starting a new statement process. The other access types are specified for each process task. To process a task, the user has to temporarily claim the task. This claim-user is matched with the access user. The last step of the task specific access authorization verifies the User Roles in combination with the task.
+
+==== Backend
+
+In the API back-end, the three layers are implemented as follows. 
+The verification of the SPA_ACCESS role is implemented as a general precondition to access an end-point. This reduces the attack surface of the service as only little code is executed before access is denied.
+A central authorization service implements the other two verification layers. It has interfaces to verify the task specific access and the general access types and is requested in the beginning of each end-point logic.
+The central authorization service is configured by an authorization matrix that sets the role and task specific access rights. 
+
+==== Frontend
+
+The basic strategy for the front end is to only render specific views or user controls if the user is authorized to read or use them. User roles as well as the information on tasks are stored centrally in the web application. On a change, all views are updated with the new data and display or hide certain parts of it.
+
+In the front end application, the first tier of access is verified right at the initialization when all roles for the user are loaded from the back end. If the user is not provided with general read access, only an error message is rendered. Otherwise, the user has access to the main views of the application.
+
+Certain sub pages, e.g. the settings page for configuring the module, can only be accessed with a specific user role. If a user is not provided with all necessary roles, links to the sub pages are not rendered in the navigation bar. Route guards ensure that a user can not access restricted sub pages via an URL route and redirect to the main landing page in this case.
+
+The second tier of access is verified if a user wants to view or edit a specific user task. For example, user controls to claim a task are only rendered if the task is not claimed by another user and if the user is actually allowed to do so by its assigned roles.
+Details of a statement can only be edited on a specific sub page: the edit page. When accessing the edit page for a specific task, first the relevant task information is loaded (or updated) and different kind of views are presented to the user based on the task information and the user's roles.
+
+While visiting the web application, roles can be revoked from the user. If so and if the user is trying to access now restricted areas of the web application, the user is logged out automatically. This essentially forces the user to revisit the website. It is also possible that the user's claim on a statement task is revoked. If so, all currently displayed views are updated accordingly to the new task information. For example, the edit page is updated and displays now a simple message instead of a form to edit the statement's details.
+
+=== Text block concept
+
+Based on the given general information regarding a statement, a textual response is formulated which is finally sent to the recipient. As the actual writing follows a standardized process, most parts of the text can be reused in various requests and only a small portion of it has to be adjusted to the specific situation, for example the contact person's name, the current date or simple free text which has to be defined by the user.
+
+
+When creating the statement response draft or final version, the responsible editor shall be able to put together the response text by selecting multiple text blocks, sort them and enhance them with case specific details. In addition, text blocks can have interdependencies. They may require predecessors, just make sense in a specific order or exclude each other. A text block concept is required that allows the administration of reusable text blocks including interdependency rules, order restrictions and the ability to define placeholders that can be used to adapt a text block to a specific case. Before creating the final document text block restrictions like placeholders, order, etc. shall be verified to ensure a consistent document text.
+
+==== Block administration
+
+The administration of the text blocks shall support the following modifications:
+
+* Create new and delete existing text block groups
+* Create new and delete text blocks
+* Modify existing text blocks 
+* Rearrange text blocks
+* Set interdependencies between text blocks of the same group
+* Set variable text block place holders in text blocks
+
+The text block configuration is persisted in a single definition format that is versioned, so that it can be referenced in the creation process. This ensures that modifications of the text block definition do not affect statements that are already under development.
+
+==== Text formatting
+
+Text block content may be formatted. The following format types are supported:
+
+* bold
+* italic
+* lists with bullet points
+* newlines
+
+They can be manually set using a markup language with the following rules:
+
+[cols="20%,15%,65%", options="header"]
+|===
+| Type | Rule | Example
+| *bold* | \*<text>* | That's a \*bold* text. 
+| _italic_ | \_<text>_ | That's a \_italic_ text. 
+| bullet points | * Bullet | * That's a list entry
+|===
+
+Newlines can be set inside the text block by using enter or using the special character \n manually.
+
+==== Text place holder
+
+There are three main types of text place holders:
+
+* Free text can be of any textual form and may include formatted text or specific data from the statement’s general information like the title, dates and the contact person's name
+* Freely fillable date fields
+* Texts which can be chosen from a predefined list of options
+
+They can be manually set according to the following rules:
+
+[cols="20%,15%,65%", options="header"]
+|===
+| Type | Rule | Example
+| free text | <f:name> | Here's some random text: <f:random>. 
+| date | <d:name> | Here's some date: <d:name>. 
+| statement info| <t:name> | Referencing your request with the due date of <t:dueDate>, ... 
+| select | <s:name> | Techspecs of the windmill: <s:ts_windmill>
+|===
+
+To be able to match statement info place holder variables with statement info data text response generators for a defined set of variables are implemented in the back-end.
+The source for the common place holders is a configuration file that contains a single replacement string or a list of replacement entries with a short handle that can be represented as a selection in the front-end.
+
+==== Persistence
+
+===== Definition
+
+The text block definition structure is as follows:
+[source,json]
+----
+{
+  "groups": [
+    {
+      "name": "<string>",
+      "blocks": [
+        {
+          "id": "<string>",
+          "text": "In the urban area of <t:city> we are operator of the network division(s) <t:divisions>.",
+          "requires": [
+            {
+              "type": "<and|or|xor>",
+              "ids": ["<block-id>", ...]
+            }
+          ],
+          "excludes": ["<block-id>",...]
+        }
+      ]
+    }
+  ]
+}
+----
+
+To ensure that modifications of the text block definition do not affect statements under development certain rules are established:
+
+* The definition has to be versioned
+* The current definition version is assigned to a new statement before the first time a draft of the statement response is created
+
+The definition is persisted in the database in JSON format.
+
+===== Statement response
+
+The persisted statement response holds the current compilation of text blocks. Therefore it includes a reference of the specific statement definition version.
+The detailed structure is as follows:
+[source,json]
+----
+{
+  "blocks": [
+    {
+      "type": "text",
+      "replacement": "That's a free text block."
+    },
+    {
+      "type": "block",
+      "textblockId": "1a",
+      "addNewline": true,
+      "placeholderValues": {
+        "f:freetext1": "free text",
+        "d:date1": "2020-06-30",
+        "s:select1": "<selectId>"
+      }
+    },
+    {
+      "type": "newline"
+    },
+    {
+      "type": "pagebreak"
+    }
+  ]
+}
+----
+
+==== Backend API
+
+
+[cols="10%,60%,30%", options="header"]
+|===
+| Req | Uri | Description
+| GET | /admin/text | Get current text block definition
+| POST | /admin/text | Set new text block definition
+| GET | /process/statements/{sId}/workflow/textarrangement | Get current text block compilation of statement 
+| POST | /process/statements/{sId}/task/{tId}/workflow/textarrangement | Set text block compilation of statement 
+|===
+
+
+=== User notification via email
+
+The process of collecting information to create a statement response is achieved by multiple statement editors contributing information from their knowledge domain. An efficient statement process requires a coordination of these different contributions via an email notification mechanism.
+
+Contributors of a statement shall be informed about important process steps at the transitions to the next process user task. Examples for these transitions are the notification of all users with the role SPA_Approver when a new positive or negative statement response shall be cleared or to inform all contributors when a statement process is finished.
+
+Therefore a notification component is required that is triggered when a process task is finished. If the current process task is configured for notification, all the contributors and configured ROLES shall be notified. The list of recipients consists of the contributors, all with ROLE official in charge, all approvers, or all users of the departments set in the statement workflow-data.
+
+The email account used for the notification mechanism should be a no-reply or a support account and should not be the same as the one for the statement inbox email account to avoid troubling response email in the statement inbox.
+
+The email text is configurable and contains the statement id, title for a simple evaluation by the recipient and a link to the details view of the specific statement.
+
+The email itself is sent via a configured email account connected via SMTP and an encrypted SSL connection.
+
+=== Statement email inbox
+
+New statement processes can be initiated in two different ways. An official in charge can initiate a new statement that was received via mail manually or transfer a statement request from an email inbox semi-automatically into a new statement process.
+
+Email is a communication type that does not include a proper sender identification. There's currently no identification method planned to ensure that spam e-mails can be filtered out reliably. As a consequence, new statement requests cannot automatically be transferred into new statement processes and need to be semi-automatically transferred by a statement official in charge.
+
+The semi-automatic transfer is implemented as a separate view to initiate new statement processes. There is a list of current emails that have not been processed by another statement process member. To evaluate that a new email is a legitimate statement request, the content of the email such as the email text and the attachments should be accessible within that view. For security reasons, the email content will only be shown as plain text. HTML content will not be rendered. An email content typically consists of multiple parts including the email text as plain-text or HTML, a signature and attachment files. For the detail view in the INBOX, all content parts that are not attachments are concatenated and presented as plain-text. With that, the content can be read and security issues that can be caused by rendering HTML content can be prevented. When transferred, the content is added as an attachment to the new statement process.
+
+Via the email communication protocol IMAP, the statement module can manage incoming mails of the statement mailbox. With that access one can list all new e-mails and process them by deleting unwanted e-mails, flag e-mails as read or unread and structure them by moving e-mails in a folder like structure. To manage the incoming statement request e-mails the statement specific mailbox folders are structured as follows:
+
+[cols="30%,70%", options="header"]
+|===
+| Folder | Description
+| INBOX | Inbox folder where all new e-mails are delivered to
+| PROCESSED | Folder where e-mails are moved to when a new statement process is initiated based on that e-mail
+| OTHER | Folder where e-mails are moved to that a statement official in charge selected as spam or for deletion
+|===
+
+With that an administrator is still able to access the mailbox with an email client with a reduced risk of interfering with the mechanism of the statement module to distinguish between new and already processed statement requests. Other mechanisms like flagging an email as READ can be set by accident when an administrator browses through the email folders with an email client. In case a statement official in charge deleted a legitimate statement request by accident it can still be found by an administrator within the OTHER folder and moved back to the INBOX folder with any email client. There it will show up again as a new request in the statement module view.
+
+To ensure that no other will interfere with that mechanism, the email address used for the external statement process communication should only be used for that purpose.
+
+When a new statement process is initiated, the request email is linked to the statement by the unique email MessageId that is part of the email header (RFC/3051). With that, it is possible to identify the request email afterwards and access the email text and attachments again later in the statement process when for instance an email-attachment was forgotten to be transferred to the statement process. Attachments of an e-mail themselves can be uniquely identified by their content sequence number and the file name.
+
+=== Statement response dispatch
+
+After the successful statement process the positive or negative response can be either delivered via mail or e-mail. The response message consists of a response letter and optional attachments. In case of a response via e-mail, the response mail consists of a plain-text response with the response letter attached as a PDF document. Additionally attachments can be selected that are sent together with the response e-mail.
+The same e-mail address as the statement request inbox is used to deliver the response e-mail. Therefore the same e-mail address as the statement request inbox is used. In cases where the response cannot be delivered or no recipient e-mail address is available, the response letter PDF together with additional response attachments can be downloaded and sent via mail.
+
+=== Statement response PDF
+
+During the statement process all contributors help forming a statement response text that is compiled together into an official response letter. The persistence format of these contributions and the text compilation is specified in the concept section  <<Text block concept,Text block concept>>. The form of the response letter is a single- or multi-paged PDF document according to the size of the response text. For the generation of the PDF document a template based solution was chosen.
+
+==== PDF templates
+
+To generate a response letter in form of a PDF document the following procedure is used.
+
+The PDF documents are generated by using a letter paper template PDF and a definition of the position and size of text blocks that are placed on the letter paper. The content structure of a response letter is as follows:
+
+image::pdf-concept.svg[]
+
+As shown in the diagram above, the first page has a similar structure as a business letter. It contains of the three text blocks
+ address-block, infodata-block and content-block. The address-block shows the recipient address with values like company address and and recipient name that are part of the statement-info-data-set. The infodata-block contains predefined text as well as information from the statement-infodata-set.
+
+The text-block compilation that is created by the statement contributors is then printed as left-aligned text in the content-block. If the content exceeds the size of the content block of a page, an additional page that uses a different letter paper template and contains only a content-block is added. The letter ends with a predefined closing and a signature part.
+
+The template can be configured according to a specific letter format and consists of a two page PDF document and a configuration file with the text-block positions and text-block sizes. Page one of the template PDF is the first page. Page two is used for all following pages.
+
+Each text- block is referenced as follows:
+
+* type [address | info | content-p1 | content-p2]
+* top-left (x,y) position in cm (float) from the top-left document corner
+* width, height in cm (float)
+* text lines that can contain statement placeholders
+* fontsize
+
+The closing has special configuration including the salutation and up to two signature fields. The position is relative to the current text position.
+
+
+Configuration format:
+[source,json]
+----
+{
+  "address": {
+    "x": 10.2,
+    "y": 4.2,
+    "width": 5.3,
+    "height": 10.3,
+    "fontsize" : 10
+  },
+  "info": {
+    "x": 10.2,
+    "y": 4.2,
+    "width": 5.3,
+    "height": 10.3
+    "text": ["each", "line", "as", "separate", "entry"],
+    "fontsize" : 8
+  },
+  "content-p1": {
+    "x": 10.2,
+    "y": 4.2,
+    "width": 5.3,
+    "height": 10.3,
+    "fontsize" : 10
+  },
+  "content-p2": {
+    "x": 10.2,
+    "y": 4.2,
+    "width": 5.3,
+    "height": 10.3,
+    "fontsize" : 10
+  },
+  "closing": {
+    "salutation": ["Sincerely yours", "another line"],
+    "signatures": [
+      {
+    	    "xrel":2.1,
+    	    "yrel":3.2,
+    	    "width": 5.1
+    	    "label" : ["First Lastname", "Second line"]
+        "fontsize" : 10
+    	  }, ...
+    ]
+  }
+}
+----
+
+==== PDF response text
+
+The response content formulated during the statement process is stored as a set of text parts. For generating the response text a simple form of type-setting is used. Text that exceeds the configured with of a text-block is wrapped after the last token that fits the boundary. Text tokens are generated by cutting the text along the blanks. When a text part does not fit into the height of a content text-block a new page is generated and the whole text-block is then printed onto the new page.
+As described in the section <<Text formatting,Text formatting>> the response text can contain bold and italic text as well as bullet point lists.
+At the end, the response is closed with the configured closing.
+
diff --git a/src/main/asciidoc/arch/src/09_design_decisions.adoc b/src/main/asciidoc/arch/src/09_design_decisions.adoc
new file mode 100644
index 0000000..8f947f4
--- /dev/null
+++ b/src/main/asciidoc/arch/src/09_design_decisions.adoc
@@ -0,0 +1,7 @@
+[[section-design-decisions]]
+== Design Decisions
+
+All architecture decisions are based on the Architecture Committee Handbook. There are no deviations.
+
+
+
diff --git a/src/main/asciidoc/arch/src/10_quality_scenarios.adoc b/src/main/asciidoc/arch/src/10_quality_scenarios.adoc
new file mode 100644
index 0000000..5ae623e
--- /dev/null
+++ b/src/main/asciidoc/arch/src/10_quality_scenarios.adoc
@@ -0,0 +1,5 @@
+[[section-quality-scenarios]]
+== Quality Requirements
+
+All quality requirements decisions are based on the Qualitee Committee Handbook. There are no deviations.
+
diff --git a/src/main/asciidoc/arch/src/11_technical_risks.adoc b/src/main/asciidoc/arch/src/11_technical_risks.adoc
new file mode 100644
index 0000000..ef7182b
--- /dev/null
+++ b/src/main/asciidoc/arch/src/11_technical_risks.adoc
@@ -0,0 +1,6 @@
+[[section-technical-risks]]
+== Risks and Technical Debts
+There are currently no known issues.
+
+
+
diff --git a/src/main/asciidoc/arch/src/12_glossary.adoc b/src/main/asciidoc/arch/src/12_glossary.adoc
new file mode 100644
index 0000000..ead645c
--- /dev/null
+++ b/src/main/asciidoc/arch/src/12_glossary.adoc
@@ -0,0 +1,16 @@
+[[section-glossary]]
+== Glossary
+
+
+
+
+
+[options="header"]
+|===
+| Term | Long | German | Description
+|AC|Architecture Committee|Architektur-Komittee|Gives framework and constraints according to architecture for oK projects.
+|DSO|Distribution System Operator|Verteilnetzbetreiber (VNB)|Manages the distribution network for energy, gas or water.
+|EPL|Eclipse Public License||Underlying license model for Eclipse projects like statement-public-affairs@openK
+|QC|Quality Committee|Qualitätskomitee|Gives framework and constraints according to quality for oK projects.
+|SPA| Statement Public Affairs | Stellungnahmen öffentlicher Belange | 
+|===
diff --git a/src/main/asciidoc/arch/src/about-arc42.adoc b/src/main/asciidoc/arch/src/about-arc42.adoc
new file mode 100644
index 0000000..69f51bf
--- /dev/null
+++ b/src/main/asciidoc/arch/src/about-arc42.adoc
@@ -0,0 +1,20 @@
+:homepage: http://arc42.org
+
+:keywords: software-architecture, documentation, template, arc42
+
+:numbered!:
+**About arc42**
+
+[role="lead"]
+arc42, the Template for documentation of
+software and system architecture.
+
+By Dr. Gernot Starke, Dr. Peter Hruschka and contributors.
+
+
+Template Revision: 7.0 EN (based on asciidoc), January 2017
+
+(C)
+We acknowledge that this document uses material from the
+arc 42 architecture template, http://www.arc42.de.
+Created by Dr. Peter Hruschka & Dr. Gernot Starke.
diff --git a/src/main/asciidoc/arch/src/config.adoc b/src/main/asciidoc/arch/src/config.adoc
new file mode 100644
index 0000000..334d529
--- /dev/null
+++ b/src/main/asciidoc/arch/src/config.adoc
@@ -0,0 +1,9 @@
+// asciidoc settings for EN (English)
+// ==================================
+:toc-title: table of contents
+
+// enable table-of-contents
+:toc:
+
+// where are images located?
+:imagesdir: ./images
diff --git a/src/main/asciidoc/howto/howtoAlternateDatabase.adoc b/src/main/asciidoc/howto/howtoAlternateDatabase.adoc
new file mode 100644
index 0000000..decf1b9
--- /dev/null
+++ b/src/main/asciidoc/howto/howtoAlternateDatabase.adoc
@@ -0,0 +1,64 @@
+= openKonsequenz - Alternate back-end databases (i.e. Oracle) - Statement Public Affairs
+:Date: 2020-11-05
+:Revision: 0.1.0
+:icons:
+:source-highlighter: highlightjs
+:highlightjs-theme: solarized_dark
+:!toc:
+
+<<<
+
+== Alternate back-end database - HowTo
+
+The default database of the openKONSEQUENZ module Statement Public Affairs is the PostgreSQL database. To use other databases (i.e. Oracle), some adaptions have to be made to the build configuration and to the run configuration.
+
+TIP: It is recommended to read the howToBuild and howToRun documentation first.
+
+=== Build configuration
+
+The back-end of the Statement Public Affairs module is written in Java and connects to databases with the generic JDBC connector. For Oracle we need an additional dependency referenced in the pom.xml file.
+
+The configuration entry below is an example. Please verify that the license of the library suits your purpose.
+[source,xml]
+----
+<dependency>
+  <groupId>com.oracle.database.jdbc</groupId>
+  <artifactId>ojdbc8</artifactId>
+  <version>19.7.0.0</version>
+</dependency>
+----
+
+=== Run configuration
+
+The application.yml file that configures the module back-end has to be changed as follows.
+
+Alter or add the following parameters in the *application.yml*. Other parameters should not be deleted.
+[source, yml]
+----
+spring:
+  datasource:
+    url: "jdbc:oracle:thin:@192.168.56.43:1539/xe"
+    username: "C##SPA_SERVICE"
+    password: "spa_service"
+    driver-class-name: oracle.jdbc.OracleDriver
+----
+
+Change the parameters according to your database configuration.
+
+* The *url* parameter is of the format {jdbc_connection}@{host}:{port}/{oracle_sid}.
+* The *username* and *password* are the database credentials of the module back-end user.
+* The *driver-class-name* defines the connection driver.
+
+<<<
+=== Initial database configuration
+
+In the module back-end repository you find a */deploy/db* folder that contains database initialization sql scripts.
+
+Currently existing database initialization sql scripts:
+[options="header"]
+|===
+|File | Database
+|createDB.sql| PostgreSQL database
+|createDB-Oracle.sql| Oracle database
+|===
+
diff --git a/src/main/asciidoc/howto/howtoBuild.adoc b/src/main/asciidoc/howto/howtoBuild.adoc
new file mode 100644
index 0000000..ea7bc45
--- /dev/null
+++ b/src/main/asciidoc/howto/howtoBuild.adoc
@@ -0,0 +1,126 @@
+= openKonsequenz - How to build the module "Statement Public Affairs"
+:Date: 2020-06-09
+:Revision: 0.3.0
+:icons:
+:source-highlighter: highlightjs
+:highlightjs-theme: solarized_dark
+
+<<<
+
+== Requirements
+* Node.js 12.17.0
+* Apache Maven 3.6.3
+* Openjdk 1.8.0_252
+
+== Building the back end
+
+=== Environment
+
+Verify that your environment is set up correctly.
+
+The java version of the JDK should match 1.8.0
+
+[source,command]
+----
+    $ java -version
+----
+The JAVA_HOME environment variable should point to the jdk home folder.
+
+The maven version should match 3.6.8
+
+[source,command]
+----
+    $ mvn --version
+----
+
+=== Get back end sources
+
+Clone the back end sources with a git client.
+
+=== Configuration
+
+To include the configuration within the deployment artifact, the configuration file application.yml in src/main/resources can be replaced.
+You can find a detailed description of the available configuration parameters in the howToRun document.
+
+=== Build and test
+
+To build the back end move to the project base folder
+
+The following command builds a new artifact, runs unit tests to verify the implementation and stores the artifact and the test results within the target/ folder.
+
+Build war for Apache Tomcat:
+[source, command]
+----
+    $ mvn clean install
+----
+
+Build jar for stand alone Java Spring application:
+[source, command]
+----
+    $ mvn clean install -Dp.type=jar
+----
+
+To speed up the build you can skip testing.
+[source, command]
+----
+    $ mvn clean install -DskipTests
+----
+
+The target/ folder should then contain a web application archive named statement-public-affairs.war
+
+
+== Building the front end
+
+=== Environment
+
+Verify that your environment is set up correctly.
+
+The node version should match 12.17.x.
+
+[source, command]
+----
+    $ node --version
+----
+
+=== Get front end sources
+
+Clone the front end sources with a git client.
+
+
+=== Configuration
+
+All relevant configurations for the front end can be found in the file `app.config.json`. This file is required for
+compilation, thus changes to it take only effect after building the front end.
+Please visit the *howtoRun* documentation for more information on a detailed overview of the configurable parameters.
+
+=== Build and test
+
+To build the front end, move to the project base folder.
+
+The following command installs all dependencies via npm and is required before starting the build or any tests.
+
+[source, command]
+----
+    $ npm install
+----
+
+After successfully installing all dependencies, the following command builds new artifacts and stores them in the `dist/` folder.
+
+[source, command]
+----
+    $ npm run build
+    $ npm run build:archive
+----
+
+Tests and static code analysis can be executed with the following commands. The generated test report can then be found in the `coverage/` folder. Reports for the static code analysis can be found in the files `lint.ts.report.json` and `lint.styles.report.json` for all typescript and (s)css code. 
+
+[source, command]
+----
+    $ npm run test:report
+    $ npm run lint:report    
+----
+
+
+TIP: Next Step -> Read the *howToRun* documentation!
+
+
diff --git a/src/main/asciidoc/howto/howtoRun.adoc b/src/main/asciidoc/howto/howtoRun.adoc
new file mode 100644
index 0000000..bbd0e26
--- /dev/null
+++ b/src/main/asciidoc/howto/howtoRun.adoc
@@ -0,0 +1,650 @@
+= openKonsequenz - How to run the module "Statement Public Affairs"
+:Date: 2020-06-09
+:Revision: 0.3.0
+:icons:
+:source-highlighter: highlightjs
+:highlightjs-theme: solarized_dark
+
+<<<
+
+IMPORTANT: Please be sure that you have installed and configured the following openKonsequenz modules!
+
+* Portal (AuthNAuth)
+* Contact Base Data
+
+== Requirements
+* Browser (Chrome or Firefox)
+* For Linux based installation
+** `statemtent-public-affairsBE.war` file after a successfully maven build located in `<back-end project root>/target`.
+** `statemtent-public-affairsFE.war` file after a successfully npm build located in `<front-end project root>/dist`.
+
+* For Docker based installation
+** `statemtent-public-affairsBE.jar` file after a successfully maven build located in `<back-end project root>/target`.
+** already configured and successful npm build results located in `<front-end project root>/dist`.
+
+
+See *howToBuild* documentation.
+
+== Prerequisites
+* Configured Portal Available modules configuration - add statement module
+* Contact Base Data module
+* Configured AuthNAuth module
+
+== Configure Keycloak
+* AuthNAuth service users
+* AuthNAuth SPA_Roles
+
+Required Roles are:
+
+[%header,cols=3*]
+.User roles
+|===
+| Role | Assign to users | Description
+| ROLE_SPA_ACCESS | all service users | General service access
+| ROLE_SPA_OFFICIAL_IN_CHARGE | Official in charge users | Create and manage statements 
+| ROLE_SPA_APPROVER | approvers | Approve statement responses
+| ROLE_SPA_DIVISION_MEMBER | only division members | Enrich statement
+| ROLE_ADMIN | admin users | Access administrator interfaces
+|===
+
+== Installation overview
+The openK module Statement Public Affairs consists of a front end web application that communicates with a back end application via a RESTful interface. Both are independent of each other what allows different deployment options that should fit for common environments. Besides a properly configured authNAuth module and Contact Base Data module, the Statement Public Affairs module relies on a database for storing statement process data and a workflow engine that supports the statement specific workflow states and variables for the workflow gateway transition.
+Described below are two common installation types, the installation on a Linux based host environment as well as a docker based version.  
+
+== Linux based installation
+The Linux based installation that follows the original guidelines of most openK modules uses an Apache Tomcat that runs both, the front-end web application and the back-end web application of the statement module. For storing the statement process data, a PostgreSQL database is used. The statement workflow process is supported by a Camunda workflow engine. In this installation guide, all services are deployed on the same host. You can adapt this according to your own environment if necessary.
+
+=== Install and configure Apache Tomcat
+The back-end and front-end web applications are deployed on a Apache Tomcat application sever. To run the Apache Tomcat application server a Java runtime has to be installed first.
+For compatibility reasons with other modules, an openjdk-8 environment is required. This can be done via your application repository such as apt of the Linux distribution of your choice.
+
+To install the Apache Tomcat application server, just download the respective version and follow the general installation guides on the Apache documentation.
+https://archive.apache.org/dist/tomcat/tomcat-8/v8.5.24/bin/apache-tomcat-8.5.24.tar.gz
+
+Later, after successful configuration of the keycloak server, the Contact Base Data module, the statement database and the Camunda workflow engine, the statement module back-end and front-end web application can be deployed by copying the artifacts to the webapps folder of the extracted Apache Tomcat installation.
+
+=== Install and deploy the database
+All statement specific process data is is saved to in a relational database. Following already existing openK modules the PostgreSQL database was chosen as a default. 
+At the time of the module implementation, the PostgreSQL database in version 9.5 was used.
+
+First create a new user and database for the statement module (named spa_service in the example). The user and password should match the back-end module configuration.
+[source, command]
+----
+psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL
+	CREATE USER spa_service;
+	CREATE DATABASE spa_service;
+    ALTER USER spa_service with encrypted password 'service password';
+	GRANT ALL PRIVILEGES ON DATABASE spa_service TO spa_service;
+----
+
+Then initialize the database with the init script 'createDB.sql' that can be found in the back-end source deploy/db folder.
+
+The following database parameters are required for the statement module back-end configuration:
+
+* Database URI and port
+* Service username and password
+
+=== Install and configure the Camunda workflow engine
+The statement workflow process is supported by a Camunda workflow engine.
+At the time of the module implementation, the Camunda worklflow engine in version 7.8.0 was used.
+It can be downloaded from the following location:
+https://downloads.camunda.cloud/release/camunda-bpm/tomcat/7.8/camunda-bpm-tomcat-7.8.0.tar.gz
+
+To install the Camunda workflow engine, just download the respective version and follow the general installation guides in the Camunda documentation. In addition to that the authentication configuration has to be adapted to enable Basic-Auth for the engine REST interface.
+
+Therefore add the following lines to the webapps/engine-rest/WEB-INF/web.xml of your Camunda tomcat installation:
+[source, xml]
+----
+<filter>
+  <filter-name>camunda-auth</filter-name>
+  <filter-class>
+    org.camunda.bpm.engine.rest.security.auth.ProcessEngineAuthenticationFilter
+  </filter-class>
+  <init-param>
+    <param-name>authentication-provider</param-name>
+    <param-value>org.camunda.bpm.engine.rest.security.auth.impl.HttpBasicAuthenticationProvider</param-value>
+  </init-param>
+</filter>
+<filter-mapping>
+  <filter-name>camunda-auth</filter-name>
+  <url-pattern>/*</url-pattern>
+</filter-mapping>
+----
+
+Then finish the installation and create a new service admin and service user and a tenant with id "spa" via the Camunda web-interface. The service user requires access to Deployment, Tasks, Process Definition and Process Instance.
+
+The service user and password should match the back-end module configuration.
+
+Then use the service user with the Camunda modeler to upload the statmenent.bpmn workflow model to the Camunda instance.
+An alternate way to upload the statement.bpmn is via the following curl command:
+[source, command]
+----
+curl --user username:password http://localhost:8480/engine-rest/deployment/create -F "data=@Stellungnahme.bpmn" -F "deployment-source=process-application" -F "deployment-name=Stellungnahme" -F "tenant-id=spa" -v
+----
+
+
+The following workflow engine parameters are required for the statement module back-end configuration:
+
+* engine URI and port
+* service username and password
+* workflow identifier
+* tenantId
+
+=== Run the back-end
+To run the module back-end, just deploy the artifact with a proper configuration to the Apache Tomcat instance.
+For configuration details, please see section Configuration below.
+
+=== Run the front-end
+To run the module front-end, just deploy the artifact with a proper configuration to the Apache Tomcat instance.
+For configuration details, please see section Configuration below.
+
+== Docker based installation
+Based on the Docker container philosopy, the docker container structure of the statement module is splitted up into multiple docker containers. The module front-end is implemented as a nginx based container that provides the module webapp. The module back-end is implemented as a Java runtime environment based container that runs the back-end as a spring application.
+
+Please ensure that you have alreaady configured the front-end and that you have already build the front-end and back-end according to the howToBuild documentation. The front-end and back-end repositories contain buildDocker scripts that may help you with the build process by creating a closed build environment for reproducible builds.
+
+=== Front-end
+Building the front-end docker image requires already configured build artifacts.
+
+The front-end docker image can be build from the project root folder (contains the package.json file).
+
+=== Back-end
+Building the back-end docker image requires build artifacts with the package-format 'jar'.
+
+The back-end docker has the following folder structure:
+
+* /app
+* /app/bin
+* /app/config
+* /app/archive
+* /app/logs
+
+That folder structure can be found in the repository /docker/runenv folder.
+The config folder contains all configuration files. They are baked into the docker image. For security reasons it might make sense to mount the configuration files when starting the back-end docker container.
+
+To build the back-end docker image please see section 'Docker Compose - Blueprint'
+
+=== Dependency Services - Blueprint
+The back-end project /docker folder also contains docker recipes for dependencies. They can be used as a blueprint how to configure the dependency services in a production environment.
+
+The folder /docker/postgresenv contains a docker recipe to create a postgreSQL based database instance that is initialized properly for the statement module.
+
+The folder /docker/camundaenv contains a docker recipe to create a camunda workflow engine instance. It is automatically initialized with a statement module user, access rules and a deployed workflow by the start-scripts.
+
+The folder /docker/openkmain contains a nginx based docker recipe that can be used as a reverse proxy to be able to access all configured openKONSEQUENZ modules at one host (like in the QA-Environment).
+
+To run the other dependency openKONSEQUENZ services like the authNAuth module and the Contact Base Data module please see the module specific installation documentation.
+
+=== Docker Compose - Blueprint
+Docker compose is a tool to orchestrate multi-container Docker applications. There you can specify build options, run options and dependencies between configured docker containers.
+
+The root folder of the module back-end repository contains a docker-compose.yml configuration that can be used as a blueprint to manage a openKONSEQUENZ service environment.
+Please alter the configuration according to your environment.
+
+To build the docker containers specified in the configuration use the following command:
+[source, command]
+----
+$ docker-compose build
+----
+
+To start the docker containers specified in the configuration use the following command:
+[source, command]
+----
+$ docker-compose up
+----
+
+== Configuration
+
+=== Configuration of the Statement Public Affairs module back-end
+
+The back-end service is configured with the `application.yml` file.
+
+==== Configuration Settings
+The back end configuration is separated into multiple configuration files.
+
+The basic configuration values are located in the application.yml and are loaded when starting the back end service (see section Application YML).
+Some of the configuration parameters refer to specific configurations that are described in the sections below.
+
+===== Application YML
+The back-end service is configured with the application.yml file.
+
+* *spring*:
+** *datasource*: Section for the database connection
+*** url: jdbc:postgresql://serverdomain:port (default: 5432)/NameOfDatabase (Example: spa_service)
+*** username: spa_service
+*** password: <password of spa_service> see "Install and deploy the Database"
+
+
+* *application*:
+** name: \^project.artifactId^ extract name from the pom.xml at build time
+* *build*:
+** version: \^project.version^ extract version from pom.xml at build time
+
+* *server*:
+** port: 9156 port of the server when running as stand alone spring application
+
+* *jwt*:
+** tokenHeader: Authorization HTTP header key of the token
+** useStaticJwt: false (enable only for testing)
+** staticJwt: x (set static jwt token value when enabling useStaticJwt setting)
+
+* *services*: Define service specific config root section
+** *authNAuth*:
+*** name: authNAuthService
+** *camunda*:
+*** name: camundaService
+** *contactdatabase*:
+*** name: contactDatabaseService
+ 
+
+* *authNAuthService*: Section for the AuthNAuth service
+** *ribbon*: 
+*** listOfServers: http://localhost:8080 base URL of the AuthNAuth service
+    
+* *camundaService*: Section for the Camunda service
+** *ribbon*: 
+*** listOfServers: http://localhost:8280 base URL of the Camunda service
+
+* *contactDatabaseService*: Section for the contact database service
+** *ribbon*: 
+*** listOfServers: http://localhost:9155 base URL of the contact database service
+
+* *camunda*: User credentials for the service to authenticate against the Camunda service
+** user: spa_service
+** pw: password
+
+
+* *authnauth*: User credentials for the service to authenticate against the AuthNAuth service
+** technical-username: spa_service
+** technical-userpassword: password
+
+
+* *contactDatabase*: User credentials for the service to access the contact database
+** technical-username: spa_service
+** technical-userpassword: password
+
+
+* *workflow*: Workflow specific configuration parameters
+**  processDefinitionKey: statement_p key of the workflow process to use for the statement workflow
+**  tenantId: spa tenant Id, the workflow is assigned to
+
+* *feign*:
+** *client*:
+*** *config*:
+**** *default*:
+***** *connectTimeout*: (Default: 60000) Connection timeout for the REST-Calls (in ms).
+***** *readTimeout*: (Default: 60000) Read timeout for the REST-Calls (in ms).
+
+* *cors*:
+** *corsEnabled*: (Default: false) (true or false) Cross-Origin Resource Sharing on/off
+
+* *statement*:  
+** *compile*:
+*** dateFormatPattern: dd.MM.yyyy date format string in response texts (e.g. PDF response)
+*** statementFileName: Statement.pdf file name of a generated response PDF
+*** templatePdf: classpath:template.pdf path of the template.pdf file to user for generating the response PDF (see section Template PDF)
+*** templateJson: classpath:template.json path of the template.json file for generating the response PDF texts (see section Template JSON)
+** *authorization*:
+*** path: classpath:authorization.csv path of the authorization configuration containing the authorization rules (see section Authorization CSV)
+*** csv-delimiter: ; delimiter char of the authorization configuration CSV file entries
+
+* *archive*:
+** basefolder: /opt/statement/archive base folder path for the statement archive
+** statementArchiveFolderName: <t:finishedDate>_<t:id>_statement name of the statement archive folder <t:finishedDate> and <t:id> are place holder keys
+
+* *mail*:
+** *account*:
+*** *statement*:
+**** properties: /opt/statement/config/mail-statement.properties path of the mail properties file for the statement mail box (see section Mailbox Config properties)
+*** *notification*:
+**** properties: /opt/statement/config/mail-notification.properties path of the mail properties file for the notification mail box
+** newmailcheck: true check for new mails in statement inbox every minute and send notification mail to users with role SPA_STATEMENT_OIC
+** configurationPath: /opt/statement/config/mailConfig.json path of the mailConfig json configuration (see section MailConfig)
+
+===== Mailbox Config properties
+There are two required mail box properties files. Both are properties are described in the sections below.
+The configuration parameters have to be altered fit your mail server configuration.
+
+====== Mailbox Config properties - statement
+
+* mail.imap.host = imap.host.tld IMAP host address
+* mail.imap.user = username username of the mail account
+* mail.imap.password = password password of the mail account
+* mail.imap.port = 993 port of the IMAP server
+* mail.imap.auth = true enable authentication
+* mail.imap.socketFactory.class = javax.net.ssl.SSLSocketFactory set SSL connections
+
+
+* mail.smtp.host = smtp.host.tld SMTP host address
+* mail.smtp.auth = true enable authentication
+* mail.smtp.from = statements@company.tld email address of the sender
+* mail.smtp.port = 465 port
+* mail.smtp.socketFactory.port = 465
+* mail.smtp.socketFactory.class = javax.net.ssl.SSLSocketFactory
+* mail.smtp.socketFactory.fallback = false
+
+====== Mailbox Config properties - notification
+
+* mail.imap.user = username username of the mail account
+* mail.imap.password = password password of the mail account
+
+* mail.smtp.host = smtp.host.tld SMTP host address
+* mail.smtp.auth = true enable authentication
+* mail.smtp.from = statements@company.tld email address of the sender
+* mail.smtp.port = 465 port
+* mail.smtp.socketFactory.port = 465
+* mail.smtp.socketFactory.class = javax.net.ssl.SSLSocketFactory
+* mail.smtp.socketFactory.fallback = false
+
+===== Mail Config JSON
+The mail configuration specifies the response email content values. It contains an entry for each notification type and the response email. There one can set the email subject and text body values. Notifications that reference a statement can contain a placeholder value for the statement identifier to allow linking to the specific statement (e.g. via an URL containing the statement identifier).
+
+[source, json]
+----
+{
+	"notificationInboxNewMail": {
+		"subject": "[Statement] New statement request",
+		"body": "Notification email body\n\nStatement module: https://url-to-the-statement service\n",
+		"bccEmailAddresses": []
+	},
+	"notificationEnrichDraft": {
+		"subject": "[Statement] Division contributions required",
+		"body": "Notification email body can directly reference the statement with an <id> place holder value https://url../statementpaFE/details?id=<id>",
+		"bccEmailAddresses": []
+	},
+	"notificationApprovalRequired": {
+		"subject": "[Statement] Approval required",
+		"body": "Notification email body ...",
+		"bccEmailAddresses": []
+	},
+	"notificationNotApproved": {
+		"subject": "[Statement] Not approved, rework required",
+		"body": "Notification email body ...",
+		"bccEmailAddresses": []
+	},
+	"notificationApprovedAndNotSent": {
+		"subject": "[Statement] Approved, manual send required",
+		"body": "Notification email body ..."
+		"bccEmailAddresses": []
+	},
+	"notificationApprovedAndSent": {
+		"subject": "[Statement] Approved and sent",
+		"body": "Notification email body ..."
+		"bccEmailAddresses": []
+	},
+	"notificationAllMandatoryContributions": {
+		"subject": "[Statement] All mandatory departments contributed",
+		"body": "Notification email body ..."
+		"bccEmailAddresses": []
+	},
+	"statementResponse": {
+		"subject": "[Statement] Response for your request - our sign <t:id>",
+		"body": "Statement response email body ..."
+		"bccEmailAddresses": []
+	}
+	
+}
+----
+
+===== Template PDF
+
+To generate a response letter in form of a PDF document the following procedure is used.
+
+The PDF documents are generated by using a letter paper template PDF and a definition of the position and size of text blocks that are placed on the letter paper. The content structure of a response letter is as follows:
+
+image::pdf-concept.png[]
+
+As shown in the diagram above, the first page has a similar structure as a business letter. It contains of the three text blocks
+ address-block, infodata-block and content-block. The address-block shows the recipient address with values like company address and and recipient name that are part of the statement-info-data-set. The infodata-block contains predefined text as well as information from the statement-infodata-set.
+
+The text-block compilation that is created by the statement contributors is then printed as left-aligned text in the content-block. If the content exceeds the size of the content block of a page, an additional page that uses a different letter paper template and contains only a content-block is added. The letter ends with a predefined closing and a signature part.
+
+The template can be configured according to a specific letter format and consists of a two page PDF document and a configuration file with the text-block positions and text-block sizes. Page one of the template PDF is the first page. Page two is used for all following pages.
+
+===== Template JSON
+Each text- block is referenced as follows:
+
+* type [address | info | content-p1 | content-p2]
+* top-left (x,y) position in cm (float) from the top-left document corner
+* width, height in cm (float)
+* text lines that can contain statement placeholders
+* fontsize
+
+The closing has special configuration including the salutation and up to two signature fields. The position is relative to the current text position.
+
+Example configuration:
+[source, json]
+----
+{
+	"address": {
+		"x": 2.5,
+		"y": 5.8,
+		"width": 10,
+		"height": 5.0,
+		"fontSize": 10
+	},
+	"info": {
+		"x": 14.7,
+		"y": 5.3,
+		"width": 5.5,
+		"height": 5.0,
+		"fontSize": 6,
+		"text": ["Dornheimer Weg 24", "64293 Darmstadt", "Telefon  06151 701-xxxx", "Telefax  06151 701-xxxx", "vorname.nachname@e-netz-suedhessen.de", "Ihr Zeichen: <t:customerReference>", "Unser Zeichen: <t:id>", "", "" ,"Datum <t:b-currentDate>" ]
+	},
+	"contentP1": {
+		"x": 2.5,
+		"y": 11.4,
+		"width": 13.0,
+		"height": 14.0,
+		"fontSize": 10,
+		"text": ["Sehr geehrte(r) <t:c-salutation> <t:c-title> <t:c-firstName> <t:c-lastName>,\n\n vielen Dank für Ihre Anfrage.\n\n\n"]
+	},
+	"contentP2": {
+		"x": 2.5,
+		"y": 5.3,
+		"width": 13.0,
+		"height": 20.0,
+		"fontSize": 10
+	},
+	"closing": {
+		"salutation": [
+			"",
+			"",
+			"",
+			"Mit freundlichen Grüßen",
+			"Ihre e-netz Südhessen AG"
+		],
+		"signatures": [
+			{
+				"xoffset": 0,
+				"yoffset": 2,
+				"width": 5,
+				"lines": [
+					"Hans Huber",
+					"Geschäftsführer"
+				]
+			},
+			{
+				"xoffset": 7.8,
+				"yoffset": 2,
+				"width": 5,
+				"lines": [
+					"i.A. Sepp Meier",
+					"Netzbetrieb"
+				]
+			}
+			
+		]
+	}
+}
+----
+
+===== Authorization CSV
+The authorization configuration is specific to the statement workflow definition. In general it should not be altered.
+In case the statement workflow definition has changed and additional tasks are added, the configuration can be altered accordingly.
+
+Each line contains a single authorization rule. It consists of the four columns:
+
+* taskDefinitionKey
+* required ROLE
+* action
+* special constraint
+
+The default csv delimiter is ';'. It can be configured in the appliction.yml configuration (see section Application YML)
+
+Default configuration:
+[source, csv]
+----
+ANY; ROLE_SPA_OFFICIAL_IN_CHARGE; CREATE_STATEMENT; ANY
+ANY; ROLE_SPA_OFFICIAL_IN_CHARGE; MANIPULATE_ATTACHMENTS; ANY
+ANY; ROLE_SPA_OFFICIAL_IN_CHARGE; SEARCH_CONTACTS; ANY
+ANY; ROLE_SPA_OFFICIAL_IN_CHARGE; MOVE_MAIL; ANY
+ANY; ROLE_SPA_OFFICIAL_IN_CHARGE; FINISH_STATEMENT; ANY
+ANY; ROLE_SPA_APPROVER; FINISH_STATEMENT; ANY
+
+ANY; ROLE_SPA_ACCESS; READ_BASE_DATA; ANY
+ANY; ROLE_SPA_ACCESS; READ_STATEMENT; ANY
+ANY; ROLE_SPA_ACCESS; READ_MAIL; ANY
+ANY; ROLE_SPA_ACCESS; READ_WORKFLOW_TASK; ANY
+ANY; ROLE_SPA_ACCESS; UNCLAIM_TASK; ANY
+ANY; ROLE_SPA_ACCESS; CREATE_COMMENT; ANY
+ANY; ROLE_SPA_ACCESS; READ_STATEMENT_PROCESS_HISTORY; ANY
+ANY; ROLE_SPA_ACCESS; DELETE_COMMENT; IS_OWN_COMMENT
+ANY; ROLE_SPA_ACCESS; READ_DASHBOARD_STATEMENTS; ANY
+
+addBasicInfoData; ROLE_SPA_OFFICIAL_IN_CHARGE; READ_WORKFLOW_TASK; ANY
+addBasicInfoData; ROLE_SPA_OFFICIAL_IN_CHARGE; CLAIM_TASK; ANY
+addBasicInfoData; ROLE_SPA_OFFICIAL_IN_CHARGE; MANIPULATE_ATTACHMENTS; IS_CLAIMED_BY_USER
+addBasicInfoData; ROLE_SPA_OFFICIAL_IN_CHARGE; MANIPULATE_STATEMENT; IS_CLAIMED_BY_USER
+
+
+addWorkflowData; ROLE_SPA_OFFICIAL_IN_CHARGE; READ_WORKFLOW_TASK; ANY
+addWorkflowData; ROLE_SPA_OFFICIAL_IN_CHARGE; CLAIM_TASK; ANY
+addWorkflowData; ROLE_SPA_OFFICIAL_IN_CHARGE; SET_PARENT_STATEMENTS; ANY
+addWorkflowData; ROLE_SPA_OFFICIAL_IN_CHARGE; SET_REQ_DEPARTMENTS; ANY
+addWorkflowData; ROLE_SPA_OFFICIAL_IN_CHARGE; SET_WORKFLOW_DATA; ANY
+
+
+createDraft; ROLE_SPA_OFFICIAL_IN_CHARGE; READ_WORKFLOW_TASK; ANY
+createDraft; ROLE_SPA_OFFICIAL_IN_CHARGE; CLAIM_TASK; ANY
+createDraft; ROLE_SPA_OFFICIAL_IN_CHARGE; SET_TEXTARRANGEMENT; IS_CLAIMED_BY_USER
+createDraft; ROLE_SPA_OFFICIAL_IN_CHARGE; MANIPULATE_ATTACHMENTS; IS_CLAIMED_BY_USER
+createDraft; ROLE_SPA_OFFICIAL_IN_CHARGE; SET_DEPARTMENT_CONTRIBUTIONS; ANY
+
+
+enrichDraft; ROLE_SPA_DIVISION_MEMBER; READ_WORKFLOW_TASK; ANY
+enrichDraft; ROLE_SPA_DIVISION_MEMBER; CLAIM_TASK; IS_REQ_DIVISION_MEMBER
+enrichDraft; ROLE_SPA_DIVISION_MEMBER; SET_TEXTARRANGEMENT; IS_REQ_DIVISION_MEMBER
+enrichDraft; ROLE_SPA_DIVISION_MEMBER; MANIPULATE_ATTACHMENTS; IS_REQ_DIVISION_MEMBER
+enrichDraft; ROLE_SPA_DIVISION_MEMBER; MANIPULATE_ATTACHMENTS; IS_CLAIMED_BY_USER
+enrichDraft; ROLE_SPA_DIVISION_MEMBER; SET_USER_CONTRIBUTED; ANY
+
+enrichDraft; ROLE_SPA_OFFICIAL_IN_CHARGE; READ_WORKFLOW_TASK; ANY
+enrichDraft; ROLE_SPA_OFFICIAL_IN_CHARGE; CLAIM_TASK; ANY
+enrichDraft; ROLE_SPA_OFFICIAL_IN_CHARGE; SET_TEXTARRANGEMENT; IS_CLAIMED_BY_USER
+enrichDraft; ROLE_SPA_OFFICIAL_IN_CHARGE; MANIPULATE_ATTACHMENTS; ANY
+enrichDraft; ROLE_SPA_OFFICIAL_IN_CHARGE; MANIPULATE_ATTACHMENTS; IS_CLAIMED_BY_USER
+enrichDraft; ROLE_SPA_OFFICIAL_IN_CHARGE; SET_USER_CONTRIBUTED; ANY
+
+
+checkAndFormulateResponse; ROLE_SPA_OFFICIAL_IN_CHARGE; READ_WORKFLOW_TASK; ANY
+checkAndFormulateResponse; ROLE_SPA_OFFICIAL_IN_CHARGE; CLAIM_TASK; ANY
+checkAndFormulateResponse; ROLE_SPA_OFFICIAL_IN_CHARGE; SET_TEXTARRANGEMENT; IS_CLAIMED_BY_USER
+checkAndFormulateResponse; ROLE_SPA_OFFICIAL_IN_CHARGE; MANIPULATE_ATTACHMENTS; IS_CLAIMED_BY_USER
+checkAndFormulateResponse; ROLE_SPA_OFFICIAL_IN_CHARGE; REPLACE_STATEMENT_RESPONSE; IS_CLAIMED_BY_USER
+checkAndFormulateResponse; ROLE_SPA_OFFICIAL_IN_CHARGE; SET_DEPARTMENT_CONTRIBUTIONS; ANY
+
+createNegativeResponse; ROLE_SPA_OFFICIAL_IN_CHARGE; READ_WORKFLOW_TASK; ANY
+createNegativeResponse; ROLE_SPA_OFFICIAL_IN_CHARGE; CLAIM_TASK; ANY
+createNegativeResponse; ROLE_SPA_OFFICIAL_IN_CHARGE; SET_TEXTARRANGEMENT; IS_CLAIMED_BY_USER
+createNegativeResponse; ROLE_SPA_OFFICIAL_IN_CHARGE; MANIPULATE_ATTACHMENTS; IS_CLAIMED_BY_USER
+createNegativeResponse; ROLE_SPA_OFFICIAL_IN_CHARGE; REPLACE_STATEMENT_RESPONSE; IS_CLAIMED_BY_USER
+
+
+approveStatement; ROLE_SPA_APPROVER; CLAIM_TASK; ANY
+approveStatement; ROLE_SPA_APPROVER; READ_WORKFLOW_TASK; ANY
+
+sendStatement; ROLE_SPA_OFFICIAL_IN_CHARGE; READ_WORKFLOW_TASK; ANY
+sendStatement; ROLE_SPA_OFFICIAL_IN_CHARGE; CLAIM_TASK; ANY
+sendStatement; ROLE_SPA_OFFICIAL_IN_CHARGE; DISPATCH_STATEMENT_RESPONSE; IS_CLAIMED_BY_USER
+----
+
+=== Configuration of the Statement Public Affairs module front-end
+The front-end application requires a configured web server and a configuration file with certain
+properties for its general settings as described below.
+
+==== Web server
+The front-end web server requires a fall back configuration for all deep links to the application that returns
+its main index.html file.
+
+Configuration files for an Apache Tomcat server are already deployed to the `assets/WEB-INF` and `assets/META-INF`
+folders as build artefacts, but other server types may require a different configuration
+(see https://angular.io/guide/deployment#server-configuration[Angular docs] for more information).
+
+==== General settings
+The whole front-end application can be configured by certain properties in the `app.config.json` file in the source
+directory prior to building. Thus, all changes to this configuration file only take effect after (re-)building the
+front-end application.
+
+===== Routes
+* `routes.spaBackend`: Route on which the website's back-end is served
+* `routes.portal`: Route on which the main portal is served
+* `routes.contactDataBase`: Route on which the Contact Data Base front-end is served
+* `routes.userDocu`: Route on which the user documentation is served
+
+===== Leaflet
+* `leaflet.urlTemplate`: URL template to the map tile server required by https://leafletjs.com[Leaflet]
+* `leaflet.attribution`: Attribution which is added to all Leaflet map views
+* `leaflet.lat`/`leaflet.lng`/`leaflet.zoom`: Default coordinates and zoom level to which all leaflet maps are
+                                              initially configured
+
+===== Nominatim
+* `nominatim.url`: URL to a https://nominatim.org[Nominatim] geocoding service
+* `nominatim.searchQueryPrefix`: Prefix which is added automatically to every https://nominatim.org[Nominatim]
+                                 search query
+
+===== Geographic Information System (GIS)
+* `gis.urlTemplate`: URL template to a geographic information system (GIS)
+* `gis.projectionFrom`: Coordinate projection used by the configured tile server
+* `gis.projectionTo`: Coordinate projection used in the configured GIS
+
+The following key words are replaced in the given GIS URL template for each map view:
+
+* `{centerX}`, `{centerY}`: Center coordinates
+* `{northEastX}`, `{northEastY}`: North east boundary coordinates
+* `{northWestX}`, `{northWestY}`: North west boundary coordinates
+* `{southEastX}`, `{southEastY}`: South east boundary coordinates
+* `{southWestX}`, `{southWestY}`: South west boundary coordinates
+* `{user}`: User name
+
+All coordinates are transformed via a HTTP call to the back end before opening the GIS.
+Please visit https://trac.osgeo.org/proj4j/[Proj4j] for all available projections.
+
+===== Example configuration
+[source, json]
+----
+{
+  "gis": {
+    "urlTemplate": "http://localhost/gis?pCX={centerX}&pCY={centerY}&pOSUser={user}",
+    "projectionFrom": "EPSG:4326",
+    "projectionTo": "EPSG:25832"
+  },
+  "leaflet": {
+    "urlTemplate": "https://{s}.openk-tile-server.org/{z}/{x}/{y}.png",
+    "attribution": "&copy; <a href=\"https://www.openk-tile-server.org\">TileServer</a> contributors",
+    "lat": 49.87282103349044,
+    "lng": 8.651196956634523,
+    "zoom": 12
+  },
+  "nominatim": {
+    "url": "https://nominatim.openk.org",
+    "searchQueryPrefix": "Germany"
+  },
+  "routes": {
+    "spaBackend": "/statementpaBE",
+    "portal": "/portalFE",
+    "contactDataBase": "/contactdatabase",
+    "userDocu": "./assets/docu/userDocumentation.pdf"
+  }
+}
+----
diff --git a/src/main/asciidoc/images/SPA-ContainerDiagram.png b/src/main/asciidoc/images/SPA-ContainerDiagram.png
new file mode 100644
index 0000000..825f1f3
--- /dev/null
+++ b/src/main/asciidoc/images/SPA-ContainerDiagram.png
Binary files differ
diff --git a/src/main/asciidoc/images/Statement-workflow-portrait.svg b/src/main/asciidoc/images/Statement-workflow-portrait.svg
new file mode 100644
index 0000000..57d978b
--- /dev/null
+++ b/src/main/asciidoc/images/Statement-workflow-portrait.svg
@@ -0,0 +1,2585 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   inkscape:version="1.0 (4035a4f, 2020-05-01)"
+   sodipodi:docname="Statement-workflow-portrait.svg"
+   id="svg2769"
+   version="1.1"
+   viewBox="154 74 793.70079 1122.5197"
+   height="297mm"
+   width="210mm">
+  <metadata
+     id="metadata2773">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     units="mm"
+     showguides="false"
+     fit-margin-bottom="0"
+     fit-margin-right="0"
+     fit-margin-left="0"
+     fit-margin-top="0"
+     inkscape:current-layer="svg2769"
+     inkscape:window-maximized="0"
+     inkscape:window-y="23"
+     inkscape:window-x="0"
+     inkscape:cy="1059"
+     inkscape:cx="357.5"
+     inkscape:zoom="0.31583924"
+     showgrid="false"
+     id="namedview2771"
+     inkscape:window-height="1665"
+     inkscape:window-width="2919"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0"
+     guidetolerance="10"
+     gridtolerance="10"
+     objecttolerance="10"
+     borderopacity="1"
+     bordercolor="#666666"
+     pagecolor="#ffffff" />
+  <defs
+     id="defs1833">
+    <marker
+       orient="auto"
+       markerHeight="10"
+       markerWidth="10"
+       refY="10"
+       refX="11"
+       viewBox="0 0 20 20"
+       id="sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv">
+      <path
+         id="path1830"
+         style="fill:#000000;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-dasharray:10000, 1"
+         d="M 1,5 11,10 1,15 Z" />
+    </marker>
+  </defs>
+  <g
+     transform="matrix(0,-0.52911104,0.52911104,0,344.75607,1275.3466)"
+     id="g2767"
+     class="djs-group">
+    <g
+       id="g1851"
+       transform="translate(160,80)"
+       style="display:block"
+       data-element-id="Participant_0pmtbog"
+       class="djs-element djs-shape">
+      <g
+         id="g1843"
+         class="djs-visual">
+        <rect
+           id="rect1835"
+           style="fill:#ffffff;fill-opacity:0.95;stroke:#000000;stroke-width:2px"
+           ry="0"
+           rx="0"
+           height="700"
+           width="2103"
+           y="0"
+           x="0" />
+        <polyline
+           id="polyline1837"
+           style="fill:none;stroke:#000000;stroke-width:2px"
+           points="30,0 30,700 " />
+        <text
+           id="text1841"
+           transform="rotate(-90,350,350)"
+           style="font-weight:normal;font-size:12px;font-family:Arial, sans-serif;fill:#000000"
+           class="djs-label"
+           lineHeight="1.2"><tspan
+             id="tspan1839"
+             y="18.6"
+             x="309.96875">Stellungnahme</tspan></text>
+      </g>
+      <rect
+         id="rect1845"
+         style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+         height="700"
+         width="2103"
+         y="0"
+         x="0"
+         class="djs-hit djs-hit-click-stroke" />
+      <rect
+         id="rect1847"
+         style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+         height="700"
+         width="30"
+         y="0"
+         x="0"
+         class="djs-hit djs-hit-all" />
+      <rect
+         id="rect1849"
+         style="fill:none"
+         class="djs-outline"
+         height="712"
+         width="2115"
+         y="-6"
+         x="-6" />
+    </g>
+    <g
+       id="g2765"
+       class="djs-children">
+      <g
+         id="g1869"
+         class="djs-group">
+        <g
+           id="g1867"
+           transform="translate(190,600)"
+           style="display:block"
+           data-element-id="Lane_0spmnb6"
+           class="djs-element djs-shape">
+          <g
+             id="g1859"
+             class="djs-visual">
+            <rect
+               id="rect1853"
+               style="fill:#ffffff;fill-opacity:0.35;stroke:#000000;stroke-width:2px"
+               ry="0"
+               rx="0"
+               height="180"
+               width="2073"
+               y="0"
+               x="0" />
+            <text
+               id="text1857"
+               transform="rotate(-90,90,90)"
+               style="font-weight:normal;font-size:12px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan1855"
+                 y="18.6"
+                 x="56.898438">Genehmiger</tspan></text>
+          </g>
+          <rect
+             id="rect1861"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="180"
+             width="2073"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-click-stroke" />
+          <rect
+             id="rect1863"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="180"
+             width="30"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect1865"
+             style="fill:none"
+             class="djs-outline"
+             height="192"
+             width="2085"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g1887"
+         class="djs-group">
+        <g
+           id="g1885"
+           transform="translate(190,260)"
+           style="display:block"
+           data-element-id="Lane_0gjug73"
+           class="djs-element djs-shape">
+          <g
+             id="g1877"
+             class="djs-visual">
+            <rect
+               id="rect1871"
+               style="fill:#ffffff;fill-opacity:0.35;stroke:#000000;stroke-width:2px"
+               ry="0"
+               rx="0"
+               height="340"
+               width="2073"
+               y="0"
+               x="0" />
+            <text
+               id="text1875"
+               transform="rotate(-90,170,170)"
+               style="font-weight:normal;font-size:12px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan1873"
+                 y="18.6"
+                 x="129.21875">Sachbearbeiter</tspan></text>
+          </g>
+          <rect
+             id="rect1879"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="340"
+             width="2073"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-click-stroke" />
+          <rect
+             id="rect1881"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="340"
+             width="30"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect1883"
+             style="fill:none"
+             class="djs-outline"
+             height="352"
+             width="2085"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g1905"
+         class="djs-group">
+        <g
+           id="g1903"
+           transform="translate(190,80)"
+           style="display:block"
+           data-element-id="Lane_078yf14"
+           class="djs-element djs-shape">
+          <g
+             id="g1895"
+             class="djs-visual">
+            <rect
+               id="rect1889"
+               style="fill:#ffffff;fill-opacity:0.35;stroke:#000000;stroke-width:2px"
+               ry="0"
+               rx="0"
+               height="180"
+               width="2073"
+               y="0"
+               x="0" />
+            <text
+               id="text1893"
+               transform="rotate(-90,90,90)"
+               style="font-weight:normal;font-size:12px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan1891"
+                 y="18.6"
+                 x="60.984375">FB und SB</tspan></text>
+          </g>
+          <rect
+             id="rect1897"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="180"
+             width="2073"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-click-stroke" />
+          <rect
+             id="rect1899"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="180"
+             width="30"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect1901"
+             style="fill:none"
+             class="djs-outline"
+             height="192"
+             width="2085"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g1917"
+         class="djs-group">
+        <g
+           id="g1915"
+           style="display:block"
+           data-element-id="Flow_1myajze"
+           class="djs-element djs-connection">
+          <g
+             id="g1909"
+             class="djs-visual">
+            <path
+               id="path1907"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="m 2164,500 h 38" />
+          </g>
+          <polyline
+             id="polyline1911"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="2164,500 2202,500 " />
+          <rect
+             id="rect1913"
+             style="fill:none"
+             class="djs-outline"
+             height="12"
+             width="50"
+             y="494"
+             x="2158" />
+        </g>
+      </g>
+      <g
+         id="g1929"
+         class="djs-group">
+        <g
+           id="g1927"
+           style="display:block"
+           data-element-id="Flow_0gg09id"
+           class="djs-element djs-connection">
+          <g
+             id="g1921"
+             class="djs-visual">
+            <path
+               id="path1919"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="m 1988,500 h 126" />
+          </g>
+          <polyline
+             id="polyline1923"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="1988,500 2114,500 " />
+          <rect
+             id="rect1925"
+             style="fill:none"
+             class="djs-outline"
+             height="12"
+             width="138"
+             y="494"
+             x="1982" />
+        </g>
+      </g>
+      <g
+         id="g1941"
+         class="djs-group">
+        <g
+           id="g1939"
+           style="display:block"
+           data-element-id="Flow_0twsltu"
+           class="djs-element djs-connection">
+          <g
+             id="g1933"
+             class="djs-visual">
+            <path
+               id="path1931"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="M 1963,475 V 360 h 37" />
+          </g>
+          <polyline
+             id="polyline1935"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="1963,475 1963,360 2000,360 " />
+          <rect
+             id="rect1937"
+             style="fill:none"
+             class="djs-outline"
+             height="127"
+             width="49"
+             y="354"
+             x="1957" />
+        </g>
+      </g>
+      <g
+         id="g1953"
+         class="djs-group">
+        <g
+           id="g1951"
+           style="display:block"
+           data-element-id="Flow_19wy667"
+           class="djs-element djs-connection">
+          <g
+             id="g1945"
+             class="djs-visual">
+            <path
+               id="path1943"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="m 740,530 h 948" />
+          </g>
+          <polyline
+             id="polyline1947"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="740,530 1688,530 " />
+          <rect
+             id="rect1949"
+             style="fill:none"
+             class="djs-outline"
+             height="12"
+             width="960"
+             y="524"
+             x="734" />
+        </g>
+      </g>
+      <g
+         id="g1965"
+         class="djs-group">
+        <g
+           id="g1963"
+           style="display:block"
+           data-element-id="Flow_0ehvm4u"
+           class="djs-element djs-connection">
+          <g
+             id="g1957"
+             class="djs-visual">
+            <path
+               id="path1955"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="m 1713,555 v 115 h 80" />
+          </g>
+          <polyline
+             id="polyline1959"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="1713,555 1713,670 1793,670 " />
+          <rect
+             id="rect1961"
+             style="fill:none"
+             class="djs-outline"
+             height="127"
+             width="92"
+             y="549"
+             x="1707" />
+        </g>
+      </g>
+      <g
+         id="g1977"
+         class="djs-group">
+        <g
+           id="g1975"
+           style="display:block"
+           data-element-id="Flow_0x0a063"
+           class="djs-element djs-connection">
+          <g
+             id="g1969"
+             class="djs-visual">
+            <path
+               id="path1967"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="m 1738,530 h 32 V 290 H 443 v 90" />
+          </g>
+          <polyline
+             id="polyline1971"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="1738,530 1770,530 1770,290 443,290 443,380 " />
+          <rect
+             id="rect1973"
+             style="fill:none"
+             class="djs-outline"
+             height="252"
+             width="1339"
+             y="284"
+             x="437" />
+        </g>
+      </g>
+      <g
+         id="g1989"
+         class="djs-group">
+        <g
+           id="g1987"
+           style="display:block"
+           data-element-id="Flow_0cot0xy"
+           class="djs-element djs-connection">
+          <g
+             id="g1981"
+             class="djs-visual">
+            <path
+               id="path1979"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="m 1575,405 h 138 v 100" />
+          </g>
+          <polyline
+             id="polyline1983"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="1575,405 1713,405 1713,505 " />
+          <rect
+             id="rect1985"
+             style="fill:none"
+             class="djs-outline"
+             height="112"
+             width="150"
+             y="399"
+             x="1569" />
+        </g>
+      </g>
+      <g
+         id="g2001"
+         class="djs-group">
+        <g
+           id="g1999"
+           style="display:block"
+           data-element-id="Flow_017kj0u"
+           class="djs-element djs-connection">
+          <g
+             id="g1993"
+             class="djs-visual">
+            <path
+               id="path1991"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="m 690,430 v 60" />
+          </g>
+          <polyline
+             id="polyline1995"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="690,430 690,490 " />
+          <rect
+             id="rect1997"
+             style="fill:none"
+             class="djs-outline"
+             height="72"
+             width="12"
+             y="424"
+             x="684" />
+        </g>
+      </g>
+      <g
+         id="g2013"
+         class="djs-group">
+        <g
+           id="g2011"
+           style="display:block"
+           data-element-id="Flow_0nwawsv"
+           class="djs-element djs-connection">
+          <g
+             id="g2005"
+             class="djs-visual">
+            <path
+               id="path2003"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="M 715,405 H 853" />
+          </g>
+          <polyline
+             id="polyline2007"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="715,405 853,405 " />
+          <rect
+             id="rect2009"
+             style="fill:none"
+             class="djs-outline"
+             height="12"
+             width="150"
+             y="399"
+             x="709" />
+        </g>
+      </g>
+      <g
+         id="g2025"
+         class="djs-group">
+        <g
+           id="g2023"
+           style="display:block"
+           data-element-id="Flow_1uni785"
+           class="djs-element djs-connection">
+          <g
+             id="g2017"
+             class="djs-visual">
+            <path
+               id="path2015"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="m 328,405 h 90" />
+          </g>
+          <polyline
+             id="polyline2019"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="328,405 418,405 " />
+          <rect
+             id="rect2021"
+             style="fill:none"
+             class="djs-outline"
+             height="12"
+             width="102"
+             y="399"
+             x="322" />
+        </g>
+      </g>
+      <g
+         id="g2037"
+         class="djs-group">
+        <g
+           id="g2035"
+           style="display:block"
+           data-element-id="Flow_167ttld"
+           class="djs-element djs-connection">
+          <g
+             id="g2029"
+             class="djs-visual">
+            <path
+               id="path2027"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="m 600,405 h 65" />
+          </g>
+          <polyline
+             id="polyline2031"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="600,405 665,405 " />
+          <rect
+             id="rect2033"
+             style="fill:none"
+             class="djs-outline"
+             height="12"
+             width="77"
+             y="399"
+             x="594" />
+        </g>
+      </g>
+      <g
+         id="g2049"
+         class="djs-group">
+        <g
+           id="g2047"
+           style="display:block"
+           data-element-id="Flow_1hqe1j8"
+           class="djs-element djs-connection">
+          <g
+             id="g2041"
+             class="djs-visual">
+            <path
+               id="path2039"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="m 953,405 h 97" />
+          </g>
+          <polyline
+             id="polyline2043"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="953,405 1050,405 " />
+          <rect
+             id="rect2045"
+             style="fill:none"
+             class="djs-outline"
+             height="12"
+             width="109"
+             y="399"
+             x="947" />
+        </g>
+      </g>
+      <g
+         id="g2061"
+         class="djs-group">
+        <g
+           id="g2059"
+           style="display:block"
+           data-element-id="Flow_0rrgglo"
+           class="djs-element djs-connection">
+          <g
+             id="g2053"
+             class="djs-visual">
+            <path
+               id="path2051"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="m 1150,405 h 115" />
+          </g>
+          <polyline
+             id="polyline2055"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="1150,405 1265,405 " />
+          <rect
+             id="rect2057"
+             style="fill:none"
+             class="djs-outline"
+             height="12"
+             width="127"
+             y="399"
+             x="1144" />
+        </g>
+      </g>
+      <g
+         id="g2073"
+         class="djs-group">
+        <g
+           id="g2071"
+           style="display:block"
+           data-element-id="Flow_0r3c12h"
+           class="djs-element djs-connection">
+          <g
+             id="g2065"
+             class="djs-visual">
+            <path
+               id="path2063"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="M 1400,200 V 365" />
+          </g>
+          <polyline
+             id="polyline2067"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="1400,200 1400,365 " />
+          <rect
+             id="rect2069"
+             style="fill:none"
+             class="djs-outline"
+             height="177"
+             width="12"
+             y="194"
+             x="1394" />
+        </g>
+      </g>
+      <g
+         id="g2085"
+         class="djs-group">
+        <g
+           id="g2083"
+           style="display:block"
+           data-element-id="Flow_1tmr5qp"
+           class="djs-element djs-connection">
+          <g
+             id="g2077"
+             class="djs-visual">
+            <path
+               id="path2075"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="m 1450,405 h 75" />
+          </g>
+          <polyline
+             id="polyline2079"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="1450,405 1525,405 " />
+          <rect
+             id="rect2081"
+             style="fill:none"
+             class="djs-outline"
+             height="12"
+             width="87"
+             y="399"
+             x="1444" />
+        </g>
+      </g>
+      <g
+         id="g2097"
+         class="djs-group">
+        <g
+           id="g2095"
+           style="display:block"
+           data-element-id="Flow_10zb14i"
+           class="djs-element djs-connection">
+          <g
+             id="g2089"
+             class="djs-visual">
+            <path
+               id="path2087"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="m 1550,430 v 70 h -260 v -70" />
+          </g>
+          <polyline
+             id="polyline2091"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="1550,430 1550,500 1290,500 1290,430 " />
+          <rect
+             id="rect2093"
+             style="fill:none"
+             class="djs-outline"
+             height="82"
+             width="272"
+             y="424"
+             x="1284" />
+        </g>
+      </g>
+      <g
+         id="g2109"
+         class="djs-group">
+        <g
+           id="g2107"
+           style="display:block"
+           data-element-id="Flow_12c0wj3"
+           class="djs-element djs-connection">
+          <g
+             id="g2101"
+             class="djs-visual">
+            <path
+               id="path2099"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="m 1893,670 h 45" />
+          </g>
+          <polyline
+             id="polyline2103"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="1893,670 1938,670 " />
+          <rect
+             id="rect2105"
+             style="fill:none"
+             class="djs-outline"
+             height="12"
+             width="57"
+             y="664"
+             x="1887" />
+        </g>
+      </g>
+      <g
+         id="g2121"
+         class="djs-group">
+        <g
+           id="g2119"
+           style="display:block"
+           data-element-id="Flow_00qgmxu"
+           class="djs-element djs-connection">
+          <g
+             id="g2113"
+             class="djs-visual">
+            <path
+               id="path2111"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="M 1963,645 V 525" />
+          </g>
+          <polyline
+             id="polyline2115"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="1963,645 1963,525 " />
+          <rect
+             id="rect2117"
+             style="fill:none"
+             class="djs-outline"
+             height="132"
+             width="12"
+             y="519"
+             x="1957" />
+        </g>
+      </g>
+      <g
+         id="g2133"
+         class="djs-group">
+        <g
+           id="g2131"
+           style="display:block"
+           data-element-id="Flow_1k89j3h"
+           class="djs-element djs-connection">
+          <g
+             id="g2125"
+             class="djs-visual">
+            <path
+               id="path2123"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="m 1963,695 v 45 H 443 V 430" />
+          </g>
+          <polyline
+             id="polyline2127"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="1963,695 1963,740 443,740 443,430 " />
+          <rect
+             id="rect2129"
+             style="fill:none"
+             class="djs-outline"
+             height="322"
+             width="1532"
+             y="424"
+             x="437" />
+        </g>
+      </g>
+      <g
+         id="g2145"
+         class="djs-group">
+        <g
+           id="g2143"
+           style="display:block"
+           data-element-id="Flow_0279yx1"
+           class="djs-element djs-connection">
+          <g
+             id="g2137"
+             class="djs-visual">
+            <path
+               id="path2135"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="m 2100,360 h 39 v 115" />
+          </g>
+          <polyline
+             id="polyline2139"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="2100,360 2139,360 2139,475 " />
+          <rect
+             id="rect2141"
+             style="fill:none"
+             class="djs-outline"
+             height="127"
+             width="51"
+             y="354"
+             x="2094" />
+        </g>
+      </g>
+      <g
+         id="g2157"
+         class="djs-group">
+        <g
+           id="g2155"
+           style="display:block"
+           data-element-id="Flow_0oigd8l"
+           class="djs-element djs-connection">
+          <g
+             id="g2149"
+             class="djs-visual">
+            <path
+               id="path2147"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="m 468,405 h 32" />
+          </g>
+          <polyline
+             id="polyline2151"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="468,405 500,405 " />
+          <rect
+             id="rect2153"
+             style="fill:none"
+             class="djs-outline"
+             height="12"
+             width="44"
+             y="399"
+             x="462" />
+        </g>
+      </g>
+      <g
+         id="g2169"
+         class="djs-group">
+        <g
+           id="g2167"
+           style="display:block"
+           data-element-id="Flow_0nt1wtg"
+           class="djs-element djs-connection">
+          <g
+             id="g2161"
+             class="djs-visual">
+            <path
+               id="path2159"
+               style="fill:none;stroke:#000000;stroke-width:2px;stroke-linejoin:round;marker-end:url(#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv)"
+               d="M 1290,380 V 160 h 60" />
+          </g>
+          <polyline
+             id="polyline2163"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             class="djs-hit djs-hit-stroke"
+             points="1290,380 1290,160 1350,160 " />
+          <rect
+             id="rect2165"
+             style="fill:none"
+             class="djs-outline"
+             height="232"
+             width="72"
+             y="154"
+             x="1284" />
+        </g>
+      </g>
+      <g
+         id="g2183"
+         class="djs-group">
+        <g
+           id="g2181"
+           transform="translate(665,380)"
+           style="display:block"
+           data-element-id="Gateway_1qr83rr"
+           class="djs-element djs-shape">
+          <g
+             id="g2175"
+             class="djs-visual">
+            <polygon
+               id="polygon2171"
+               style="fill:#ffffff;fill-opacity:0.95;stroke:#000000;stroke-width:2px"
+               points="25,0 50,25 25,50 0,25 " />
+            <path
+               id="path2173"
+               style="fill:#000000;stroke:#000000;stroke-width:1px"
+               d="M 16,15 23.428571,24.714286 16,34.428571 h 3.428571 l 5.714286,-7.464228 5.714286,7.464228 h 3.428571 L 26.857143,24.714286 34.285714,15 H 30.857143 L 25.142857,22.464229 19.428571,15 Z" />
+          </g>
+          <rect
+             id="rect2177"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="50"
+             width="50"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2179"
+             style="fill:none"
+             class="djs-outline"
+             height="62"
+             width="62"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2197"
+         class="djs-group">
+        <g
+           id="g2195"
+           transform="translate(663,350)"
+           style="display:block"
+           data-element-id="Gateway_1qr83rr_label"
+           class="djs-element djs-shape">
+          <g
+             id="g2189"
+             class="djs-visual">
+            <text
+               id="text2187"
+               style="font-weight:normal;font-size:11px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2185"
+                 y="9.8999996"
+                 x="0">Zuständig?</tspan></text>
+          </g>
+          <rect
+             id="rect2191"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="14"
+             width="55"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2193"
+             style="fill:none"
+             class="djs-outline"
+             height="26"
+             width="67"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2225"
+         class="djs-group">
+        <g
+           id="g2223"
+           transform="translate(500,365)"
+           style="display:block"
+           data-element-id="addBasicInfoData"
+           class="djs-element djs-shape">
+          <g
+             id="g2217"
+             class="djs-visual">
+            <rect
+               id="rect2199"
+               style="fill:#ffffff;fill-opacity:0.95;stroke:#000000;stroke-width:2px"
+               ry="10"
+               rx="10"
+               height="80"
+               width="100"
+               y="0"
+               x="0" />
+            <text
+               id="text2209"
+               style="font-weight:normal;font-size:12px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2201"
+                 y="22"
+                 x="24.3125">Ergänzen</tspan><tspan
+                 id="tspan2203"
+                 y="36.400002"
+                 x="13.96875">Infodatensatz</tspan><tspan
+                 id="tspan2205"
+                 y="50.799999"
+                 x="5.296875">und Entscheiden</tspan><tspan
+                 id="tspan2207"
+                 y="65.199997"
+                 x="14.3125">Zuständigkeit</tspan></text>
+            <path
+               id="path2211"
+               style="fill:#ffffff;stroke:#000000;stroke-width:0.5px"
+               d="m 15,12 c 0.909,-0.845 1.594,-2.049 1.594,-3.385 0,-2.554 -1.805,-4.622 -4.357,-4.622 -2.552,0 -4.288,2.068 -4.288,4.622 0,1.348 0.974,2.562 1.896,3.405 -0.529,0.187 -5.669,2.097 -5.794,4.756 v 6.718 h 17 V 16.776 C 21.051,14.478 15.523,12.181 15,12 Z m -8,6 v 5.5 m 11,0 v -5" />
+            <path
+               id="path2213"
+               style="fill:#ffffff;stroke:#000000;stroke-width:0.5px"
+               d="m 15,12 m 2.162,1.009 c 0,2.447001 -2.158,4.431 -4.821,4.431 -2.665,0 -4.822,-1.980999 -4.822,-4.431" />
+            <path
+               id="path2215"
+               style="fill:#000000;stroke:#000000;stroke-width:0.5px"
+               d="M 15,12 M 8.1,8.2 c 0,0 2.251,-2.358 4.274,-1.177 2.024,1.181 4.221,1.537 4.124,0.965 C 16.4,7.418 16.381,4.197 12.307,3.852 8.732,3.853 8.099,7.219 8.1,8.2 Z" />
+          </g>
+          <rect
+             id="rect2219"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="80"
+             width="100"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2221"
+             style="fill:none"
+             class="djs-outline"
+             height="92"
+             width="112"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2239"
+         class="djs-group">
+        <g
+           id="g2237"
+           transform="translate(418,380)"
+           style="display:block"
+           data-element-id="Gateway_0i8uj9a"
+           class="djs-element djs-shape">
+          <g
+             id="g2231"
+             class="djs-visual">
+            <polygon
+               id="polygon2227"
+               style="fill:#ffffff;fill-opacity:0.95;stroke:#000000;stroke-width:2px"
+               points="25,0 50,25 25,50 0,25 " />
+            <path
+               id="path2229"
+               style="fill:#000000;stroke:#000000;stroke-width:1px"
+               d="M 16,15 23.428571,24.714286 16,34.428571 h 3.428571 l 5.714286,-7.464228 5.714286,7.464228 h 3.428571 L 26.857143,24.714286 34.285714,15 H 30.857143 L 25.142857,22.464229 19.428571,15 Z" />
+          </g>
+          <rect
+             id="rect2233"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="50"
+             width="50"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2235"
+             style="fill:none"
+             class="djs-outline"
+             height="62"
+             width="62"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2269"
+         class="djs-group">
+        <g
+           id="g2267"
+           transform="translate(853,365)"
+           style="display:block"
+           data-element-id="addWorkflowData"
+           class="djs-element djs-shape">
+          <g
+             id="g2261"
+             class="djs-visual">
+            <rect
+               id="rect2241"
+               style="fill:#ffffff;fill-opacity:0.95;stroke:#000000;stroke-width:2px"
+               ry="10"
+               rx="10"
+               height="80"
+               width="100"
+               y="0"
+               x="0" />
+            <text
+               id="text2253"
+               style="font-weight:normal;font-size:12px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2243"
+                 y="14.8"
+                 x="8.90625">Aufbereiten der</tspan><tspan
+                 id="tspan2245"
+                 y="29.200001"
+                 x="22.304688">Daten und</tspan><tspan
+                 id="tspan2247"
+                 y="43.599998"
+                 x="15.3125">Erstellen des</tspan><tspan
+                 id="tspan2249"
+                 y="58"
+                 x="7.421875">Workflowdatens</tspan><tspan
+                 id="tspan2251"
+                 y="72.400002"
+                 x="41.992188">atz</tspan></text>
+            <path
+               id="path2255"
+               style="fill:#ffffff;stroke:#000000;stroke-width:0.5px"
+               d="m 15,12 c 0.909,-0.845 1.594,-2.049 1.594,-3.385 0,-2.554 -1.805,-4.622 -4.357,-4.622 -2.552,0 -4.288,2.068 -4.288,4.622 0,1.348 0.974,2.562 1.896,3.405 -0.529,0.187 -5.669,2.097 -5.794,4.756 v 6.718 h 17 V 16.776 C 21.051,14.478 15.523,12.181 15,12 Z m -8,6 v 5.5 m 11,0 v -5" />
+            <path
+               id="path2257"
+               style="fill:#ffffff;stroke:#000000;stroke-width:0.5px"
+               d="m 15,12 m 2.162,1.009 c 0,2.447001 -2.158,4.431 -4.821,4.431 -2.665,0 -4.822,-1.980999 -4.822,-4.431" />
+            <path
+               id="path2259"
+               style="fill:#000000;stroke:#000000;stroke-width:0.5px"
+               d="M 15,12 M 8.1,8.2 c 0,0 2.251,-2.358 4.274,-1.177 2.024,1.181 4.221,1.537 4.124,0.965 C 16.4,7.418 16.381,4.197 12.307,3.852 8.732,3.853 8.099,7.219 8.1,8.2 Z" />
+          </g>
+          <rect
+             id="rect2263"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="80"
+             width="100"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2265"
+             style="fill:none"
+             class="djs-outline"
+             height="92"
+             width="112"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2281"
+         class="djs-group">
+        <g
+           id="g2279"
+           transform="translate(292,387)"
+           style="display:block"
+           data-element-id="s_anlegen_manuell"
+           class="djs-element djs-shape">
+          <g
+             id="g2273"
+             class="djs-visual">
+            <circle
+               id="circle2271"
+               style="fill:#ffffff;fill-opacity:0.95;stroke:#000000;stroke-width:2px"
+               r="18"
+               cy="18"
+               cx="18" />
+          </g>
+          <rect
+             id="rect2275"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="36"
+             width="36"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2277"
+             style="fill:none"
+             class="djs-outline"
+             height="48"
+             width="48"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2297"
+         class="djs-group">
+        <g
+           id="g2295"
+           transform="translate(273,430)"
+           style="display:block"
+           data-element-id="s_anlegen_manuell_label"
+           class="djs-element djs-shape">
+          <g
+             id="g2289"
+             class="djs-visual">
+            <text
+               id="text2287"
+               style="font-weight:normal;font-size:11px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2283"
+                 y="9.8999996"
+                 x="23.546875">Neue</tspan><tspan
+                 id="tspan2285"
+                 y="23.1"
+                 x="0">Stellungnahme</tspan></text>
+          </g>
+          <rect
+             id="rect2291"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="27"
+             width="74"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2293"
+             style="fill:none"
+             class="djs-outline"
+             height="39"
+             width="86"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2323"
+         class="djs-group">
+        <g
+           id="g2321"
+           transform="translate(1050,365)"
+           style="display:block"
+           data-element-id="createDraft"
+           class="djs-element djs-shape">
+          <g
+             id="g2315"
+             class="djs-visual">
+            <rect
+               id="rect2299"
+               style="fill:#ffffff;fill-opacity:0.95;stroke:#000000;stroke-width:2px"
+               ry="10"
+               rx="10"
+               height="80"
+               width="100"
+               y="0"
+               x="0" />
+            <text
+               id="text2307"
+               style="font-weight:normal;font-size:12px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2301"
+                 y="29.200001"
+                 x="26.65625">Erstellen</tspan><tspan
+                 id="tspan2303"
+                 y="43.599998"
+                 x="29.445312">Entwurf</tspan><tspan
+                 id="tspan2305"
+                 y="58"
+                 x="9.96875">Stellungnahme</tspan></text>
+            <path
+               id="path2309"
+               style="fill:#ffffff;stroke:#000000;stroke-width:0.5px"
+               d="m 15,12 c 0.909,-0.845 1.594,-2.049 1.594,-3.385 0,-2.554 -1.805,-4.622 -4.357,-4.622 -2.552,0 -4.288,2.068 -4.288,4.622 0,1.348 0.974,2.562 1.896,3.405 -0.529,0.187 -5.669,2.097 -5.794,4.756 v 6.718 h 17 V 16.776 C 21.051,14.478 15.523,12.181 15,12 Z m -8,6 v 5.5 m 11,0 v -5" />
+            <path
+               id="path2311"
+               style="fill:#ffffff;stroke:#000000;stroke-width:0.5px"
+               d="m 15,12 m 2.162,1.009 c 0,2.447001 -2.158,4.431 -4.821,4.431 -2.665,0 -4.822,-1.980999 -4.822,-4.431" />
+            <path
+               id="path2313"
+               style="fill:#000000;stroke:#000000;stroke-width:0.5px"
+               d="M 15,12 M 8.1,8.2 c 0,0 2.251,-2.358 4.274,-1.177 2.024,1.181 4.221,1.537 4.124,0.965 C 16.4,7.418 16.381,4.197 12.307,3.852 8.732,3.853 8.099,7.219 8.1,8.2 Z" />
+          </g>
+          <rect
+             id="rect2317"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="80"
+             width="100"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2319"
+             style="fill:none"
+             class="djs-outline"
+             height="92"
+             width="112"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2349"
+         class="djs-group">
+        <g
+           id="g2347"
+           transform="translate(1793,630)"
+           style="display:block"
+           data-element-id="approveStatement"
+           class="djs-element djs-shape">
+          <g
+             id="g2341"
+             class="djs-visual">
+            <rect
+               id="rect2325"
+               style="fill:#ffffff;fill-opacity:0.95;stroke:#000000;stroke-width:2px"
+               ry="10"
+               rx="10"
+               height="80"
+               width="100"
+               y="0"
+               x="0" />
+            <text
+               id="text2333"
+               style="font-weight:normal;font-size:12px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2327"
+                 y="29.200001"
+                 x="20.640625">Prüfen und</tspan><tspan
+                 id="tspan2329"
+                 y="43.599998"
+                 x="5.21875">Genehmigen der</tspan><tspan
+                 id="tspan2331"
+                 y="58"
+                 x="29.671875">Antwort</tspan></text>
+            <path
+               id="path2335"
+               style="fill:#ffffff;stroke:#000000;stroke-width:0.5px"
+               d="m 15,12 c 0.909,-0.845 1.594,-2.049 1.594,-3.385 0,-2.554 -1.805,-4.622 -4.357,-4.622 -2.552,0 -4.288,2.068 -4.288,4.622 0,1.348 0.974,2.562 1.896,3.405 -0.529,0.187 -5.669,2.097 -5.794,4.756 v 6.718 h 17 V 16.776 C 21.051,14.478 15.523,12.181 15,12 Z m -8,6 v 5.5 m 11,0 v -5" />
+            <path
+               id="path2337"
+               style="fill:#ffffff;stroke:#000000;stroke-width:0.5px"
+               d="m 15,12 m 2.162,1.009 c 0,2.447001 -2.158,4.431 -4.821,4.431 -2.665,0 -4.822,-1.980999 -4.822,-4.431" />
+            <path
+               id="path2339"
+               style="fill:#000000;stroke:#000000;stroke-width:0.5px"
+               d="M 15,12 M 8.1,8.2 c 0,0 2.251,-2.358 4.274,-1.177 2.024,1.181 4.221,1.537 4.124,0.965 C 16.4,7.418 16.381,4.197 12.307,3.852 8.732,3.853 8.099,7.219 8.1,8.2 Z" />
+          </g>
+          <rect
+             id="rect2343"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="80"
+             width="100"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2345"
+             style="fill:none"
+             class="djs-outline"
+             height="92"
+             width="112"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2363"
+         class="djs-group">
+        <g
+           id="g2361"
+           transform="translate(1938,645)"
+           style="display:block"
+           data-element-id="Gateway_0t8k8x7"
+           class="djs-element djs-shape">
+          <g
+             id="g2355"
+             class="djs-visual">
+            <polygon
+               id="polygon2351"
+               style="fill:#ffffff;fill-opacity:0.95;stroke:#000000;stroke-width:2px"
+               points="25,0 50,25 25,50 0,25 " />
+            <path
+               id="path2353"
+               style="fill:#000000;stroke:#000000;stroke-width:1px"
+               d="M 16,15 23.428571,24.714286 16,34.428571 h 3.428571 l 5.714286,-7.464228 5.714286,7.464228 h 3.428571 L 26.857143,24.714286 34.285714,15 H 30.857143 L 25.142857,22.464229 19.428571,15 Z" />
+          </g>
+          <rect
+             id="rect2357"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="50"
+             width="50"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2359"
+             style="fill:none"
+             class="djs-outline"
+             height="62"
+             width="62"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2377"
+         class="djs-group">
+        <g
+           id="g2375"
+           transform="translate(1998,663)"
+           style="display:block"
+           data-element-id="Gateway_0t8k8x7_label"
+           class="djs-element djs-shape">
+          <g
+             id="g2369"
+             class="djs-visual">
+            <text
+               id="text2367"
+               style="font-weight:normal;font-size:11px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2365"
+                 y="9.8999996"
+                 x="0">Genehmigung?</tspan></text>
+          </g>
+          <rect
+             id="rect2371"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="14"
+             width="76"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2373"
+             style="fill:none"
+             class="djs-outline"
+             height="26"
+             width="88"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2391"
+         class="djs-group">
+        <g
+           id="g2389"
+           transform="translate(1265,380)"
+           style="display:block"
+           data-element-id="Gateway_1vm0oko"
+           class="djs-element djs-shape">
+          <g
+             id="g2383"
+             class="djs-visual">
+            <polygon
+               id="polygon2379"
+               style="fill:#ffffff;fill-opacity:0.95;stroke:#000000;stroke-width:2px"
+               points="25,0 50,25 25,50 0,25 " />
+            <path
+               id="path2381"
+               style="fill:#000000;stroke:#000000;stroke-width:1px"
+               d="M 16,15 23.428571,24.714286 16,34.428571 h 3.428571 l 5.714286,-7.464228 5.714286,7.464228 h 3.428571 L 26.857143,24.714286 34.285714,15 H 30.857143 L 25.142857,22.464229 19.428571,15 Z" />
+          </g>
+          <rect
+             id="rect2385"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="50"
+             width="50"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2387"
+             style="fill:none"
+             class="djs-outline"
+             height="62"
+             width="62"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2417"
+         class="djs-group">
+        <g
+           id="g2415"
+           transform="translate(1350,120)"
+           style="display:block"
+           data-element-id="enrichDraft"
+           class="djs-element djs-shape">
+          <g
+             id="g2409"
+             class="djs-visual">
+            <rect
+               id="rect2393"
+               style="fill:#ffffff;fill-opacity:0.95;stroke:#000000;stroke-width:2px"
+               ry="10"
+               rx="10"
+               height="80"
+               width="100"
+               y="0"
+               x="0" />
+            <text
+               id="text2401"
+               style="font-weight:normal;font-size:12px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2395"
+                 y="29.200001"
+                 x="21">Anreichern</tspan><tspan
+                 id="tspan2397"
+                 y="43.599998"
+                 x="25.3125">durch die</tspan><tspan
+                 id="tspan2399"
+                 y="58"
+                 x="13.640625">Fachbereiche</tspan></text>
+            <path
+               id="path2403"
+               style="fill:#ffffff;stroke:#000000;stroke-width:0.5px"
+               d="m 15,12 c 0.909,-0.845 1.594,-2.049 1.594,-3.385 0,-2.554 -1.805,-4.622 -4.357,-4.622 -2.552,0 -4.288,2.068 -4.288,4.622 0,1.348 0.974,2.562 1.896,3.405 -0.529,0.187 -5.669,2.097 -5.794,4.756 v 6.718 h 17 V 16.776 C 21.051,14.478 15.523,12.181 15,12 Z m -8,6 v 5.5 m 11,0 v -5" />
+            <path
+               id="path2405"
+               style="fill:#ffffff;stroke:#000000;stroke-width:0.5px"
+               d="m 15,12 m 2.162,1.009 c 0,2.447001 -2.158,4.431 -4.821,4.431 -2.665,0 -4.822,-1.980999 -4.822,-4.431" />
+            <path
+               id="path2407"
+               style="fill:#000000;stroke:#000000;stroke-width:0.5px"
+               d="M 15,12 M 8.1,8.2 c 0,0 2.251,-2.358 4.274,-1.177 2.024,1.181 4.221,1.537 4.124,0.965 C 16.4,7.418 16.381,4.197 12.307,3.852 8.732,3.853 8.099,7.219 8.1,8.2 Z" />
+          </g>
+          <rect
+             id="rect2411"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="80"
+             width="100"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2413"
+             style="fill:none"
+             class="djs-outline"
+             height="92"
+             width="112"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2443"
+         class="djs-group">
+        <g
+           id="g2441"
+           transform="translate(1350,365)"
+           style="display:block"
+           data-element-id="checkAndFormulateResponse"
+           class="djs-element djs-shape">
+          <g
+             id="g2435"
+             class="djs-visual">
+            <rect
+               id="rect2419"
+               style="fill:#ffffff;fill-opacity:0.95;stroke:#000000;stroke-width:2px"
+               ry="10"
+               rx="10"
+               height="80"
+               width="100"
+               y="0"
+               x="0" />
+            <text
+               id="text2427"
+               style="font-weight:normal;font-size:12px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2421"
+                 y="29.200001"
+                 x="20.640625">Prüfen und</tspan><tspan
+                 id="tspan2423"
+                 y="43.599998"
+                 x="12.890625">Verfassen der</tspan><tspan
+                 id="tspan2425"
+                 y="58"
+                 x="29.671875">Antwort</tspan></text>
+            <path
+               id="path2429"
+               style="fill:#ffffff;stroke:#000000;stroke-width:0.5px"
+               d="m 15,12 c 0.909,-0.845 1.594,-2.049 1.594,-3.385 0,-2.554 -1.805,-4.622 -4.357,-4.622 -2.552,0 -4.288,2.068 -4.288,4.622 0,1.348 0.974,2.562 1.896,3.405 -0.529,0.187 -5.669,2.097 -5.794,4.756 v 6.718 h 17 V 16.776 C 21.051,14.478 15.523,12.181 15,12 Z m -8,6 v 5.5 m 11,0 v -5" />
+            <path
+               id="path2431"
+               style="fill:#ffffff;stroke:#000000;stroke-width:0.5px"
+               d="m 15,12 m 2.162,1.009 c 0,2.447001 -2.158,4.431 -4.821,4.431 -2.665,0 -4.822,-1.980999 -4.822,-4.431" />
+            <path
+               id="path2433"
+               style="fill:#000000;stroke:#000000;stroke-width:0.5px"
+               d="M 15,12 M 8.1,8.2 c 0,0 2.251,-2.358 4.274,-1.177 2.024,1.181 4.221,1.537 4.124,0.965 C 16.4,7.418 16.381,4.197 12.307,3.852 8.732,3.853 8.099,7.219 8.1,8.2 Z" />
+          </g>
+          <rect
+             id="rect2437"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="80"
+             width="100"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2439"
+             style="fill:none"
+             class="djs-outline"
+             height="92"
+             width="112"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2457"
+         class="djs-group">
+        <g
+           id="g2455"
+           transform="translate(1525,380)"
+           style="display:block"
+           data-element-id="Gateway_1doisb4"
+           class="djs-element djs-shape">
+          <g
+             id="g2449"
+             class="djs-visual">
+            <polygon
+               id="polygon2445"
+               style="fill:#ffffff;fill-opacity:0.95;stroke:#000000;stroke-width:2px"
+               points="25,0 50,25 25,50 0,25 " />
+            <path
+               id="path2447"
+               style="fill:#000000;stroke:#000000;stroke-width:1px"
+               d="M 16,15 23.428571,24.714286 16,34.428571 h 3.428571 l 5.714286,-7.464228 5.714286,7.464228 h 3.428571 L 26.857143,24.714286 34.285714,15 H 30.857143 L 25.142857,22.464229 19.428571,15 Z" />
+          </g>
+          <rect
+             id="rect2451"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="50"
+             width="50"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2453"
+             style="fill:none"
+             class="djs-outline"
+             height="62"
+             width="62"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2473"
+         class="djs-group">
+        <g
+           id="g2471"
+           transform="translate(1505,343)"
+           style="display:block"
+           data-element-id="Gateway_1doisb4_label"
+           class="djs-element djs-shape">
+          <g
+             id="g2465"
+             class="djs-visual">
+            <text
+               id="text2463"
+               style="font-weight:normal;font-size:11px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2459"
+                 y="9.8999996"
+                 x="0">Fachbereichsanwt</tspan><tspan
+                 id="tspan2461"
+                 y="23.1"
+                 x="1.5234375">orten vollständig?</tspan></text>
+          </g>
+          <rect
+             id="rect2467"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="27"
+             width="90"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2469"
+             style="fill:none"
+             class="djs-outline"
+             height="39"
+             width="102"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2487"
+         class="djs-group">
+        <g
+           id="g2485"
+           transform="translate(1938,475)"
+           style="display:block"
+           data-element-id="Gateway_1moejbp"
+           class="djs-element djs-shape">
+          <g
+             id="g2479"
+             class="djs-visual">
+            <polygon
+               id="polygon2475"
+               style="fill:#ffffff;fill-opacity:0.95;stroke:#000000;stroke-width:2px"
+               points="25,0 50,25 25,50 0,25 " />
+            <path
+               id="path2477"
+               style="fill:#000000;stroke:#000000;stroke-width:1px"
+               d="M 16,15 23.428571,24.714286 16,34.428571 h 3.428571 l 5.714286,-7.464228 5.714286,7.464228 h 3.428571 L 26.857143,24.714286 34.285714,15 H 30.857143 L 25.142857,22.464229 19.428571,15 Z" />
+          </g>
+          <rect
+             id="rect2481"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="50"
+             width="50"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2483"
+             style="fill:none"
+             class="djs-outline"
+             height="62"
+             width="62"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2503"
+         class="djs-group">
+        <g
+           id="g2501"
+           transform="translate(1869,495)"
+           style="display:block"
+           data-element-id="Gateway_1moejbp_label"
+           class="djs-element djs-shape">
+          <g
+             id="g2495"
+             class="djs-visual">
+            <text
+               id="text2493"
+               style="font-weight:normal;font-size:11px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2489"
+                 y="9.8999996"
+                 x="0">Automatisch</tspan><tspan
+                 id="tspan2491"
+                 y="23.1"
+                 x="4.5546875">gesendet?</tspan></text>
+          </g>
+          <rect
+             id="rect2497"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="27"
+             width="61"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2499"
+             style="fill:none"
+             class="djs-outline"
+             height="39"
+             width="73"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2517"
+         class="djs-group">
+        <g
+           id="g2515"
+           transform="translate(2114,475)"
+           style="display:block"
+           data-element-id="Gateway_162pjk3"
+           class="djs-element djs-shape">
+          <g
+             id="g2509"
+             class="djs-visual">
+            <polygon
+               id="polygon2505"
+               style="fill:#ffffff;fill-opacity:0.95;stroke:#000000;stroke-width:2px"
+               points="25,0 50,25 25,50 0,25 " />
+            <path
+               id="path2507"
+               style="fill:#000000;stroke:#000000;stroke-width:1px"
+               d="M 16,15 23.428571,24.714286 16,34.428571 h 3.428571 l 5.714286,-7.464228 5.714286,7.464228 h 3.428571 L 26.857143,24.714286 34.285714,15 H 30.857143 L 25.142857,22.464229 19.428571,15 Z" />
+          </g>
+          <rect
+             id="rect2511"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="50"
+             width="50"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2513"
+             style="fill:none"
+             class="djs-outline"
+             height="62"
+             width="62"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2529"
+         class="djs-group">
+        <g
+           id="g2527"
+           transform="translate(2202,482)"
+           style="display:block"
+           data-element-id="e_erfolgreicher_abschluss"
+           class="djs-element djs-shape">
+          <g
+             id="g2521"
+             class="djs-visual">
+            <circle
+               id="circle2519"
+               style="fill:#ffffff;fill-opacity:0.95;stroke:#000000;stroke-width:4px"
+               r="18"
+               cy="18"
+               cx="18" />
+          </g>
+          <rect
+             id="rect2523"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="36"
+             width="36"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2525"
+             style="fill:none"
+             class="djs-outline"
+             height="48"
+             width="48"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2545"
+         class="djs-group">
+        <g
+           id="g2543"
+           transform="translate(2185,525)"
+           style="display:block"
+           data-element-id="e_erfolgreicher_abschluss_label"
+           class="djs-element djs-shape">
+          <g
+             id="g2537"
+             class="djs-visual">
+            <text
+               id="text2535"
+               style="font-weight:normal;font-size:11px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2531"
+                 y="9.8999996"
+                 x="23.84375">Ende</tspan><tspan
+                 id="tspan2533"
+                 y="23.1"
+                 x="0">Stellungnahme</tspan></text>
+          </g>
+          <rect
+             id="rect2539"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="27"
+             width="74"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2541"
+             style="fill:none"
+             class="djs-outline"
+             height="39"
+             width="86"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2569"
+         class="djs-group">
+        <g
+           id="g2567"
+           transform="translate(2000,320)"
+           style="display:block"
+           data-element-id="sendStatement"
+           class="djs-element djs-shape">
+          <g
+             id="g2561"
+             class="djs-visual">
+            <rect
+               id="rect2547"
+               style="fill:#ffffff;fill-opacity:0.95;stroke:#000000;stroke-width:2px"
+               ry="10"
+               rx="10"
+               height="80"
+               width="100"
+               y="0"
+               x="0" />
+            <text
+               id="text2553"
+               style="font-weight:normal;font-size:12px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2549"
+                 y="36.400002"
+                 x="10.882812">Versenden der</tspan><tspan
+                 id="tspan2551"
+                 y="50.799999"
+                 x="29.671875">Antwort</tspan></text>
+            <path
+               id="path2555"
+               style="fill:#ffffff;stroke:#000000;stroke-width:0.5px"
+               d="m 15,12 c 0.909,-0.845 1.594,-2.049 1.594,-3.385 0,-2.554 -1.805,-4.622 -4.357,-4.622 -2.552,0 -4.288,2.068 -4.288,4.622 0,1.348 0.974,2.562 1.896,3.405 -0.529,0.187 -5.669,2.097 -5.794,4.756 v 6.718 h 17 V 16.776 C 21.051,14.478 15.523,12.181 15,12 Z m -8,6 v 5.5 m 11,0 v -5" />
+            <path
+               id="path2557"
+               style="fill:#ffffff;stroke:#000000;stroke-width:0.5px"
+               d="m 15,12 m 2.162,1.009 c 0,2.447001 -2.158,4.431 -4.821,4.431 -2.665,0 -4.822,-1.980999 -4.822,-4.431" />
+            <path
+               id="path2559"
+               style="fill:#000000;stroke:#000000;stroke-width:0.5px"
+               d="M 15,12 M 8.1,8.2 c 0,0 2.251,-2.358 4.274,-1.177 2.024,1.181 4.221,1.537 4.124,0.965 C 16.4,7.418 16.381,4.197 12.307,3.852 8.732,3.853 8.099,7.219 8.1,8.2 Z" />
+          </g>
+          <rect
+             id="rect2563"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="80"
+             width="100"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2565"
+             style="fill:none"
+             class="djs-outline"
+             height="92"
+             width="112"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2583"
+         class="djs-group">
+        <g
+           id="g2581"
+           transform="translate(1688,505)"
+           style="display:block"
+           data-element-id="Gateway_0lxzryr"
+           class="djs-element djs-shape">
+          <g
+             id="g2575"
+             class="djs-visual">
+            <polygon
+               id="polygon2571"
+               style="fill:#ffffff;fill-opacity:0.95;stroke:#000000;stroke-width:2px"
+               points="25,0 50,25 25,50 0,25 " />
+            <path
+               id="path2573"
+               style="fill:#000000;stroke:#000000;stroke-width:1px"
+               d="M 16,15 23.428571,24.714286 16,34.428571 h 3.428571 l 5.714286,-7.464228 5.714286,7.464228 h 3.428571 L 26.857143,24.714286 34.285714,15 H 30.857143 L 25.142857,22.464229 19.428571,15 Z" />
+          </g>
+          <rect
+             id="rect2577"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="50"
+             width="50"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2579"
+             style="fill:none"
+             class="djs-outline"
+             height="62"
+             width="62"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2599"
+         class="djs-group">
+        <g
+           id="g2597"
+           transform="translate(1627,486)"
+           style="display:block"
+           data-element-id="Gateway_0lxzryr_label"
+           class="djs-element djs-shape">
+          <g
+             id="g2591"
+             class="djs-visual">
+            <text
+               id="text2589"
+               style="font-weight:normal;font-size:11px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2585"
+                 y="9.8999996"
+                 x="14.085938">Antwort</tspan><tspan
+                 id="tspan2587"
+                 y="23.1"
+                 x="0">fertiggestellt?</tspan></text>
+          </g>
+          <rect
+             id="rect2593"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="27"
+             width="66"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2595"
+             style="fill:none"
+             class="djs-outline"
+             height="39"
+             width="78"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2623"
+         class="djs-group">
+        <g
+           id="g2621"
+           transform="translate(640,490)"
+           style="display:block"
+           data-element-id="createNegativeResponse"
+           class="djs-element djs-shape">
+          <g
+             id="g2615"
+             class="djs-visual">
+            <rect
+               id="rect2601"
+               style="fill:#ffffff;fill-opacity:0.95;stroke:#000000;stroke-width:2px"
+               ry="10"
+               rx="10"
+               height="80"
+               width="100"
+               y="0"
+               x="0" />
+            <text
+               id="text2607"
+               style="font-weight:normal;font-size:12px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2603"
+                 y="36.400002"
+                 x="12.890625">Verfassen der</tspan><tspan
+                 id="tspan2605"
+                 y="50.799999"
+                 x="9.9765625">Negativantwort</tspan></text>
+            <path
+               id="path2609"
+               style="fill:#ffffff;stroke:#000000;stroke-width:0.5px"
+               d="m 15,12 c 0.909,-0.845 1.594,-2.049 1.594,-3.385 0,-2.554 -1.805,-4.622 -4.357,-4.622 -2.552,0 -4.288,2.068 -4.288,4.622 0,1.348 0.974,2.562 1.896,3.405 -0.529,0.187 -5.669,2.097 -5.794,4.756 v 6.718 h 17 V 16.776 C 21.051,14.478 15.523,12.181 15,12 Z m -8,6 v 5.5 m 11,0 v -5" />
+            <path
+               id="path2611"
+               style="fill:#ffffff;stroke:#000000;stroke-width:0.5px"
+               d="m 15,12 m 2.162,1.009 c 0,2.447001 -2.158,4.431 -4.821,4.431 -2.665,0 -4.822,-1.980999 -4.822,-4.431" />
+            <path
+               id="path2613"
+               style="fill:#000000;stroke:#000000;stroke-width:0.5px"
+               d="M 15,12 M 8.1,8.2 c 0,0 2.251,-2.358 4.274,-1.177 2.024,1.181 4.221,1.537 4.124,0.965 C 16.4,7.418 16.381,4.197 12.307,3.852 8.732,3.853 8.099,7.219 8.1,8.2 Z" />
+          </g>
+          <rect
+             id="rect2617"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="80"
+             width="100"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2619"
+             style="fill:none"
+             class="djs-outline"
+             height="92"
+             width="112"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2637"
+         class="djs-group">
+        <g
+           id="g2635"
+           transform="translate(1974,723)"
+           style="display:block"
+           data-element-id="Flow_1k89j3h_label"
+           class="djs-element djs-shape">
+          <g
+             id="g2629"
+             class="djs-visual">
+            <text
+               id="text2627"
+               style="font-weight:normal;font-size:11px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2625"
+                 y="9.8999996"
+                 x="0">nicht genehmigt</tspan></text>
+          </g>
+          <rect
+             id="rect2631"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="14"
+             width="78"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2633"
+             style="fill:none"
+             class="djs-outline"
+             height="26"
+             width="90"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2651"
+         class="djs-group">
+        <g
+           id="g2649"
+           transform="translate(1970,557)"
+           style="display:block"
+           data-element-id="Flow_00qgmxu_label"
+           class="djs-element djs-shape">
+          <g
+             id="g2643"
+             class="djs-visual">
+            <text
+               id="text2641"
+               style="font-weight:normal;font-size:11px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2639"
+                 y="9.8999996"
+                 x="0">genehmigt</tspan></text>
+          </g>
+          <rect
+             id="rect2645"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="14"
+             width="52"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2647"
+             style="fill:none"
+             class="djs-outline"
+             height="26"
+             width="64"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2665"
+         class="djs-group">
+        <g
+           id="g2663"
+           transform="translate(1462,483)"
+           style="display:block"
+           data-element-id="Flow_10zb14i_label"
+           class="djs-element djs-shape">
+          <g
+             id="g2657"
+             class="djs-visual">
+            <text
+               id="text2655"
+               style="font-weight:normal;font-size:11px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2653"
+                 y="9.8999996"
+                 x="0">nicht vollständig</tspan></text>
+          </g>
+          <rect
+             id="rect2659"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="14"
+             width="79"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2661"
+             style="fill:none"
+             class="djs-outline"
+             height="26"
+             width="91"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2679"
+         class="djs-group">
+        <g
+           id="g2677"
+           transform="translate(723,387)"
+           style="display:block"
+           data-element-id="Flow_0nwawsv_label"
+           class="djs-element djs-shape">
+          <g
+             id="g2671"
+             class="djs-visual">
+            <text
+               id="text2669"
+               style="font-weight:normal;font-size:11px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2667"
+                 y="9.8999996"
+                 x="0">zuständig</tspan></text>
+          </g>
+          <rect
+             id="rect2673"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="14"
+             width="48"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2675"
+             style="fill:none"
+             class="djs-outline"
+             height="26"
+             width="60"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2693"
+         class="djs-group">
+        <g
+           id="g2691"
+           transform="translate(706,447)"
+           style="display:block"
+           data-element-id="Flow_017kj0u_label"
+           class="djs-element djs-shape">
+          <g
+             id="g2685"
+             class="djs-visual">
+            <text
+               id="text2683"
+               style="font-weight:normal;font-size:11px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2681"
+                 y="9.8999996"
+                 x="0">nicht zuständig</tspan></text>
+          </g>
+          <rect
+             id="rect2687"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="14"
+             width="74"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2689"
+             style="fill:none"
+             class="djs-outline"
+             height="26"
+             width="86"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2707"
+         class="djs-group">
+        <g
+           id="g2705"
+           transform="translate(1619,387)"
+           style="display:block"
+           data-element-id="Flow_0cot0xy_label"
+           class="djs-element djs-shape">
+          <g
+             id="g2699"
+             class="djs-visual">
+            <text
+               id="text2697"
+               style="font-weight:normal;font-size:11px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2695"
+                 y="9.8999996"
+                 x="0">vollständig</tspan></text>
+          </g>
+          <rect
+             id="rect2701"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="14"
+             width="52"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2703"
+             style="fill:none"
+             class="djs-outline"
+             height="26"
+             width="64"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2721"
+         class="djs-group">
+        <g
+           id="g2719"
+           transform="translate(1682,273)"
+           style="display:block"
+           data-element-id="Flow_0x0a063_label"
+           class="djs-element djs-shape">
+          <g
+             id="g2713"
+             class="djs-visual">
+            <text
+               id="text2711"
+               style="font-weight:normal;font-size:11px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2709"
+                 y="9.8999996"
+                 x="0">nicht fertiggestellt</tspan></text>
+          </g>
+          <rect
+             id="rect2715"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="14"
+             width="86"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2717"
+             style="fill:none"
+             class="djs-outline"
+             height="26"
+             width="98"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2735"
+         class="djs-group">
+        <g
+           id="g2733"
+           transform="translate(1720,573)"
+           style="display:block"
+           data-element-id="Flow_0ehvm4u_label"
+           class="djs-element djs-shape">
+          <g
+             id="g2727"
+             class="djs-visual">
+            <text
+               id="text2725"
+               style="font-weight:normal;font-size:11px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2723"
+                 y="9.8999996"
+                 x="0">fertiggestellt</tspan></text>
+          </g>
+          <rect
+             id="rect2729"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="14"
+             width="60"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2731"
+             style="fill:none"
+             class="djs-outline"
+             height="26"
+             width="72"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2749"
+         class="djs-group">
+        <g
+           id="g2747"
+           transform="translate(1977,423)"
+           style="display:block"
+           data-element-id="Flow_0twsltu_label"
+           class="djs-element djs-shape">
+          <g
+             id="g2741"
+             class="djs-visual">
+            <text
+               id="text2739"
+               style="font-weight:normal;font-size:11px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2737"
+                 y="9.8999996"
+                 x="0">nicht gesendet</tspan></text>
+          </g>
+          <rect
+             id="rect2743"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="14"
+             width="72"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2745"
+             style="fill:none"
+             class="djs-outline"
+             height="26"
+             width="84"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+      <g
+         id="g2763"
+         class="djs-group">
+        <g
+           id="g2761"
+           transform="translate(2029,482)"
+           style="display:block"
+           data-element-id="Flow_0gg09id_label"
+           class="djs-element djs-shape">
+          <g
+             id="g2755"
+             class="djs-visual">
+            <text
+               id="text2753"
+               style="font-weight:normal;font-size:11px;font-family:Arial, sans-serif;fill:#000000"
+               class="djs-label"
+               lineHeight="1.2"><tspan
+                 id="tspan2751"
+                 y="9.8999996"
+                 x="0">gesendet</tspan></text>
+          </g>
+          <rect
+             id="rect2757"
+             style="fill:none;stroke:#ffffff;stroke-width:15px;stroke-opacity:0"
+             height="14"
+             width="46"
+             y="0"
+             x="0"
+             class="djs-hit djs-hit-all" />
+          <rect
+             id="rect2759"
+             style="fill:none"
+             class="djs-outline"
+             height="26"
+             width="58"
+             y="-6"
+             x="-6" />
+        </g>
+      </g>
+    </g>
+  </g>
+</svg>
diff --git a/src/main/asciidoc/images/Statement-workflow.svg b/src/main/asciidoc/images/Statement-workflow.svg
new file mode 100644
index 0000000..00aa225
--- /dev/null
+++ b/src/main/asciidoc/images/Statement-workflow.svg
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- created with bpmn-js / http://bpmn.io -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="2115" height="712" viewBox="154 74 2115 712" version="1.1"><defs><marker id="sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv" viewBox="0 0 20 20" refX="11" refY="10" markerWidth="10" markerHeight="10" orient="auto"><path d="M 1 5 L 11 10 L 1 15 Z" style="fill: black; stroke-width: 1px; stroke-linecap: round; stroke-dasharray: 10000, 1; stroke: black;"/></marker></defs><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Participant_0pmtbog" style="display: block;" transform="matrix(1 0 0 1 160 80)"><g class="djs-visual"><rect x="0" y="0" width="2103" height="700" rx="0" ry="0" style="stroke: black; stroke-width: 2px; fill: white; fill-opacity: 0.95;"/><polyline points="30,0 30,700 " style="fill: none; stroke: black; stroke-width: 2px;"/><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 12px; font-weight: normal; fill: black;" transform="matrix(-1.83697e-16 -1 1 -1.83697e-16 0 700)"><tspan x="309.96875" y="18.6">Stellungnahme</tspan></text></g><rect class="djs-hit djs-hit-click-stroke" x="0" y="0" width="2103" height="700" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect class="djs-hit djs-hit-all" x="0" y="0" width="30" height="700" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="2115" height="712" class="djs-outline" style="fill: none;"/></g><g class="djs-children"><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Lane_0spmnb6" style="display: block;" transform="matrix(1 0 0 1 190 600)"><g class="djs-visual"><rect x="0" y="0" width="2073" height="180" rx="0" ry="0" style="stroke: black; stroke-width: 2px; fill: white; fill-opacity: 0.35;"/><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 12px; font-weight: normal; fill: black;" transform="matrix(-1.83697e-16 -1 1 -1.83697e-16 0 180)"><tspan x="56.8984375" y="18.6">Genehmiger</tspan></text></g><rect class="djs-hit djs-hit-click-stroke" x="0" y="0" width="2073" height="180" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect class="djs-hit djs-hit-all" x="0" y="0" width="30" height="180" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="2085" height="192" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Lane_0gjug73" style="display: block;" transform="matrix(1 0 0 1 190 260)"><g class="djs-visual"><rect x="0" y="0" width="2073" height="340" rx="0" ry="0" style="stroke: black; stroke-width: 2px; fill: white; fill-opacity: 0.35;"/><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 12px; font-weight: normal; fill: black;" transform="matrix(-1.83697e-16 -1 1 -1.83697e-16 0 340)"><tspan x="129.21875" y="18.6">Sachbearbeiter</tspan></text></g><rect class="djs-hit djs-hit-click-stroke" x="0" y="0" width="2073" height="340" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect class="djs-hit djs-hit-all" x="0" y="0" width="30" height="340" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="2085" height="352" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Lane_078yf14" style="display: block;" transform="matrix(1 0 0 1 190 80)"><g class="djs-visual"><rect x="0" y="0" width="2073" height="180" rx="0" ry="0" style="stroke: black; stroke-width: 2px; fill: white; fill-opacity: 0.35;"/><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 12px; font-weight: normal; fill: black;" transform="matrix(-1.83697e-16 -1 1 -1.83697e-16 0 180)"><tspan x="60.984375" y="18.6">FB und SB</tspan></text></g><rect class="djs-hit djs-hit-click-stroke" x="0" y="0" width="2073" height="180" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect class="djs-hit djs-hit-all" x="0" y="0" width="30" height="180" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="2085" height="192" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_1myajze" style="display: block;"><g class="djs-visual"><path d="m  2164,500L2202,500 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="2164,500 2202,500 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="2158" y="494" width="50" height="12" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_0gg09id" style="display: block;"><g class="djs-visual"><path d="m  1988,500L2114,500 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="1988,500 2114,500 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="1982" y="494" width="138" height="12" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_0twsltu" style="display: block;"><g class="djs-visual"><path d="m  1963,475L1963,360 L2000,360 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="1963,475 1963,360 2000,360 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="1957" y="354" width="49" height="127" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_19wy667" style="display: block;"><g class="djs-visual"><path d="m  740,530L1688,530 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="740,530 1688,530 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="734" y="524" width="960" height="12" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_0ehvm4u" style="display: block;"><g class="djs-visual"><path d="m  1713,555L1713,670 L1793,670 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="1713,555 1713,670 1793,670 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="1707" y="549" width="92" height="127" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_0x0a063" style="display: block;"><g class="djs-visual"><path d="m  1738,530L1770,530 L1770,290 L443,290 L443,380 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="1738,530 1770,530 1770,290 443,290 443,380 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="437" y="284" width="1339" height="252" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_0cot0xy" style="display: block;"><g class="djs-visual"><path d="m  1575,405L1713,405 L1713,505 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="1575,405 1713,405 1713,505 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="1569" y="399" width="150" height="112" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_017kj0u" style="display: block;"><g class="djs-visual"><path d="m  690,430L690,490 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="690,430 690,490 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="684" y="424" width="12" height="72" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_0nwawsv" style="display: block;"><g class="djs-visual"><path d="m  715,405L853,405 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="715,405 853,405 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="709" y="399" width="150" height="12" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_1uni785" style="display: block;"><g class="djs-visual"><path d="m  328,405L418,405 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="328,405 418,405 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="322" y="399" width="102" height="12" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_167ttld" style="display: block;"><g class="djs-visual"><path d="m  600,405L665,405 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="600,405 665,405 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="594" y="399" width="77" height="12" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_1hqe1j8" style="display: block;"><g class="djs-visual"><path d="m  953,405L1050,405 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="953,405 1050,405 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="947" y="399" width="109" height="12" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_0rrgglo" style="display: block;"><g class="djs-visual"><path d="m  1150,405L1265,405 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="1150,405 1265,405 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="1144" y="399" width="127" height="12" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_0r3c12h" style="display: block;"><g class="djs-visual"><path d="m  1400,200L1400,365 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="1400,200 1400,365 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="1394" y="194" width="12" height="177" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_1tmr5qp" style="display: block;"><g class="djs-visual"><path d="m  1450,405L1525,405 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="1450,405 1525,405 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="1444" y="399" width="87" height="12" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_10zb14i" style="display: block;"><g class="djs-visual"><path d="m  1550,430L1550,500 L1290,500 L1290,430 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="1550,430 1550,500 1290,500 1290,430 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="1284" y="424" width="272" height="82" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_12c0wj3" style="display: block;"><g class="djs-visual"><path d="m  1893,670L1938,670 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="1893,670 1938,670 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="1887" y="664" width="57" height="12" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_00qgmxu" style="display: block;"><g class="djs-visual"><path d="m  1963,645L1963,525 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="1963,645 1963,525 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="1957" y="519" width="12" height="132" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_1k89j3h" style="display: block;"><g class="djs-visual"><path d="m  1963,695L1963,740 L443,740 L443,430 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="1963,695 1963,740 443,740 443,430 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="437" y="424" width="1532" height="322" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_0279yx1" style="display: block;"><g class="djs-visual"><path d="m  2100,360L2139,360 L2139,475 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="2100,360 2139,360 2139,475 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="2094" y="354" width="51" height="127" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_0oigd8l" style="display: block;"><g class="djs-visual"><path d="m  468,405L500,405 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="468,405 500,405 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="462" y="399" width="44" height="12" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-connection" data-element-id="Flow_0nt1wtg" style="display: block;"><g class="djs-visual"><path d="m  1290,380L1290,160 L1350,160 " style="fill: none; stroke-width: 2px; stroke: black; stroke-linejoin: round; marker-end: url('#sequenceflow-end-white-black-5ckcqkvasld7t8guh0b6aw6sv');"/></g><polyline points="1290,380 1290,160 1350,160 " class="djs-hit djs-hit-stroke" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="1284" y="154" width="72" height="232" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Gateway_1qr83rr" style="display: block;" transform="matrix(1 0 0 1 665 380)"><g class="djs-visual"><polygon points="25,0 50,25 25,50 0,25" style="stroke: black; stroke-width: 2px; fill: white; fill-opacity: 0.95;"/><path d="m 16,15 7.42857142857143,9.714285714285715 -7.42857142857143,9.714285714285715 3.428571428571429,0 5.714285714285715,-7.464228571428572 5.714285714285715,7.464228571428572 3.428571428571429,0 -7.42857142857143,-9.714285714285715 7.42857142857143,-9.714285714285715 -3.428571428571429,0 -5.714285714285715,7.464228571428572 -5.714285714285715,-7.464228571428572 -3.428571428571429,0 z" style="fill: black; stroke-width: 1px; stroke: black;"/></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="50" height="50" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="62" height="62" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Gateway_1qr83rr_label" style="display: block;" transform="matrix(1 0 0 1 663 350)"><g class="djs-visual"><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 11px; font-weight: normal; fill: black;"><tspan x="0" y="9.899999999999999">Zuständig?</tspan></text></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="55" height="14" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="67" height="26" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="addBasicInfoData" style="display: block;" transform="matrix(1 0 0 1 500 365)"><g class="djs-visual"><rect x="0" y="0" width="100" height="80" rx="10" ry="10" style="stroke: black; stroke-width: 2px; fill: white; fill-opacity: 0.95;"/><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 12px; font-weight: normal; fill: black;"><tspan x="24.3125" y="22">Ergänzen </tspan><tspan x="13.96875" y="36.4">Infodatensatz </tspan><tspan x="5.296875" y="50.8">und Entscheiden</tspan><tspan x="14.3125" y="65.19999999999999">Zuständigkeit</tspan></text><path d="m 15,12 c 0.909,-0.845 1.594,-2.049 1.594,-3.385 0,-2.554 -1.805,-4.62199999 -4.357,-4.62199999 -2.55199998,0 -4.28799998,2.06799999 -4.28799998,4.62199999 0,1.348 0.974,2.562 1.89599998,3.405 -0.52899998,0.187 -5.669,2.097 -5.794,4.7560005 v 6.718 h 17 v -6.718 c 0,-2.2980005 -5.5279996,-4.5950005 -6.0509996,-4.7760005 zm -8,6 l 0,5.5 m 11,0 l 0,-5" style="fill: white; stroke-width: 0.5px; stroke: black;"/><path d="m 15,12 m 2.162,1.009 c 0,2.4470005 -2.158,4.4310005 -4.821,4.4310005 -2.66499998,0 -4.822,-1.981 -4.822,-4.4310005 " style="fill: white; stroke-width: 0.5px; stroke: black;"/><path d="m 15,12 m -6.9,-3.80 c 0,0 2.25099998,-2.358 4.27399998,-1.177 2.024,1.181 4.221,1.537 4.124,0.965 -0.098,-0.57 -0.117,-3.79099999 -4.191,-4.13599999 -3.57499998,0.001 -4.20799998,3.36699999 -4.20699998,4.34799999 z" style="fill: black; stroke-width: 0.5px; stroke: black;"/></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="100" height="80" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="112" height="92" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Gateway_0i8uj9a" style="display: block;" transform="matrix(1 0 0 1 418 380)"><g class="djs-visual"><polygon points="25,0 50,25 25,50 0,25" style="stroke: black; stroke-width: 2px; fill: white; fill-opacity: 0.95;"/><path d="m 16,15 7.42857142857143,9.714285714285715 -7.42857142857143,9.714285714285715 3.428571428571429,0 5.714285714285715,-7.464228571428572 5.714285714285715,7.464228571428572 3.428571428571429,0 -7.42857142857143,-9.714285714285715 7.42857142857143,-9.714285714285715 -3.428571428571429,0 -5.714285714285715,7.464228571428572 -5.714285714285715,-7.464228571428572 -3.428571428571429,0 z" style="fill: black; stroke-width: 1px; stroke: black;"/></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="50" height="50" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="62" height="62" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="addWorkflowData" style="display: block;" transform="matrix(1 0 0 1 853 365)"><g class="djs-visual"><rect x="0" y="0" width="100" height="80" rx="10" ry="10" style="stroke: black; stroke-width: 2px; fill: white; fill-opacity: 0.95;"/><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 12px; font-weight: normal; fill: black;"><tspan x="8.90625" y="14.799999999999999">Aufbereiten der </tspan><tspan x="22.3046875" y="29.199999999999996">Daten und </tspan><tspan x="15.3125" y="43.599999999999994">Erstellen des </tspan><tspan x="7.421875" y="57.99999999999999">Workflowdatens</tspan><tspan x="41.9921875" y="72.39999999999999">atz</tspan></text><path d="m 15,12 c 0.909,-0.845 1.594,-2.049 1.594,-3.385 0,-2.554 -1.805,-4.62199999 -4.357,-4.62199999 -2.55199998,0 -4.28799998,2.06799999 -4.28799998,4.62199999 0,1.348 0.974,2.562 1.89599998,3.405 -0.52899998,0.187 -5.669,2.097 -5.794,4.7560005 v 6.718 h 17 v -6.718 c 0,-2.2980005 -5.5279996,-4.5950005 -6.0509996,-4.7760005 zm -8,6 l 0,5.5 m 11,0 l 0,-5" style="fill: white; stroke-width: 0.5px; stroke: black;"/><path d="m 15,12 m 2.162,1.009 c 0,2.4470005 -2.158,4.4310005 -4.821,4.4310005 -2.66499998,0 -4.822,-1.981 -4.822,-4.4310005 " style="fill: white; stroke-width: 0.5px; stroke: black;"/><path d="m 15,12 m -6.9,-3.80 c 0,0 2.25099998,-2.358 4.27399998,-1.177 2.024,1.181 4.221,1.537 4.124,0.965 -0.098,-0.57 -0.117,-3.79099999 -4.191,-4.13599999 -3.57499998,0.001 -4.20799998,3.36699999 -4.20699998,4.34799999 z" style="fill: black; stroke-width: 0.5px; stroke: black;"/></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="100" height="80" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="112" height="92" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="s_anlegen_manuell" style="display: block;" transform="matrix(1 0 0 1 292 387)"><g class="djs-visual"><circle cx="18" cy="18" r="18" style="stroke: black; stroke-width: 2px; fill: white; fill-opacity: 0.95;"/></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="36" height="36" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="48" height="48" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="s_anlegen_manuell_label" style="display: block;" transform="matrix(1 0 0 1 273 430)"><g class="djs-visual"><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 11px; font-weight: normal; fill: black;"><tspan x="23.546875" y="9.899999999999999">Neue </tspan><tspan x="0" y="23.099999999999998">Stellungnahme</tspan></text></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="74" height="27" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="86" height="39" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="createDraft" style="display: block;" transform="matrix(1 0 0 1 1050 365)"><g class="djs-visual"><rect x="0" y="0" width="100" height="80" rx="10" ry="10" style="stroke: black; stroke-width: 2px; fill: white; fill-opacity: 0.95;"/><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 12px; font-weight: normal; fill: black;"><tspan x="26.65625" y="29.200000000000003">Erstellen </tspan><tspan x="29.4453125" y="43.6">Entwurf </tspan><tspan x="9.96875" y="58">Stellungnahme</tspan></text><path d="m 15,12 c 0.909,-0.845 1.594,-2.049 1.594,-3.385 0,-2.554 -1.805,-4.62199999 -4.357,-4.62199999 -2.55199998,0 -4.28799998,2.06799999 -4.28799998,4.62199999 0,1.348 0.974,2.562 1.89599998,3.405 -0.52899998,0.187 -5.669,2.097 -5.794,4.7560005 v 6.718 h 17 v -6.718 c 0,-2.2980005 -5.5279996,-4.5950005 -6.0509996,-4.7760005 zm -8,6 l 0,5.5 m 11,0 l 0,-5" style="fill: white; stroke-width: 0.5px; stroke: black;"/><path d="m 15,12 m 2.162,1.009 c 0,2.4470005 -2.158,4.4310005 -4.821,4.4310005 -2.66499998,0 -4.822,-1.981 -4.822,-4.4310005 " style="fill: white; stroke-width: 0.5px; stroke: black;"/><path d="m 15,12 m -6.9,-3.80 c 0,0 2.25099998,-2.358 4.27399998,-1.177 2.024,1.181 4.221,1.537 4.124,0.965 -0.098,-0.57 -0.117,-3.79099999 -4.191,-4.13599999 -3.57499998,0.001 -4.20799998,3.36699999 -4.20699998,4.34799999 z" style="fill: black; stroke-width: 0.5px; stroke: black;"/></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="100" height="80" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="112" height="92" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="approveStatement" style="display: block;" transform="matrix(1 0 0 1 1793 630)"><g class="djs-visual"><rect x="0" y="0" width="100" height="80" rx="10" ry="10" style="stroke: black; stroke-width: 2px; fill: white; fill-opacity: 0.95;"/><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 12px; font-weight: normal; fill: black;"><tspan x="20.640625" y="29.200000000000003">Prüfen und </tspan><tspan x="5.21875" y="43.6">Genehmigen der</tspan><tspan x="29.671875" y="58">Antwort</tspan></text><path d="m 15,12 c 0.909,-0.845 1.594,-2.049 1.594,-3.385 0,-2.554 -1.805,-4.62199999 -4.357,-4.62199999 -2.55199998,0 -4.28799998,2.06799999 -4.28799998,4.62199999 0,1.348 0.974,2.562 1.89599998,3.405 -0.52899998,0.187 -5.669,2.097 -5.794,4.7560005 v 6.718 h 17 v -6.718 c 0,-2.2980005 -5.5279996,-4.5950005 -6.0509996,-4.7760005 zm -8,6 l 0,5.5 m 11,0 l 0,-5" style="fill: white; stroke-width: 0.5px; stroke: black;"/><path d="m 15,12 m 2.162,1.009 c 0,2.4470005 -2.158,4.4310005 -4.821,4.4310005 -2.66499998,0 -4.822,-1.981 -4.822,-4.4310005 " style="fill: white; stroke-width: 0.5px; stroke: black;"/><path d="m 15,12 m -6.9,-3.80 c 0,0 2.25099998,-2.358 4.27399998,-1.177 2.024,1.181 4.221,1.537 4.124,0.965 -0.098,-0.57 -0.117,-3.79099999 -4.191,-4.13599999 -3.57499998,0.001 -4.20799998,3.36699999 -4.20699998,4.34799999 z" style="fill: black; stroke-width: 0.5px; stroke: black;"/></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="100" height="80" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="112" height="92" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Gateway_0t8k8x7" style="display: block;" transform="matrix(1 0 0 1 1938 645)"><g class="djs-visual"><polygon points="25,0 50,25 25,50 0,25" style="stroke: black; stroke-width: 2px; fill: white; fill-opacity: 0.95;"/><path d="m 16,15 7.42857142857143,9.714285714285715 -7.42857142857143,9.714285714285715 3.428571428571429,0 5.714285714285715,-7.464228571428572 5.714285714285715,7.464228571428572 3.428571428571429,0 -7.42857142857143,-9.714285714285715 7.42857142857143,-9.714285714285715 -3.428571428571429,0 -5.714285714285715,7.464228571428572 -5.714285714285715,-7.464228571428572 -3.428571428571429,0 z" style="fill: black; stroke-width: 1px; stroke: black;"/></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="50" height="50" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="62" height="62" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Gateway_0t8k8x7_label" style="display: block;" transform="matrix(1 0 0 1 1998 663)"><g class="djs-visual"><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 11px; font-weight: normal; fill: black;"><tspan x="0" y="9.899999999999999">Genehmigung?</tspan></text></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="76" height="14" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="88" height="26" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Gateway_1vm0oko" style="display: block;" transform="matrix(1 0 0 1 1265 380)"><g class="djs-visual"><polygon points="25,0 50,25 25,50 0,25" style="stroke: black; stroke-width: 2px; fill: white; fill-opacity: 0.95;"/><path d="m 16,15 7.42857142857143,9.714285714285715 -7.42857142857143,9.714285714285715 3.428571428571429,0 5.714285714285715,-7.464228571428572 5.714285714285715,7.464228571428572 3.428571428571429,0 -7.42857142857143,-9.714285714285715 7.42857142857143,-9.714285714285715 -3.428571428571429,0 -5.714285714285715,7.464228571428572 -5.714285714285715,-7.464228571428572 -3.428571428571429,0 z" style="fill: black; stroke-width: 1px; stroke: black;"/></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="50" height="50" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="62" height="62" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="enrichDraft" style="display: block;" transform="matrix(1 0 0 1 1350 120)"><g class="djs-visual"><rect x="0" y="0" width="100" height="80" rx="10" ry="10" style="stroke: black; stroke-width: 2px; fill: white; fill-opacity: 0.95;"/><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 12px; font-weight: normal; fill: black;"><tspan x="21" y="29.200000000000003">Anreichern </tspan><tspan x="25.3125" y="43.6">durch die </tspan><tspan x="13.640625" y="58">Fachbereiche</tspan></text><path d="m 15,12 c 0.909,-0.845 1.594,-2.049 1.594,-3.385 0,-2.554 -1.805,-4.62199999 -4.357,-4.62199999 -2.55199998,0 -4.28799998,2.06799999 -4.28799998,4.62199999 0,1.348 0.974,2.562 1.89599998,3.405 -0.52899998,0.187 -5.669,2.097 -5.794,4.7560005 v 6.718 h 17 v -6.718 c 0,-2.2980005 -5.5279996,-4.5950005 -6.0509996,-4.7760005 zm -8,6 l 0,5.5 m 11,0 l 0,-5" style="fill: white; stroke-width: 0.5px; stroke: black;"/><path d="m 15,12 m 2.162,1.009 c 0,2.4470005 -2.158,4.4310005 -4.821,4.4310005 -2.66499998,0 -4.822,-1.981 -4.822,-4.4310005 " style="fill: white; stroke-width: 0.5px; stroke: black;"/><path d="m 15,12 m -6.9,-3.80 c 0,0 2.25099998,-2.358 4.27399998,-1.177 2.024,1.181 4.221,1.537 4.124,0.965 -0.098,-0.57 -0.117,-3.79099999 -4.191,-4.13599999 -3.57499998,0.001 -4.20799998,3.36699999 -4.20699998,4.34799999 z" style="fill: black; stroke-width: 0.5px; stroke: black;"/></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="100" height="80" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="112" height="92" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="checkAndFormulateResponse" style="display: block;" transform="matrix(1 0 0 1 1350 365)"><g class="djs-visual"><rect x="0" y="0" width="100" height="80" rx="10" ry="10" style="stroke: black; stroke-width: 2px; fill: white; fill-opacity: 0.95;"/><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 12px; font-weight: normal; fill: black;"><tspan x="20.640625" y="29.200000000000003">Prüfen und </tspan><tspan x="12.890625" y="43.6">Verfassen der </tspan><tspan x="29.671875" y="58">Antwort</tspan></text><path d="m 15,12 c 0.909,-0.845 1.594,-2.049 1.594,-3.385 0,-2.554 -1.805,-4.62199999 -4.357,-4.62199999 -2.55199998,0 -4.28799998,2.06799999 -4.28799998,4.62199999 0,1.348 0.974,2.562 1.89599998,3.405 -0.52899998,0.187 -5.669,2.097 -5.794,4.7560005 v 6.718 h 17 v -6.718 c 0,-2.2980005 -5.5279996,-4.5950005 -6.0509996,-4.7760005 zm -8,6 l 0,5.5 m 11,0 l 0,-5" style="fill: white; stroke-width: 0.5px; stroke: black;"/><path d="m 15,12 m 2.162,1.009 c 0,2.4470005 -2.158,4.4310005 -4.821,4.4310005 -2.66499998,0 -4.822,-1.981 -4.822,-4.4310005 " style="fill: white; stroke-width: 0.5px; stroke: black;"/><path d="m 15,12 m -6.9,-3.80 c 0,0 2.25099998,-2.358 4.27399998,-1.177 2.024,1.181 4.221,1.537 4.124,0.965 -0.098,-0.57 -0.117,-3.79099999 -4.191,-4.13599999 -3.57499998,0.001 -4.20799998,3.36699999 -4.20699998,4.34799999 z" style="fill: black; stroke-width: 0.5px; stroke: black;"/></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="100" height="80" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="112" height="92" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Gateway_1doisb4" style="display: block;" transform="matrix(1 0 0 1 1525 380)"><g class="djs-visual"><polygon points="25,0 50,25 25,50 0,25" style="stroke: black; stroke-width: 2px; fill: white; fill-opacity: 0.95;"/><path d="m 16,15 7.42857142857143,9.714285714285715 -7.42857142857143,9.714285714285715 3.428571428571429,0 5.714285714285715,-7.464228571428572 5.714285714285715,7.464228571428572 3.428571428571429,0 -7.42857142857143,-9.714285714285715 7.42857142857143,-9.714285714285715 -3.428571428571429,0 -5.714285714285715,7.464228571428572 -5.714285714285715,-7.464228571428572 -3.428571428571429,0 z" style="fill: black; stroke-width: 1px; stroke: black;"/></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="50" height="50" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="62" height="62" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Gateway_1doisb4_label" style="display: block;" transform="matrix(1 0 0 1 1505 343)"><g class="djs-visual"><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 11px; font-weight: normal; fill: black;"><tspan x="0" y="9.899999999999999">Fachbereichsanwt</tspan><tspan x="1.5234375" y="23.099999999999998">orten vollständig?</tspan></text></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="90" height="27" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="102" height="39" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Gateway_1moejbp" style="display: block;" transform="matrix(1 0 0 1 1938 475)"><g class="djs-visual"><polygon points="25,0 50,25 25,50 0,25" style="stroke: black; stroke-width: 2px; fill: white; fill-opacity: 0.95;"/><path d="m 16,15 7.42857142857143,9.714285714285715 -7.42857142857143,9.714285714285715 3.428571428571429,0 5.714285714285715,-7.464228571428572 5.714285714285715,7.464228571428572 3.428571428571429,0 -7.42857142857143,-9.714285714285715 7.42857142857143,-9.714285714285715 -3.428571428571429,0 -5.714285714285715,7.464228571428572 -5.714285714285715,-7.464228571428572 -3.428571428571429,0 z" style="fill: black; stroke-width: 1px; stroke: black;"/></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="50" height="50" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="62" height="62" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Gateway_1moejbp_label" style="display: block;" transform="matrix(1 0 0 1 1869 495)"><g class="djs-visual"><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 11px; font-weight: normal; fill: black;"><tspan x="0" y="9.899999999999999">Automatisch </tspan><tspan x="4.5546875" y="23.099999999999998">gesendet?</tspan></text></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="61" height="27" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="73" height="39" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Gateway_162pjk3" style="display: block;" transform="matrix(1 0 0 1 2114 475)"><g class="djs-visual"><polygon points="25,0 50,25 25,50 0,25" style="stroke: black; stroke-width: 2px; fill: white; fill-opacity: 0.95;"/><path d="m 16,15 7.42857142857143,9.714285714285715 -7.42857142857143,9.714285714285715 3.428571428571429,0 5.714285714285715,-7.464228571428572 5.714285714285715,7.464228571428572 3.428571428571429,0 -7.42857142857143,-9.714285714285715 7.42857142857143,-9.714285714285715 -3.428571428571429,0 -5.714285714285715,7.464228571428572 -5.714285714285715,-7.464228571428572 -3.428571428571429,0 z" style="fill: black; stroke-width: 1px; stroke: black;"/></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="50" height="50" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="62" height="62" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="e_erfolgreicher_abschluss" style="display: block;" transform="matrix(1 0 0 1 2202 482)"><g class="djs-visual"><circle cx="18" cy="18" r="18" style="stroke: black; stroke-width: 4px; fill: white; fill-opacity: 0.95;"/></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="36" height="36" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="48" height="48" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="e_erfolgreicher_abschluss_label" style="display: block;" transform="matrix(1 0 0 1 2185 525)"><g class="djs-visual"><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 11px; font-weight: normal; fill: black;"><tspan x="23.84375" y="9.899999999999999">Ende </tspan><tspan x="0" y="23.099999999999998">Stellungnahme</tspan></text></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="74" height="27" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="86" height="39" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="sendStatement" style="display: block;" transform="matrix(1 0 0 1 2000 320)"><g class="djs-visual"><rect x="0" y="0" width="100" height="80" rx="10" ry="10" style="stroke: black; stroke-width: 2px; fill: white; fill-opacity: 0.95;"/><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 12px; font-weight: normal; fill: black;"><tspan x="10.8828125" y="36.4">Versenden der </tspan><tspan x="29.671875" y="50.8">Antwort</tspan></text><path d="m 15,12 c 0.909,-0.845 1.594,-2.049 1.594,-3.385 0,-2.554 -1.805,-4.62199999 -4.357,-4.62199999 -2.55199998,0 -4.28799998,2.06799999 -4.28799998,4.62199999 0,1.348 0.974,2.562 1.89599998,3.405 -0.52899998,0.187 -5.669,2.097 -5.794,4.7560005 v 6.718 h 17 v -6.718 c 0,-2.2980005 -5.5279996,-4.5950005 -6.0509996,-4.7760005 zm -8,6 l 0,5.5 m 11,0 l 0,-5" style="fill: white; stroke-width: 0.5px; stroke: black;"/><path d="m 15,12 m 2.162,1.009 c 0,2.4470005 -2.158,4.4310005 -4.821,4.4310005 -2.66499998,0 -4.822,-1.981 -4.822,-4.4310005 " style="fill: white; stroke-width: 0.5px; stroke: black;"/><path d="m 15,12 m -6.9,-3.80 c 0,0 2.25099998,-2.358 4.27399998,-1.177 2.024,1.181 4.221,1.537 4.124,0.965 -0.098,-0.57 -0.117,-3.79099999 -4.191,-4.13599999 -3.57499998,0.001 -4.20799998,3.36699999 -4.20699998,4.34799999 z" style="fill: black; stroke-width: 0.5px; stroke: black;"/></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="100" height="80" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="112" height="92" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Gateway_0lxzryr" style="display: block;" transform="matrix(1 0 0 1 1688 505)"><g class="djs-visual"><polygon points="25,0 50,25 25,50 0,25" style="stroke: black; stroke-width: 2px; fill: white; fill-opacity: 0.95;"/><path d="m 16,15 7.42857142857143,9.714285714285715 -7.42857142857143,9.714285714285715 3.428571428571429,0 5.714285714285715,-7.464228571428572 5.714285714285715,7.464228571428572 3.428571428571429,0 -7.42857142857143,-9.714285714285715 7.42857142857143,-9.714285714285715 -3.428571428571429,0 -5.714285714285715,7.464228571428572 -5.714285714285715,-7.464228571428572 -3.428571428571429,0 z" style="fill: black; stroke-width: 1px; stroke: black;"/></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="50" height="50" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="62" height="62" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Gateway_0lxzryr_label" style="display: block;" transform="matrix(1 0 0 1 1627 486)"><g class="djs-visual"><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 11px; font-weight: normal; fill: black;"><tspan x="14.0859375" y="9.899999999999999">Antwort </tspan><tspan x="0" y="23.099999999999998">fertiggestellt?</tspan></text></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="66" height="27" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="78" height="39" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="createNegativeResponse" style="display: block;" transform="matrix(1 0 0 1 640 490)"><g class="djs-visual"><rect x="0" y="0" width="100" height="80" rx="10" ry="10" style="stroke: black; stroke-width: 2px; fill: white; fill-opacity: 0.95;"/><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 12px; font-weight: normal; fill: black;"><tspan x="12.890625" y="36.4">Verfassen der </tspan><tspan x="9.9765625" y="50.8">Negativantwort</tspan></text><path d="m 15,12 c 0.909,-0.845 1.594,-2.049 1.594,-3.385 0,-2.554 -1.805,-4.62199999 -4.357,-4.62199999 -2.55199998,0 -4.28799998,2.06799999 -4.28799998,4.62199999 0,1.348 0.974,2.562 1.89599998,3.405 -0.52899998,0.187 -5.669,2.097 -5.794,4.7560005 v 6.718 h 17 v -6.718 c 0,-2.2980005 -5.5279996,-4.5950005 -6.0509996,-4.7760005 zm -8,6 l 0,5.5 m 11,0 l 0,-5" style="fill: white; stroke-width: 0.5px; stroke: black;"/><path d="m 15,12 m 2.162,1.009 c 0,2.4470005 -2.158,4.4310005 -4.821,4.4310005 -2.66499998,0 -4.822,-1.981 -4.822,-4.4310005 " style="fill: white; stroke-width: 0.5px; stroke: black;"/><path d="m 15,12 m -6.9,-3.80 c 0,0 2.25099998,-2.358 4.27399998,-1.177 2.024,1.181 4.221,1.537 4.124,0.965 -0.098,-0.57 -0.117,-3.79099999 -4.191,-4.13599999 -3.57499998,0.001 -4.20799998,3.36699999 -4.20699998,4.34799999 z" style="fill: black; stroke-width: 0.5px; stroke: black;"/></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="100" height="80" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="112" height="92" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Flow_1k89j3h_label" style="display: block;" transform="matrix(1 0 0 1 1974 723)"><g class="djs-visual"><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 11px; font-weight: normal; fill: black;"><tspan x="0" y="9.899999999999999">nicht genehmigt</tspan></text></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="78" height="14" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="90" height="26" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Flow_00qgmxu_label" style="display: block;" transform="matrix(1 0 0 1 1970 557)"><g class="djs-visual"><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 11px; font-weight: normal; fill: black;"><tspan x="0" y="9.899999999999999">genehmigt</tspan></text></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="52" height="14" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="64" height="26" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Flow_10zb14i_label" style="display: block;" transform="matrix(1 0 0 1 1462 483)"><g class="djs-visual"><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 11px; font-weight: normal; fill: black;"><tspan x="0" y="9.899999999999999">nicht vollständig</tspan></text></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="79" height="14" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="91" height="26" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Flow_0nwawsv_label" style="display: block;" transform="matrix(1 0 0 1 723 387)"><g class="djs-visual"><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 11px; font-weight: normal; fill: black;"><tspan x="0" y="9.899999999999999">zuständig</tspan></text></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="48" height="14" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="60" height="26" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Flow_017kj0u_label" style="display: block;" transform="matrix(1 0 0 1 706 447)"><g class="djs-visual"><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 11px; font-weight: normal; fill: black;"><tspan x="0" y="9.899999999999999">nicht zuständig</tspan></text></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="74" height="14" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="86" height="26" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Flow_0cot0xy_label" style="display: block;" transform="matrix(1 0 0 1 1619 387)"><g class="djs-visual"><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 11px; font-weight: normal; fill: black;"><tspan x="0" y="9.899999999999999">vollständig</tspan></text></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="52" height="14" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="64" height="26" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Flow_0x0a063_label" style="display: block;" transform="matrix(1 0 0 1 1682 273)"><g class="djs-visual"><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 11px; font-weight: normal; fill: black;"><tspan x="0" y="9.899999999999999">nicht fertiggestellt</tspan></text></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="86" height="14" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="98" height="26" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Flow_0ehvm4u_label" style="display: block;" transform="matrix(1 0 0 1 1720 573)"><g class="djs-visual"><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 11px; font-weight: normal; fill: black;"><tspan x="0" y="9.899999999999999">fertiggestellt</tspan></text></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="60" height="14" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="72" height="26" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Flow_0twsltu_label" style="display: block;" transform="matrix(1 0 0 1 1977 423)"><g class="djs-visual"><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 11px; font-weight: normal; fill: black;"><tspan x="0" y="9.899999999999999">nicht gesendet</tspan></text></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="72" height="14" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="84" height="26" class="djs-outline" style="fill: none;"/></g></g><g class="djs-group"><g class="djs-element djs-shape" data-element-id="Flow_0gg09id_label" style="display: block;" transform="matrix(1 0 0 1 2029 482)"><g class="djs-visual"><text lineHeight="1.2" class="djs-label" style="font-family: Arial, sans-serif; font-size: 11px; font-weight: normal; fill: black;"><tspan x="0" y="9.899999999999999">gesendet</tspan></text></g><rect class="djs-hit djs-hit-all" x="0" y="0" width="46" height="14" style="fill: none; stroke-opacity: 0; stroke: white; stroke-width: 15px;"/><rect x="-6" y="-6" width="58" height="26" class="djs-outline" style="fill: none;"/></g></g></g></g></svg>
\ No newline at end of file
diff --git a/src/main/asciidoc/images/architecture-backend-component-diag.png b/src/main/asciidoc/images/architecture-backend-component-diag.png
new file mode 100644
index 0000000..c27abfa
--- /dev/null
+++ b/src/main/asciidoc/images/architecture-backend-component-diag.png
Binary files differ
diff --git a/src/main/asciidoc/images/architecture-backend-component-diag.svg b/src/main/asciidoc/images/architecture-backend-component-diag.svg
new file mode 100644
index 0000000..eefdcd6
--- /dev/null
+++ b/src/main/asciidoc/images/architecture-backend-component-diag.svg
@@ -0,0 +1,1444 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   inkscape:export-ydpi="300"
+   inkscape:export-xdpi="300"
+   inkscape:export-filename="/Users/tobiass/Work/repos/org.eclipse.openk/src/main/asciidoc/images/architecture-backend-component-diag.png"
+   sodipodi:docname="architecture-backend-component-diag.svg"
+   inkscape:version="1.0 (4035a4f, 2020-05-01)"
+   id="svg8"
+   version="1.1"
+   viewBox="0 0 261.8569 270.48187"
+   height="270.48187mm"
+   width="261.8569mm">
+  <defs
+     id="defs2">
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4845"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4843" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4667"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4665" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker4501"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4499"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker4195"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4193"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4051"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4049" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3907"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3905" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker3774"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path3772"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3306"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Lend">
+      <path
+         transform="matrix(-0.8,0,0,-0.8,-10,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3304" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="Arrow2Lstart"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Lstart">
+      <path
+         transform="matrix(1.1,0,0,1.1,1.1,0)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path2976" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="Arrow1Lend"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Lend">
+      <path
+         transform="matrix(-0.8,0,0,-0.8,-10,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path2961" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="Arrow1Lstart"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Lstart">
+      <path
+         transform="matrix(0.8,0,0,0.8,10,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path2958" />
+    </marker>
+    <g
+       id="lend13">
+      <path
+         d="M 3,1 0,0 3,-1 v 2"
+         id="path485" />
+    </g>
+    <marker
+       id="mrkr13-73"
+       class="st16"
+       overflow="visible"
+       orient="auto"
+       refX="-13.08"
+       v:arrowSize="2"
+       v:arrowType="13"
+       v:setback="13.08">
+      <use
+         transform="scale(-4.36)"
+         xlink:href="#lend13"
+         id="use488"
+         x="0"
+         y="0"
+         width="100%"
+         height="100%" />
+    </marker>
+  </defs>
+  <sodipodi:namedview
+     inkscape:window-maximized="0"
+     inkscape:window-y="105"
+     inkscape:window-x="1006"
+     inkscape:window-height="1805"
+     inkscape:window-width="2572"
+     showguides="false"
+     showgrid="false"
+     inkscape:document-rotation="0"
+     inkscape:current-layer="layer1"
+     inkscape:document-units="mm"
+     inkscape:cy="526.38262"
+     inkscape:cx="409.30726"
+     inkscape:zoom="1.012555"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     fit-margin-top="5"
+     fit-margin-left="5"
+     fit-margin-right="5"
+     fit-margin-bottom="5"
+     lock-margins="true" />
+  <metadata
+     id="metadata5">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:groupmode="layer"
+     inkscape:label="Layer 1"
+     transform="translate(84.682354,-29.486814)">
+    <g
+       id="g5916">
+      <path
+         id="path5903"
+         d="m 144.32606,119.77171 0.0955,10.2907"
+         style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+         sodipodi:nodetypes="cc" />
+      <text
+         id="text5909"
+         y="125.10642"
+         x="147.69817"
+         style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         xml:space="preserve"><tspan
+           style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+           y="125.10642"
+           x="147.69817"
+           sodipodi:role="line"
+           id="tspan5907">uses</tspan></text>
+    </g>
+    <g
+       transform="matrix(0.60601135,0,0,0.60601135,-35.676571,-17.015895)"
+       id="g1970">
+      <g
+         id="g1915"
+         transform="matrix(1.6968085,0,0,1.6968085,221.73028,-84.491926)">
+        <rect
+           ry="0.84923375"
+           y="99.88063"
+           x="-71.083817"
+           height="26.249598"
+           width="37.499928"
+           id="rect1886"
+           style="fill:#3d81c3;fill-opacity:1;stroke-width:0.358357" />
+        <g
+           transform="translate(-0.06383133,0.18112087)"
+           style="fill:#438dd5;fill-opacity:1"
+           id="g1906">
+          <rect
+             style="fill:#438dd5;fill-opacity:1;stroke-width:0.299779"
+             id="rect1888"
+             width="35.537167"
+             height="21.589588"
+             x="-70.038605"
+             y="103.36477" />
+          <g
+             style="fill:#438dd5;fill-opacity:1"
+             id="g1899"
+             transform="translate(-0.0979895)">
+            <rect
+               ry="1.0706718"
+               y="100.69426"
+               x="-64.437927"
+               height="2.1413436"
+               width="29.936491"
+               id="rect1890"
+               style="fill:#438dd5;fill-opacity:1;stroke-width:0.276217" />
+            <circle
+               r="1.0790378"
+               cy="101.80888"
+               cx="-68.763588"
+               id="path1892"
+               style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583" />
+            <circle
+               style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583"
+               id="circle1894"
+               cx="-66.061241"
+               cy="101.80888"
+               r="1.0790378" />
+          </g>
+        </g>
+      </g>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         x="132.93182"
+         y="99.937546"
+         id="text1919"><tspan
+           sodipodi:role="line"
+           x="132.93182"
+           y="99.937546"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan1921">Frontend</tspan><tspan
+           sodipodi:role="line"
+           x="132.93182"
+           y="105.7057"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan1925">[singe-page-application]</tspan></text>
+    </g>
+    <g
+       transform="matrix(0.60601135,0,0,0.60601135,32.015371,251.37819)"
+       id="g1996">
+      <rect
+         y="14.17335"
+         x="155.2043"
+         height="44.540539"
+         width="63.630196"
+         id="rect1978"
+         style="fill:#999999;fill-opacity:1;stroke-width:0.264583" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         x="187.07486"
+         y="26.511494"
+         id="text1984"><tspan
+           sodipodi:role="line"
+           x="187.07486"
+           y="26.511494"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan1980">AuthNAuth</tspan><tspan
+           sodipodi:role="line"
+           x="187.07486"
+           y="32.279644"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan1982">[openK Modul]</tspan></text>
+    </g>
+    <g
+       transform="matrix(0.60601135,0,0,0.60601135,-155.64246,293.65828)"
+       id="g2013">
+      <g
+         id="g2006"
+         transform="translate(61.406131,-69.767817)">
+        <rect
+           y="14.17335"
+           x="155.2043"
+           height="44.540539"
+           width="63.630196"
+           id="rect1998"
+           style="fill:#999999;fill-opacity:1;stroke-width:0.264583" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+           x="187.07486"
+           y="26.511494"
+           id="text2004"><tspan
+             sodipodi:role="line"
+             x="187.07486"
+             y="26.511494"
+             style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             id="tspan2000">Kontaktstammdaten</tspan><tspan
+             sodipodi:role="line"
+             x="187.07486"
+             y="32.279644"
+             style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             id="tspan2002">[openK Modul]</tspan></text>
+      </g>
+    </g>
+    <g
+       transform="matrix(0.60601135,0,0,0.60601135,19.290868,156.19532)"
+       id="g2882">
+      <g
+         id="g2860"
+         transform="matrix(0.8452813,0,0,0.8452813,-22.847855,18.799358)">
+        <path
+           d="m 43.311036,192.31202 v 28.75019 a 37.499999,10.190804 0 0 0 0,0.0305 v 0.48525 h 0.04806 a 37.499999,10.190804 0 0 0 37.451977,9.67486 37.499999,10.190804 0 0 0 37.451977,-9.67486 h 0.0475 v -0.51573 a 37.499999,10.190804 0 0 0 0,-0.031 v -28.71918 z"
+           style="fill:#438dd5;fill-opacity:1;stroke:#3d81c3;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+           id="path2015" />
+        <ellipse
+           ry="10.190804"
+           rx="37.5"
+           cy="192.31224"
+           cx="80.810791"
+           id="ellipse2023"
+           style="fill:#438dd5;fill-opacity:1;stroke:#3d81c3;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+      </g>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         x="45.386959"
+         y="200.01646"
+         id="text2868"><tspan
+           sodipodi:role="line"
+           x="45.386959"
+           y="200.01646"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan2864">Statement DB</tspan><tspan
+           sodipodi:role="line"
+           x="45.386959"
+           y="205.78462"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan2866">[e.g. postgreSQL]</tspan></text>
+    </g>
+    <g
+       transform="matrix(0.60601135,0,0,0.60601135,11.70853,117.57042)"
+       id="g2912">
+      <rect
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583"
+         id="rect2894"
+         width="63.630196"
+         height="44.540539"
+         x="105.81809"
+         y="234.97412" />
+      <text
+         id="text2900"
+         y="247.31226"
+         x="137.64421"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         xml:space="preserve"><tspan
+           id="tspan2896"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="247.31226"
+           x="137.64421"
+           sodipodi:role="line">Workflow Engine</tspan><tspan
+           id="tspan2898"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="253.08041"
+           x="137.64421"
+           sodipodi:role="line">[Camunda]</tspan></text>
+    </g>
+    <g
+       transform="matrix(0.60601135,0,0,0.60601135,-206.13919,293.65828)"
+       id="g2924">
+      <g
+         transform="translate(61.406131,-69.767817)"
+         id="g2922">
+        <rect
+           style="fill:#999999;fill-opacity:1;stroke-width:0.264583"
+           id="rect2914"
+           width="63.630196"
+           height="44.540539"
+           x="155.2043"
+           y="14.17335" />
+        <text
+           id="text2920"
+           y="26.511494"
+           x="187.07486"
+           style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+           xml:space="preserve"><tspan
+             id="tspan2916"
+             style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             y="26.511494"
+             x="187.07486"
+             sodipodi:role="line">Email Server</tspan><tspan
+             id="tspan2918"
+             style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             y="32.279644"
+             x="187.07486"
+             sodipodi:role="line" /></text>
+      </g>
+    </g>
+    <text
+       id="text3757"
+       y="142.78859"
+       x="81.385109"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="142.78859"
+         x="81.385109"
+         sodipodi:role="line"
+         id="tspan3755" /></text>
+    <path
+       id="path4047"
+       d="M 56.582901,61.217582 97.125769,91.38961"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+       sodipodi:nodetypes="cc" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="88.905067"
+       y="75.720207"
+       id="text4175"><tspan
+         id="tspan4173"
+         sodipodi:role="line"
+         x="88.905067"
+         y="75.720207"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">makes API calls</tspan><tspan
+         id="tspan4177"
+         sodipodi:role="line"
+         x="88.905067"
+         y="78.392548"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">[JSON/HTTPS]</tspan></text>
+    <rect
+       ry="2.6268222"
+       y="84.500938"
+       x="-79.321838"
+       height="153.88228"
+       width="251.13586"
+       id="rect5017"
+       style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.721032;stroke-miterlimit:4;stroke-dasharray:0.721032, 2.16311;stroke-dashoffset:0;stroke-opacity:1" />
+    <text
+       id="text5057"
+       y="235.09062"
+       x="-75.245224"
+       style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.56545px;stroke-width:0.16034"
+         y="235.09062"
+         x="-75.245224"
+         id="tspan5055"
+         sodipodi:role="line">API Application Container</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.99302px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="-79.850418"
+       y="294.35049"
+       id="text5061"><tspan
+         sodipodi:role="line"
+         id="tspan5059"
+         x="-79.850418"
+         y="294.35049"
+         style="font-size:2.99302px;stroke-width:0.16034">Component diagram: Statement Public Affairs Module - API Application</tspan></text>
+    <g
+       id="g5731"
+       transform="matrix(0.60601135,0,0,0.60601135,-38.526907,-50.141032)">
+      <rect
+         y="234.97412"
+         x="105.81809"
+         height="44.540539"
+         width="63.630196"
+         id="rect5723"
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         x="137.64421"
+         y="247.31226"
+         id="text5729"><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="247.31226"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5725">Statement</tspan><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="254.36781"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5757">Controller</tspan><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="260.13596"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5727">[Spring MVC Rest Controller]</tspan></text>
+    </g>
+    <g
+       transform="matrix(0.60601135,0,0,0.60601135,-138.99778,-12.294735)"
+       id="g5741">
+      <rect
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583"
+         id="rect5733"
+         width="63.630196"
+         height="44.540539"
+         x="105.81809"
+         y="234.97412" />
+      <text
+         id="text5739"
+         y="247.31226"
+         x="137.64421"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         xml:space="preserve"><tspan
+           id="tspan5735"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="247.31226"
+           x="137.64421"
+           sodipodi:role="line">UserInfo</tspan><tspan
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="254.36781"
+           x="137.64421"
+           sodipodi:role="line"
+           id="tspan5743">Service</tspan><tspan
+           id="tspan5737"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="260.13596"
+           x="137.64421"
+           sodipodi:role="line">[Spring Service]</tspan></text>
+    </g>
+    <g
+       id="g5755"
+       transform="matrix(0.60601135,0,0,0.60601135,11.70853,-50.141028)">
+      <rect
+         y="234.97412"
+         x="105.81809"
+         height="44.540539"
+         width="63.630196"
+         id="rect5745"
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         x="137.64421"
+         y="247.31226"
+         id="text5753"><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="247.31226"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5747">Statement Process</tspan><tspan
+           id="tspan5749"
+           sodipodi:role="line"
+           x="137.64421"
+           y="254.36781"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583">Controller</tspan><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="260.13596"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5751">[Spring MVC Rest Controller]</tspan></text>
+    </g>
+    <g
+       transform="matrix(0.60601135,0,0,0.60601135,61.943973,-50.141032)"
+       id="g5769">
+      <rect
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583"
+         id="rect5759"
+         width="63.630196"
+         height="44.540539"
+         x="105.81809"
+         y="234.97412" />
+      <text
+         id="text5767"
+         y="247.31226"
+         x="137.64421"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         xml:space="preserve"><tspan
+           id="tspan5761"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="247.31226"
+           x="137.64421"
+           sodipodi:role="line">Session</tspan><tspan
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="254.36781"
+           x="137.64421"
+           sodipodi:role="line"
+           id="tspan5763">Controller</tspan><tspan
+           id="tspan5765"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="260.13596"
+           x="137.64421"
+           sodipodi:role="line">[Spring MVC Rest Controller]</tspan></text>
+    </g>
+    <g
+       id="g5781"
+       transform="matrix(0.60601135,0,0,0.60601135,-138.99778,-50.141028)">
+      <rect
+         y="234.97412"
+         x="105.81809"
+         height="44.540539"
+         width="63.630196"
+         id="rect5771"
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         x="137.64421"
+         y="247.31226"
+         id="text5779"><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="247.31226"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5773">UserInfo</tspan><tspan
+           id="tspan5775"
+           sodipodi:role="line"
+           x="137.64421"
+           y="254.36781"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583">Controller</tspan><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="260.13596"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5777">[Spring MVC Rest Controller]</tspan></text>
+    </g>
+    <g
+       transform="matrix(0.60601135,0,0,0.60601135,-38.526907,25.55155)"
+       id="g5793">
+      <rect
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583"
+         id="rect5783"
+         width="63.630196"
+         height="44.540539"
+         x="105.81809"
+         y="234.97412" />
+      <text
+         id="text5791"
+         y="247.31226"
+         x="137.64421"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         xml:space="preserve"><tspan
+           id="tspan5785"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="247.31226"
+           x="137.64421"
+           sodipodi:role="line">Statement</tspan><tspan
+           id="tspan5787"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="254.36781"
+           x="137.64421"
+           sodipodi:role="line">Service</tspan><tspan
+           id="tspan5789"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="260.13596"
+           x="137.64421"
+           sodipodi:role="line">[Spring Service]</tspan></text>
+    </g>
+    <g
+       id="g5805"
+       transform="matrix(0.60601135,0,0,0.60601135,11.70853,-12.294735)">
+      <rect
+         y="234.97412"
+         x="105.81809"
+         height="44.540539"
+         width="63.630196"
+         id="rect5795"
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         x="137.64421"
+         y="247.31226"
+         id="text5803"><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="247.31226"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5797">Statement Process</tspan><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="254.36781"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5799">Service</tspan><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="260.13596"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5801">[Spring Service]</tspan></text>
+    </g>
+    <g
+       transform="matrix(0.60601135,0,0,0.60601135,11.70853,25.55155)"
+       id="g5817">
+      <rect
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583"
+         id="rect5807"
+         width="63.630196"
+         height="44.540539"
+         x="105.81809"
+         y="234.97412" />
+      <text
+         id="text5815"
+         y="247.31226"
+         x="137.64421"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         xml:space="preserve"><tspan
+           id="tspan5809"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="247.31226"
+           x="137.64421"
+           sodipodi:role="line">Workflow</tspan><tspan
+           id="tspan5811"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="254.36781"
+           x="137.64421"
+           sodipodi:role="line">Service</tspan><tspan
+           id="tspan5813"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="260.13596"
+           x="137.64421"
+           sodipodi:role="line">[Spring Service]</tspan></text>
+    </g>
+    <g
+       id="g5829"
+       transform="matrix(0.60601135,0,0,0.60601135,-38.526907,63.397851)">
+      <rect
+         y="234.97412"
+         x="105.81809"
+         height="44.540539"
+         width="63.630196"
+         id="rect5819"
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         x="137.64421"
+         y="247.31226"
+         id="text5827"><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="247.31226"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5821">Database</tspan><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="254.36781"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5823">Repositories</tspan><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="260.13596"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5825">[Spring Repository]</tspan></text>
+    </g>
+    <g
+       id="g5841"
+       transform="matrix(0.60601135,0,0,0.60601135,11.70853,63.397851)">
+      <rect
+         y="234.97412"
+         x="105.81809"
+         height="44.540539"
+         width="63.630196"
+         id="rect5831"
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         x="137.64421"
+         y="247.31226"
+         id="text5839"><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="247.31226"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5833">Camunda</tspan><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="254.36781"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5835">Api</tspan><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="260.13596"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5837">[Feign Client]</tspan></text>
+    </g>
+    <g
+       id="g5853"
+       transform="matrix(0.60601135,0,0,0.60601135,61.943973,-12.294735)">
+      <rect
+         y="234.97412"
+         x="105.81809"
+         height="44.540539"
+         width="63.630196"
+         id="rect5843"
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         x="137.64421"
+         y="247.31226"
+         id="text5851"><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="247.31226"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5845">Session</tspan><tspan
+           id="tspan5847"
+           sodipodi:role="line"
+           x="137.64421"
+           y="254.36781"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583">Service</tspan><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="260.13596"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5849">[Spring Service]</tspan></text>
+    </g>
+    <g
+       id="g5865"
+       transform="matrix(0.60601135,0,0,0.60601135,-138.99778,25.55155)">
+      <rect
+         y="234.97412"
+         x="105.81809"
+         height="44.540539"
+         width="63.630196"
+         id="rect5855"
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         x="137.64421"
+         y="247.31226"
+         id="text5863"><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="247.31226"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5857">Notification</tspan><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="254.36781"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5859">Service</tspan><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="260.13596"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5861">[Spring Service]</tspan></text>
+    </g>
+    <g
+       transform="matrix(0.60601135,0,0,0.60601135,-88.501042,63.397851)"
+       id="g5877">
+      <rect
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583"
+         id="rect5867"
+         width="63.630196"
+         height="44.540539"
+         x="105.81809"
+         y="234.97412" />
+      <text
+         id="text5875"
+         y="247.31226"
+         x="137.64421"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         xml:space="preserve"><tspan
+           id="tspan5869"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="247.31226"
+           x="137.64421"
+           sodipodi:role="line">Contacts</tspan><tspan
+           id="tspan5871"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="254.36781"
+           x="137.64421"
+           sodipodi:role="line">Api</tspan><tspan
+           id="tspan5873"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="260.13596"
+           x="137.64421"
+           sodipodi:role="line">[Feign Client]</tspan></text>
+    </g>
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+       d="M 63.15154,60.456004 141.54722,91.38961"
+       id="path5879" />
+    <text
+       id="text5885"
+       y="76.765427"
+       x="124.96484"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="76.765427"
+         x="124.96484"
+         sodipodi:role="line"
+         id="tspan5881">makes API calls</tspan><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="79.437767"
+         x="124.96484"
+         sodipodi:role="line"
+         id="tspan5883">[JSON/HTTPS]</tspan></text>
+    <path
+       id="path5887"
+       d="M 45.292342,61.762517 45.91044,90.867005"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+       sodipodi:nodetypes="cc" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="54.139847"
+       y="75.720207"
+       id="text5893"><tspan
+         id="tspan5889"
+         sodipodi:role="line"
+         x="54.139847"
+         y="75.720207"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">makes API calls</tspan><tspan
+         id="tspan5891"
+         sodipodi:role="line"
+         x="54.139847"
+         y="78.392548"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">[JSON/HTTPS]</tspan></text>
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+       d="m 26.609197,60.456004 -80.51638,31.194909"
+       id="path5895" />
+    <text
+       id="text5901"
+       y="75.720207"
+       x="0.87887198"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="75.720207"
+         x="0.87887198"
+         sodipodi:role="line"
+         id="tspan5897">makes API calls</tspan><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="78.392548"
+         x="0.87887198"
+         sodipodi:role="line"
+         id="tspan5899">[JSON/HTTPS]</tspan></text>
+    <g
+       id="g5924"
+       transform="translate(-49.386206)">
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+         d="m 144.32606,119.77171 0.0955,10.2907"
+         id="path5918" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         x="147.69817"
+         y="125.10642"
+         id="text5922"><tspan
+           id="tspan5920"
+           sodipodi:role="line"
+           x="147.69817"
+           y="125.10642"
+           style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">uses</tspan></text>
+    </g>
+    <g
+       transform="translate(-49.386206,37.627586)"
+       id="g5940">
+      <path
+         id="path5934"
+         d="m 144.32606,119.77171 0.0955,10.2907"
+         style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+         sodipodi:nodetypes="cc" />
+      <text
+         id="text5938"
+         y="125.10642"
+         x="147.69817"
+         style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         xml:space="preserve"><tspan
+           style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+           y="125.10642"
+           x="147.69817"
+           sodipodi:role="line"
+           id="tspan5936">uses</tspan></text>
+    </g>
+    <g
+       id="g5948"
+       transform="translate(-49.386206,74.993869)">
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+         d="m 144.32606,119.77171 0.0955,10.2907"
+         id="path5942" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         x="147.69817"
+         y="125.10642"
+         id="text5946"><tspan
+           id="tspan5944"
+           sodipodi:role="line"
+           x="147.69817"
+           y="125.10642"
+           style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">uses</tspan></text>
+    </g>
+    <g
+       transform="translate(-97.988504,74.993869)"
+       id="g5956">
+      <path
+         id="path5950"
+         d="m 144.32606,119.77171 0.0955,10.2907"
+         style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+         sodipodi:nodetypes="cc" />
+      <text
+         id="text5954"
+         y="125.10642"
+         x="147.69817"
+         style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         xml:space="preserve"><tspan
+           style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+           y="125.10642"
+           x="147.69817"
+           sodipodi:role="line"
+           id="tspan5952">uses</tspan></text>
+    </g>
+    <path
+       id="path5958"
+       d="m 75.835496,157.09431 -11.67482,10.85422"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+       sodipodi:nodetypes="cc" />
+    <text
+       id="text5962"
+       y="162.28349"
+       x="67.236626"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="162.28349"
+         x="67.236626"
+         sodipodi:role="line"
+         id="tspan5960">uses</tspan></text>
+    <g
+       transform="translate(-200.41915)"
+       id="g5972">
+      <path
+         id="path5966"
+         d="m 144.32606,119.77171 0.0955,10.2907"
+         style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+         sodipodi:nodetypes="cc" />
+      <text
+         id="text5970"
+         y="125.10642"
+         x="147.69817"
+         style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         xml:space="preserve"><tspan
+           style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+           y="125.10642"
+           x="147.69817"
+           sodipodi:role="line"
+           id="tspan5968">uses</tspan></text>
+    </g>
+    <g
+       id="g5980"
+       transform="translate(-100.34022)">
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+         d="m 144.32606,119.77171 0.0955,48.17959"
+         id="path5974" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         x="147.69817"
+         y="125.10642"
+         id="text5978"><tspan
+           id="tspan5976"
+           sodipodi:role="line"
+           x="147.69817"
+           y="125.10642"
+           style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">uses</tspan></text>
+    </g>
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+       d="m -55.30918,194.76558 0.0955,64.38035"
+       id="path5990" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="-47.102966"
+       y="245.19576"
+       id="text5994"><tspan
+         id="tspan5992"
+         sodipodi:role="line"
+         x="-47.102966"
+         y="245.19576"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">sends e-mails</tspan><tspan
+         id="tspan6047"
+         sodipodi:role="line"
+         x="-47.102966"
+         y="247.86809"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">using</tspan></text>
+    <g
+       id="g6012"
+       transform="translate(-0.2613025,37.627586)">
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+         d="m 144.32606,119.77171 0.0955,48.04894"
+         id="path6006" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         x="147.69817"
+         y="125.10642"
+         id="text6010"><tspan
+           id="tspan6008"
+           sodipodi:role="line"
+           x="147.69817"
+           y="125.10642"
+           style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">uses</tspan></text>
+    </g>
+    <path
+       id="path6014"
+       d="m 46.337556,232.78512 0.0955,27.14472"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+       sodipodi:nodetypes="cc" />
+    <text
+       id="text6018"
+       y="246.71564"
+       x="52.975945"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="246.71564"
+         x="52.975945"
+         sodipodi:role="line"
+         id="tspan6016">uses JDBC</tspan></text>
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+       d="m 94.939854,232.78512 0.0955,26.62212"
+       id="path6030" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="103.0154"
+       y="244.99898"
+       id="text6034"><tspan
+         id="tspan6032"
+         sodipodi:role="line"
+         x="103.0154"
+         y="244.99898"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">uses</tspan><tspan
+         sodipodi:role="line"
+         x="103.0154"
+         y="247.67131"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         id="tspan6075">[HTTPS/JSON]</tspan></text>
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+       d="m 64.160679,119.24802 11.674816,10.85423"
+       id="path6041" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="67.236626"
+       y="125.77098"
+       id="text6045"><tspan
+         id="tspan6043"
+         sodipodi:role="line"
+         x="67.236626"
+         y="125.77098"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">uses</tspan></text>
+    <g
+       transform="matrix(0.60601135,0,0,0.60601135,62.139947,63.397851)"
+       id="g6062">
+      <rect
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583"
+         id="rect6052"
+         width="63.630196"
+         height="44.540539"
+         x="105.81809"
+         y="234.97412" />
+      <text
+         id="text6060"
+         y="247.31226"
+         x="137.64421"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         xml:space="preserve"><tspan
+           id="tspan6054"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="247.31226"
+           x="137.64421"
+           sodipodi:role="line">AuthNAuth</tspan><tspan
+           id="tspan6056"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="254.36781"
+           x="137.64421"
+           sodipodi:role="line">Api</tspan><tspan
+           id="tspan6058"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="260.13596"
+           x="137.64421"
+           sodipodi:role="line">[Feign Client]</tspan></text>
+    </g>
+    <path
+       id="path6064"
+       d="m 144.06643,232.78512 0.0955,26.62212"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+       sodipodi:nodetypes="cc" />
+    <text
+       id="text6081"
+       y="244.99898"
+       x="152.1403"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="244.99898"
+         x="152.1403"
+         sodipodi:role="line"
+         id="tspan6077">uses</tspan><tspan
+         id="tspan6079"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="247.67131"
+         x="152.1403"
+         sodipodi:role="line">[HTTPS/JSON]</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="3.9816859"
+       y="244.99898"
+       id="text6087"><tspan
+         id="tspan6083"
+         sodipodi:role="line"
+         x="3.9816859"
+         y="244.99898"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">uses</tspan><tspan
+         sodipodi:role="line"
+         x="3.9816859"
+         y="247.67131"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         id="tspan6085">[HTTPS/JSON]</tspan></text>
+    <g
+       id="g6109"
+       transform="matrix(0.60601135,0,0,0.60601135,-88.501042,25.55155)">
+      <rect
+         y="234.97412"
+         x="105.81809"
+         height="44.540539"
+         width="63.630196"
+         id="rect6099"
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         x="137.64421"
+         y="247.31226"
+         id="text6107"><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="247.31226"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan6101">Authorization</tspan><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="254.36781"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan6103">Service</tspan><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="260.13596"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan6105">[Spring Service]</tspan></text>
+    </g>
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+       d="m -4.4858149,232.78512 0.0955,27.14472"
+       id="path6111" />
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+       d="M 75.835496,147.68741 -5.0845334,168.07918"
+       id="path6113" />
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+       d="m 25.534731,181.13416 -11.021564,0.0102"
+       id="path6115" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="25.950804"
+       y="157.972"
+       id="text6119"><tspan
+         id="tspan6117"
+         sodipodi:role="line"
+         x="25.950804"
+         y="157.972"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">uses</tspan></text>
+    <text
+       id="text6123"
+       y="180.18272"
+       x="20.8554"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="180.18272"
+         x="20.8554"
+         sodipodi:role="line"
+         id="tspan6121">uses</tspan></text>
+    <path
+       id="path6125"
+       d="M 75.704845,143.37591 -35.918249,143.25542"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+       sodipodi:nodetypes="cc" />
+    <text
+       id="text6129"
+       y="141.77124"
+       x="23.860382"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="141.77124"
+         x="23.860382"
+         sodipodi:role="line"
+         id="tspan6127">uses</tspan></text>
+  </g>
+  <style
+     type="text/css"
+     id="style483"><![CDATA[
+		.st1 {fill:#08427b;stroke:#073b6f;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st2 {fill:#ffffff;font-family:Calibri;font-size:0.833336em}
+		.st3 {font-size:0.599989em}
+		.st4 {font-size:0.799995em}
+		.st5 {fill:#1168bd;stroke:#1864ad;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st6 {fill:#438dd5;stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st7 {fill:#85bbf0;stroke:#78a8d8;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st8 {fill:#000000;font-family:Calibri;font-size:0.833336em}
+		.st9 {fill:#438dd5}
+		.st10 {stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st11 {fill:#3d81c3;stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st12 {stroke:#408dd5;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st13 {fill:#408dd5;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st14 {fill:#438dd5;stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.283465}
+		.st15 {marker-end:url(#mrkr13-73);stroke:#444444;stroke-dasharray:5.25,3.75;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st16 {fill:#444444;fill-opacity:1;stroke:#444444;stroke-opacity:1;stroke-width:0.22935779816514}
+		.st17 {fill:#ffffff;stroke:none;stroke-linecap:butt;stroke-width:7.2}
+		.st18 {fill:#000000;font-family:Calibri;font-size:0.666664em}
+		.st19 {font-size:0.749991em}
+		.st20 {fill:none;stroke:#444444;stroke-dasharray:7.5,4.5;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.5}
+		.st21 {font-size:1em}
+		.st22 {fill:#999999;stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st23 {fill:#999999}
+		.st24 {stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st25 {fill:#8b8b8b;stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st26 {stroke:#999999;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st27 {fill:#999999;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st28 {fill:#999999;stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.283465}
+		.st29 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3}
+	]]></style>
+</svg>
diff --git a/src/main/asciidoc/images/architecture-container-diag.png b/src/main/asciidoc/images/architecture-container-diag.png
new file mode 100644
index 0000000..93212d8
--- /dev/null
+++ b/src/main/asciidoc/images/architecture-container-diag.png
Binary files differ
diff --git a/src/main/asciidoc/images/architecture-container-diag.svg b/src/main/asciidoc/images/architecture-container-diag.svg
new file mode 100644
index 0000000..e97ef25
--- /dev/null
+++ b/src/main/asciidoc/images/architecture-container-diag.svg
@@ -0,0 +1,1001 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="187.64917mm"
+   height="192.62976mm"
+   viewBox="0 0 187.64917 192.62976"
+   version="1.1"
+   id="svg8"
+   inkscape:version="1.0 (4035a4f, 2020-05-01)"
+   sodipodi:docname="architecture-container-diag.svg"
+   inkscape:export-filename="/Users/tobiass/Work/repos/org.eclipse.openk/src/main/asciidoc/images/architecture-container-diag.png"
+   inkscape:export-xdpi="300"
+   inkscape:export-ydpi="300">
+  <defs
+     id="defs2">
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker4845"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4843"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker4667"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4665"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4501"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4499" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4335"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend"
+       inkscape:collect="always">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4333" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4195"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4193" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker4051"
+       style="overflow:visible"
+       inkscape:isstock="true"
+       inkscape:collect="always">
+      <path
+         id="path4049"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker3907"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path3905"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3774"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3772" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3653"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend"
+       inkscape:collect="always">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3651" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker3514"
+       style="overflow:visible"
+       inkscape:isstock="true"
+       inkscape:collect="always">
+      <path
+         id="path3512"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3406"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend"
+       inkscape:collect="always">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3404" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow1Mend"
+       style="overflow:visible"
+       inkscape:isstock="true"
+       inkscape:collect="always">
+      <path
+         id="path2967"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Lend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker3306"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path3304"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.8,0,0,-0.8,-10,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Lstart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow2Lstart"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path2976"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="matrix(1.1,0,0,1.1,1.1,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Lend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow1Lend"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path2961"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.8,0,0,-0.8,-10,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Lstart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow1Lstart"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path2958"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(0.8,0,0,0.8,10,0)" />
+    </marker>
+    <g
+       id="lend13">
+      <path
+         id="path485"
+         d="M 3,1 0,0 3,-1 v 2" />
+    </g>
+    <marker
+       v:setback="13.08"
+       v:arrowType="13"
+       v:arrowSize="2"
+       refX="-13.08"
+       orient="auto"
+       overflow="visible"
+       class="st16"
+       id="mrkr13-73">
+      <use
+         height="100%"
+         width="100%"
+         y="0"
+         x="0"
+         id="use488"
+         xlink:href="#lend13"
+         transform="scale(-4.36)" />
+    </marker>
+  </defs>
+  <sodipodi:namedview
+     lock-margins="true"
+     fit-margin-bottom="5"
+     fit-margin-right="5"
+     fit-margin-left="5"
+     fit-margin-top="5"
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1.012555"
+     inkscape:cx="-29.44567"
+     inkscape:cy="269.87364"
+     inkscape:document-units="mm"
+     inkscape:current-layer="layer1"
+     inkscape:document-rotation="0"
+     showgrid="false"
+     showguides="false"
+     inkscape:window-width="2572"
+     inkscape:window-height="1805"
+     inkscape:window-x="1106"
+     inkscape:window-y="23"
+     inkscape:window-maximized="0" />
+  <metadata
+     id="metadata5">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     transform="translate(-21.410249,-75.1118)"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <g
+       id="g5256"
+       transform="matrix(0.60601135,0,0,0.60601135,25.290463,76.280578)">
+      <g
+         transform="translate(278.28735,-28.899031)"
+         id="g1785">
+        <path
+           id="rect1768"
+           style="fill:#08427b;fill-opacity:1;fill-rule:evenodd;stroke-width:0.999999"
+           d="m -716.0957,133.11914 a 44.372757,44.372757 0 0 0 -44.12891,44.37109 44.372757,44.372757 0 0 0 13.91602,32.27149 h -41.64453 c -14.89849,0 -26.89258,11.99409 -26.89258,26.89258 v 68.57617 c 0,14.89849 11.99409,26.89258 26.89258,26.89258 h 144.19921 c 14.89852,0 26.89258,-11.99409 26.89258,-26.89258 V 236.6543 c 0,-14.89849 -11.99406,-26.89258 -26.89258,-26.89258 h -41.64453 a 44.372757,44.372757 0 0 0 13.91797,-32.27149 44.372757,44.372757 0 0 0 -44.37305,-44.37109 44.372757,44.372757 0 0 0 -0.24218,0 z"
+           transform="scale(0.26458333)" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-weight:normal;font-size:5.52804px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.138201"
+           x="-189.59583"
+           y="63.141998"
+           id="text1777"><tspan
+             sodipodi:role="line"
+             id="tspan1775"
+             x="-189.59583"
+             y="63.141998"
+             style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.138201">SPA User</tspan><tspan
+             sodipodi:role="line"
+             x="-189.59583"
+             y="70.091354"
+             style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.138201"
+             id="tspan1779">[Person]</tspan></text>
+      </g>
+      <g
+         transform="translate(11.719776,3.6509745)"
+         id="g1970">
+        <g
+           id="g1915"
+           transform="matrix(1.6968085,0,0,1.6968085,221.73028,-84.491926)">
+          <rect
+             ry="0.84923375"
+             y="99.88063"
+             x="-71.083817"
+             height="26.249598"
+             width="37.499928"
+             id="rect1886"
+             style="fill:#3d81c3;fill-opacity:1;stroke-width:0.358357" />
+          <g
+             transform="translate(-0.06383133,0.18112087)"
+             style="fill:#438dd5;fill-opacity:1"
+             id="g1906">
+            <rect
+               style="fill:#438dd5;fill-opacity:1;stroke-width:0.299779"
+               id="rect1888"
+               width="35.537167"
+               height="21.589588"
+               x="-70.038605"
+               y="103.36477" />
+            <g
+               style="fill:#438dd5;fill-opacity:1"
+               id="g1899"
+               transform="translate(-0.0979895)">
+              <rect
+                 ry="1.0706718"
+                 y="100.69426"
+                 x="-64.437927"
+                 height="2.1413436"
+                 width="29.936491"
+                 id="rect1890"
+                 style="fill:#438dd5;fill-opacity:1;stroke-width:0.276217" />
+              <circle
+                 r="1.0790378"
+                 cy="101.80888"
+                 cx="-68.763588"
+                 id="path1892"
+                 style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583" />
+              <circle
+                 style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583"
+                 id="circle1894"
+                 cx="-66.061241"
+                 cy="101.80888"
+                 r="1.0790378" />
+            </g>
+          </g>
+        </g>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+           x="132.93182"
+           y="99.937546"
+           id="text1919"><tspan
+             sodipodi:role="line"
+             x="132.93182"
+             y="99.937546"
+             style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             id="tspan1921">Frontend</tspan><tspan
+             sodipodi:role="line"
+             x="132.93182"
+             y="105.7057"
+             style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             id="tspan1925">[singe-page-application]</tspan></text>
+      </g>
+      <g
+         transform="translate(0.78390805,2.8670655)"
+         id="g1976">
+        <rect
+           style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583"
+           id="rect1940"
+           width="63.630196"
+           height="44.540539"
+           x="9.3974047"
+           y="85.770287" />
+        <text
+           id="text1957"
+           y="98.108429"
+           x="41.329636"
+           style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+           xml:space="preserve"><tspan
+             id="tspan1953"
+             style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             y="98.108429"
+             x="41.329636"
+             sodipodi:role="line">Web Application</tspan><tspan
+             id="tspan1955"
+             style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             y="103.87658"
+             x="41.329636"
+             sodipodi:role="line">[tomcat]</tspan></text>
+      </g>
+      <g
+         transform="translate(76.158259,0.26130234)"
+         id="g1996">
+        <rect
+           y="14.17335"
+           x="155.2043"
+           height="44.540539"
+           width="63.630196"
+           id="rect1978"
+           style="fill:#999999;fill-opacity:1;stroke-width:0.264583" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+           x="187.07486"
+           y="26.511494"
+           id="text1984"><tspan
+             sodipodi:role="line"
+             x="187.07486"
+             y="26.511494"
+             style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             id="tspan1980">AuthNAuth</tspan><tspan
+             sodipodi:role="line"
+             x="187.07486"
+             y="32.279644"
+             style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             id="tspan1982">[openK Modul]</tspan></text>
+      </g>
+      <g
+         transform="translate(14.752127,218.43936)"
+         id="g2013">
+        <g
+           id="g2006"
+           transform="translate(61.406131,-69.767817)">
+          <rect
+             y="14.17335"
+             x="155.2043"
+             height="44.540539"
+             width="63.630196"
+             id="rect1998"
+             style="fill:#999999;fill-opacity:1;stroke-width:0.264583" />
+          <text
+             xml:space="preserve"
+             style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+             x="187.07486"
+             y="26.511494"
+             id="text2004"><tspan
+               sodipodi:role="line"
+               x="187.07486"
+               y="26.511494"
+               style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+               id="tspan2000">Kontaktstammdaten</tspan><tspan
+               sodipodi:role="line"
+               x="187.07486"
+               y="32.279644"
+               style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+               id="tspan2002">[openK Modul]</tspan></text>
+        </g>
+      </g>
+      <g
+         transform="translate(-3.463585,65.81216)"
+         id="g2882">
+        <g
+           id="g2860"
+           transform="matrix(0.8452813,0,0,0.8452813,-22.847855,18.799358)">
+          <path
+             d="m 43.311036,192.31202 v 28.75019 a 37.499999,10.190804 0 0 0 0,0.0305 v 0.48525 h 0.04806 a 37.499999,10.190804 0 0 0 37.451977,9.67486 37.499999,10.190804 0 0 0 37.451977,-9.67486 h 0.0475 v -0.51573 a 37.499999,10.190804 0 0 0 0,-0.031 v -28.71918 z"
+             style="fill:#438dd5;fill-opacity:1;stroke:#3d81c3;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+             id="path2015" />
+          <ellipse
+             ry="10.190804"
+             rx="37.5"
+             cy="192.31224"
+             cx="80.810791"
+             id="ellipse2023"
+             style="fill:#438dd5;fill-opacity:1;stroke:#3d81c3;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+        </g>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+           x="45.386959"
+           y="200.01646"
+           id="text2868"><tspan
+             sodipodi:role="line"
+             x="45.386959"
+             y="200.01646"
+             style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             id="tspan2864">Statement DB</tspan><tspan
+             sodipodi:role="line"
+             x="45.386959"
+             y="205.78462"
+             style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             id="tspan2866">[e.g.postgreSQL]</tspan></text>
+      </g>
+      <g
+         transform="translate(103.43703,77.074607)"
+         id="g2892">
+        <rect
+           y="85.770287"
+           x="9.3974047"
+           height="44.540539"
+           width="63.630196"
+           id="rect2884"
+           style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+           x="41.329636"
+           y="98.108429"
+           id="text2890"><tspan
+             sodipodi:role="line"
+             x="41.329636"
+             y="98.108429"
+             style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             id="tspan2886">API Application</tspan><tspan
+             sodipodi:role="line"
+             x="41.329636"
+             y="103.87658"
+             style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             id="tspan2888">[Web Application]</tspan></text>
+      </g>
+      <g
+         transform="translate(7.0163396,2.0758922)"
+         id="g2912">
+        <rect
+           style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583"
+           id="rect2894"
+           width="63.630196"
+           height="44.540539"
+           x="105.81809"
+           y="234.97412" />
+        <text
+           id="text2900"
+           y="247.31226"
+           x="137.64421"
+           style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+           xml:space="preserve"><tspan
+             id="tspan2896"
+             style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             y="247.31226"
+             x="137.64421"
+             sodipodi:role="line">Workflow Engine</tspan><tspan
+             id="tspan2898"
+             style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             y="253.08041"
+             x="137.64421"
+             sodipodi:role="line">[Camunda]</tspan></text>
+      </g>
+      <g
+         transform="translate(14.752127,144.23424)"
+         id="g2924">
+        <g
+           transform="translate(61.406131,-69.767817)"
+           id="g2922">
+          <rect
+             style="fill:#999999;fill-opacity:1;stroke-width:0.264583"
+             id="rect2914"
+             width="63.630196"
+             height="44.540539"
+             x="155.2043"
+             y="14.17335" />
+          <text
+             id="text2920"
+             y="26.511494"
+             x="187.07486"
+             style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+             xml:space="preserve"><tspan
+               id="tspan2916"
+               style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+               y="26.511494"
+               x="187.07486"
+               sodipodi:role="line">Email Server</tspan><tspan
+               id="tspan2918"
+               style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+               y="32.279644"
+               x="187.07486"
+               sodipodi:role="line" /></text>
+        </g>
+      </g>
+      <g
+         id="g2954"
+         transform="translate(14.752127,292.64448)">
+        <g
+           id="g2952"
+           transform="translate(61.406131,-69.767817)">
+          <rect
+             y="14.17335"
+             x="155.2043"
+             height="44.540539"
+             width="63.630196"
+             id="rect2944"
+             style="fill:#999999;fill-opacity:1;stroke-width:0.264583" />
+          <text
+             xml:space="preserve"
+             style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+             x="187.07486"
+             y="26.511494"
+             id="text2950"><tspan
+               sodipodi:role="line"
+               x="187.07486"
+               y="26.511494"
+               style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+               id="tspan2946">Map Tile Server</tspan><tspan
+               sodipodi:role="line"
+               x="187.07486"
+               y="32.279644"
+               style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+               id="tspan2948">[OpenStreetMap]</tspan></text>
+        </g>
+      </g>
+      <path
+         sodipodi:nodetypes="cc"
+         id="path2956"
+         d="M 84.92337,58.793104 39.718009,87.536397"
+         style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.5, 1.5;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#Arrow1Mend)" />
+      <text
+         id="text3390"
+         y="66.893486"
+         x="51.231979"
+         style="font-style:normal;font-weight:normal;font-size:3.52778px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         xml:space="preserve"><tspan
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583"
+           y="66.893486"
+           x="51.231979"
+           id="tspan3388"
+           sodipodi:role="line">visits SPA Portal</tspan><tspan
+           id="tspan3392"
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583"
+           y="71.303207"
+           x="51.231979"
+           sodipodi:role="line">using</tspan><tspan
+           id="tspan3394"
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583"
+           y="75.712936"
+           x="51.231979"
+           sodipodi:role="line">[HTTPS]</tspan></text>
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.5, 1.5;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker3406)"
+         d="M 91.978543,58.270498 138.75172,88.84291"
+         id="path3402" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:3.52778px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         x="134.37212"
+         y="68.461304"
+         id="text3494"><tspan
+           sodipodi:role="line"
+           id="tspan3488"
+           x="134.37212"
+           y="68.461304"
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583">visits and</tspan><tspan
+           sodipodi:role="line"
+           x="134.37212"
+           y="72.871025"
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583"
+           id="tspan3492">modifies</tspan><tspan
+           id="tspan3502"
+           sodipodi:role="line"
+           x="134.37212"
+           y="77.280754"
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583">current Statements</tspan></text>
+      <path
+         id="path3510"
+         d="m 116.01839,36.582375 113.66667,0.261301"
+         style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.5, 1.5;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker3514)"
+         sodipodi:nodetypes="cc" />
+      <text
+         id="text3634"
+         y="30.049809"
+         x="157.88936"
+         style="font-style:normal;font-weight:normal;font-size:3.52778px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         xml:space="preserve"><tspan
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583"
+           y="30.049809"
+           x="157.88936"
+           id="tspan3628"
+           sodipodi:role="line">request Authentication Token</tspan><tspan
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583"
+           y="34.459534"
+           x="157.88936"
+           sodipodi:role="line"
+           id="tspan3632">[JSON/HTTPS]</tspan></text>
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.5, 1.5;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker3653)"
+         d="M 75.255171,112.09885 H 111.83754"
+         id="path3649" />
+      <text
+         id="text3757"
+         y="109.74713"
+         x="92.563683"
+         style="font-style:normal;font-weight:normal;font-size:3.52778px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         xml:space="preserve"><tspan
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583"
+           y="109.74713"
+           x="92.563683"
+           sodipodi:role="line"
+           id="tspan3755">delivers</tspan></text>
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.5, 1.5;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker3774)"
+         d="M 245.36322,88.842908 116.27969,41.808425"
+         id="path3770" />
+      <text
+         id="text3886"
+         y="49.908813"
+         x="174.35143"
+         style="font-style:normal;font-weight:normal;font-size:3.52778px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         xml:space="preserve"><tspan
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583"
+           y="49.908813"
+           x="174.35143"
+           id="tspan3880"
+           sodipodi:role="line">delivers Statement</tspan><tspan
+           id="tspan3888"
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583"
+           y="54.318539"
+           x="174.35143"
+           sodipodi:role="line">notifications</tspan><tspan
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583"
+           y="58.728264"
+           x="174.35143"
+           sodipodi:role="line"
+           id="tspan3884">[IMAP]</tspan></text>
+      <path
+         id="path3903"
+         d="m 177.42452,185.2636 h 51.73793"
+         style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.5, 1.5;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker3907)"
+         sodipodi:nodetypes="cc" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:3.52778px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         x="192.64261"
+         y="184.24461"
+         id="text4023"><tspan
+           id="tspan4021"
+           sodipodi:role="line"
+           x="192.64261"
+           y="184.24461"
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583">request contact</tspan><tspan
+           id="tspan4037"
+           sodipodi:role="line"
+           x="192.64261"
+           y="188.65434"
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583">details</tspan><tspan
+           id="tspan4039"
+           sodipodi:role="line"
+           x="192.64261"
+           y="193.06406"
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583">[JSON/HTTPS]</tspan></text>
+      <path
+         id="path4047"
+         d="m 143.97778,133.78697 -1e-5,28.48199"
+         style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.5, 1.5;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+         sodipodi:nodetypes="cc" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:3.52778px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         x="129.11897"
+         y="146.32951"
+         id="text4175"><tspan
+           id="tspan4173"
+           sodipodi:role="line"
+           x="129.11897"
+           y="146.32951"
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583">makes API calls</tspan><tspan
+           id="tspan4177"
+           sodipodi:role="line"
+           x="129.11897"
+           y="150.73924"
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583">[JSON/HTTPS]</tspan></text>
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.5, 1.5;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4195)"
+         d="m 143.97778,207.87044 -1e-5,28.48199"
+         id="path4185" />
+      <text
+         id="text4191"
+         y="220.41269"
+         x="129.11897"
+         style="font-style:normal;font-weight:normal;font-size:3.52778px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         xml:space="preserve"><tspan
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583"
+           y="220.41269"
+           x="129.11897"
+           sodipodi:role="line"
+           id="tspan4187">manages tasks</tspan><tspan
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583"
+           y="224.82242"
+           x="129.11897"
+           sodipodi:role="line"
+           id="tspan4189">[JSON/HTTPS]</tspan></text>
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.5, 1.5;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4335)"
+         d="M 169.14815,162.32228 231.36256,58.975192"
+         id="path4331" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:3.52778px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         x="260.51685"
+         y="63.235249"
+         id="text4477"><tspan
+           sodipodi:role="line"
+           id="tspan4473"
+           x="260.51685"
+           y="63.235249"
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583">verify Authentication Token</tspan><tspan
+           id="tspan4475"
+           sodipodi:role="line"
+           x="260.51685"
+           y="67.644974"
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583">[JSON/HTTPS]</tspan></text>
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.5, 1.5;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4501)"
+         d="M 112.62146,185.0023 62.451333,239.09195"
+         id="path4491" />
+      <text
+         id="text4497"
+         y="201.46437"
+         x="71.371078"
+         style="font-style:normal;font-weight:normal;font-size:3.52778px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         xml:space="preserve"><tspan
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583"
+           y="201.46437"
+           x="71.371078"
+           sodipodi:role="line"
+           id="tspan4493">reads and</tspan><tspan
+           id="tspan4653"
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583"
+           y="205.8741"
+           x="71.371078"
+           sodipodi:role="line">writes Statement</tspan><tspan
+           id="tspan4655"
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583"
+           y="210.28381"
+           x="71.371078"
+           sodipodi:role="line">data</tspan><tspan
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583"
+           y="214.69354"
+           x="71.371078"
+           sodipodi:role="line"
+           id="tspan4495">[JDBC]</tspan></text>
+      <path
+         id="path4663"
+         d="m 177.50984,168.33225 53.85272,-35.15194"
+         style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.5, 1.5;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4667)"
+         sodipodi:nodetypes="cc" />
+      <text
+         id="text4831"
+         y="140.05824"
+         x="251.63257"
+         style="font-style:normal;font-weight:normal;font-size:3.52778px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         xml:space="preserve"><tspan
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583"
+           y="140.05824"
+           x="251.63257"
+           id="tspan4827"
+           sodipodi:role="line">send Statement status</tspan><tspan
+           id="tspan4833"
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583"
+           y="144.46797"
+           x="251.63257"
+           sodipodi:role="line">update notification</tspan><tspan
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583"
+           y="148.87769"
+           x="251.63257"
+           sodipodi:role="line"
+           id="tspan4829">[SMTP]</tspan></text>
+      <path
+         id="path4841"
+         d="m 176.37931,111.83755 53.56705,146.5908"
+         style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.5, 1.5;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4845)"
+         sodipodi:nodetypes="cc" />
+      <text
+         id="text5013"
+         y="229.97258"
+         x="239.1545"
+         style="font-style:normal;font-weight:normal;font-size:3.52778px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         xml:space="preserve"><tspan
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583"
+           y="229.97258"
+           x="239.1545"
+           sodipodi:role="line"
+           id="tspan5009">request map tiles</tspan><tspan
+           style="font-size:3.52778px;text-align:center;text-anchor:middle;stroke-width:0.264583"
+           y="234.38231"
+           x="239.1545"
+           sodipodi:role="line"
+           id="tspan5011">[HTTP]</tspan></text>
+      <rect
+         ry="3.6836877"
+         y="82.06971"
+         x="2.2453284"
+         height="215.79469"
+         width="216.44437"
+         id="rect5017"
+         style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.792683;stroke-miterlimit:4;stroke-dasharray:0.792683, 2.37805;stroke-dashoffset:0;stroke-opacity:1" />
+      <text
+         id="text5057"
+         y="293.96552"
+         x="4.4421449"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         xml:space="preserve"><tspan
+           style="font-size:4.23333px;stroke-width:0.264583"
+           y="293.96552"
+           x="4.4421449"
+           id="tspan5055"
+           sodipodi:role="line">Statement Public Affairs Module</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.93889px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         x="4.4421449"
+         y="306.66553"
+         id="text5061"><tspan
+           sodipodi:role="line"
+           id="tspan5059"
+           x="4.4421449"
+           y="306.66553"
+           style="font-size:4.93889px;stroke-width:0.264583">Container diagram: Statement Public Affairs Module</tspan></text>
+    </g>
+  </g>
+  <style
+     id="style483"
+     type="text/css"><![CDATA[
+		.st1 {fill:#08427b;stroke:#073b6f;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st2 {fill:#ffffff;font-family:Calibri;font-size:0.833336em}
+		.st3 {font-size:0.599989em}
+		.st4 {font-size:0.799995em}
+		.st5 {fill:#1168bd;stroke:#1864ad;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st6 {fill:#438dd5;stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st7 {fill:#85bbf0;stroke:#78a8d8;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st8 {fill:#000000;font-family:Calibri;font-size:0.833336em}
+		.st9 {fill:#438dd5}
+		.st10 {stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st11 {fill:#3d81c3;stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st12 {stroke:#408dd5;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st13 {fill:#408dd5;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st14 {fill:#438dd5;stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.283465}
+		.st15 {marker-end:url(#mrkr13-73);stroke:#444444;stroke-dasharray:5.25,3.75;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st16 {fill:#444444;fill-opacity:1;stroke:#444444;stroke-opacity:1;stroke-width:0.22935779816514}
+		.st17 {fill:#ffffff;stroke:none;stroke-linecap:butt;stroke-width:7.2}
+		.st18 {fill:#000000;font-family:Calibri;font-size:0.666664em}
+		.st19 {font-size:0.749991em}
+		.st20 {fill:none;stroke:#444444;stroke-dasharray:7.5,4.5;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.5}
+		.st21 {font-size:1em}
+		.st22 {fill:#999999;stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st23 {fill:#999999}
+		.st24 {stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st25 {fill:#8b8b8b;stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st26 {stroke:#999999;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st27 {fill:#999999;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st28 {fill:#999999;stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.283465}
+		.st29 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3}
+	]]></style>
+</svg>
diff --git a/src/main/asciidoc/images/architecture-feature-modules-diag.svg b/src/main/asciidoc/images/architecture-feature-modules-diag.svg
new file mode 100644
index 0000000..ccbdcef
--- /dev/null
+++ b/src/main/asciidoc/images/architecture-feature-modules-diag.svg
@@ -0,0 +1,1513 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="226.08469mm"
+   height="176.70599mm"
+   viewBox="0 0 226.08468 176.70599"
+   version="1.1"
+   id="svg8"
+   inkscape:version="1.0 (4035a4f, 2020-05-01)"
+   sodipodi:docname="architecture-feature-modules-diag.svg"
+   inkscape:export-filename="/Users/tobiass/Work/repos/org.eclipse.openk/src/main/asciidoc/images/architecture-backend-component-diag.png"
+   inkscape:export-xdpi="300"
+   inkscape:export-ydpi="300">
+  <defs
+     id="defs2">
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker13917"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path13915" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker13483"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path13481" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker13069"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path13067"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker12657"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path12655" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker12253"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path12251" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker11869"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path11867"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker11487"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path11485" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker11029"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path11027" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker10663"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path10661"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker10305"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path10303" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker9949"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path9947" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker9601"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path9599"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker9267"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path9265" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker8893"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path8891"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker8563"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path8561" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker6492"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path6490"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker6174"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path6172"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker5946"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path5944" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker5636"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path5634" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker5071"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path5069" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4869"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4867" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4673"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4671" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4489"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4487" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4297"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4295" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4125"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4123" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3953"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3951" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3787"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3785" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3633"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3631" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3479"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3477" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3337"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3335" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3201"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3199" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3059"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3057" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker2924"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path2922" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker2806"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path2804" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker2688"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path2686" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker2582"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path2580" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker2353"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path2351" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker2253"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path2251" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker4845"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4843"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker4667"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4665"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4501"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4499" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4195"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4193" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker3907"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path3905"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3774"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3772" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Lend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker3306"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path3304"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.8,0,0,-0.8,-10,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Lstart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow2Lstart"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path2976"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="matrix(1.1,0,0,1.1,1.1,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Lend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow1Lend"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path2961"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.8,0,0,-0.8,-10,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Lstart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow1Lstart"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path2958"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(0.8,0,0,0.8,10,0)" />
+    </marker>
+    <g
+       id="lend13">
+      <path
+         id="path485"
+         d="M 3,1 0,0 3,-1 v 2" />
+    </g>
+    <marker
+       v:setback="13.08"
+       v:arrowType="13"
+       v:arrowSize="2"
+       refX="-13.08"
+       orient="auto"
+       overflow="visible"
+       class="st16"
+       id="mrkr13-73">
+      <use
+         height="100%"
+         width="100%"
+         y="0"
+         x="0"
+         id="use488"
+         xlink:href="#lend13"
+         transform="scale(-4.36)" />
+    </marker>
+  </defs>
+  <sodipodi:namedview
+     lock-margins="true"
+     fit-margin-bottom="5"
+     fit-margin-right="5"
+     fit-margin-left="5"
+     fit-margin-top="5"
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1.012555"
+     inkscape:cx="207.00141"
+     inkscape:cy="317.22197"
+     inkscape:document-units="mm"
+     inkscape:current-layer="layer1"
+     inkscape:document-rotation="0"
+     showgrid="false"
+     showguides="false"
+     inkscape:window-width="2572"
+     inkscape:window-height="1805"
+     inkscape:window-x="1333"
+     inkscape:window-y="90"
+     inkscape:window-maximized="0" />
+  <metadata
+     id="metadata5">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     transform="translate(31.155598,-98.920647)"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker10305)"
+       d="m 82.133707,189.67611 24.853743,25.31801"
+       id="path10301" />
+    <path
+       id="path10659"
+       d="m 125.97111,189.39529 -0.1658,25.70754"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker10663)"
+       sodipodi:nodetypes="cc" />
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker11029)"
+       d="m 170.93487,189.65659 -25.3868,25.33753"
+       id="path11025" />
+    <g
+       transform="translate(88.762032,-4.1808429)"
+       id="g8202">
+      <g
+         transform="translate(42.551893,19.664472)"
+         id="g8148">
+        <rect
+           y="167.94853"
+           x="-24.326479"
+           height="16.278662"
+           width="38.560619"
+           id="rect8138"
+           style="fill:#438dd5;fill-opacity:1;stroke-width:0.124518" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+           x="-5.068717"
+           y="175.23189"
+           id="text8146"><tspan
+             sodipodi:role="line"
+             x="-5.0687165"
+             y="175.23189"
+             style="font-size:3.42059px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+             id="tspan8140">Statement Info</tspan><tspan
+             id="tspan8142"
+             sodipodi:role="line"
+             x="-5.0687165"
+             y="179.50763"
+             style="font-size:3.42059px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034">Form Module</tspan><tspan
+             sodipodi:role="line"
+             x="-5.068717"
+             y="183.00319"
+             style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+             id="tspan8144" /></text>
+      </g>
+      <g
+         id="g8164"
+         transform="translate(86.932913,19.664472)">
+        <rect
+           style="fill:#438dd5;fill-opacity:1;stroke-width:0.124518"
+           id="rect8154"
+           width="38.560619"
+           height="16.278662"
+           x="-24.326479"
+           y="167.94853" />
+        <text
+           id="text8162"
+           y="175.22353"
+           x="-5.1630845"
+           style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+           xml:space="preserve"><tspan
+             id="tspan8156"
+             style="font-size:3.42059px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+             y="175.22353"
+             x="-5.163085"
+             sodipodi:role="line">Statement Editor</tspan><tspan
+             style="font-size:3.42059px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+             y="179.49927"
+             x="-5.163084"
+             sodipodi:role="line"
+             id="tspan8158">Form Module</tspan><tspan
+             id="tspan8160"
+             style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+             y="182.99483"
+             x="-5.1630845"
+             sodipodi:role="line" /></text>
+      </g>
+      <g
+         transform="translate(-1.8291187,19.664472)"
+         id="g8176">
+        <rect
+           y="167.94853"
+           x="-24.326479"
+           height="16.278662"
+           width="38.560619"
+           id="rect8166"
+           style="fill:#438dd5;fill-opacity:1;stroke-width:0.124518" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+           x="-4.973515"
+           y="175.23189"
+           id="text8174"><tspan
+             sodipodi:role="line"
+             x="-4.973515"
+             y="175.23189"
+             style="font-size:3.42059px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+             id="tspan8168">Workflow Data</tspan><tspan
+             id="tspan8170"
+             sodipodi:role="line"
+             x="-4.9735146"
+             y="179.50763"
+             style="font-size:3.42059px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034">Form Module</tspan><tspan
+             sodipodi:role="line"
+             x="-4.973515"
+             y="183.00319"
+             style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+             id="tspan8172" /></text>
+      </g>
+    </g>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="81.385109"
+       y="142.78859"
+       id="text3757"><tspan
+         id="tspan3755"
+         sodipodi:role="line"
+         x="81.385109"
+         y="142.78859"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034" /></text>
+    <text
+       id="text5061"
+       y="270.00845"
+       x="-26.447886"
+       style="font-style:normal;font-weight:normal;font-size:2.99302px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.99302px;stroke-width:0.16034"
+         y="270.00845"
+         x="-26.447886"
+         id="tspan5059"
+         sodipodi:role="line">Block diagram: Statement Public Affairs Module - Feature Modules</tspan></text>
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker5946)"
+       d="M -4.9827532,163.40926 -15.861965,242.94517"
+       id="path5942" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="-12.493497"
+       y="194.09033"
+       id="text5946"><tspan
+         id="tspan5944"
+         sodipodi:role="line"
+         x="-12.493497"
+         y="194.09033"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">uses</tspan></text>
+    <g
+       transform="translate(42.551893,-42.158206)"
+       id="g7690">
+      <rect
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.124518"
+         id="rect6099"
+         width="38.560619"
+         height="16.278662"
+         x="-24.326479"
+         y="167.94853" />
+      <text
+         id="text6107"
+         y="175.23091"
+         x="-5.1296802"
+         style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         xml:space="preserve"><tspan
+           id="tspan6101"
+           style="font-size:3.42059px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           y="175.23091"
+           x="-5.1296806"
+           sodipodi:role="line">Dashboard Module</tspan><tspan
+           style="font-size:2.82222px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           y="178.96074"
+           x="-5.1296806"
+           sodipodi:role="line"
+           id="tspan7683">(Routing Module)</tspan><tspan
+           id="tspan6105"
+           style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           y="182.25426"
+           x="-5.1296802"
+           sodipodi:role="line" /></text>
+    </g>
+    <rect
+       y="103.92065"
+       x="-25.894291"
+       height="15.756056"
+       width="126.98909"
+       id="rect5723"
+       style="fill:#438dd5;fill-opacity:1;stroke-width:0.22231" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="37.516743"
+       y="112.74485"
+       id="text5729"><tspan
+         sodipodi:role="line"
+         x="37.516743"
+         y="112.74485"
+         style="font-size:3.42059px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+         id="tspan5727">Navigation Module</tspan></text>
+    <g
+       transform="translate(-1.8291187,-42.158206)"
+       id="g7714">
+      <rect
+         y="167.94853"
+         x="-24.326479"
+         height="16.278662"
+         width="38.560619"
+         id="rect7704"
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.124518" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         x="-5.1296802"
+         y="175.23091"
+         id="text7712"><tspan
+           sodipodi:role="line"
+           x="-5.1296802"
+           y="175.23091"
+           style="font-size:3.42059px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           id="tspan7706">Settings Module</tspan><tspan
+           id="tspan7708"
+           sodipodi:role="line"
+           x="-5.1296806"
+           y="178.96074"
+           style="font-size:2.82222px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034">(Routing Module)</tspan><tspan
+           sodipodi:role="line"
+           x="-5.1296802"
+           y="182.25426"
+           style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           id="tspan7710" /></text>
+    </g>
+    <g
+       id="g7738"
+       transform="translate(-1.8291187,-20.901905)">
+      <rect
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.124518"
+         id="rect7728"
+         width="38.560619"
+         height="16.278662"
+         x="-24.326479"
+         y="167.94853" />
+      <text
+         id="text7736"
+         y="175.23091"
+         x="-5.1296802"
+         style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         xml:space="preserve"><tspan
+           id="tspan7730"
+           style="font-size:3.42059px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           y="175.23091"
+           x="-5.1296806"
+           sodipodi:role="line">Search Module</tspan><tspan
+           style="font-size:2.82222px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           y="178.96074"
+           x="-5.1296806"
+           sodipodi:role="line"
+           id="tspan7732">(Routing Module)</tspan><tspan
+           id="tspan7734"
+           style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           y="182.25426"
+           x="-5.1296802"
+           sodipodi:role="line" /></text>
+    </g>
+    <g
+       id="g7762"
+       transform="translate(86.932913,-42.158206)">
+      <rect
+         y="167.94853"
+         x="-24.326479"
+         height="16.278662"
+         width="38.560619"
+         id="rect7752"
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.124518" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         x="-5.1296802"
+         y="175.23091"
+         id="text7760"><tspan
+           sodipodi:role="line"
+           x="-5.1296797"
+           y="175.23091"
+           style="font-size:3.42059px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           id="tspan7754">Mail Module</tspan><tspan
+           id="tspan7756"
+           sodipodi:role="line"
+           x="-5.1296806"
+           y="178.96074"
+           style="font-size:2.82222px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034">(Routing Module)</tspan><tspan
+           sodipodi:role="line"
+           x="-5.1296802"
+           y="182.25426"
+           style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           id="tspan7758" /></text>
+    </g>
+    <g
+       id="g7774"
+       transform="translate(86.932913,-20.901905)">
+      <rect
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.124518"
+         id="rect7764"
+         width="38.560619"
+         height="16.278662"
+         x="-24.326479"
+         y="167.94853" />
+      <text
+         id="text7772"
+         y="173.05965"
+         x="-5.1772804"
+         style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         xml:space="preserve"><tspan
+           id="tspan7766"
+           style="font-size:3.42059px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           y="173.05965"
+           x="-5.1772799"
+           sodipodi:role="line">New Statement</tspan><tspan
+           id="tspan7788"
+           style="font-size:3.42059px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           y="177.33539"
+           x="-5.1772804"
+           sodipodi:role="line">Module</tspan><tspan
+           style="font-size:2.82222px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           y="181.06522"
+           x="-5.1772809"
+           sodipodi:role="line"
+           id="tspan7768">(Routing Module)</tspan><tspan
+           id="tspan7770"
+           style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           y="184.35872"
+           x="-5.1772804"
+           sodipodi:role="line" /></text>
+    </g>
+    <g
+       transform="translate(42.551893,-20.901905)"
+       id="g7786">
+      <rect
+         y="167.94853"
+         x="-24.326479"
+         height="16.278662"
+         width="38.560619"
+         id="rect7776"
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.124518" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         x="-5.1296802"
+         y="175.23091"
+         id="text7784"><tspan
+           sodipodi:role="line"
+           x="-5.1296802"
+           y="175.23091"
+           style="font-size:3.42059px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           id="tspan7778">Edit Module</tspan><tspan
+           id="tspan7780"
+           sodipodi:role="line"
+           x="-5.1296806"
+           y="178.96074"
+           style="font-size:2.82222px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034">(Routing Module)</tspan><tspan
+           sodipodi:role="line"
+           x="-5.1296802"
+           y="182.25426"
+           style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           id="tspan7782" /></text>
+    </g>
+    <g
+       transform="translate(131.31393,47.574816)"
+       id="g7800">
+      <rect
+         y="167.94853"
+         x="-24.326479"
+         height="16.278662"
+         width="38.560619"
+         id="rect7790"
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.124518" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         x="-5.1296797"
+         y="175.23091"
+         id="text7798"><tspan
+           sodipodi:role="line"
+           x="-5.1296792"
+           y="175.23091"
+           style="font-size:3.42059px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           id="tspan7792">Details Module</tspan><tspan
+           id="tspan7794"
+           sodipodi:role="line"
+           x="-5.1296802"
+           y="178.96074"
+           style="font-size:2.82222px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034">(Routing Module)</tspan><tspan
+           sodipodi:role="line"
+           x="-5.1296797"
+           y="182.25426"
+           style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           id="tspan7796" /></text>
+    </g>
+    <g
+       id="g8102"
+       transform="translate(175.69495,75.279456)">
+      <rect
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.124518"
+         id="rect8092"
+         width="38.560619"
+         height="16.278662"
+         x="-24.326479"
+         y="167.94853" />
+      <text
+         id="text8100"
+         y="175.22353"
+         x="-4.9200683"
+         style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         xml:space="preserve"><tspan
+           id="tspan8094"
+           style="font-size:3.42059px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           y="175.22353"
+           x="-4.9200683"
+           sodipodi:role="line">Attachments Form</tspan><tspan
+           style="font-size:3.42059px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           y="179.49927"
+           x="-4.9200683"
+           sodipodi:role="line"
+           id="tspan8096">Module</tspan><tspan
+           id="tspan8098"
+           style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           y="182.99483"
+           x="-4.9200683"
+           sodipodi:role="line" /></text>
+    </g>
+    <g
+       transform="translate(42.551893,75.279456)"
+       id="g8114">
+      <rect
+         y="167.94853"
+         x="-24.326479"
+         height="16.278662"
+         width="38.560619"
+         id="rect8104"
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.124518" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         x="-5.1296802"
+         y="175.23091"
+         id="text8112"><tspan
+           sodipodi:role="line"
+           x="-5.1296806"
+           y="175.23091"
+           style="font-size:3.42059px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           id="tspan8106">Comments Form</tspan><tspan
+           id="tspan8108"
+           sodipodi:role="line"
+           x="-5.1296802"
+           y="179.50665"
+           style="font-size:3.42059px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034">Module</tspan><tspan
+           sodipodi:role="line"
+           x="-5.1296802"
+           y="183.00221"
+           style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           id="tspan8110" /></text>
+    </g>
+    <g
+       id="g8134"
+       transform="translate(-1.8291187,75.279456)">
+      <rect
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.124518"
+         id="rect8124"
+         width="38.560619"
+         height="16.278662"
+         x="-24.326479"
+         y="167.94853" />
+      <text
+         id="text8132"
+         y="177.04323"
+         x="-5.1296797"
+         style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         xml:space="preserve"><tspan
+           style="font-size:3.42059px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           y="177.04323"
+           x="-5.1296797"
+           sodipodi:role="line"
+           id="tspan8128">Map Module</tspan><tspan
+           id="tspan8130"
+           style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+           y="180.53879"
+           x="-5.1296797"
+           sodipodi:role="line" /></text>
+    </g>
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker8563)"
+       d="m 88.143668,162.88665 37.723082,20.4815"
+       id="path8553" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="116.33952"
+       y="181.92723"
+       id="text8557"><tspan
+         id="tspan8555"
+         sodipodi:role="line"
+         x="116.33952"
+         y="181.92723"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">uses</tspan></text>
+    <path
+       id="path8883"
+       d="M 41.370489,163.40926 170.28821,183.10685"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker8893)"
+       sodipodi:nodetypes="cc" />
+    <text
+       id="text8887"
+       y="177.69388"
+       x="153.38121"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="177.69388"
+         x="153.38121"
+         sodipodi:role="line"
+         id="tspan8885">uses</tspan></text>
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker9267)"
+       d="m 41.370489,163.40926 72.737641,19.95889"
+       id="path9263" />
+    <path
+       id="path9597"
+       d="m 41.370489,163.40926 37.723082,20.22019"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker9601)"
+       sodipodi:nodetypes="cc" />
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker9949)"
+       d="m 37.137153,163.40926 0.0955,79.27459"
+       id="path9945" />
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker11487)"
+       d="m 171.43778,200.37 -0.42711,42.16961"
+       id="path11483" />
+    <path
+       id="path11865"
+       d="m 171.43778,200.37 -0.42711,42.16961"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker11869)"
+       sodipodi:nodetypes="cc" />
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker12253)"
+       d="m 145.54807,199.71082 18.66873,42.56749"
+       id="path12249" />
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker12657)"
+       d="m 127.80023,231.85988 23.56824,11.36811"
+       id="path12653" />
+    <path
+       id="path13065"
+       d="M 106.98745,231.802 0.59682818,242.70539"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker13069)"
+       sodipodi:nodetypes="cc" />
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker13483)"
+       d="M 120.48375,231.85988 56.786033,243.22799"
+       id="path13479" />
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker13917)"
+       d="m 74.324615,199.92307 -81.71991,43.0221"
+       id="path13913" />
+    <text
+       id="text14749"
+       y="194.09033"
+       x="41.481503"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="194.09033"
+         x="41.481503"
+         sodipodi:role="line"
+         id="tspan14747">uses</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="9.7315035"
+       y="231.13203"
+       id="text14753"><tspan
+         id="tspan14751"
+         sodipodi:role="line"
+         x="9.7315035"
+         y="231.13203"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">uses</tspan></text>
+    <text
+       id="text14757"
+       y="236.42371"
+       x="46.77317"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="236.42371"
+         x="46.77317"
+         sodipodi:role="line"
+         id="tspan14755">uses</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="83.814835"
+       y="241.71538"
+       id="text14761"><tspan
+         id="tspan14759"
+         sodipodi:role="line"
+         x="83.814835"
+         y="241.71538"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">uses</tspan></text>
+    <text
+       id="text14765"
+       y="239.59874"
+       x="136.73151"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="239.59874"
+         x="136.73151"
+         sodipodi:role="line"
+         id="tspan14763">uses</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="152.60652"
+       y="229.0154"
+       id="text14769"><tspan
+         id="tspan14767"
+         sodipodi:role="line"
+         x="152.60652"
+         y="229.0154"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">uses</tspan></text>
+    <text
+       id="text14773"
+       y="229.0154"
+       x="175.36069"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="229.0154"
+         x="175.36069"
+         sodipodi:role="line"
+         id="tspan14771">uses</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="158.42758"
+       y="207.84871"
+       id="text14777"><tspan
+         id="tspan14775"
+         sodipodi:role="line"
+         x="158.42758"
+         y="207.84871"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">uses</tspan></text>
+    <text
+       id="text14781"
+       y="207.84871"
+       x="131.96922"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="207.84871"
+         x="131.96922"
+         sodipodi:role="line"
+         id="tspan14779">uses</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="105.51089"
+       y="207.84871"
+       id="text14785"><tspan
+         id="tspan14783"
+         sodipodi:role="line"
+         x="105.51089"
+         y="207.84871"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">uses</tspan></text>
+    <text
+       id="text14789"
+       y="178.74448"
+       x="61.060905"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="178.74448"
+         x="61.060905"
+         sodipodi:role="line"
+         id="tspan14787">uses</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="85.931732"
+       y="178.74448"
+       id="text14793"><tspan
+         id="tspan14791"
+         sodipodi:role="line"
+         x="85.931732"
+         y="178.74448"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">uses</tspan></text>
+  </g>
+  <style
+     id="style483"
+     type="text/css"><![CDATA[
+		.st1 {fill:#08427b;stroke:#073b6f;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st2 {fill:#ffffff;font-family:Calibri;font-size:0.833336em}
+		.st3 {font-size:0.599989em}
+		.st4 {font-size:0.799995em}
+		.st5 {fill:#1168bd;stroke:#1864ad;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st6 {fill:#438dd5;stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st7 {fill:#85bbf0;stroke:#78a8d8;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st8 {fill:#000000;font-family:Calibri;font-size:0.833336em}
+		.st9 {fill:#438dd5}
+		.st10 {stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st11 {fill:#3d81c3;stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st12 {stroke:#408dd5;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st13 {fill:#408dd5;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st14 {fill:#438dd5;stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.283465}
+		.st15 {marker-end:url(#mrkr13-73);stroke:#444444;stroke-dasharray:5.25,3.75;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st16 {fill:#444444;fill-opacity:1;stroke:#444444;stroke-opacity:1;stroke-width:0.22935779816514}
+		.st17 {fill:#ffffff;stroke:none;stroke-linecap:butt;stroke-width:7.2}
+		.st18 {fill:#000000;font-family:Calibri;font-size:0.666664em}
+		.st19 {font-size:0.749991em}
+		.st20 {fill:none;stroke:#444444;stroke-dasharray:7.5,4.5;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.5}
+		.st21 {font-size:1em}
+		.st22 {fill:#999999;stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st23 {fill:#999999}
+		.st24 {stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st25 {fill:#8b8b8b;stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st26 {stroke:#999999;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st27 {fill:#999999;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st28 {fill:#999999;stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.283465}
+		.st29 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3}
+	]]></style>
+</svg>
diff --git a/src/main/asciidoc/images/architecture-frontend-component-diag.svg b/src/main/asciidoc/images/architecture-frontend-component-diag.svg
new file mode 100644
index 0000000..8f43049
--- /dev/null
+++ b/src/main/asciidoc/images/architecture-frontend-component-diag.svg
@@ -0,0 +1,1130 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="204.35323mm"
+   height="224.67267mm"
+   viewBox="0 0 204.35322 224.67267"
+   version="1.1"
+   id="svg8"
+   inkscape:version="1.0 (4035a4f, 2020-05-01)"
+   sodipodi:docname="architecture-frontend-component-diag.svg"
+   inkscape:export-filename="/Users/tobiass/Work/repos/org.eclipse.openk/src/main/asciidoc/images/architecture-backend-component-diag.png"
+   inkscape:export-xdpi="300"
+   inkscape:export-ydpi="300">
+  <defs
+     id="defs2">
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker6492"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path6490"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker6174"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path6172"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker5946"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path5944" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker5636"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path5634" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker5299"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path5297"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker5071"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path5069" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4869"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4867" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4673"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4671" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4489"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4487" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4297"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4295" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4125"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4123" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3953"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3951" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3787"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3785" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3633"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3631" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3479"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3477" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3337"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3335" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3201"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3199" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3059"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3057" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker2924"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path2922" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker2806"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path2804" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker2688"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path2686" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker2582"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path2580" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker2470"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path2468" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker2353"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path2351" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker2253"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path2251" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker4845"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4843"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker4667"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4665"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4501"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4499" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4195"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4193" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker4051"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4049"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker3907"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path3905"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3774"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3772" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Lend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker3306"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path3304"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.8,0,0,-0.8,-10,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Lstart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow2Lstart"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path2976"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="matrix(1.1,0,0,1.1,1.1,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Lend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow1Lend"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path2961"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.8,0,0,-0.8,-10,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Lstart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow1Lstart"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path2958"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(0.8,0,0,0.8,10,0)" />
+    </marker>
+    <g
+       id="lend13">
+      <path
+         id="path485"
+         d="M 3,1 0,0 3,-1 v 2" />
+    </g>
+    <marker
+       v:setback="13.08"
+       v:arrowType="13"
+       v:arrowSize="2"
+       refX="-13.08"
+       orient="auto"
+       overflow="visible"
+       class="st16"
+       id="mrkr13-73">
+      <use
+         height="100%"
+         width="100%"
+         y="0"
+         x="0"
+         id="use488"
+         xlink:href="#lend13"
+         transform="scale(-4.36)" />
+    </marker>
+  </defs>
+  <sodipodi:namedview
+     lock-margins="true"
+     fit-margin-bottom="5"
+     fit-margin-right="5"
+     fit-margin-left="5"
+     fit-margin-top="5"
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1.012555"
+     inkscape:cx="220.47947"
+     inkscape:cy="367.00788"
+     inkscape:document-units="mm"
+     inkscape:current-layer="layer1"
+     inkscape:document-rotation="0"
+     showgrid="false"
+     showguides="false"
+     inkscape:window-width="2572"
+     inkscape:window-height="1805"
+     inkscape:window-x="1182"
+     inkscape:window-y="72"
+     inkscape:window-maximized="0" />
+  <metadata
+     id="metadata5">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     transform="translate(34.721669,-75.296017)"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <g
+       id="g2013"
+       transform="matrix(0.60601135,0,0,0.60601135,-55.432885,293.65828)">
+      <g
+         transform="translate(61.406131,-69.767817)"
+         id="g2006">
+        <rect
+           style="fill:#999999;fill-opacity:1;stroke-width:0.264583"
+           id="rect1998"
+           width="63.630196"
+           height="44.540539"
+           x="155.2043"
+           y="14.17335" />
+        <text
+           id="text2004"
+           y="38.018715"
+           x="186.97806"
+           style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+           xml:space="preserve"><tspan
+             id="tspan2000"
+             style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             y="38.018715"
+             x="186.97806"
+             sodipodi:role="line">Configuration Files</tspan><tspan
+             id="tspan2002"
+             style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             y="43.786865"
+             x="186.97806"
+             sodipodi:role="line" /></text>
+      </g>
+    </g>
+    <g
+       id="g2912"
+       transform="matrix(0.60601135,0,0,0.60601135,61.943973,117.57042)">
+      <rect
+         y="234.97412"
+         x="105.81809"
+         height="44.540539"
+         width="63.630196"
+         id="rect2894"
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         x="137.84128"
+         y="256.07874"
+         id="text2900"><tspan
+           sodipodi:role="line"
+           x="137.84128"
+           y="256.07874"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan2896">API Application</tspan><tspan
+           sodipodi:role="line"
+           x="137.84128"
+           y="261.84689"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan2898">[Web Application]</tspan></text>
+    </g>
+    <g
+       id="g2924"
+       transform="matrix(0.60601135,0,0,0.60601135,-105.66832,293.65828)">
+      <g
+         id="g2922"
+         transform="translate(61.406131,-69.767817)">
+        <rect
+           y="14.17335"
+           x="155.22668"
+           height="44.540539"
+           width="63.630196"
+           id="rect2914"
+           style="fill:#999999;fill-opacity:1;stroke-width:0.264583" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+           x="187.07486"
+           y="38.545128"
+           id="text2920"><tspan
+             sodipodi:role="line"
+             x="187.07486"
+             y="38.545128"
+             style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             id="tspan2916">Geocoder API</tspan><tspan
+             sodipodi:role="line"
+             x="187.07486"
+             y="44.313278"
+             style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             id="tspan2918" /></text>
+      </g>
+    </g>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="81.385109"
+       y="142.78859"
+       id="text3757"><tspan
+         id="tspan3755"
+         sodipodi:role="line"
+         x="81.385109"
+         y="142.78859"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034" /></text>
+    <rect
+       style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.479593;stroke-miterlimit:4;stroke-dasharray:0.479593, 1.43879;stroke-dashoffset:0;stroke-opacity:1"
+       id="rect5017"
+       width="149.85744"
+       height="114.09215"
+       x="-29.481873"
+       y="124.32914"
+       ry="1.9475914" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="-26.561893"
+       y="236.14894"
+       id="text5057"><tspan
+         sodipodi:role="line"
+         id="tspan5055"
+         x="-26.561893"
+         y="236.14894"
+         style="font-size:2.56545px;stroke-width:0.16034">Front-end Container</tspan></text>
+    <text
+       id="text5061"
+       y="294.35049"
+       x="-29.889734"
+       style="font-style:normal;font-weight:normal;font-size:2.99302px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.99302px;stroke-width:0.16034"
+         y="294.35049"
+         x="-29.889734"
+         id="tspan5059"
+         sodipodi:role="line">Component diagram: Statement Public Affairs Module - Front-end</tspan></text>
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4297)"
+       d="M 45.292342,100.69662 45.91044,129.8011"
+       id="path5887" />
+    <text
+       id="text5893"
+       y="119.94596"
+       x="54.139847"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="119.94596"
+         x="54.139847"
+         sodipodi:role="line"
+         id="tspan5891">interacts</tspan></text>
+    <g
+       id="g5940"
+       transform="translate(-49.386206,37.627586)">
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker3059)"
+         d="m 113.54688,119.46673 30.87468,10.59568"
+         id="path5934" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         x="142.93573"
+         y="122.46062"
+         id="text5938"><tspan
+           id="tspan5936"
+           sodipodi:role="line"
+           x="142.93573"
+           y="122.46062"
+           style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">subscribes to data, </tspan><tspan
+           id="tspan7021"
+           sodipodi:role="line"
+           x="142.93573"
+           y="125.13296"
+           style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">dispatches actions</tspan></text>
+    </g>
+    <g
+       transform="translate(-49.386206,74.993869)"
+       id="g5948">
+      <path
+         id="path5942"
+         d="m 144.32606,119.77171 0.0955,10.2907"
+         style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker5946)"
+         sodipodi:nodetypes="cc" />
+      <text
+         id="text5946"
+         y="125.10642"
+         x="147.69817"
+         style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         xml:space="preserve"><tspan
+           style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+           y="125.10642"
+           x="147.69817"
+           sodipodi:role="line"
+           id="tspan5944">uses</tspan></text>
+    </g>
+    <path
+       id="path5950"
+       d="M 75.603456,182.22305 14.292826,216.2923"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker2470)"
+       sodipodi:nodetypes="cc" />
+    <text
+       id="text5954"
+       y="208.56693"
+       x="23.251328"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="208.56693"
+         x="23.251328"
+         sodipodi:role="line"
+         id="tspan5952">uses</tspan></text>
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker2353)"
+       d="M 85.79426,232.26251 46.433056,259.92984"
+       id="path6014" />
+    <path
+       id="path6030"
+       d="m 94.939854,232.78512 0.0955,26.62212"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+       sodipodi:nodetypes="cc" />
+    <text
+       id="text6034"
+       y="246.04419"
+       x="100.40237"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         id="tspan6075"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="246.04419"
+         x="100.40237"
+         sodipodi:role="line">imports</tspan></text>
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker2253)"
+       d="m 103.82582,233.04642 40.33611,26.36082"
+       id="path6064" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="136.26529"
+       y="244.99898"
+       id="text6081"><tspan
+         id="tspan6077"
+         sodipodi:role="line"
+         x="136.26529"
+         y="244.99898"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">uses</tspan><tspan
+         sodipodi:role="line"
+         x="136.26529"
+         y="247.67131"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         id="tspan6079">[HTTPS/JSON]</tspan></text>
+    <path
+       id="path6115"
+       d="M 25.600058,157.09431 -6.1297446,168.07923"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker5071)"
+       sodipodi:nodetypes="cc" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="8.5741739"
+       y="160.32372"
+       id="text6123"><tspan
+         id="tspan6121"
+         sodipodi:role="line"
+         x="8.5741739"
+         y="160.32372"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">uses</tspan></text>
+    <g
+       transform="translate(143.93437,82.964176)"
+       id="g2242">
+      <path
+         d="m -99.092833,-2.6681325 a 7.11475,7.11475 0 0 0 -7.075647,7.1144827 7.11475,7.11475 0 0 0 2.2313,5.1744269 h -6.67731 c -2.38883,0 -4.31197,1.9231379 -4.31197,4.3119699 v 10.995537 c 0,2.388832 1.92314,4.31197 4.31197,4.31197 h 23.120976 c 2.388836,0 4.31197,-1.923138 4.31197,-4.31197 V 13.932747 c 0,-2.388832 -1.923134,-4.3119699 -4.31197,-4.3119699 h -6.677305 a 7.11475,7.11475 0 0 0 2.231615,-5.1744269 7.11475,7.11475 0 0 0 -7.114797,-7.1144827 7.11475,7.11475 0 0 0 -0.03883,0 z"
+         style="fill:#08427b;fill-opacity:1;fill-rule:evenodd;stroke-width:0.16034"
+         id="rect1768" />
+      <text
+         id="text1777"
+         y="14.252246"
+         x="-99.170914"
+         style="font-style:normal;font-weight:normal;font-size:3.35005px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.0837514"
+         xml:space="preserve"><tspan
+           style="font-size:3.42059px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.0837514"
+           y="14.252246"
+           x="-99.170914"
+           id="tspan1775"
+           sodipodi:role="line">SPA User</tspan><tspan
+           id="tspan1779"
+           style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.0837514"
+           y="18.463627"
+           x="-99.170914"
+           sodipodi:role="line">[Person]</tspan></text>
+    </g>
+    <text
+       id="text2461"
+       y="244.99898"
+       x="55.831978"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="244.99898"
+         x="55.831978"
+         sodipodi:role="line"
+         id="tspan2457">uses</tspan><tspan
+         id="tspan2459"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="247.67131"
+         x="55.831978"
+         sodipodi:role="line">[HTTPS/JSON]</tspan></text>
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker5299)"
+       d="m 37.346984,156.57003 -23.16044,49.2248"
+       id="path5289" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="33.141308"
+       y="176.799"
+       id="text5293"><tspan
+         id="tspan5291"
+         sodipodi:role="line"
+         x="33.141308"
+         y="176.799"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">uses</tspan></text>
+    <path
+       id="path5632"
+       d="m 50.934723,156.04742 24.900772,49.74742"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker5636)"
+       sodipodi:nodetypes="cc" />
+    <text
+       id="text5936"
+       y="176.799"
+       x="64.891312"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="176.799"
+         x="64.891312"
+         sodipodi:role="line"
+         id="tspan5934">uses</tspan></text>
+    <g
+       id="g6170"
+       transform="translate(-149.92791,74.993869)">
+      <path
+         sodipodi:nodetypes="cc"
+         style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker6174)"
+         d="m 144.32606,119.77171 0.0955,10.2907"
+         id="path6164" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         x="147.69817"
+         y="125.10642"
+         id="text6168"><tspan
+           id="tspan6166"
+           sodipodi:role="line"
+           x="147.69817"
+           y="125.10642"
+           style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">uses</tspan></text>
+    </g>
+    <g
+       transform="translate(-88.581608,79.95862)"
+       id="g6488">
+      <path
+         id="path6482"
+         d="m 103.04024,103.30964 61.50163,34.59186"
+         style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker6492)"
+         sodipodi:nodetypes="cc" />
+      <text
+         id="text6486"
+         y="125.10642"
+         x="147.69817"
+         style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+         xml:space="preserve"><tspan
+           style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+           y="125.10642"
+           x="147.69817"
+           sodipodi:role="line"
+           id="tspan6484">uses</tspan></text>
+    </g>
+    <g
+       transform="matrix(0.60601135,0,0,0.60601135,11.70853,25.55155)"
+       id="g5805">
+      <rect
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583"
+         id="rect5795"
+         width="63.630196"
+         height="44.540539"
+         x="105.81809"
+         y="234.97412" />
+      <text
+         id="text5803"
+         y="259.34589"
+         x="137.56567"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         xml:space="preserve"><tspan
+           id="tspan5801"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="259.34589"
+           x="137.56567"
+           sodipodi:role="line">Store Modules</tspan></text>
+    </g>
+    <g
+       id="g5877"
+       transform="matrix(0.60601135,0,0,0.60601135,-88.501042,70.372197)">
+      <rect
+         y="223.46552"
+         x="105.95727"
+         height="44.540539"
+         width="63.630196"
+         id="rect5867"
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         x="137.64421"
+         y="247.31226"
+         id="text5875"><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="247.31226"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5869">Utility Modules</tspan><tspan
+           sodipodi:role="line"
+           x="137.64421"
+           y="253.08041"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5873" /></text>
+    </g>
+    <g
+       transform="matrix(0.60601135,0,0,0.60601135,-88.501042,25.55155)"
+       id="g6109">
+      <rect
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583"
+         id="rect6099"
+         width="63.630196"
+         height="44.540539"
+         x="105.89664"
+         y="234.97412" />
+      <text
+         id="text6107"
+         y="259.34589"
+         x="137.64421"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         xml:space="preserve"><tspan
+           id="tspan6101"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="259.34589"
+           x="137.64421"
+           sodipodi:role="line">Shared Modules</tspan><tspan
+           id="tspan6105"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="265.11404"
+           x="137.64421"
+           sodipodi:role="line" /></text>
+    </g>
+    <g
+       transform="matrix(0.60601135,0,0,0.60601135,-38.526907,-12.294735)"
+       id="g5731">
+      <rect
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583"
+         id="rect5723"
+         width="63.630196"
+         height="44.540539"
+         x="105.81809"
+         y="234.97412" />
+      <text
+         id="text5729"
+         y="259.34589"
+         x="137.47472"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         xml:space="preserve"><tspan
+           id="tspan5727"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="259.34589"
+           x="137.47472"
+           sodipodi:role="line">Feature Modules</tspan></text>
+    </g>
+    <g
+       id="g5817"
+       transform="matrix(0.60601135,0,0,0.60601135,11.70853,63.397851)">
+      <rect
+         y="234.97412"
+         x="105.81809"
+         height="44.540539"
+         width="63.630196"
+         id="rect5807"
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         x="137.59184"
+         y="259.34589"
+         id="text5815"><tspan
+           sodipodi:role="line"
+           x="137.59184"
+           y="259.34589"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan5813">Core Modules</tspan></text>
+    </g>
+  </g>
+  <style
+     id="style483"
+     type="text/css"><![CDATA[
+		.st1 {fill:#08427b;stroke:#073b6f;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st2 {fill:#ffffff;font-family:Calibri;font-size:0.833336em}
+		.st3 {font-size:0.599989em}
+		.st4 {font-size:0.799995em}
+		.st5 {fill:#1168bd;stroke:#1864ad;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st6 {fill:#438dd5;stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st7 {fill:#85bbf0;stroke:#78a8d8;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st8 {fill:#000000;font-family:Calibri;font-size:0.833336em}
+		.st9 {fill:#438dd5}
+		.st10 {stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st11 {fill:#3d81c3;stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st12 {stroke:#408dd5;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st13 {fill:#408dd5;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st14 {fill:#438dd5;stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.283465}
+		.st15 {marker-end:url(#mrkr13-73);stroke:#444444;stroke-dasharray:5.25,3.75;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st16 {fill:#444444;fill-opacity:1;stroke:#444444;stroke-opacity:1;stroke-width:0.22935779816514}
+		.st17 {fill:#ffffff;stroke:none;stroke-linecap:butt;stroke-width:7.2}
+		.st18 {fill:#000000;font-family:Calibri;font-size:0.666664em}
+		.st19 {font-size:0.749991em}
+		.st20 {fill:none;stroke:#444444;stroke-dasharray:7.5,4.5;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.5}
+		.st21 {font-size:1em}
+		.st22 {fill:#999999;stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st23 {fill:#999999}
+		.st24 {stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st25 {fill:#8b8b8b;stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st26 {stroke:#999999;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st27 {fill:#999999;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st28 {fill:#999999;stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.283465}
+		.st29 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3}
+	]]></style>
+</svg>
diff --git a/src/main/asciidoc/images/architecture-system-context.png b/src/main/asciidoc/images/architecture-system-context.png
new file mode 100644
index 0000000..b227928
--- /dev/null
+++ b/src/main/asciidoc/images/architecture-system-context.png
Binary files differ
diff --git a/src/main/asciidoc/images/architecture-system-context.svg b/src/main/asciidoc/images/architecture-system-context.svg
new file mode 100644
index 0000000..f71b7d3
--- /dev/null
+++ b/src/main/asciidoc/images/architecture-system-context.svg
@@ -0,0 +1,649 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="177.42984mm"
+   height="147.1631mm"
+   viewBox="0 0 177.42984 147.1631"
+   version="1.1"
+   id="svg8"
+   inkscape:version="1.0 (4035a4f, 2020-05-01)"
+   sodipodi:docname="architecture-system-context.svg"
+   inkscape:export-filename="/Users/tobiass/Work/repos/org.eclipse.openk/src/main/asciidoc/images/architecture-system-context.png"
+   inkscape:export-xdpi="300"
+   inkscape:export-ydpi="300">
+  <defs
+     id="defs2">
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker4845"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4843"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker4667"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4665"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4501"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4499" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4195"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4193" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker4051"
+       style="overflow:visible"
+       inkscape:isstock="true"
+       inkscape:collect="always">
+      <path
+         id="path4049"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker3907"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path3905"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3774"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3772" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker3514"
+       style="overflow:visible"
+       inkscape:isstock="true"
+       inkscape:collect="always">
+      <path
+         id="path3512"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3406"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend"
+       inkscape:collect="always">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3404" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Lend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker3306"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path3304"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.8,0,0,-0.8,-10,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Lstart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow2Lstart"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path2976"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="matrix(1.1,0,0,1.1,1.1,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Lend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow1Lend"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path2961"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.8,0,0,-0.8,-10,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Lstart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow1Lstart"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path2958"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(0.8,0,0,0.8,10,0)" />
+    </marker>
+    <g
+       id="lend13">
+      <path
+         id="path485"
+         d="M 3,1 0,0 3,-1 v 2" />
+    </g>
+    <marker
+       v:setback="13.08"
+       v:arrowType="13"
+       v:arrowSize="2"
+       refX="-13.08"
+       orient="auto"
+       overflow="visible"
+       class="st16"
+       id="mrkr13-73">
+      <use
+         height="100%"
+         width="100%"
+         y="0"
+         x="0"
+         id="use488"
+         xlink:href="#lend13"
+         transform="scale(-4.36)" />
+    </marker>
+  </defs>
+  <sodipodi:namedview
+     lock-margins="true"
+     fit-margin-bottom="5"
+     fit-margin-right="5"
+     fit-margin-left="5"
+     fit-margin-top="5"
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1.012555"
+     inkscape:cx="280.398"
+     inkscape:cy="269.87364"
+     inkscape:document-units="mm"
+     inkscape:current-layer="layer1"
+     inkscape:document-rotation="0"
+     showgrid="false"
+     showguides="false"
+     inkscape:window-width="2572"
+     inkscape:window-height="1805"
+     inkscape:window-x="1207"
+     inkscape:window-y="23"
+     inkscape:window-maximized="0" />
+  <metadata
+     id="metadata5">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     transform="translate(10.268458,-75.1118)"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <g
+       id="g1785"
+       transform="matrix(0.60601135,0,0,0.60601135,193.93576,58.767437)">
+      <path
+         transform="scale(0.26458333)"
+         d="m -716.0957,133.11914 a 44.372757,44.372757 0 0 0 -44.12891,44.37109 44.372757,44.372757 0 0 0 13.91602,32.27149 h -41.64453 c -14.89849,0 -26.89258,11.99409 -26.89258,26.89258 v 68.57617 c 0,14.89849 11.99409,26.89258 26.89258,26.89258 h 144.19921 c 14.89852,0 26.89258,-11.99409 26.89258,-26.89258 V 236.6543 c 0,-14.89849 -11.99406,-26.89258 -26.89258,-26.89258 h -41.64453 a 44.372757,44.372757 0 0 0 13.91797,-32.27149 44.372757,44.372757 0 0 0 -44.37305,-44.37109 44.372757,44.372757 0 0 0 -0.24218,0 z"
+         style="fill:#08427b;fill-opacity:1;fill-rule:evenodd;stroke-width:0.999999"
+         id="rect1768" />
+      <text
+         id="text1777"
+         y="63.141998"
+         x="-189.59583"
+         style="font-style:normal;font-weight:normal;font-size:5.52804px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.138201"
+         xml:space="preserve"><tspan
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.138201"
+           y="63.141998"
+           x="-189.59583"
+           id="tspan1775"
+           sodipodi:role="line">SPA User</tspan><tspan
+           id="tspan1779"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.138201"
+           y="70.091354"
+           x="-189.59583"
+           sodipodi:role="line">[Person]</tspan></text>
+    </g>
+    <g
+       id="g1976"
+       transform="matrix(0.60601135,0,0,0.60601135,54.180204,81.937593)">
+      <rect
+         y="85.770287"
+         x="9.3974047"
+         height="44.540539"
+         width="63.630196"
+         id="rect1940"
+         style="fill:#438dd5;fill-opacity:1;stroke-width:0.264583" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         x="41.329636"
+         y="98.108429"
+         id="text1957"><tspan
+           sodipodi:role="line"
+           x="41.329636"
+           y="98.108429"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan1953">Statement</tspan><tspan
+           id="tspan295"
+           sodipodi:role="line"
+           x="41.329636"
+           y="105.16398"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583">Public Affairs</tspan><tspan
+           id="tspan297"
+           sodipodi:role="line"
+           x="41.329636"
+           y="112.21953"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583">Module</tspan><tspan
+           sodipodi:role="line"
+           x="41.329636"
+           y="117.98768"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           id="tspan1955">[openK Module]</tspan></text>
+    </g>
+    <g
+       id="g1996"
+       transform="matrix(0.60601135,0,0,0.60601135,29.545192,125.04122)">
+      <rect
+         style="fill:#999999;fill-opacity:1;stroke-width:0.264583"
+         id="rect1978"
+         width="63.630196"
+         height="44.540539"
+         x="155.2043"
+         y="14.17335" />
+      <text
+         id="text1984"
+         y="26.511494"
+         x="187.07486"
+         style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+         xml:space="preserve"><tspan
+           id="tspan1980"
+           style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="26.511494"
+           x="187.07486"
+           sodipodi:role="line">AuthNAuth</tspan><tspan
+           id="tspan1982"
+           style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+           y="32.279644"
+           x="187.07486"
+           sodipodi:role="line">[openK Modul]</tspan></text>
+    </g>
+    <g
+       id="g2013"
+       transform="matrix(0.60601135,0,0,0.60601135,-71.393245,213.42637)">
+      <g
+         transform="translate(61.406131,-69.767817)"
+         id="g2006">
+        <rect
+           style="fill:#999999;fill-opacity:1;stroke-width:0.264583"
+           id="rect1998"
+           width="63.630196"
+           height="44.540539"
+           x="155.2043"
+           y="14.17335" />
+        <text
+           id="text2004"
+           y="26.511494"
+           x="187.07486"
+           style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+           xml:space="preserve"><tspan
+             id="tspan2000"
+             style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             y="26.511494"
+             x="187.07486"
+             sodipodi:role="line">Kontaktstammdaten</tspan><tspan
+             id="tspan2002"
+             style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             y="32.279644"
+             x="187.07486"
+             sodipodi:role="line">[openK Modul]</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g2924"
+       transform="matrix(0.60601135,0,0,0.60601135,-7.6676206,213.42637)">
+      <g
+         id="g2922"
+         transform="translate(61.406131,-69.767817)">
+        <rect
+           y="14.17335"
+           x="155.2043"
+           height="44.540539"
+           width="63.630196"
+           id="rect2914"
+           style="fill:#999999;fill-opacity:1;stroke-width:0.264583" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+           x="187.07486"
+           y="26.511494"
+           id="text2920"><tspan
+             sodipodi:role="line"
+             x="187.07486"
+             y="26.511494"
+             style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             id="tspan2916">Email Server</tspan><tspan
+             sodipodi:role="line"
+             x="187.07486"
+             y="32.279644"
+             style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             id="tspan2918" /></text>
+      </g>
+    </g>
+    <g
+       transform="matrix(0.60601135,0,0,0.60601135,-135.11886,213.42637)"
+       id="g2954">
+      <g
+         transform="translate(61.406131,-69.767817)"
+         id="g2952">
+        <rect
+           style="fill:#999999;fill-opacity:1;stroke-width:0.264583"
+           id="rect2944"
+           width="63.630196"
+           height="44.540539"
+           x="155.2043"
+           y="14.17335" />
+        <text
+           id="text2950"
+           y="26.511494"
+           x="187.07486"
+           style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
+           xml:space="preserve"><tspan
+             id="tspan2946"
+             style="font-size:5.64444px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             y="26.511494"
+             x="187.07486"
+             sodipodi:role="line">Map Tile Server</tspan><tspan
+             id="tspan2948"
+             style="font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
+             y="32.279644"
+             x="187.07486"
+             sodipodi:role="line">[OpenStreetMap]</tspan></text>
+      </g>
+    </g>
+    <path
+       id="path3402"
+       d="m 79.201385,111.59316 0.124387,21.92416"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker3406)"
+       sodipodi:nodetypes="cc" />
+    <text
+       id="text3494"
+       y="121.42715"
+       x="90.782028"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="121.42715"
+         x="90.782028"
+         id="tspan3488"
+         sodipodi:role="line">visits and</tspan><tspan
+         id="tspan3492"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="124.09949"
+         x="90.782028"
+         sodipodi:role="line">modifies</tspan><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="126.77182"
+         x="90.782028"
+         sodipodi:role="line"
+         id="tspan3502">current Statements</tspan></text>
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker3514)"
+       d="m 95.076319,104.45987 47.195171,29.16295"
+       id="path3510" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="129.3349"
+       y="114.61141"
+       id="text3634"><tspan
+         sodipodi:role="line"
+         id="tspan3628"
+         x="129.3349"
+         y="114.61141"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">request Authentication Token</tspan><tspan
+         id="tspan3632"
+         sodipodi:role="line"
+         x="129.3349"
+         y="117.28375"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">[JSON/HTTPS]</tspan></text>
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker3907)"
+       d="m 78.722086,160.85433 -0.0026,18.5525"
+       id="path3903" />
+    <text
+       id="text4023"
+       y="169.38242"
+       x="88.467026"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="169.38242"
+         x="88.467026"
+         sodipodi:role="line"
+         id="tspan4021">request contact</tspan><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="172.05475"
+         x="88.467026"
+         sodipodi:role="line"
+         id="tspan4037">details</tspan><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="174.7271"
+         x="88.467026"
+         sodipodi:role="line"
+         id="tspan4039">[JSON/HTTPS]</tspan></text>
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4051)"
+       d="M 61.510262,160.90743 29.77054,179.17236"
+       id="path4047" />
+    <text
+       id="text4477"
+       y="139.39932"
+       x="111.30839"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="139.39932"
+         x="111.30839"
+         id="tspan4473"
+         sodipodi:role="line">verify</tspan><tspan
+         id="tspan299"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="142.07166"
+         x="111.30839"
+         sodipodi:role="line">Authentication Token</tspan><tspan
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         y="144.744"
+         x="111.30839"
+         sodipodi:role="line"
+         id="tspan4475">[JSON/HTTPS]</tspan></text>
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4667)"
+       d="m 98.43576,160.90743 28.12894,18.55396"
+       id="path4663" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="129.96426"
+       y="170.30305"
+       id="text4831"><tspan
+         sodipodi:role="line"
+         id="tspan4827"
+         x="129.96426"
+         y="170.30305"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">send Statement status</tspan><tspan
+         sodipodi:role="line"
+         x="129.96426"
+         y="172.97539"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034"
+         id="tspan4833">update notification</tspan><tspan
+         id="tspan4829"
+         sodipodi:role="line"
+         x="129.96426"
+         y="175.64774"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">[SMTP]</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.13787px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       x="36.17252"
+       y="165.47646"
+       id="text5013"><tspan
+         id="tspan5009"
+         sodipodi:role="line"
+         x="36.17252"
+         y="165.47646"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">request map tiles</tspan><tspan
+         id="tspan5011"
+         sodipodi:role="line"
+         x="36.17252"
+         y="168.14879"
+         style="font-size:2.13787px;text-align:center;text-anchor:middle;stroke-width:0.16034">[HTTP]</tspan></text>
+    <text
+       id="text5061"
+       y="216.65671"
+       x="-5.4642901"
+       style="font-style:normal;font-weight:normal;font-size:2.99302px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.16034"
+       xml:space="preserve"><tspan
+         style="font-size:2.99302px;stroke-width:0.16034"
+         y="216.65671"
+         x="-5.4642901"
+         id="tspan5059"
+         sodipodi:role="line">System Context diagram: Statement Public Affairs Module</tspan></text>
+    <path
+       id="path301"
+       d="m 98.734556,147.54199 24.200534,-0.36425"
+       style="fill:none;stroke:#000000;stroke-width:0.303006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.909017, 0.909017;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker3514)"
+       sodipodi:nodetypes="cc" />
+  </g>
+  <style
+     id="style483"
+     type="text/css"><![CDATA[
+		.st1 {fill:#08427b;stroke:#073b6f;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st2 {fill:#ffffff;font-family:Calibri;font-size:0.833336em}
+		.st3 {font-size:0.599989em}
+		.st4 {font-size:0.799995em}
+		.st5 {fill:#1168bd;stroke:#1864ad;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st6 {fill:#438dd5;stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st7 {fill:#85bbf0;stroke:#78a8d8;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st8 {fill:#000000;font-family:Calibri;font-size:0.833336em}
+		.st9 {fill:#438dd5}
+		.st10 {stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st11 {fill:#3d81c3;stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st12 {stroke:#408dd5;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st13 {fill:#408dd5;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st14 {fill:#438dd5;stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.283465}
+		.st15 {marker-end:url(#mrkr13-73);stroke:#444444;stroke-dasharray:5.25,3.75;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st16 {fill:#444444;fill-opacity:1;stroke:#444444;stroke-opacity:1;stroke-width:0.22935779816514}
+		.st17 {fill:#ffffff;stroke:none;stroke-linecap:butt;stroke-width:7.2}
+		.st18 {fill:#000000;font-family:Calibri;font-size:0.666664em}
+		.st19 {font-size:0.749991em}
+		.st20 {fill:none;stroke:#444444;stroke-dasharray:7.5,4.5;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.5}
+		.st21 {font-size:1em}
+		.st22 {fill:#999999;stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st23 {fill:#999999}
+		.st24 {stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st25 {fill:#8b8b8b;stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st26 {stroke:#999999;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st27 {fill:#999999;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st28 {fill:#999999;stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.283465}
+		.st29 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3}
+	]]></style>
+</svg>
diff --git a/src/main/asciidoc/images/authorization-process.png b/src/main/asciidoc/images/authorization-process.png
new file mode 100644
index 0000000..db6b4ea
--- /dev/null
+++ b/src/main/asciidoc/images/authorization-process.png
Binary files differ
diff --git a/src/main/asciidoc/images/authorization-process.svg b/src/main/asciidoc/images/authorization-process.svg
new file mode 100644
index 0000000..34f2e5d
--- /dev/null
+++ b/src/main/asciidoc/images/authorization-process.svg
@@ -0,0 +1,836 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   inkscape:export-ydpi="300"
+   inkscape:export-xdpi="300"
+   inkscape:export-filename="/Users/tobiass/Work/repos/org.eclipse.openk-usermodules.statementpublicaffairs.backend/src/main/asciidoc/images/authorization-process.png"
+   width="154.72484mm"
+   height="107.28967mm"
+   viewBox="0 0 154.72484 107.28967"
+   version="1.1"
+   id="svg8"
+   inkscape:version="1.0 (4035a4f, 2020-05-01)"
+   sodipodi:docname="role-concept-tier.svg">
+  <defs
+     id="defs2">
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker7889"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Send">
+      <path
+         transform="matrix(-0.3,0,0,-0.3,0.69,0)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#999999;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path7887" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker6965"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Send">
+      <path
+         transform="matrix(-0.3,0,0,-0.3,0.69,0)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#08427b;fill-opacity:1;fill-rule:evenodd;stroke:#08427b;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path6963" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker5482"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Send">
+      <path
+         transform="matrix(-0.3,0,0,-0.3,0.69,0)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#08427b;fill-opacity:1;fill-rule:evenodd;stroke:#08427b;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path5480" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:stockid="Arrow2Send"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker5164"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path5162"
+         style="fill:#08427b;fill-opacity:1;fill-rule:evenodd;stroke:#08427b;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="matrix(-0.3,0,0,-0.3,0.69,0)" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:stockid="Arrow2Send"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker4590"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4588"
+         style="fill:#08427b;fill-opacity:1;fill-rule:evenodd;stroke:#08427b;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="matrix(-0.3,0,0,-0.3,0.69,0)" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4318"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Send">
+      <path
+         transform="matrix(-0.3,0,0,-0.3,0.69,0)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#08427b;fill-opacity:1;fill-rule:evenodd;stroke:#08427b;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path4316" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:stockid="Arrow2Send"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker4054"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4052"
+         style="fill:#08427b;fill-opacity:1;fill-rule:evenodd;stroke:#08427b;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="matrix(-0.3,0,0,-0.3,0.69,0)" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3797"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Send">
+      <path
+         transform="matrix(-0.3,0,0,-0.3,0.69,0)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#08427b;fill-opacity:1;fill-rule:evenodd;stroke:#08427b;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path3795" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:stockid="Arrow2Send"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker3549"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path3547"
+         style="fill:#08427b;fill-opacity:1;fill-rule:evenodd;stroke:#08427b;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="matrix(-0.3,0,0,-0.3,0.69,0)" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3309"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Send">
+      <path
+         transform="matrix(-0.3,0,0,-0.3,0.69,0)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#08427b;fill-opacity:1;fill-rule:evenodd;stroke:#08427b;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path3307" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:stockid="Arrow2Send"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker3070"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path3068"
+         style="fill:#08427b;fill-opacity:1;fill-rule:evenodd;stroke:#08427b;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="matrix(-0.3,0,0,-0.3,0.69,0)" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker2846"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Send">
+      <path
+         transform="matrix(-0.3,0,0,-0.3,0.69,0)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#08427b;fill-opacity:1;fill-rule:evenodd;stroke:#08427b;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path2844" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:stockid="Arrow2Send"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker2630"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path2628"
+         style="fill:#08427b;fill-opacity:1;fill-rule:evenodd;stroke:#08427b;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="matrix(-0.3,0,0,-0.3,0.69,0)" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker2422"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Send">
+      <path
+         transform="matrix(-0.3,0,0,-0.3,0.69,0)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#08427b;fill-opacity:1;fill-rule:evenodd;stroke:#08427b;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path2420" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:stockid="Arrow2Send"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker2222"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path2220"
+         style="fill:#08427b;fill-opacity:1;fill-rule:evenodd;stroke:#08427b;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="matrix(-0.3,0,0,-0.3,0.69,0)" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="Arrow2Send"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Send">
+      <path
+         transform="matrix(-0.3,0,0,-0.3,0.69,0)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#08427b;fill-opacity:1;fill-rule:evenodd;stroke:#08427b;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path1649" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="Arrow1Send"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Send">
+      <path
+         transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path1631" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker1488"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path1486" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker1358"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path1356" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker4845"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4843"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker4667"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4665"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4501"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4499" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker4195"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path4193" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3774"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3772" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Lend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker3306"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path3304"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.8,0,0,-0.8,-10,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Lstart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow2Lstart"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path2976"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="matrix(1.1,0,0,1.1,1.1,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Lend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow1Lend"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path2961"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.8,0,0,-0.8,-10,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Lstart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow1Lstart"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path2958"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(0.8,0,0,0.8,10,0)" />
+    </marker>
+    <g
+       id="lend13">
+      <path
+         id="path485"
+         d="M 3,1 0,0 3,-1 v 2" />
+    </g>
+    <marker
+       v:setback="13.08"
+       v:arrowType="13"
+       v:arrowSize="2"
+       refX="-13.08"
+       orient="auto"
+       overflow="visible"
+       class="st16"
+       id="mrkr13-73">
+      <use
+         height="100%"
+         width="100%"
+         y="0"
+         x="0"
+         id="use488"
+         xlink:href="#lend13"
+         transform="scale(-4.36)" />
+    </marker>
+  </defs>
+  <sodipodi:namedview
+     lock-margins="true"
+     fit-margin-bottom="5"
+     fit-margin-right="5"
+     fit-margin-left="5"
+     fit-margin-top="5"
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1.3323612"
+     inkscape:cx="397.38605"
+     inkscape:cy="285.36978"
+     inkscape:document-units="mm"
+     inkscape:current-layer="layer1"
+     inkscape:document-rotation="0"
+     showgrid="false"
+     showguides="false"
+     inkscape:window-width="2572"
+     inkscape:window-height="1805"
+     inkscape:window-x="1032"
+     inkscape:window-y="75"
+     inkscape:window-maximized="0" />
+  <metadata
+     id="metadata5">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     transform="translate(5.4938032,-91.741753)"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <g
+       id="g8424">
+      <g
+         id="g400"
+         transform="translate(0,10.583333)">
+        <rect
+           style="fill:#438dd5;fill-opacity:1;stroke-width:0.185411"
+           id="rect1940"
+           width="128.97134"
+           height="10.791306"
+           x="15.259689"
+           y="88.187393" />
+        <text
+           id="text1957"
+           y="94.305832"
+           x="79.802986"
+           style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+           xml:space="preserve"><tspan
+             id="tspan1955"
+             style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+             y="94.305832"
+             x="79.802986"
+             sodipodi:role="line">Verify User Role SPA_ACCESS</tspan></text>
+      </g>
+      <g
+         id="g405">
+        <rect
+           y="181.21115"
+           x="15.259689"
+           height="10.791306"
+           width="128.97134"
+           id="rect301"
+           style="fill:#438dd5;fill-opacity:1;stroke-width:0.185411" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+           x="79.844948"
+           y="187.31644"
+           id="text305"><tspan
+             sodipodi:role="line"
+             x="79.844948"
+             y="187.31644"
+             style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+             id="tspan303">Access granted</tspan></text>
+      </g>
+      <g
+         id="g379"
+         transform="translate(0,4.2136523)">
+        <rect
+           style="fill:#438dd5;fill-opacity:1;stroke-width:0.139828"
+           id="rect307"
+           width="73.351555"
+           height="10.791306"
+           x="70.879478"
+           y="156.38739" />
+        <text
+           id="text311"
+           y="162.50583"
+           x="107.59221"
+           style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+           xml:space="preserve"><tspan
+             id="tspan309"
+             style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+             y="162.50583"
+             x="107.59221"
+             sodipodi:role="line">Verify Task specific Access for User Roles</tspan></text>
+      </g>
+      <g
+         id="g427"
+         transform="translate(0,-0.8221273)">
+        <g
+           transform="translate(18.799556,-10.054167)"
+           id="g359">
+          <rect
+             y="130.25713"
+             x="24.216969"
+             height="10.791306"
+             width="17.943993"
+             id="rect347"
+             style="fill:#438dd5;fill-opacity:1;stroke-width:0.0691589" />
+          <text
+             id="text317"
+             y="136.58539"
+             x="33.188965"
+             style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+             xml:space="preserve"><tspan
+               id="tspan315"
+               style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+               y="136.58539"
+               x="33.188965"
+               sodipodi:role="line">CREATE</tspan></text>
+        </g>
+        <g
+           transform="translate(9.5147213,-10.054167)"
+           id="g364">
+          <rect
+             style="fill:#438dd5;fill-opacity:1;stroke-width:0.0691589"
+             id="rect349"
+             width="17.943993"
+             height="10.791306"
+             x="61.25864"
+             y="130.25713" />
+          <text
+             xml:space="preserve"
+             style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+             x="70.191177"
+             y="136.56596"
+             id="text323"><tspan
+               sodipodi:role="line"
+               x="70.191177"
+               y="136.56596"
+               style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+               id="tspan321">UPDATE</tspan></text>
+        </g>
+        <g
+           transform="translate(0.22990149,-10.054167)"
+           id="g374">
+          <rect
+             y="130.25713"
+             x="98.300293"
+             height="10.791306"
+             width="17.943993"
+             id="rect337"
+             style="fill:#438dd5;fill-opacity:1;stroke-width:0.0691589" />
+          <text
+             id="text329"
+             y="136.58539"
+             x="107.33242"
+             style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+             xml:space="preserve"><tspan
+               id="tspan327"
+               style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+               y="136.58539"
+               x="107.33242"
+               sodipodi:role="line">ADD</tspan></text>
+        </g>
+        <g
+           transform="translate(-9.0549293,-10.054167)"
+           id="g369">
+          <rect
+             style="fill:#438dd5;fill-opacity:1;stroke-width:0.0691589"
+             id="rect345"
+             width="17.943993"
+             height="10.791306"
+             x="135.34196"
+             y="130.25713" />
+          <text
+             xml:space="preserve"
+             style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+             x="144.26073"
+             y="136.58539"
+             id="text335"><tspan
+               sodipodi:role="line"
+               x="144.26073"
+               y="136.58539"
+               style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+               id="tspan333">DELETE</tspan></text>
+        </g>
+        <g
+           transform="translate(37.131268,-10.054167)"
+           id="g354">
+          <rect
+             style="fill:#438dd5;fill-opacity:1;stroke-width:0.0691589"
+             id="rect343"
+             width="17.943993"
+             height="10.791306"
+             x="-21.871578"
+             y="130.25713" />
+          <text
+             xml:space="preserve"
+             style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+             x="-12.948436"
+             y="136.58539"
+             id="text341"><tspan
+               sodipodi:role="line"
+               x="-12.948436"
+               y="136.58539"
+               style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+               id="tspan339">READ</tspan></text>
+        </g>
+      </g>
+      <g
+         id="g395"
+         transform="translate(0,-0.52145113)">
+        <rect
+           y="140.51239"
+           x="70.879478"
+           height="10.791306"
+           width="73.351555"
+           id="rect381"
+           style="fill:#438dd5;fill-opacity:1;stroke-width:0.139828" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+           x="107.53522"
+           y="146.63083"
+           id="text385"><tspan
+             sodipodi:role="line"
+             x="107.53522"
+             y="146.63083"
+             style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+             id="tspan383">Verify Task is claimed by User</tspan></text>
+      </g>
+      <path
+         style="fill:#08427b;fill-opacity:1;stroke:#08427b;stroke-width:1.45959;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Send)"
+         d="m 24.224674,109.8333 v 7.23687"
+         id="path429" />
+      <path
+         id="path2218"
+         d="m 51.981509,109.8333 v 7.23687"
+         style="fill:#08427b;fill-opacity:1;stroke:#08427b;stroke-width:1.45959;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker2222)" />
+      <path
+         style="fill:#08427b;fill-opacity:1;stroke:#08427b;stroke-width:1.46;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker2422)"
+         d="m 79.738346,109.8333 v 7.23687"
+         id="path2418" />
+      <path
+         id="path2626"
+         d="m 107.49518,109.8333 v 7.23687"
+         style="fill:#08427b;fill-opacity:1;stroke:#08427b;stroke-width:1.45959;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker2630)" />
+      <path
+         style="fill:#08427b;fill-opacity:1;stroke:#08427b;stroke-width:1.45959;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker2846)"
+         d="m 135.25202,109.8333 v 7.23687"
+         id="path2842" />
+      <path
+         id="path3066"
+         d="m 135.25202,130.47081 v 7.23687"
+         style="fill:#08427b;fill-opacity:1;stroke:#08427b;stroke-width:1.45959;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3070)" />
+      <path
+         style="fill:#08427b;fill-opacity:1;stroke:#08427b;stroke-width:1.45959;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3309)"
+         d="m 107.49518,130.47081 v 7.23687"
+         id="path3305" />
+      <path
+         id="path3545"
+         d="m 79.738346,130.47081 v 7.23687"
+         style="fill:#08427b;fill-opacity:1;stroke:#08427b;stroke-width:1.45959;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3549)" />
+      <path
+         style="fill:#08427b;fill-opacity:1;stroke:#08427b;stroke-width:1.46;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3797)"
+         d="m 80.316352,151.10832 v 7.23687"
+         id="path3793" />
+      <path
+         id="path4050"
+         d="m 106.77469,151.10832 v 7.23687"
+         style="fill:#08427b;fill-opacity:1;stroke:#08427b;stroke-width:1.45959;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4054)" />
+      <path
+         style="fill:#08427b;fill-opacity:1;stroke:#08427b;stroke-width:1.45959;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4318)"
+         d="m 138.52471,151.10832 v 7.23687"
+         id="path4314" />
+      <path
+         id="path4586"
+         d="m 107.54824,171.74583 v 7.23687"
+         style="fill:#08427b;fill-opacity:1;stroke:#08427b;stroke-width:1.45959;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4590)" />
+      <path
+         id="path5160"
+         d="m 24.224674,130.47081 v 27.64565"
+         style="fill:#08427b;fill-opacity:1;stroke:#08427b;stroke-width:1.46;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker5164)" />
+      <g
+         id="g5470"
+         transform="translate(0,-0.2626508)">
+        <rect
+           y="160.86369"
+           x="15.259689"
+           height="10.791306"
+           width="45.776234"
+           id="rect5456"
+           style="fill:#438dd5;fill-opacity:1;stroke-width:0.110461" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.16034"
+           x="38.184761"
+           y="166.98213"
+           id="text5460"><tspan
+             sodipodi:role="line"
+             x="38.184761"
+             y="166.98213"
+             style="font-size:2.56545px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.16034"
+             id="tspan5458">Verify Access for User Roles</tspan></text>
+      </g>
+      <path
+         style="fill:#08427b;fill-opacity:1;stroke:#08427b;stroke-width:1.45959;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker5482)"
+         d="m 38.140794,171.74583 v 7.23687"
+         id="path5478" />
+      <path
+         style="fill:#08427b;fill-opacity:1;stroke:#08427b;stroke-width:1.46;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker6965)"
+         d="m 51.981507,130.47081 v 27.64565"
+         id="path6961" />
+    </g>
+    <g
+       transform="translate(2.6458334,1.7867863)"
+       id="g8264">
+      <path
+         style="fill:#999999;fill-opacity:1;stroke:#999999;stroke-width:0.7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker7889)"
+         d="M -2.2336601,94.954967 V 191.2325"
+         id="path7885" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:2.56545px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.125494"
+         x="-157.93329"
+         y="1.8648703"
+         id="text8229"
+         transform="rotate(-90)"><tspan
+           sodipodi:role="line"
+           id="tspan8227"
+           x="-157.93329"
+           y="1.8648703"
+           style="font-size:2.56545px;stroke-width:0.125494">Authorization process</tspan></text>
+    </g>
+  </g>
+  <style
+     id="style483"
+     type="text/css"><![CDATA[
+		.st1 {fill:#08427b;stroke:#073b6f;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st2 {fill:#ffffff;font-family:Calibri;font-size:0.833336em}
+		.st3 {font-size:0.599989em}
+		.st4 {font-size:0.799995em}
+		.st5 {fill:#1168bd;stroke:#1864ad;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st6 {fill:#438dd5;stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st7 {fill:#85bbf0;stroke:#78a8d8;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st8 {fill:#000000;font-family:Calibri;font-size:0.833336em}
+		.st9 {fill:#438dd5}
+		.st10 {stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st11 {fill:#3d81c3;stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st12 {stroke:#408dd5;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st13 {fill:#408dd5;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st14 {fill:#438dd5;stroke:#3d81c3;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.283465}
+		.st15 {marker-end:url(#mrkr13-73);stroke:#444444;stroke-dasharray:5.25,3.75;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st16 {fill:#444444;fill-opacity:1;stroke:#444444;stroke-opacity:1;stroke-width:0.22935779816514}
+		.st17 {fill:#ffffff;stroke:none;stroke-linecap:butt;stroke-width:7.2}
+		.st18 {fill:#000000;font-family:Calibri;font-size:0.666664em}
+		.st19 {font-size:0.749991em}
+		.st20 {fill:none;stroke:#444444;stroke-dasharray:7.5,4.5;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.5}
+		.st21 {font-size:1em}
+		.st22 {fill:#999999;stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st23 {fill:#999999}
+		.st24 {stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st25 {fill:#8b8b8b;stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st26 {stroke:#999999;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
+		.st27 {fill:#999999;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
+		.st28 {fill:#999999;stroke:#8b8b8b;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.283465}
+		.st29 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3}
+	]]></style>
+</svg>
diff --git a/src/main/asciidoc/images/database-structure.svg b/src/main/asciidoc/images/database-structure.svg
new file mode 100644
index 0000000..4635834
--- /dev/null
+++ b/src/main/asciidoc/images/database-structure.svg
@@ -0,0 +1,2706 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   inkscape:version="1.0 (4035a4f, 2020-05-01)"
+   sodipodi:docname="database-structure.svg"
+   viewBox="0 0 496.66666 326.00001"
+   height="326"
+   width="496.66666"
+   xml:space="preserve"
+   id="svg9158"
+   version="1.1"><metadata
+     id="metadata9164"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+     id="defs9162"><clipPath
+       id="clipPath9176"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9174"
+         d="m 12.2457,500.644 h 570.7842 v 329 H 12.2457 Z" /></clipPath><linearGradient
+       id="linearGradient9194"
+       gradientTransform="matrix(1,0,0,-1,12.2457,829.644)"
+       gradientUnits="userSpaceOnUse"
+       y2="291"
+       x2="504"
+       y1="291"
+       x1="457"><stop
+         id="stop9190"
+         offset="0"
+         style="stop-opacity:1;stop-color:#faf0d2" /><stop
+         id="stop9192"
+         offset="1"
+         style="stop-opacity:1;stop-color:#ffffff" /></linearGradient><clipPath
+       id="clipPath9204"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9202"
+         d="m 504.2457,525.644 h 12 v 12 h -12 z" /></clipPath><clipPath
+       id="clipPath9210"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9208"
+         d="m 504,526 h 12 v 12 h -12 z" /></clipPath><clipPath
+       id="clipPath9214"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9212"
+         d="m 504,526 h 12 v 12 h -12 z" /></clipPath><mask
+       id="mask9216"
+       height="1"
+       width="1"
+       y="0"
+       x="0"
+       maskUnits="userSpaceOnUse"><image
+         id="image9218"
+         xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAAAAADFHGIkAAAAAXNCSVQI5gpbmQAAAD1JREFUKJFjYCAVMDIw/McqzIRLx6gEGmDGJXGEEUfoMrCSbDkj9STQxCf8h4I9LGgK3RZdfvn2xoY4RgYAAVYRuM5jlv8AAAAASUVORK5CYII="
+         preserveAspectRatio="none"
+         height="1"
+         width="1" /></mask><clipPath
+       id="clipPath9240"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9238"
+         d="m 470.2457,525.644 h 34 v 12 h -34 z" /></clipPath><clipPath
+       id="clipPath9254"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9252"
+         d="m 470.2457,500.644 h 46 v 26 h -46 z" /></clipPath><clipPath
+       id="clipPath9266"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9264"
+         d="m 469.2457,500.644 h 48 v 38 h -48 z" /></clipPath><linearGradient
+       id="linearGradient9290"
+       gradientTransform="matrix(1,0,0,-1,12.2457,829.644)"
+       gradientUnits="userSpaceOnUse"
+       y2="167"
+       x2="290"
+       y1="167"
+       x1="243"><stop
+         id="stop9286"
+         offset="0"
+         style="stop-opacity:1;stop-color:#faf0d2" /><stop
+         id="stop9288"
+         offset="1"
+         style="stop-opacity:1;stop-color:#ffffff" /></linearGradient><clipPath
+       id="clipPath9300"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9298"
+         d="m 289.2457,649.644 h 12 v 12 h -12 z" /></clipPath><clipPath
+       id="clipPath9306"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9304"
+         d="m 289,650 h 12 v 12 h -12 z" /></clipPath><clipPath
+       id="clipPath9310"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9308"
+         d="m 289,650 h 12 v 12 h -12 z" /></clipPath><mask
+       id="mask9312"
+       height="1"
+       width="1"
+       y="0"
+       x="0"
+       maskUnits="userSpaceOnUse"><image
+         id="image9314"
+         xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAAAAADFHGIkAAAAAXNCSVQI5gpbmQAAAD1JREFUKJFjYCAVMDIw/McqzIRLx6gEGmDGJXGEEUfoMrCSbDkj9STQxCf8h4I9LGgK3RZdfvn2xoY4RgYAAVYRuM5jlv8AAAAASUVORK5CYII="
+         preserveAspectRatio="none"
+         height="1"
+         width="1" /></mask><clipPath
+       id="clipPath9336"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9334"
+         d="m 255.2457,649.644 h 35 v 12 h -35 z" /></clipPath><clipPath
+       id="clipPath9350"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9348"
+         d="m 255.2457,624.644 h 47 v 26 h -47 z" /></clipPath><clipPath
+       id="clipPath9362"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9360"
+         d="m 255.2457,623.644 h 48 v 39 h -48 z" /></clipPath><linearGradient
+       id="linearGradient9386"
+       gradientTransform="matrix(1,0,0,-1,12.2457,829.644)"
+       gradientUnits="userSpaceOnUse"
+       y2="167"
+       x2="411"
+       y1="167"
+       x1="355"><stop
+         id="stop9382"
+         offset="0"
+         style="stop-opacity:1;stop-color:#faf0d2" /><stop
+         id="stop9384"
+         offset="1"
+         style="stop-opacity:1;stop-color:#ffffff" /></linearGradient><clipPath
+       id="clipPath9396"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9394"
+         d="m 411.2457,649.644 h 12 v 12 h -12 z" /></clipPath><clipPath
+       id="clipPath9402"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9400"
+         d="m 411,650 h 12 v 12 h -12 z" /></clipPath><clipPath
+       id="clipPath9406"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9404"
+         d="m 411,650 h 12 v 12 h -12 z" /></clipPath><mask
+       id="mask9408"
+       height="1"
+       width="1"
+       y="0"
+       x="0"
+       maskUnits="userSpaceOnUse"><image
+         id="image9410"
+         xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAAAAADFHGIkAAAAAXNCSVQI5gpbmQAAAD1JREFUKJFjYCAVMDIw/McqzIRLx6gEGmDGJXGEEUfoMrCSbDkj9STQxCf8h4I9LGgK3RZdfvn2xoY4RgYAAVYRuM5jlv8AAAAASUVORK5CYII="
+         preserveAspectRatio="none"
+         height="1"
+         width="1" /></mask><clipPath
+       id="clipPath9432"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9430"
+         d="m 368.2457,649.644 h 43 v 12 h -43 z" /></clipPath><clipPath
+       id="clipPath9446"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9444"
+         d="m 368.2457,624.644 h 55 v 26 h -55 z" /></clipPath><clipPath
+       id="clipPath9458"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9456"
+         d="m 367.2457,623.644 h 57 v 39 h -57 z" /></clipPath><linearGradient
+       id="linearGradient9482"
+       gradientTransform="matrix(1,0,0,-1,12.2457,829.644)"
+       gradientUnits="userSpaceOnUse"
+       y2="233"
+       x2="365"
+       y1="233"
+       x1="318"><stop
+         id="stop9478"
+         offset="0"
+         style="stop-opacity:1;stop-color:#faf0d2" /><stop
+         id="stop9480"
+         offset="1"
+         style="stop-opacity:1;stop-color:#ffffff" /></linearGradient><clipPath
+       id="clipPath9492"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9490"
+         d="m 364.2457,583.644 h 12 v 12 h -12 z" /></clipPath><clipPath
+       id="clipPath9498"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9496"
+         d="m 364,584 h 12 v 12 h -12 z" /></clipPath><clipPath
+       id="clipPath9502"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9500"
+         d="m 364,584 h 12 v 12 h -12 z" /></clipPath><mask
+       id="mask9504"
+       height="1"
+       width="1"
+       y="0"
+       x="0"
+       maskUnits="userSpaceOnUse"><image
+         id="image9506"
+         xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAAAAADFHGIkAAAAAXNCSVQI5gpbmQAAAD1JREFUKJFjYCAVMDIw/McqzIRLx6gEGmDGJXGEEUfoMrCSbDkj9STQxCf8h4I9LGgK3RZdfvn2xoY4RgYAAVYRuM5jlv8AAAAASUVORK5CYII="
+         preserveAspectRatio="none"
+         height="1"
+         width="1" /></mask><clipPath
+       id="clipPath9528"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9526"
+         d="m 330.2457,583.644 h 34 v 12 h -34 z" /></clipPath><clipPath
+       id="clipPath9542"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9540"
+         d="m 330.2457,558.644 h 47 v 26 h -47 z" /></clipPath><clipPath
+       id="clipPath9554"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9552"
+         d="m 330.2457,557.644 h 47 v 39 h -47 z" /></clipPath><linearGradient
+       id="linearGradient9578"
+       gradientTransform="matrix(1,0,0,-1,12.2457,829.644)"
+       gradientUnits="userSpaceOnUse"
+       y2="93"
+       x2="290"
+       y1="93"
+       x1="243"><stop
+         id="stop9574"
+         offset="0"
+         style="stop-opacity:1;stop-color:#faf0d2" /><stop
+         id="stop9576"
+         offset="1"
+         style="stop-opacity:1;stop-color:#ffffff" /></linearGradient><clipPath
+       id="clipPath9588"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9586"
+         d="m 289.2457,723.644 h 12 v 13 h -12 z" /></clipPath><clipPath
+       id="clipPath9594"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9592"
+         d="m 289,725 h 12 v 12 h -12 z" /></clipPath><clipPath
+       id="clipPath9598"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9596"
+         d="m 289,725 h 12 v 12 h -12 z" /></clipPath><mask
+       id="mask9600"
+       height="1"
+       width="1"
+       y="0"
+       x="0"
+       maskUnits="userSpaceOnUse"><image
+         id="image9602"
+         xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAAAAADFHGIkAAAAAXNCSVQI5gpbmQAAAD1JREFUKJFjYCAVMDIw/McqzIRLx6gEGmDGJXGEEUfoMrCSbDkj9STQxCf8h4I9LGgK3RZdfvn2xoY4RgYAAVYRuM5jlv8AAAAASUVORK5CYII="
+         preserveAspectRatio="none"
+         height="1"
+         width="1" /></mask><clipPath
+       id="clipPath9624"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9622"
+         d="m 255.2457,723.644 h 35 v 13 h -35 z" /></clipPath><clipPath
+       id="clipPath9638"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9636"
+         d="m 255.2457,699.644 h 47 v 25 h -47 z" /></clipPath><clipPath
+       id="clipPath9650"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9648"
+         d="m 255.2457,698.644 h 48 v 38 h -48 z" /></clipPath><linearGradient
+       id="linearGradient9674"
+       gradientTransform="matrix(1,0,0,-1,12.2457,829.644)"
+       gradientUnits="userSpaceOnUse"
+       y2="93"
+       x2="186"
+       y1="93"
+       x1="140"><stop
+         id="stop9670"
+         offset="0"
+         style="stop-opacity:1;stop-color:#faf0d2" /><stop
+         id="stop9672"
+         offset="1"
+         style="stop-opacity:1;stop-color:#ffffff" /></linearGradient><clipPath
+       id="clipPath9684"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9682"
+         d="m 186.2457,723.644 h 12 v 13 h -12 z" /></clipPath><clipPath
+       id="clipPath9690"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9688"
+         d="m 186,725 h 12 v 12 h -12 z" /></clipPath><clipPath
+       id="clipPath9694"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9692"
+         d="m 186,725 h 12 v 12 h -12 z" /></clipPath><mask
+       id="mask9696"
+       height="1"
+       width="1"
+       y="0"
+       x="0"
+       maskUnits="userSpaceOnUse"><image
+         id="image9698"
+         xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAAAAADFHGIkAAAAAXNCSVQI5gpbmQAAAD1JREFUKJFjYCAVMDIw/McqzIRLx6gEGmDGJXGEEUfoMrCSbDkj9STQxCf8h4I9LGgK3RZdfvn2xoY4RgYAAVYRuM5jlv8AAAAASUVORK5CYII="
+         preserveAspectRatio="none"
+         height="1"
+         width="1" /></mask><clipPath
+       id="clipPath9720"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9718"
+         d="m 152.2457,723.644 h 34 v 13 h -34 z" /></clipPath><clipPath
+       id="clipPath9734"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9732"
+         d="m 152.2457,699.644 h 46 v 25 h -46 z" /></clipPath><clipPath
+       id="clipPath9746"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9744"
+         d="m 152.2457,698.644 h 47 v 38 h -47 z" /></clipPath><linearGradient
+       id="linearGradient9770"
+       gradientTransform="matrix(1,0,0,-1,12.2457,829.644)"
+       gradientUnits="userSpaceOnUse"
+       y2="167"
+       x2="186"
+       y1="167"
+       x1="140"><stop
+         id="stop9766"
+         offset="0"
+         style="stop-opacity:1;stop-color:#faf0d2" /><stop
+         id="stop9768"
+         offset="1"
+         style="stop-opacity:1;stop-color:#ffffff" /></linearGradient><clipPath
+       id="clipPath9780"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9778"
+         d="m 186.2457,649.644 h 12 v 12 h -12 z" /></clipPath><clipPath
+       id="clipPath9786"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9784"
+         d="m 186,650 h 12 v 12 h -12 z" /></clipPath><clipPath
+       id="clipPath9790"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9788"
+         d="m 186,650 h 12 v 12 h -12 z" /></clipPath><mask
+       id="mask9792"
+       height="1"
+       width="1"
+       y="0"
+       x="0"
+       maskUnits="userSpaceOnUse"><image
+         id="image9794"
+         xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAAAAADFHGIkAAAAAXNCSVQI5gpbmQAAAD1JREFUKJFjYCAVMDIw/McqzIRLx6gEGmDGJXGEEUfoMrCSbDkj9STQxCf8h4I9LGgK3RZdfvn2xoY4RgYAAVYRuM5jlv8AAAAASUVORK5CYII="
+         preserveAspectRatio="none"
+         height="1"
+         width="1" /></mask><clipPath
+       id="clipPath9816"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9814"
+         d="m 152.2457,649.644 h 34 v 12 h -34 z" /></clipPath><clipPath
+       id="clipPath9830"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9828"
+         d="m 152.2457,624.644 h 46 v 26 h -46 z" /></clipPath><clipPath
+       id="clipPath9842"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9840"
+         d="m 152.2457,623.644 h 47 v 39 h -47 z" /></clipPath><linearGradient
+       id="linearGradient9866"
+       gradientTransform="matrix(1,0,0,-1,12.2457,829.644)"
+       gradientUnits="userSpaceOnUse"
+       y2="233"
+       x2="454"
+       y1="233"
+       x1="401"><stop
+         id="stop9862"
+         offset="0"
+         style="stop-opacity:1;stop-color:#faf0d2" /><stop
+         id="stop9864"
+         offset="1"
+         style="stop-opacity:1;stop-color:#ffffff" /></linearGradient><clipPath
+       id="clipPath9876"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9874"
+         d="m 453.2457,584.644 h 12 v 12 h -12 z" /></clipPath><clipPath
+       id="clipPath9882"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9880"
+         d="m 453,585 h 12 v 12 h -12 z" /></clipPath><clipPath
+       id="clipPath9886"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9884"
+         d="m 453,585 h 12 v 12 h -12 z" /></clipPath><mask
+       id="mask9888"
+       height="1"
+       width="1"
+       y="0"
+       x="0"
+       maskUnits="userSpaceOnUse"><image
+         id="image9890"
+         xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAAAAADFHGIkAAAAAXNCSVQI5gpbmQAAAD1JREFUKJFjYCAVMDIw/McqzIRLx6gEGmDGJXGEEUfoMrCSbDkj9STQxCf8h4I9LGgK3RZdfvn2xoY4RgYAAVYRuM5jlv8AAAAASUVORK5CYII="
+         preserveAspectRatio="none"
+         height="1"
+         width="1" /></mask><clipPath
+       id="clipPath9912"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9910"
+         d="m 414.2457,584.644 h 40 v 12 h -40 z" /></clipPath><clipPath
+       id="clipPath9926"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9924"
+         d="m 414.2457,559.644 h 52 v 26 h -52 z" /></clipPath><clipPath
+       id="clipPath9938"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9936"
+         d="m 413.2457,558.644 h 54 v 38 h -54 z" /></clipPath><linearGradient
+       id="linearGradient9962"
+       gradientTransform="matrix(1,0,0,-1,12.2457,829.644)"
+       gradientUnits="userSpaceOnUse"
+       y2="233"
+       x2="291"
+       y1="233"
+       x1="241"><stop
+         id="stop9958"
+         offset="0"
+         style="stop-opacity:1;stop-color:#faf0d2" /><stop
+         id="stop9960"
+         offset="1"
+         style="stop-opacity:1;stop-color:#ffffff" /></linearGradient><clipPath
+       id="clipPath9972"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9970"
+         d="m 290.2457,583.644 h 13 v 12 h -13 z" /></clipPath><clipPath
+       id="clipPath9978"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9976"
+         d="m 290,584 h 12 v 12 h -12 z" /></clipPath><clipPath
+       id="clipPath9982"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path9980"
+         d="m 290,584 h 12 v 12 h -12 z" /></clipPath><mask
+       id="mask9984"
+       height="1"
+       width="1"
+       y="0"
+       x="0"
+       maskUnits="userSpaceOnUse"><image
+         id="image9986"
+         xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAAAAADFHGIkAAAAAXNCSVQI5gpbmQAAAD1JREFUKJFjYCAVMDIw/McqzIRLx6gEGmDGJXGEEUfoMrCSbDkj9STQxCf8h4I9LGgK3RZdfvn2xoY4RgYAAVYRuM5jlv8AAAAASUVORK5CYII="
+         preserveAspectRatio="none"
+         height="1"
+         width="1" /></mask><clipPath
+       id="clipPath10008"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10006"
+         d="m 254.2457,583.644 h 37 v 12 h -37 z" /></clipPath><clipPath
+       id="clipPath10022"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10020"
+         d="m 254.2457,558.644 h 49 v 26 h -49 z" /></clipPath><clipPath
+       id="clipPath10034"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10032"
+         d="m 253.2457,557.644 h 51 v 39 h -51 z" /></clipPath><linearGradient
+       id="linearGradient10058"
+       gradientTransform="matrix(1,0,0,-1,12.2457,829.644)"
+       gradientUnits="userSpaceOnUse"
+       y2="92"
+       x2="454"
+       y1="92"
+       x1="401"><stop
+         id="stop10054"
+         offset="0"
+         style="stop-opacity:1;stop-color:#faf0d2" /><stop
+         id="stop10056"
+         offset="1"
+         style="stop-opacity:1;stop-color:#ffffff" /></linearGradient><clipPath
+       id="clipPath10068"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10066"
+         d="m 453.2457,724.644 h 12 v 12 h -12 z" /></clipPath><clipPath
+       id="clipPath10074"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10072"
+         d="m 453,725 h 12 v 12 h -12 z" /></clipPath><clipPath
+       id="clipPath10078"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10076"
+         d="m 453,725 h 12 v 12 h -12 z" /></clipPath><mask
+       id="mask10080"
+       height="1"
+       width="1"
+       y="0"
+       x="0"
+       maskUnits="userSpaceOnUse"><image
+         id="image10082"
+         xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAAAAADFHGIkAAAAAXNCSVQI5gpbmQAAAD1JREFUKJFjYCAVMDIw/McqzIRLx6gEGmDGJXGEEUfoMrCSbDkj9STQxCf8h4I9LGgK3RZdfvn2xoY4RgYAAVYRuM5jlv8AAAAASUVORK5CYII="
+         preserveAspectRatio="none"
+         height="1"
+         width="1" /></mask><clipPath
+       id="clipPath10104"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10102"
+         d="m 414.2457,724.644 h 40 v 12 h -40 z" /></clipPath><clipPath
+       id="clipPath10118"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10116"
+         d="m 414.2457,699.644 h 52 v 26 h -52 z" /></clipPath><clipPath
+       id="clipPath10130"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10128"
+         d="m 413.2457,698.644 h 54 v 39 h -54 z" /></clipPath><linearGradient
+       id="linearGradient10154"
+       gradientTransform="matrix(1,0,0,-1,12.2457,829.644)"
+       gradientUnits="userSpaceOnUse"
+       y2="167"
+       x2="504"
+       y1="167"
+       x1="457"><stop
+         id="stop10150"
+         offset="0"
+         style="stop-opacity:1;stop-color:#faf0d2" /><stop
+         id="stop10152"
+         offset="1"
+         style="stop-opacity:1;stop-color:#ffffff" /></linearGradient><clipPath
+       id="clipPath10164"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10162"
+         d="m 504.2457,649.644 h 12 v 12 h -12 z" /></clipPath><clipPath
+       id="clipPath10170"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10168"
+         d="m 504,650 h 12 v 12 h -12 z" /></clipPath><clipPath
+       id="clipPath10174"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10172"
+         d="m 504,650 h 12 v 12 h -12 z" /></clipPath><mask
+       id="mask10176"
+       height="1"
+       width="1"
+       y="0"
+       x="0"
+       maskUnits="userSpaceOnUse"><image
+         id="image10178"
+         xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAAAAADFHGIkAAAAAXNCSVQI5gpbmQAAAD1JREFUKJFjYCAVMDIw/McqzIRLx6gEGmDGJXGEEUfoMrCSbDkj9STQxCf8h4I9LGgK3RZdfvn2xoY4RgYAAVYRuM5jlv8AAAAASUVORK5CYII="
+         preserveAspectRatio="none"
+         height="1"
+         width="1" /></mask><clipPath
+       id="clipPath10200"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10198"
+         d="m 470.2457,649.644 h 34 v 12 h -34 z" /></clipPath><clipPath
+       id="clipPath10214"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10212"
+         d="m 470.2457,624.644 h 46 v 26 h -46 z" /></clipPath><clipPath
+       id="clipPath10226"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10224"
+         d="m 469.2457,623.644 h 48 v 39 h -48 z" /></clipPath><linearGradient
+       id="linearGradient10250"
+       gradientTransform="matrix(1,0,0,-1,12.2457,829.644)"
+       gradientUnits="userSpaceOnUse"
+       y2="92"
+       x2="365"
+       y1="92"
+       x1="318"><stop
+         id="stop10246"
+         offset="0"
+         style="stop-opacity:1;stop-color:#faf0d2" /><stop
+         id="stop10248"
+         offset="1"
+         style="stop-opacity:1;stop-color:#ffffff" /></linearGradient><clipPath
+       id="clipPath10260"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10258"
+         d="m 364.2457,723.644 h 12 v 13 h -12 z" /></clipPath><clipPath
+       id="clipPath10266"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10264"
+         d="m 364,725 h 12 v 12 h -12 z" /></clipPath><clipPath
+       id="clipPath10270"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10268"
+         d="m 364,725 h 12 v 12 h -12 z" /></clipPath><mask
+       id="mask10272"
+       height="1"
+       width="1"
+       y="0"
+       x="0"
+       maskUnits="userSpaceOnUse"><image
+         id="image10274"
+         xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAAAAADFHGIkAAAAAXNCSVQI5gpbmQAAAD1JREFUKJFjYCAVMDIw/McqzIRLx6gEGmDGJXGEEUfoMrCSbDkj9STQxCf8h4I9LGgK3RZdfvn2xoY4RgYAAVYRuM5jlv8AAAAASUVORK5CYII="
+         preserveAspectRatio="none"
+         height="1"
+         width="1" /></mask><clipPath
+       id="clipPath10296"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10294"
+         d="m 330.2457,723.644 h 34 v 13 h -34 z" /></clipPath><clipPath
+       id="clipPath10316"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10314"
+         d="m 330.2457,699.644 h 47 v 25 h -47 z" /></clipPath><clipPath
+       id="clipPath10328"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10326"
+         d="m 330.2457,698.644 h 47 v 39 h -47 z" /></clipPath><clipPath
+       id="clipPath10344"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10342"
+         d="m 249.2457,656.644 h 39 v 48 h -39 z" /></clipPath><clipPath
+       id="clipPath10356"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10354"
+         d="m 280.2457,690.644 h 3 v 6 h -3 z" /></clipPath><clipPath
+       id="clipPath10370"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10368"
+         d="m 280.2457,664.644 h 4 v 6 h -4 z" /></clipPath><clipPath
+       id="clipPath10384"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10382"
+         d="m 254.2457,688.644 h 22 v 8 h -22 z" /></clipPath><clipPath
+       id="clipPath10398"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10396"
+         d="m 256.2457,664.644 h 20 v 8 h -20 z" /></clipPath><clipPath
+       id="clipPath10412"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10410"
+         d="m 275.2457,693.644 h 6 v 6 h -6 z" /></clipPath><clipPath
+       id="clipPath10424"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10422"
+         d="m 275.2457,660.644 h 6 v 7 h -6 z" /></clipPath><clipPath
+       id="clipPath10436"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10434"
+         d="m 296.2457,631.644 h 77 v 28 h -77 z" /></clipPath><clipPath
+       id="clipPath10448"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10446"
+         d="m 340.2457,646.644 h 25 v 8 h -25 z" /></clipPath><clipPath
+       id="clipPath10462"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10460"
+         d="m 357.2457,636.644 h 8 v 6 h -8 z" /></clipPath><clipPath
+       id="clipPath10476"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10474"
+         d="m 304.2457,636.644 h 3 v 6 h -3 z" /></clipPath><clipPath
+       id="clipPath10490"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10488"
+         d="m 304.2457,646.644 h 19 v 8 h -19 z" /></clipPath><clipPath
+       id="clipPath10504"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10502"
+         d="m 362.2457,641.644 h 7 v 6 h -7 z" /></clipPath><clipPath
+       id="clipPath10516"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10514"
+         d="m 301.2457,641.644 h 6 v 6 h -6 z" /></clipPath><clipPath
+       id="clipPath10528"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10526"
+         d="m 405.2457,656.644 h 51 v 49 h -51 z" /></clipPath><clipPath
+       id="clipPath10556"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10554"
+         d="m 418.2457,664.644 h 2 v 6 h -2 z" /></clipPath><clipPath
+       id="clipPath10570"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10568"
+         d="m 448.2457,691.644 h 4 v 6 h -4 z" /></clipPath><clipPath
+       id="clipPath10584"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10582"
+         d="m 410.2457,689.644 h 34 v 8 h -34 z" /></clipPath><clipPath
+       id="clipPath10598"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10596"
+         d="m 418.2457,670.644 h 26 v 8 h -26 z" /></clipPath><clipPath
+       id="clipPath10612"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10610"
+         d="m 443.2457,693.644 h 6 v 7 h -6 z" /></clipPath><clipPath
+       id="clipPath10624"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10622"
+         d="m 413.2457,660.644 h 6 v 7 h -6 z" /></clipPath><clipPath
+       id="clipPath10636"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10634"
+         d="m 193.2457,628.644 h 68 v 27 h -68 z" /></clipPath><clipPath
+       id="clipPath10648"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10646"
+         d="m 201.2457,642.644 h 27 v 9 h -27 z" /></clipPath><clipPath
+       id="clipPath10662"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10660"
+         d="m 233.2457,642.644 h 20 v 9 h -20 z" /></clipPath><clipPath
+       id="clipPath10676"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10674"
+         d="m 250.2457,632.644 h 3 v 6 h -3 z" /></clipPath><clipPath
+       id="clipPath10690"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10688"
+         d="m 201.2457,632.644 h 4 v 6 h -4 z" /></clipPath><clipPath
+       id="clipPath10704"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10702"
+         d="m 198.2457,637.644 h 7 v 6 h -7 z" /></clipPath><clipPath
+       id="clipPath10716"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10714"
+         d="m 250.2457,637.644 h 6 v 6 h -6 z" /></clipPath><clipPath
+       id="clipPath10728"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10726"
+         d="m 193.2457,702.644 h 68 v 28 h -68 z" /></clipPath><clipPath
+       id="clipPath10740"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10738"
+         d="m 201.2457,717.644 h 7 v 8 h -7 z" /></clipPath><clipPath
+       id="clipPath10754"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10752"
+         d="m 250.2457,707.644 h 3 v 6 h -3 z" /></clipPath><clipPath
+       id="clipPath10768"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10766"
+         d="m 201.2457,707.644 h 3 v 6 h -3 z" /></clipPath><clipPath
+       id="clipPath10782"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10780"
+         d="m 231.2457,717.644 h 22 v 8 h -22 z" /></clipPath><clipPath
+       id="clipPath10796"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10794"
+         d="m 198.2457,712.644 h 7 v 6 h -7 z" /></clipPath><clipPath
+       id="clipPath10808"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10806"
+         d="m 250.2457,712.644 h 6 v 6 h -6 z" /></clipPath><clipPath
+       id="clipPath10820"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10818"
+         d="m 309.2457,656.644 h 80 v 49 h -80 z" /></clipPath><clipPath
+       id="clipPath10848"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10846"
+         d="m 356.2457,691.644 h 4 v 6 h -4 z" /></clipPath><clipPath
+       id="clipPath10862"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10860"
+         d="m 314.2457,689.644 h 39 v 8 h -39 z" /></clipPath><clipPath
+       id="clipPath10876"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10874"
+         d="m 381.2457,664.644 h 3 v 6 h -3 z" /></clipPath><clipPath
+       id="clipPath10890"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10888"
+         d="m 353.2457,670.644 h 25 v 9 h -25 z" /></clipPath><clipPath
+       id="clipPath10904"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10902"
+         d="m 352.2457,693.644 h 6 v 7 h -6 z" /></clipPath><clipPath
+       id="clipPath10916"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10914"
+         d="m 376.2457,660.644 h 7 v 7 h -7 z" /></clipPath><clipPath
+       id="clipPath10928"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10926"
+         d="m 418.2457,623.644 h 58 v 35 h -58 z" /></clipPath><clipPath
+       id="clipPath10940"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10938"
+         d="m 423.2457,645.644 h 26 v 9 h -26 z" /></clipPath><clipPath
+       id="clipPath10954"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10952"
+         d="m 425.2457,634.644 h 4 v 6 h -4 z" /></clipPath><clipPath
+       id="clipPath10968"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10966"
+         d="m 451.2457,628.644 h 18 v 9 h -18 z" /></clipPath><clipPath
+       id="clipPath10982"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10980"
+         d="m 465.2457,634.644 h 3 v 6 h -3 z" /></clipPath><clipPath
+       id="clipPath10996"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path10994"
+         d="m 465.2457,639.644 h 6 v 6 h -6 z" /></clipPath><clipPath
+       id="clipPath11008"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11006"
+         d="m 422.2457,639.644 h 7 v 6 h -7 z" /></clipPath><clipPath
+       id="clipPath11020"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11018"
+         d="m 238.2457,589.644 h 51 v 41 h -51 z" /></clipPath><clipPath
+       id="clipPath11032"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11030"
+         d="m 279.2457,616.644 h 4 v 7 h -4 z" /></clipPath><clipPath
+       id="clipPath11046"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11044"
+         d="m 279.2457,597.644 h 3 v 6 h -3 z" /></clipPath><clipPath
+       id="clipPath11060"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11058"
+         d="m 255.2457,614.644 h 20 v 9 h -20 z" /></clipPath><clipPath
+       id="clipPath11074"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11072"
+         d="m 243.2457,597.644 h 32 v 9 h -32 z" /></clipPath><clipPath
+       id="clipPath11088"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11086"
+         d="m 274.2457,619.644 h 6 v 6 h -6 z" /></clipPath><clipPath
+       id="clipPath11100"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11098"
+         d="m 274.2457,594.644 h 6 v 7 h -6 z" /></clipPath><clipPath
+       id="clipPath11112"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11110"
+         d="m 318.2457,589.644 h 91 v 41 h -91 z" /></clipPath><clipPath
+       id="clipPath11140"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11138"
+         d="m 355.2457,597.644 h 3 v 6 h -3 z" /></clipPath><clipPath
+       id="clipPath11154"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11152"
+         d="m 371.2457,614.644 h 26 v 9 h -26 z" /></clipPath><clipPath
+       id="clipPath11168"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11166"
+         d="m 323.2457,597.644 h 28 v 9 h -28 z" /></clipPath><clipPath
+       id="clipPath11182"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11180"
+         d="m 400.2457,616.644 h 4 v 7 h -4 z" /></clipPath><clipPath
+       id="clipPath11196"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11194"
+         d="m 396.2457,619.644 h 6 v 6 h -6 z" /></clipPath><clipPath
+       id="clipPath11208"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11206"
+         d="m 350.2457,594.644 h 6 v 7 h -6 z" /></clipPath><clipPath
+       id="clipPath11220"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11218"
+         d="m 371.2457,559.644 h 49 v 36 h -49 z" /></clipPath><clipPath
+       id="clipPath11232"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11230"
+         d="m 377.2457,582.644 h 29 v 8 h -29 z" /></clipPath><clipPath
+       id="clipPath11246"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11244"
+         d="m 408.2457,571.644 h 4 v 6 h -4 z" /></clipPath><clipPath
+       id="clipPath11260"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11258"
+         d="m 378.2457,571.644 h 3 v 6 h -3 z" /></clipPath><clipPath
+       id="clipPath11274"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11272"
+         d="m 391.2457,564.644 h 23 v 9 h -23 z" /></clipPath><clipPath
+       id="clipPath11288"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11286"
+         d="m 409.2457,575.644 h 6 v 6 h -6 z" /></clipPath><clipPath
+       id="clipPath11300"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11298"
+         d="m 376.2457,575.644 h 6 v 6 h -6 z" /></clipPath><clipPath
+       id="clipPath11312"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11310"
+         d="m 408.2457,519.644 h 68 v 46 h -68 z" /></clipPath><clipPath
+       id="clipPath11332"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11330"
+         d="m 459.2457,533.644 h 9 v 9 h -9 z" /></clipPath><clipPath
+       id="clipPath11346"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11344"
+         d="m 439.2457,551.644 h 9 v 6 h -9 z" /></clipPath><clipPath
+       id="clipPath11360"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11358"
+         d="m 465.2457,523.644 h 3 v 7 h -3 z" /></clipPath><clipPath
+       id="clipPath11374"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11372"
+         d="m 413.2457,549.644 h 22 v 8 h -22 z" /></clipPath><clipPath
+       id="clipPath11388"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11386"
+         d="m 465.2457,528.644 h 6 v 6 h -6 z" /></clipPath><clipPath
+       id="clipPath11400"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11398"
+         d="m 434.2457,553.644 h 7 v 7 h -7 z" /></clipPath><clipPath
+       id="clipPath11412"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11410"
+         d="m 465.2457,531.644 h 36 v 99 h -36 z" /></clipPath><clipPath
+       id="clipPath11424"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11422"
+         d="m 479.2457,539.644 h 10 v 9 h -10 z" /></clipPath><clipPath
+       id="clipPath11438"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11436"
+         d="m 492.2457,539.644 h 4 v 6 h -4 z" /></clipPath><clipPath
+       id="clipPath11452"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11450"
+         d="m 492.2457,616.644 h 3 v 7 h -3 z" /></clipPath><clipPath
+       id="clipPath11466"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11464"
+         d="m 470.2457,614.644 h 19 v 9 h -19 z" /></clipPath><clipPath
+       id="clipPath11480"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11478"
+         d="m 488.2457,619.644 h 6 v 6 h -6 z" /></clipPath><clipPath
+       id="clipPath11492"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11490"
+         d="m 488.2457,536.644 h 6 v 7 h -6 z" /></clipPath><clipPath
+       id="clipPath11504"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11502"
+         d="m 239.2457,502.644 h 237 v 62 h -237 z" /></clipPath><clipPath
+       id="clipPath11524"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11522"
+         d="m 280.2457,550.644 h 3 v 6 h -3 z" /></clipPath><clipPath
+       id="clipPath11538"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11536"
+         d="m 464.2457,507.644 h 4 v 6 h -4 z" /></clipPath><clipPath
+       id="clipPath11552"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11550"
+         d="m 244.2457,548.644 h 32 v 8 h -32 z" /></clipPath><clipPath
+       id="clipPath11566"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11564"
+         d="m 459.2457,516.644 h 9 v 9 h -9 z" /></clipPath><clipPath
+       id="clipPath11580"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11578"
+         d="m 275.2457,552.644 h 6 v 7 h -6 z" /></clipPath><clipPath
+       id="clipPath11592"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path11590"
+         d="m 465.2457,511.644 h 6 v 6 h -6 z" /></clipPath></defs><sodipodi:namedview
+     inkscape:current-layer="g9166"
+     inkscape:window-maximized="0"
+     inkscape:window-y="23"
+     inkscape:window-x="0"
+     inkscape:cy="180.7907"
+     inkscape:cx="154.67554"
+     inkscape:zoom="2.3908713"
+     fit-margin-bottom="5"
+     fit-margin-right="5"
+     fit-margin-left="5"
+     fit-margin-top="5"
+     lock-margins="true"
+     showgrid="false"
+     id="namedview9160"
+     inkscape:window-height="1399"
+     inkscape:window-width="2116"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0"
+     guidetolerance="10"
+     gridtolerance="10"
+     objecttolerance="10"
+     borderopacity="1"
+     bordercolor="#666666"
+     pagecolor="#ffffff" /><g
+     transform="matrix(1.3333333,0,0,-1.3333333,-246.09388,1062.1386)"
+     inkscape:label="Untitled"
+     inkscape:groupmode="layer"
+     id="g9166"><g
+       id="g9168" /><g
+       transform="translate(36.074716,55.21)"
+       id="g13220"><g
+         id="g9180"><g
+           id="g9182"><g
+             id="g9188"><path
+               d="m 469.2457,500.644 h 47 v 38 h -47 z"
+               style="fill:url(#linearGradient9194);stroke:none"
+               id="path9196" /></g></g></g><g
+         id="g9198"><g
+           id="g9200"
+           clip-path="url(#clipPath9204)"><g
+             id="g9206" /><g
+             id="g9232"><g
+               clip-path="url(#clipPath9210)"
+               id="g9230"><g
+                 id="g9220" /><g
+                 id="g9228"><g
+                   clip-path="url(#clipPath9214)"
+                   id="g9226"><g
+                     transform="matrix(11,0,0,11,504.2457,526.644)"
+                     id="g9224"><image
+                       width="1"
+                       height="1"
+                       preserveAspectRatio="none"
+                       transform="matrix(1,0,0,-1,0,1)"
+                       xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABHNCSVQICAgIfAhkiAAAAeJJREFUSIm9lE1rE1EUhp9zZzJOktZqai2KoMQs3Aq6E6M0xY0IuugP0JUu3Yrgxo3uhfYHSEHciBuVQPfajaB1KZW2inEMTTJpPmaOixDb0WjMOO27unO58z7345xXAGUXZXbTHMDuD17czyRqfOmOHwUAzN56/t/GYdChPH/157c9aJGGQSxzMdZvcwMBO3cwiorXH2PZ+4YDSjefxQJA74p2au+qCKA8fy0By2hbRQAXbywmAIDywvZGIwBjO4kAIp6JO+414JcyTT73pO86ShYpwopVYsXM8NUU8DlIgCGjNXL6kVPhEsv5KzyZm4uXRXdfpvGDHKX8FNPZLCZI0WwJXq3LJ+8s7yoX8FY9UI33Bm8/23RVmXBTTLgpLCMI4No2GccBAYNQvLc0OCqGybGU08cOsLi8ypfNLfa7DiA0Wh0sMZwYm2LNrwJ/yKJhElHOFSYpFqbx6iEbXptGU5EwRdC2aTTh/fd16kfHYwIQVBQUHMtwKOuSNtBoQqPdW6MC+XU33hsIoEMqWoBazome4NWjy/8E6DhPCUP9a5sKQrVb2e6DUTTz8DXHJ9OcP3mYI+NjmDDFVgsqtS5rVZ8P3yps+Jt06/V4AIDZB28ITf9XBRVEemMVoXz7DIjwA+XkmnTKPkVdAAAAAElFTkSuQmCC"
+                       mask="url(#mask9216)"
+                       id="image9222" /></g></g></g></g></g></g></g><g
+         id="g9234"><g
+           id="g9236"
+           clip-path="url(#clipPath9240)"><g
+             id="g9242"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(470.0527,298)"
+               style="font-variant:normal;font-weight:bold;font-size:4px;font-family:Arial;-inkscape-font-specification:Arial-BoldMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text9246"><tspan
+                 x="0 2.8887999 5.1135998 7.3383999"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan9244">User</tspan></text></g></g></g><g
+         id="g9248"><g
+           id="g9250"
+           clip-path="url(#clipPath9254)"><g
+             id="g9256"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 458.5,303.5 h 45"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path9258" /></g></g></g><g
+         id="g9260"><g
+           id="g9262"
+           clip-path="url(#clipPath9266)"><g
+             id="g9268"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 504.5,292.5 v 36 h -45"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.3922"
+               id="path9270" /></g><g
+             id="g9272"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 457.5,291.5 h 46 v 37 h -46 z"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path9274" /></g></g></g><g
+         id="g9276"><g
+           id="g9278"><g
+             id="g9284"><path
+               d="m 255.2457,624.644 h 47 v 38 h -47 z"
+               style="fill:url(#linearGradient9290);stroke:none"
+               id="path9292" /></g></g></g><g
+         id="g9294"><g
+           id="g9296"
+           clip-path="url(#clipPath9300)"><g
+             id="g9302" /><g
+             id="g9328"><g
+               clip-path="url(#clipPath9306)"
+               id="g9326"><g
+                 id="g9316" /><g
+                 id="g9324"><g
+                   clip-path="url(#clipPath9310)"
+                   id="g9322"><g
+                     transform="matrix(11,0,0,11,289.2457,650.644)"
+                     id="g9320"><image
+                       width="1"
+                       height="1"
+                       preserveAspectRatio="none"
+                       transform="matrix(1,0,0,-1,0,1)"
+                       xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABHNCSVQICAgIfAhkiAAAAeJJREFUSIm9lE1rE1EUhp9zZzJOktZqai2KoMQs3Aq6E6M0xY0IuugP0JUu3Yrgxo3uhfYHSEHciBuVQPfajaB1KZW2inEMTTJpPmaOixDb0WjMOO27unO58z7345xXAGUXZXbTHMDuD17czyRqfOmOHwUAzN56/t/GYdChPH/157c9aJGGQSxzMdZvcwMBO3cwiorXH2PZ+4YDSjefxQJA74p2au+qCKA8fy0By2hbRQAXbywmAIDywvZGIwBjO4kAIp6JO+414JcyTT73pO86ShYpwopVYsXM8NUU8DlIgCGjNXL6kVPhEsv5KzyZm4uXRXdfpvGDHKX8FNPZLCZI0WwJXq3LJ+8s7yoX8FY9UI33Bm8/23RVmXBTTLgpLCMI4No2GccBAYNQvLc0OCqGybGU08cOsLi8ypfNLfa7DiA0Wh0sMZwYm2LNrwJ/yKJhElHOFSYpFqbx6iEbXptGU5EwRdC2aTTh/fd16kfHYwIQVBQUHMtwKOuSNtBoQqPdW6MC+XU33hsIoEMqWoBazome4NWjy/8E6DhPCUP9a5sKQrVb2e6DUTTz8DXHJ9OcP3mYI+NjmDDFVgsqtS5rVZ8P3yps+Jt06/V4AIDZB28ITf9XBRVEemMVoXz7DIjwA+XkmnTKPkVdAAAAAElFTkSuQmCC"
+                       mask="url(#mask9312)"
+                       id="image9318" /></g></g></g></g></g></g></g><g
+         id="g9330"><g
+           id="g9332"
+           clip-path="url(#clipPath9336)"><g
+             id="g9338"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(249.8311,175)"
+               style="font-variant:normal;font-weight:bold;font-size:4px;font-family:Arial;-inkscape-font-specification:Arial-BoldMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text9342"><tspan
+                 x="0 2.668 4 6.2248001 7.5567999 9.7816 13.3384 15.5632 18.006399"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan9340">Statement</tspan></text></g></g></g><g
+         id="g9344"><g
+           id="g9346"
+           clip-path="url(#clipPath9350)"><g
+             id="g9352"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 243.5,179.5 h 45"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path9354" /></g></g></g><g
+         id="g9356"><g
+           id="g9358"
+           clip-path="url(#clipPath9362)"><g
+             id="g9364"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 289.5,169.5 v 35 h -45"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.3922"
+               id="path9366" /></g><g
+             id="g9368"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 243.5,167.5 h 46 v 37 h -46 z"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path9370" /></g></g></g><g
+         id="g9372"><g
+           id="g9374"><g
+             id="g9380"><path
+               d="m 367.2457,624.644 h 56 v 38 h -56 z"
+               style="fill:url(#linearGradient9386);stroke:none"
+               id="path9388" /></g></g></g><g
+         id="g9390"><g
+           id="g9392"
+           clip-path="url(#clipPath9396)"><g
+             id="g9398" /><g
+             id="g9424"><g
+               clip-path="url(#clipPath9402)"
+               id="g9422"><g
+                 id="g9412" /><g
+                 id="g9420"><g
+                   clip-path="url(#clipPath9406)"
+                   id="g9418"><g
+                     transform="matrix(11,0,0,11,411.2457,650.644)"
+                     id="g9416"><image
+                       width="1"
+                       height="1"
+                       preserveAspectRatio="none"
+                       transform="matrix(1,0,0,-1,0,1)"
+                       xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABHNCSVQICAgIfAhkiAAAAeJJREFUSIm9lE1rE1EUhp9zZzJOktZqai2KoMQs3Aq6E6M0xY0IuugP0JUu3Yrgxo3uhfYHSEHciBuVQPfajaB1KZW2inEMTTJpPmaOixDb0WjMOO27unO58z7345xXAGUXZXbTHMDuD17czyRqfOmOHwUAzN56/t/GYdChPH/157c9aJGGQSxzMdZvcwMBO3cwiorXH2PZ+4YDSjefxQJA74p2au+qCKA8fy0By2hbRQAXbywmAIDywvZGIwBjO4kAIp6JO+414JcyTT73pO86ShYpwopVYsXM8NUU8DlIgCGjNXL6kVPhEsv5KzyZm4uXRXdfpvGDHKX8FNPZLCZI0WwJXq3LJ+8s7yoX8FY9UI33Bm8/23RVmXBTTLgpLCMI4No2GccBAYNQvLc0OCqGybGU08cOsLi8ypfNLfa7DiA0Wh0sMZwYm2LNrwJ/yKJhElHOFSYpFqbx6iEbXptGU5EwRdC2aTTh/fd16kfHYwIQVBQUHMtwKOuSNtBoQqPdW6MC+XU33hsIoEMqWoBazome4NWjy/8E6DhPCUP9a5sKQrVb2e6DUTTz8DXHJ9OcP3mYI+NjmDDFVgsqtS5rVZ8P3yps+Jt06/V4AIDZB28ITf9XBRVEemMVoXz7DIjwA+XkmnTKPkVdAAAAAElFTkSuQmCC"
+                       mask="url(#mask9408)"
+                       id="image9414" /></g></g></g></g></g></g></g><g
+         id="g9426"><g
+           id="g9428"
+           clip-path="url(#clipPath9432)"><g
+             id="g9434"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(363.9248,175)"
+               style="font-variant:normal;font-weight:bold;font-size:4px;font-family:Arial;-inkscape-font-specification:Arial-BoldMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text9438"><tspan
+                 x="0 3.7032001 6.1464 7.7031999 9.9280005 11.26 12.3712 14.8144 17.9256 20.368799 22.593599 23.9256"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan9436">Workflowdata</tspan></text></g></g></g><g
+         id="g9440"><g
+           id="g9442"
+           clip-path="url(#clipPath9446)"><g
+             id="g9448"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 356.5,179.5 h 54"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path9450" /></g></g></g><g
+         id="g9452"><g
+           id="g9454"
+           clip-path="url(#clipPath9458)"><g
+             id="g9460"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 411.5,169.5 v 35 h -55"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.3922"
+               id="path9462" /></g><g
+             id="g9464"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 355.5,167.5 h 55 v 37 h -55 z"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path9466" /></g></g></g><g
+         id="g9468"><g
+           id="g9470"><g
+             id="g9476"><path
+               d="m 330.2457,558.644 h 47 v 38 h -47 z"
+               style="fill:url(#linearGradient9482);stroke:none"
+               id="path9484" /></g></g></g><g
+         id="g9486"><g
+           id="g9488"
+           clip-path="url(#clipPath9492)"><g
+             id="g9494" /><g
+             id="g9520"><g
+               clip-path="url(#clipPath9498)"
+               id="g9518"><g
+                 id="g9508" /><g
+                 id="g9516"><g
+                   clip-path="url(#clipPath9502)"
+                   id="g9514"><g
+                     transform="matrix(11,0,0,11,364.2457,584.644)"
+                     id="g9512"><image
+                       width="1"
+                       height="1"
+                       preserveAspectRatio="none"
+                       transform="matrix(1,0,0,-1,0,1)"
+                       xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABHNCSVQICAgIfAhkiAAAAeJJREFUSIm9lE1rE1EUhp9zZzJOktZqai2KoMQs3Aq6E6M0xY0IuugP0JUu3Yrgxo3uhfYHSEHciBuVQPfajaB1KZW2inEMTTJpPmaOixDb0WjMOO27unO58z7345xXAGUXZXbTHMDuD17czyRqfOmOHwUAzN56/t/GYdChPH/157c9aJGGQSxzMdZvcwMBO3cwiorXH2PZ+4YDSjefxQJA74p2au+qCKA8fy0By2hbRQAXbywmAIDywvZGIwBjO4kAIp6JO+414JcyTT73pO86ShYpwopVYsXM8NUU8DlIgCGjNXL6kVPhEsv5KzyZm4uXRXdfpvGDHKX8FNPZLCZI0WwJXq3LJ+8s7yoX8FY9UI33Bm8/23RVmXBTTLgpLCMI4No2GccBAYNQvLc0OCqGybGU08cOsLi8ypfNLfa7DiA0Wh0sMZwYm2LNrwJ/yKJhElHOFSYpFqbx6iEbXptGU5EwRdC2aTTh/fd16kfHYwIQVBQUHMtwKOuSNtBoQqPdW6MC+XU33hsIoEMqWoBazome4NWjy/8E6DhPCUP9a5sKQrVb2e6DUTTz8DXHJ9OcP3mYI+NjmDDFVgsqtS5rVZ8P3yps+Jt06/V4AIDZB28ITf9XBRVEemMVoXz7DIjwA+XkmnTKPkVdAAAAAElFTkSuQmCC"
+                       mask="url(#mask9504)"
+                       id="image9510" /></g></g></g></g></g></g></g><g
+         id="g9522"><g
+           id="g9524"
+           clip-path="url(#clipPath9528)"><g
+             id="g9530"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(319.6084,240)"
+               style="font-variant:normal;font-weight:bold;font-size:4px;font-family:Arial;-inkscape-font-specification:Arial-BoldMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text9534"><tspan
+                 x="0 2.8887999 5.1135998 7.5567999 10.4456 12.6704 15.1136 17.3384 18.895201 20.2272 23.784 26.008801 28.452"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan9532">ReqDepartment</tspan></text></g></g></g><g
+         id="g9536"><g
+           id="g9538"
+           clip-path="url(#clipPath9542)"><g
+             id="g9544"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 318.5,245.5 h 45"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path9546" /></g></g></g><g
+         id="g9548"><g
+           id="g9550"
+           clip-path="url(#clipPath9554)"><g
+             id="g9556"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 364.5,235.5 v 35 h -45"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.3922"
+               id="path9558" /></g><g
+             id="g9560"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 318.5,233.5 h 46 v 37 h -46 z"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path9562" /></g></g></g><g
+         id="g9564"><g
+           id="g9566"><g
+             id="g9572"><path
+               d="m 255.2457,699.644 h 47 v 37 h -47 z"
+               style="fill:url(#linearGradient9578);stroke:none"
+               id="path9580" /></g></g></g><g
+         id="g9582"><g
+           id="g9584"
+           clip-path="url(#clipPath9588)"><g
+             id="g9590" /><g
+             id="g9616"><g
+               clip-path="url(#clipPath9594)"
+               id="g9614"><g
+                 id="g9604" /><g
+                 id="g9612"><g
+                   clip-path="url(#clipPath9598)"
+                   id="g9610"><g
+                     transform="matrix(11,0,0,11,289.2457,725.644)"
+                     id="g9608"><image
+                       width="1"
+                       height="1"
+                       preserveAspectRatio="none"
+                       transform="matrix(1,0,0,-1,0,1)"
+                       xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABHNCSVQICAgIfAhkiAAAAeJJREFUSIm9lE1rE1EUhp9zZzJOktZqai2KoMQs3Aq6E6M0xY0IuugP0JUu3Yrgxo3uhfYHSEHciBuVQPfajaB1KZW2inEMTTJpPmaOixDb0WjMOO27unO58z7345xXAGUXZXbTHMDuD17czyRqfOmOHwUAzN56/t/GYdChPH/157c9aJGGQSxzMdZvcwMBO3cwiorXH2PZ+4YDSjefxQJA74p2au+qCKA8fy0By2hbRQAXbywmAIDywvZGIwBjO4kAIp6JO+414JcyTT73pO86ShYpwopVYsXM8NUU8DlIgCGjNXL6kVPhEsv5KzyZm4uXRXdfpvGDHKX8FNPZLCZI0WwJXq3LJ+8s7yoX8FY9UI33Bm8/23RVmXBTTLgpLCMI4No2GccBAYNQvLc0OCqGybGU08cOsLi8ypfNLfa7DiA0Wh0sMZwYm2LNrwJ/yKJhElHOFSYpFqbx6iEbXptGU5EwRdC2aTTh/fd16kfHYwIQVBQUHMtwKOuSNtBoQqPdW6MC+XU33hsIoEMqWoBazome4NWjy/8E6DhPCUP9a5sKQrVb2e6DUTTz8DXHJ9OcP3mYI+NjmDDFVgsqtS5rVZ8P3yps+Jt06/V4AIDZB28ITf9XBRVEemMVoXz7DIjwA+XkmnTKPkVdAAAAAElFTkSuQmCC"
+                       mask="url(#mask9600)"
+                       id="image9606" /></g></g></g></g></g></g></g><g
+         id="g9618"><g
+           id="g9620"
+           clip-path="url(#clipPath9624)"><g
+             id="g9626"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(248.499,100)"
+               style="font-variant:normal;font-weight:bold;font-size:4px;font-family:Arial;-inkscape-font-specification:Arial-BoldMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text9630"><tspan
+                 x="0 2.8887999 4.2207999 5.5528002 7.7775998 10.0024 12.4456 16.002399 18.2272 20.670401"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan9628">Attachment</tspan></text></g></g></g><g
+         id="g9632"><g
+           id="g9634"
+           clip-path="url(#clipPath9638)"><g
+             id="g9640"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 243.5,105.5 h 45"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path9642" /></g></g></g><g
+         id="g9644"><g
+           id="g9646"
+           clip-path="url(#clipPath9650)"><g
+             id="g9652"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 289.5,94.5 v 36 h -45"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.3922"
+               id="path9654" /></g><g
+             id="g9656"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 243.5,93.5 h 46 v 36 h -46 z"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path9658" /></g></g></g><g
+         id="g9660"><g
+           id="g9662"><g
+             id="g9668"><path
+               d="m 152.2457,699.644 h 46 v 37 h -46 z"
+               style="fill:url(#linearGradient9674);stroke:none"
+               id="path9676" /></g></g></g><g
+         id="g9678"><g
+           id="g9680"
+           clip-path="url(#clipPath9684)"><g
+             id="g9686" /><g
+             id="g9712"><g
+               clip-path="url(#clipPath9690)"
+               id="g9710"><g
+                 id="g9700" /><g
+                 id="g9708"><g
+                   clip-path="url(#clipPath9694)"
+                   id="g9706"><g
+                     transform="matrix(11,0,0,11,186.2457,725.644)"
+                     id="g9704"><image
+                       width="1"
+                       height="1"
+                       preserveAspectRatio="none"
+                       transform="matrix(1,0,0,-1,0,1)"
+                       xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABHNCSVQICAgIfAhkiAAAAeJJREFUSIm9lE1rE1EUhp9zZzJOktZqai2KoMQs3Aq6E6M0xY0IuugP0JUu3Yrgxo3uhfYHSEHciBuVQPfajaB1KZW2inEMTTJpPmaOixDb0WjMOO27unO58z7345xXAGUXZXbTHMDuD17czyRqfOmOHwUAzN56/t/GYdChPH/157c9aJGGQSxzMdZvcwMBO3cwiorXH2PZ+4YDSjefxQJA74p2au+qCKA8fy0By2hbRQAXbywmAIDywvZGIwBjO4kAIp6JO+414JcyTT73pO86ShYpwopVYsXM8NUU8DlIgCGjNXL6kVPhEsv5KzyZm4uXRXdfpvGDHKX8FNPZLCZI0WwJXq3LJ+8s7yoX8FY9UI33Bm8/23RVmXBTTLgpLCMI4No2GccBAYNQvLc0OCqGybGU08cOsLi8ypfNLfa7DiA0Wh0sMZwYm2LNrwJ/yKJhElHOFSYpFqbx6iEbXptGU5EwRdC2aTTh/fd16kfHYwIQVBQUHMtwKOuSNtBoQqPdW6MC+XU33hsIoEMqWoBazome4NWjy/8E6DhPCUP9a5sKQrVb2e6DUTTz8DXHJ9OcP3mYI+NjmDDFVgsqtS5rVZ8P3yps+Jt06/V4AIDZB28ITf9XBRVEemMVoXz7DIjwA+XkmnTKPkVdAAAAAElFTkSuQmCC"
+                       mask="url(#mask9696)"
+                       id="image9702" /></g></g></g></g></g></g></g><g
+         id="g9714"><g
+           id="g9716"
+           clip-path="url(#clipPath9720)"><g
+             id="g9722"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(153.0928,100)"
+               style="font-variant:normal;font-weight:bold;font-size:4px;font-family:Arial;-inkscape-font-specification:Arial-BoldMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text9726"><tspan
+                 x="0 2.1464 4.3727999"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan9724">Tag</tspan></text></g></g></g><g
+         id="g9728"><g
+           id="g9730"
+           clip-path="url(#clipPath9734)"><g
+             id="g9736"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 140.5,105.5 h 45"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path9738" /></g></g></g><g
+         id="g9740"><g
+           id="g9742"
+           clip-path="url(#clipPath9746)"><g
+             id="g9748"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 186.5,94.5 v 36 h -45"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.3922"
+               id="path9750" /></g><g
+             id="g9752"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 140.5,93.5 h 45 v 36 h -45 z"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path9754" /></g></g></g><g
+         id="g9756"><g
+           id="g9758"><g
+             id="g9764"><path
+               d="m 152.2457,624.644 h 46 v 38 h -46 z"
+               style="fill:url(#linearGradient9770);stroke:none"
+               id="path9772" /></g></g></g><g
+         id="g9774"><g
+           id="g9776"
+           clip-path="url(#clipPath9780)"><g
+             id="g9782" /><g
+             id="g9808"><g
+               clip-path="url(#clipPath9786)"
+               id="g9806"><g
+                 id="g9796" /><g
+                 id="g9804"><g
+                   clip-path="url(#clipPath9790)"
+                   id="g9802"><g
+                     transform="matrix(11,0,0,11,186.2457,650.644)"
+                     id="g9800"><image
+                       width="1"
+                       height="1"
+                       preserveAspectRatio="none"
+                       transform="matrix(1,0,0,-1,0,1)"
+                       xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABHNCSVQICAgIfAhkiAAAAeJJREFUSIm9lE1rE1EUhp9zZzJOktZqai2KoMQs3Aq6E6M0xY0IuugP0JUu3Yrgxo3uhfYHSEHciBuVQPfajaB1KZW2inEMTTJpPmaOixDb0WjMOO27unO58z7345xXAGUXZXbTHMDuD17czyRqfOmOHwUAzN56/t/GYdChPH/157c9aJGGQSxzMdZvcwMBO3cwiorXH2PZ+4YDSjefxQJA74p2au+qCKA8fy0By2hbRQAXbywmAIDywvZGIwBjO4kAIp6JO+414JcyTT73pO86ShYpwopVYsXM8NUU8DlIgCGjNXL6kVPhEsv5KzyZm4uXRXdfpvGDHKX8FNPZLCZI0WwJXq3LJ+8s7yoX8FY9UI33Bm8/23RVmXBTTLgpLCMI4No2GccBAYNQvLc0OCqGybGU08cOsLi8ypfNLfa7DiA0Wh0sMZwYm2LNrwJ/yKJhElHOFSYpFqbx6iEbXptGU5EwRdC2aTTh/fd16kfHYwIQVBQUHMtwKOuSNtBoQqPdW6MC+XU33hsIoEMqWoBazome4NWjy/8E6DhPCUP9a5sKQrVb2e6DUTTz8DXHJ9OcP3mYI+NjmDDFVgsqtS5rVZ8P3yps+Jt06/V4AIDZB28ITf9XBRVEemMVoXz7DIjwA+XkmnTKPkVdAAAAAElFTkSuQmCC"
+                       mask="url(#mask9792)"
+                       id="image9798" /></g></g></g></g></g></g></g><g
+         id="g9810"><g
+           id="g9812"
+           clip-path="url(#clipPath9816)"><g
+             id="g9818"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(142.3115,175)"
+               style="font-variant:normal;font-weight:bold;font-size:4px;font-family:Arial;-inkscape-font-specification:Arial-BoldMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text9822"><tspan
+                 x="0 2.668 4 6.2248001 7.5567999 9.7816 13.3384 15.5632 18.006399 19.3384 21.4848 23.7096 26.1528"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan9820">StatementType</tspan></text></g></g></g><g
+         id="g9824"><g
+           id="g9826"
+           clip-path="url(#clipPath9830)"><g
+             id="g9832"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 140.5,179.5 h 45"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path9834" /></g></g></g><g
+         id="g9836"><g
+           id="g9838"
+           clip-path="url(#clipPath9842)"><g
+             id="g9844"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 186.5,169.5 v 35 h -45"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.3922"
+               id="path9846" /></g><g
+             id="g9848"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 140.5,167.5 h 45 v 37 h -45 z"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path9850" /></g></g></g><g
+         id="g9852"><g
+           id="g9854"><g
+             id="g9860"><path
+               d="m 413.2457,559.644 h 53 v 37 h -53 z"
+               style="fill:url(#linearGradient9866);stroke:none"
+               id="path9868" /></g></g></g><g
+         id="g9870"><g
+           id="g9872"
+           clip-path="url(#clipPath9876)"><g
+             id="g9878" /><g
+             id="g9904"><g
+               clip-path="url(#clipPath9882)"
+               id="g9902"><g
+                 id="g9892" /><g
+                 id="g9900"><g
+                   clip-path="url(#clipPath9886)"
+                   id="g9898"><g
+                     transform="matrix(11,0,0,11,453.2457,585.644)"
+                     id="g9896"><image
+                       width="1"
+                       height="1"
+                       preserveAspectRatio="none"
+                       transform="matrix(1,0,0,-1,0,1)"
+                       xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABHNCSVQICAgIfAhkiAAAAeJJREFUSIm9lE1rE1EUhp9zZzJOktZqai2KoMQs3Aq6E6M0xY0IuugP0JUu3Yrgxo3uhfYHSEHciBuVQPfajaB1KZW2inEMTTJpPmaOixDb0WjMOO27unO58z7345xXAGUXZXbTHMDuD17czyRqfOmOHwUAzN56/t/GYdChPH/157c9aJGGQSxzMdZvcwMBO3cwiorXH2PZ+4YDSjefxQJA74p2au+qCKA8fy0By2hbRQAXbywmAIDywvZGIwBjO4kAIp6JO+414JcyTT73pO86ShYpwopVYsXM8NUU8DlIgCGjNXL6kVPhEsv5KzyZm4uXRXdfpvGDHKX8FNPZLCZI0WwJXq3LJ+8s7yoX8FY9UI33Bm8/23RVmXBTTLgpLCMI4No2GccBAYNQvLc0OCqGybGU08cOsLi8ypfNLfa7DiA0Wh0sMZwYm2LNrwJ/yKJhElHOFSYpFqbx6iEbXptGU5EwRdC2aTTh/fd16kfHYwIQVBQUHMtwKOuSNtBoQqPdW6MC+XU33hsIoEMqWoBazome4NWjy/8E6DhPCUP9a5sKQrVb2e6DUTTz8DXHJ9OcP3mYI+NjmDDFVgsqtS5rVZ8P3yps+Jt06/V4AIDZB28ITf9XBRVEemMVoXz7DIjwA+XkmnTKPkVdAAAAAElFTkSuQmCC"
+                       mask="url(#mask9888)"
+                       id="image9894" /></g></g></g></g></g></g></g><g
+         id="g9906"><g
+           id="g9908"
+           clip-path="url(#clipPath9912)"><g
+             id="g9914"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(409.8867,240)"
+               style="font-variant:normal;font-weight:bold;font-size:4px;font-family:Arial;-inkscape-font-specification:Arial-BoldMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text9918"><tspan
+                 x="0 2.8887999 5.1135998 7.5567999 9.7816 11.3384 12.6704 16.2272 18.452 20.895201"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan9916">Department</tspan></text></g></g></g><g
+         id="g9920"><g
+           id="g9922"
+           clip-path="url(#clipPath9926)"><g
+             id="g9928"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 402.5,244.5 h 50"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path9930" /></g></g></g><g
+         id="g9932"><g
+           id="g9934"
+           clip-path="url(#clipPath9938)"><g
+             id="g9940"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 453.5,234.5 v 36 h -50"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.3922"
+               id="path9942" /></g><g
+             id="g9944"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 401.5,233.5 h 52 v 36 h -52 z"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path9946" /></g></g></g><g
+         id="g9948"><g
+           id="g9950"><g
+             id="g9956"><path
+               d="m 253.2457,558.644 h 50 v 38 h -50 z"
+               style="fill:url(#linearGradient9962);stroke:none"
+               id="path9964" /></g></g></g><g
+         id="g9966"><g
+           id="g9968"
+           clip-path="url(#clipPath9972)"><g
+             id="g9974" /><g
+             id="g10000"><g
+               clip-path="url(#clipPath9978)"
+               id="g9998"><g
+                 id="g9988" /><g
+                 id="g9996"><g
+                   clip-path="url(#clipPath9982)"
+                   id="g9994"><g
+                     transform="matrix(11,0,0,11,290.2457,584.644)"
+                     id="g9992"><image
+                       width="1"
+                       height="1"
+                       preserveAspectRatio="none"
+                       transform="matrix(1,0,0,-1,0,1)"
+                       xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABHNCSVQICAgIfAhkiAAAAeJJREFUSIm9lE1rE1EUhp9zZzJOktZqai2KoMQs3Aq6E6M0xY0IuugP0JUu3Yrgxo3uhfYHSEHciBuVQPfajaB1KZW2inEMTTJpPmaOixDb0WjMOO27unO58z7345xXAGUXZXbTHMDuD17czyRqfOmOHwUAzN56/t/GYdChPH/157c9aJGGQSxzMdZvcwMBO3cwiorXH2PZ+4YDSjefxQJA74p2au+qCKA8fy0By2hbRQAXbywmAIDywvZGIwBjO4kAIp6JO+414JcyTT73pO86ShYpwopVYsXM8NUU8DlIgCGjNXL6kVPhEsv5KzyZm4uXRXdfpvGDHKX8FNPZLCZI0WwJXq3LJ+8s7yoX8FY9UI33Bm8/23RVmXBTTLgpLCMI4No2GccBAYNQvLc0OCqGybGU08cOsLi8ypfNLfa7DiA0Wh0sMZwYm2LNrwJ/yKJhElHOFSYpFqbx6iEbXptGU5EwRdC2aTTh/fd16kfHYwIQVBQUHMtwKOuSNtBoQqPdW6MC+XU33hsIoEMqWoBazome4NWjy/8E6DhPCUP9a5sKQrVb2e6DUTTz8DXHJ9OcP3mYI+NjmDDFVgsqtS5rVZ8P3yps+Jt06/V4AIDZB28ITf9XBRVEemMVoXz7DIjwA+XkmnTKPkVdAAAAAElFTkSuQmCC"
+                       mask="url(#mask9984)"
+                       id="image9990" /></g></g></g></g></g></g></g><g
+         id="g10002"><g
+           id="g10004"
+           clip-path="url(#clipPath10008)"><g
+             id="g10010"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(242.8887,240)"
+               style="font-variant:normal;font-weight:bold;font-size:4px;font-family:Arial;-inkscape-font-specification:Arial-BoldMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10014"><tspan
+                 x="0 2.668 4 6.2248001 7.5567999 9.7816 13.3384 15.5632 18.006399 19.3384 22.006399 24.4496 25.560801 26.892799 29.336 31.7792"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan10012">StatementEditLog</tspan></text></g></g></g><g
+         id="g10016"><g
+           id="g10018"
+           clip-path="url(#clipPath10022)"><g
+             id="g10024"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 242.5,245.5 h 48"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10026" /></g></g></g><g
+         id="g10028"><g
+           id="g10030"
+           clip-path="url(#clipPath10034)"><g
+             id="g10036"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 291.5,235.5 v 35 h -49"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.3922"
+               id="path10038" /></g><g
+             id="g10040"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 241.5,233.5 h 49 v 37 h -49 z"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10042" /></g></g></g><g
+         id="g10044"><g
+           id="g10046"><g
+             id="g10052"><path
+               d="m 413.2457,699.644 h 53 v 38 h -53 z"
+               style="fill:url(#linearGradient10058);stroke:none"
+               id="path10060" /></g></g></g><g
+         id="g10062"><g
+           id="g10064"
+           clip-path="url(#clipPath10068)"><g
+             id="g10070" /><g
+             id="g10096"><g
+               clip-path="url(#clipPath10074)"
+               id="g10094"><g
+                 id="g10084" /><g
+                 id="g10092"><g
+                   clip-path="url(#clipPath10078)"
+                   id="g10090"><g
+                     transform="matrix(11,0,0,11,453.2457,725.644)"
+                     id="g10088"><image
+                       width="1"
+                       height="1"
+                       preserveAspectRatio="none"
+                       transform="matrix(1,0,0,-1,0,1)"
+                       xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABHNCSVQICAgIfAhkiAAAAeJJREFUSIm9lE1rE1EUhp9zZzJOktZqai2KoMQs3Aq6E6M0xY0IuugP0JUu3Yrgxo3uhfYHSEHciBuVQPfajaB1KZW2inEMTTJpPmaOixDb0WjMOO27unO58z7345xXAGUXZXbTHMDuD17czyRqfOmOHwUAzN56/t/GYdChPH/157c9aJGGQSxzMdZvcwMBO3cwiorXH2PZ+4YDSjefxQJA74p2au+qCKA8fy0By2hbRQAXbywmAIDywvZGIwBjO4kAIp6JO+414JcyTT73pO86ShYpwopVYsXM8NUU8DlIgCGjNXL6kVPhEsv5KzyZm4uXRXdfpvGDHKX8FNPZLCZI0WwJXq3LJ+8s7yoX8FY9UI33Bm8/23RVmXBTTLgpLCMI4No2GccBAYNQvLc0OCqGybGU08cOsLi8ypfNLfa7DiA0Wh0sMZwYm2LNrwJ/yKJhElHOFSYpFqbx6iEbXptGU5EwRdC2aTTh/fd16kfHYwIQVBQUHMtwKOuSNtBoQqPdW6MC+XU33hsIoEMqWoBazome4NWjy/8E6DhPCUP9a5sKQrVb2e6DUTTz8DXHJ9OcP3mYI+NjmDDFVgsqtS5rVZ8P3yps+Jt06/V4AIDZB28ITf9XBRVEemMVoXz7DIjwA+XkmnTKPkVdAAAAAElFTkSuQmCC"
+                       mask="url(#mask10080)"
+                       id="image10086" /></g></g></g></g></g></g></g><g
+         id="g10098"><g
+           id="g10100"
+           clip-path="url(#clipPath10104)"><g
+             id="g10106"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(402.5918,100)"
+               style="font-variant:normal;font-weight:bold;font-size:4px;font-family:Arial;-inkscape-font-specification:Arial-BoldMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10110"><tspan
+                 x="0 2.1464 4.3712001 6.5960002 7.928 10.3712 11.4824 13.9256 16.1504 18.3752 21.264 23.4888 24.820801 25.931999 28.3752 29.486401 30.818399 31.9296 34.372799"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan10108">TextblockDefinition</tspan></text></g></g></g><g
+         id="g10112"><g
+           id="g10114"
+           clip-path="url(#clipPath10118)"><g
+             id="g10120"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 402.5,104.5 h 50"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10122" /></g></g></g><g
+         id="g10124"><g
+           id="g10126"
+           clip-path="url(#clipPath10130)"><g
+             id="g10132"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 453.5,94.5 v 35 h -50"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.3922"
+               id="path10134" /></g><g
+             id="g10136"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 401.5,92.5 h 52 v 37 h -52 z"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10138" /></g></g></g><g
+         id="g10140"><g
+           id="g10142"><g
+             id="g10148"><path
+               d="m 469.2457,624.644 h 47 v 38 h -47 z"
+               style="fill:url(#linearGradient10154);stroke:none"
+               id="path10156" /></g></g></g><g
+         id="g10158"><g
+           id="g10160"
+           clip-path="url(#clipPath10164)"><g
+             id="g10166" /><g
+             id="g10192"><g
+               clip-path="url(#clipPath10170)"
+               id="g10190"><g
+                 id="g10180" /><g
+                 id="g10188"><g
+                   clip-path="url(#clipPath10174)"
+                   id="g10186"><g
+                     transform="matrix(11,0,0,11,504.2457,650.644)"
+                     id="g10184"><image
+                       width="1"
+                       height="1"
+                       preserveAspectRatio="none"
+                       transform="matrix(1,0,0,-1,0,1)"
+                       xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABHNCSVQICAgIfAhkiAAAAeJJREFUSIm9lE1rE1EUhp9zZzJOktZqai2KoMQs3Aq6E6M0xY0IuugP0JUu3Yrgxo3uhfYHSEHciBuVQPfajaB1KZW2inEMTTJpPmaOixDb0WjMOO27unO58z7345xXAGUXZXbTHMDuD17czyRqfOmOHwUAzN56/t/GYdChPH/157c9aJGGQSxzMdZvcwMBO3cwiorXH2PZ+4YDSjefxQJA74p2au+qCKA8fy0By2hbRQAXbywmAIDywvZGIwBjO4kAIp6JO+414JcyTT73pO86ShYpwopVYsXM8NUU8DlIgCGjNXL6kVPhEsv5KzyZm4uXRXdfpvGDHKX8FNPZLCZI0WwJXq3LJ+8s7yoX8FY9UI33Bm8/23RVmXBTTLgpLCMI4No2GccBAYNQvLc0OCqGybGU08cOsLi8ypfNLfa7DiA0Wh0sMZwYm2LNrwJ/yKJhElHOFSYpFqbx6iEbXptGU5EwRdC2aTTh/fd16kfHYwIQVBQUHMtwKOuSNtBoQqPdW6MC+XU33hsIoEMqWoBazome4NWjy/8E6DhPCUP9a5sKQrVb2e6DUTTz8DXHJ9OcP3mYI+NjmDDFVgsqtS5rVZ8P3yps+Jt06/V4AIDZB28ITf9XBRVEemMVoXz7DIjwA+XkmnTKPkVdAAAAAElFTkSuQmCC"
+                       mask="url(#mask10176)"
+                       id="image10182" /></g></g></g></g></g></g></g><g
+         id="g10194"><g
+           id="g10196"
+           clip-path="url(#clipPath10200)"><g
+             id="g10202"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(465.2773,175)"
+               style="font-variant:normal;font-weight:bold;font-size:4px;font-family:Arial;-inkscape-font-specification:Arial-BoldMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10206"><tspan
+                 x="0 2.8887999 5.3336 8.8903999 12.4472 14.672 17.1168"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan10204">Comment</tspan></text></g></g></g><g
+         id="g10208"><g
+           id="g10210"
+           clip-path="url(#clipPath10214)"><g
+             id="g10216"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 458.5,179.5 h 45"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10218" /></g></g></g><g
+         id="g10220"><g
+           id="g10222"
+           clip-path="url(#clipPath10226)"><g
+             id="g10228"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 504.5,169.5 v 35 h -45"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.3922"
+               id="path10230" /></g><g
+             id="g10232"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 457.5,167.5 h 46 v 37 h -46 z"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10234" /></g></g></g><g
+         id="g10236"><g
+           id="g10238"><g
+             id="g10244"><path
+               d="m 330.2457,699.644 h 47 v 38 h -47 z"
+               style="fill:url(#linearGradient10250);stroke:none"
+               id="path10252" /></g></g></g><g
+         id="g10254"><g
+           id="g10256"
+           clip-path="url(#clipPath10260)"><g
+             id="g10262" /><g
+             id="g10288"><g
+               clip-path="url(#clipPath10266)"
+               id="g10286"><g
+                 id="g10276" /><g
+                 id="g10284"><g
+                   clip-path="url(#clipPath10270)"
+                   id="g10282"><g
+                     transform="matrix(11,0,0,11,364.2457,725.644)"
+                     id="g10280"><image
+                       width="1"
+                       height="1"
+                       preserveAspectRatio="none"
+                       transform="matrix(1,0,0,-1,0,1)"
+                       xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABHNCSVQICAgIfAhkiAAAAeJJREFUSIm9lE1rE1EUhp9zZzJOktZqai2KoMQs3Aq6E6M0xY0IuugP0JUu3Yrgxo3uhfYHSEHciBuVQPfajaB1KZW2inEMTTJpPmaOixDb0WjMOO27unO58z7345xXAGUXZXbTHMDuD17czyRqfOmOHwUAzN56/t/GYdChPH/157c9aJGGQSxzMdZvcwMBO3cwiorXH2PZ+4YDSjefxQJA74p2au+qCKA8fy0By2hbRQAXbywmAIDywvZGIwBjO4kAIp6JO+414JcyTT73pO86ShYpwopVYsXM8NUU8DlIgCGjNXL6kVPhEsv5KzyZm4uXRXdfpvGDHKX8FNPZLCZI0WwJXq3LJ+8s7yoX8FY9UI33Bm8/23RVmXBTTLgpLCMI4No2GccBAYNQvLc0OCqGybGU08cOsLi8ypfNLfa7DiA0Wh0sMZwYm2LNrwJ/yKJhElHOFSYpFqbx6iEbXptGU5EwRdC2aTTh/fd16kfHYwIQVBQUHMtwKOuSNtBoQqPdW6MC+XU33hsIoEMqWoBazome4NWjy/8E6DhPCUP9a5sKQrVb2e6DUTTz8DXHJ9OcP3mYI+NjmDDFVgsqtS5rVZ8P3yps+Jt06/V4AIDZB28ITf9XBRVEemMVoXz7DIjwA+XkmnTKPkVdAAAAAElFTkSuQmCC"
+                       mask="url(#mask10272)"
+                       id="image10278" /></g></g></g></g></g></g></g><g
+         id="g10290"><g
+           id="g10292"
+           clip-path="url(#clipPath10296)"><g
+             id="g10298"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(319.3867,98)"
+               style="font-variant:normal;font-weight:bold;font-size:4px;font-family:Arial;-inkscape-font-specification:Arial-BoldMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10302"><tspan
+                 x="0 2.8887999 5.1135998 7.5567999 9.7816 11.3384 12.6704 16.2272 18.452 20.895201 22.2272 24.895201 26.2272 27.784"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan10300">DepartmentStru</tspan></text></g><g
+             id="g10304"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(329.6094,103.1309)"
+               style="font-variant:normal;font-weight:bold;font-size:4px;font-family:Arial;-inkscape-font-specification:Arial-BoldMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10308"><tspan
+                 x="0 2.2248001 3.5567999 6 7.5567999"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan10306">cture</tspan></text></g></g></g><g
+         id="g10310"><g
+           id="g10312"
+           clip-path="url(#clipPath10316)"><g
+             id="g10318"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 318.5,105.5 h 45"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10320" /></g></g></g><g
+         id="g10322"><g
+           id="g10324"
+           clip-path="url(#clipPath10328)"><g
+             id="g10330"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 364.5,94.5 v 35 h -45"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.3922"
+               id="path10332" /></g><g
+             id="g10334"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 318.5,92.5 h 46 v 37 h -46 z"
+               style="fill:none;stroke:#968255;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10336" /></g></g></g><g
+         id="g10338"><g
+           id="g10340"
+           clip-path="url(#clipPath10344)"><g
+             id="g10346"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="M 265,167 V 130"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10348" /></g></g></g><g
+         id="g10350"><g
+           id="g10352"
+           clip-path="url(#clipPath10356)"><g
+             id="g10358"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(268,137)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10362"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan10360">*</tspan></text></g></g></g><g
+         id="g10364"><g
+           id="g10366"
+           clip-path="url(#clipPath10370)"><g
+             id="g10372"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(268,163)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10376"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan10374">1</tspan></text></g></g></g><g
+         id="g10378"><g
+           id="g10380"
+           clip-path="url(#clipPath10384)"><g
+             id="g10386"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(242.6055,138)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10390"><tspan
+                 x="0 2.2248001 3.336 4.4471998 6.6719999 8.6719999 10.8968 14.2288 16.4536 18.6784"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan10388">attachment</tspan></text></g></g></g><g
+         id="g10392"><g
+           id="g10394"
+           clip-path="url(#clipPath10398)"><g
+             id="g10400"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(244.2178,162)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10404"><tspan
+                 x="0 2 3.1112001 5.336 6.4471998 8.6719999 12.004 14.2288 16.4536"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan10402">statement</tspan></text></g></g></g><g
+         id="g10406"><g
+           id="g10408"
+           clip-path="url(#clipPath10412)"><g
+             id="g10414"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 267,135 -2,-5 -1,5"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10416" /></g></g></g><g
+         id="g10418"><g
+           id="g10420"
+           clip-path="url(#clipPath10424)"><g
+             id="g10426"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 264,163 1,4 2,-4"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10428" /></g></g></g><g
+         id="g10430"><g
+           id="g10432"
+           clip-path="url(#clipPath10436)"><g
+             id="g10438"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 289,185 h 66"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10440" /></g></g></g><g
+         id="g10442"><g
+           id="g10444"
+           clip-path="url(#clipPath10448)"><g
+             id="g10450"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(328.3281,180)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10454"><tspan
+                 x="0 2.8887999 5.1135998 6.4456 8.4455996 9.5567999 10.4456 12.6704 15.5592 17.784 20.008801 21.120001"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan10452">workflowdata</tspan></text></g></g></g><g
+         id="g10456"><g
+           id="g10458"
+           clip-path="url(#clipPath10462)"><g
+             id="g10464"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(345,191)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10468"><tspan
+                 x="0 2.2248001 3.3376 4.4503999"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan10466">0..1</tspan></text></g></g></g><g
+         id="g10470"><g
+           id="g10472"
+           clip-path="url(#clipPath10476)"><g
+             id="g10478"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(292,191)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10482"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan10480">1</tspan></text></g></g></g><g
+         id="g10484"><g
+           id="g10486"
+           clip-path="url(#clipPath10490)"><g
+             id="g10492"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(292.2178,180)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10496"><tspan
+                 x="0 2 3.1112001 5.336 6.4471998 8.6719999 12.004 14.2288 16.4536"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan10494">statement</tspan></text></g></g></g><g
+         id="g10498"><g
+           id="g10500"
+           clip-path="url(#clipPath10504)"><g
+             id="g10506"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 350,186 5,-1 -5,-2"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10508" /></g></g></g><g
+         id="g10510"><g
+           id="g10512"
+           clip-path="url(#clipPath10516)"><g
+             id="g10518"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 293,183 -4,2 4,1"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10520" /></g></g></g><g
+         id="g10522"><g
+           id="g10524"
+           clip-path="url(#clipPath10528)"><g
+             id="g10530"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 405.5,148 c -1.3807,0 -2.5,1.1193 -2.5,2.5"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10532" /></g><g
+             id="g10534"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="M 403,167 V 150"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10536" /></g><g
+             id="g10538"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 431.5,148 c 1.3807,0 2.5,-1.1193 2.5,-2.5"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10540" /></g><g
+             id="g10542"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 406,148 h 25"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10544" /></g><g
+             id="g10546"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="M 434,146 V 129"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10548" /></g></g></g><g
+         id="g10550"><g
+           id="g10552"
+           clip-path="url(#clipPath10556)"><g
+             id="g10558"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(406,163)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10562"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan10560">*</tspan></text></g></g></g><g
+         id="g10564"><g
+           id="g10566"
+           clip-path="url(#clipPath10570)"><g
+             id="g10572"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(436,136)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10576"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan10574">1</tspan></text></g></g></g><g
+         id="g10578"><g
+           id="g10580"
+           clip-path="url(#clipPath10584)"><g
+             id="g10586"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(398.6016,137)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10590"><tspan
+                 x="0 1.1112 3.336 5.336 6.4471998 8.6719999 9.5607996 11.7856 13.7856 15.7856 18.010401 20.235201 21.346399 22.235201 24.459999 25.348801 26.459999 27.348801 29.573601"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan10588">textblockdefinition</tspan></text></g></g></g><g
+         id="g10592"><g
+           id="g10594"
+           clip-path="url(#clipPath10598)"><g
+             id="g10600"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(406.3281,156)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10604"><tspan
+                 x="0 2.8887999 5.1135998 6.4456 8.4455996 9.5567999 10.4456 12.6704 15.5592 17.784 20.008801 21.120001"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan10602">workflowdata</tspan></text></g></g></g><g
+         id="g10606"><g
+           id="g10608"
+           clip-path="url(#clipPath10612)"><g
+             id="g10614"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 435,134 -1,-5 -2,5"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10616" /></g></g></g><g
+         id="g10618"><g
+           id="g10620"
+           clip-path="url(#clipPath10624)"><g
+             id="g10626"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 401,163 2,4 2,-4"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10628" /></g></g></g><g
+         id="g10630"><g
+           id="g10632"
+           clip-path="url(#clipPath10636)"><g
+             id="g10638"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="M 242,188 H 186"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10640" /></g></g></g><g
+         id="g10642"><g
+           id="g10644"
+           clip-path="url(#clipPath10648)"><g
+             id="g10650"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(189.4375,183)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10654"><tspan
+                 x="0 2 3.1112001 5.336 6.4471998 8.6719999 12.004 14.2288 16.4536 17.5648 18.676001 20.676001 22.900801"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan10652">statementtype</tspan></text></g></g></g><g
+         id="g10656"><g
+           id="g10658"
+           clip-path="url(#clipPath10662)"><g
+             id="g10664"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(221.2178,183)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10668"><tspan
+                 x="0 2 3.1112001 5.336 6.4471998 8.6719999 12.004 14.2288 16.4536"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan10666">statement</tspan></text></g></g></g><g
+         id="g10670"><g
+           id="g10672"
+           clip-path="url(#clipPath10676)"><g
+             id="g10678"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(238,195)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10682"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan10680">*</tspan></text></g></g></g><g
+         id="g10684"><g
+           id="g10686"
+           clip-path="url(#clipPath10690)"><g
+             id="g10692"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(189,195)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10696"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan10694">1</tspan></text></g></g></g><g
+         id="g10698"><g
+           id="g10700"
+           clip-path="url(#clipPath10704)"><g
+             id="g10706"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 191,186 -5,2 5,2"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10708" /></g></g></g><g
+         id="g10710"><g
+           id="g10712"
+           clip-path="url(#clipPath10716)"><g
+             id="g10718"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 238,190 4,-2 -4,-2"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10720" /></g></g></g><g
+         id="g10722"><g
+           id="g10724"
+           clip-path="url(#clipPath10728)"><g
+             id="g10730"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="M 242,114 H 186"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10732" /></g></g></g><g
+         id="g10734"><g
+           id="g10736"
+           clip-path="url(#clipPath10740)"><g
+             id="g10742"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(189.2197,109)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10746"><tspan
+                 x="0 1.1112 3.3343999"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan10744">tag</tspan></text></g></g></g><g
+         id="g10748"><g
+           id="g10750"
+           clip-path="url(#clipPath10754)"><g
+             id="g10756"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(238,120)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10760"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan10758">*</tspan></text></g></g></g><g
+         id="g10762"><g
+           id="g10764"
+           clip-path="url(#clipPath10768)"><g
+             id="g10770"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(189,120)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10774"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan10772">*</tspan></text></g></g></g><g
+         id="g10776"><g
+           id="g10778"
+           clip-path="url(#clipPath10782)"><g
+             id="g10784"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(219.6055,109)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10788"><tspan
+                 x="0 2.2248001 3.336 4.4471998 6.6719999 8.6719999 10.8968 14.2288 16.4536 18.6784"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan10786">attachment</tspan></text></g></g></g><g
+         id="g10790"><g
+           id="g10792"
+           clip-path="url(#clipPath10796)"><g
+             id="g10798"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 191,112 -5,2 5,1"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10800" /></g></g></g><g
+         id="g10802"><g
+           id="g10804"
+           clip-path="url(#clipPath10808)"><g
+             id="g10810"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 238,115 4,-1 -4,-2"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10812" /></g></g></g><g
+         id="g10814"><g
+           id="g10816"
+           clip-path="url(#clipPath10820)"><g
+             id="g10822"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 367,149.5 c 0,-1.3807 -1.1193,-2.5 -2.5,-2.5"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10824" /></g><g
+             id="g10826"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="M 367,167 V 149"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10828" /></g><g
+             id="g10830"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 342,144.5 c 0,1.3807 1.1193,2.5 2.5,2.5"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10832" /></g><g
+             id="g10834"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="M 364,147 H 344"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10836" /></g><g
+             id="g10838"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="M 342,145 V 129"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10840" /></g></g></g><g
+         id="g10842"><g
+           id="g10844"
+           clip-path="url(#clipPath10848)"><g
+             id="g10850"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(344,136)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10854"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan10852">1</tspan></text></g></g></g><g
+         id="g10856"><g
+           id="g10858"
+           clip-path="url(#clipPath10862)"><g
+             id="g10864"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(302.6025,137)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10868"><tspan
+                 x="0 2.2248001 4.4496002 6.6743999 8.8992004 10.2312 11.3424 14.6744 16.8992 19.124001 20.235201 22.235201 23.346399 24.6784 26.9032 28.9032 30.0144 32.239201 33.571201"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan10866">departmentstructure</tspan></text></g></g></g><g
+         id="g10870"><g
+           id="g10872"
+           clip-path="url(#clipPath10876)"><g
+             id="g10878"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(369,163)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10882"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan10880">*</tspan></text></g></g></g><g
+         id="g10884"><g
+           id="g10886"
+           clip-path="url(#clipPath10890)"><g
+             id="g10892"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(341.3281,155)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10896"><tspan
+                 x="0 2.8887999 5.1135998 6.4456 8.4455996 9.5567999 10.4456 12.6704 15.5592 17.784 20.008801 21.120001"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan10894">workflowdata</tspan></text></g></g></g><g
+         id="g10898"><g
+           id="g10900"
+           clip-path="url(#clipPath10904)"><g
+             id="g10906"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 344,134 -2,-5 -2,5"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10908" /></g></g></g><g
+         id="g10910"><g
+           id="g10912"
+           clip-path="url(#clipPath10916)"><g
+             id="g10918"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 365,163 2,4 2,-4"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10920" /></g></g></g><g
+         id="g10922"><g
+           id="g10924"
+           clip-path="url(#clipPath10928)"><g
+             id="g10930"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 411,186 h 46"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path10932" /></g></g></g><g
+         id="g10934"><g
+           id="g10936"
+           clip-path="url(#clipPath10940)"><g
+             id="g10942"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(411.3281,180)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10946"><tspan
+                 x="0 2.8887999 5.1135998 6.4456 8.4455996 9.5567999 10.4456 12.6704 15.5592 17.784 20.008801 21.120001"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan10944">workflowdata</tspan></text></g></g></g><g
+         id="g10948"><g
+           id="g10950"
+           clip-path="url(#clipPath10954)"><g
+             id="g10956"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(413,193)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10960"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan10958">1</tspan></text></g></g></g><g
+         id="g10962"><g
+           id="g10964"
+           clip-path="url(#clipPath10968)"><g
+             id="g10970"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(439.2754,197)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10974"><tspan
+                 x="0 2 4.2248001 7.5567999 10.8888 13.1136 15.3384"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan10972">comment</tspan></text></g></g></g><g
+         id="g10976"><g
+           id="g10978"
+           clip-path="url(#clipPath10982)"><g
+             id="g10984"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(453,193)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text10988"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan10986">*</tspan></text></g></g></g><g
+         id="g10990"><g
+           id="g10992"
+           clip-path="url(#clipPath10996)"><g
+             id="g10998"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 453,188 4,-2 -4,-1"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11000" /></g></g></g><g
+         id="g11002"><g
+           id="g11004"
+           clip-path="url(#clipPath11008)"><g
+             id="g11010"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 415,185 -4,1 4,2"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11012" /></g></g></g><g
+         id="g11014"><g
+           id="g11016"
+           clip-path="url(#clipPath11020)"><g
+             id="g11022"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="M 264,233 V 204"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11024" /></g></g></g><g
+         id="g11026"><g
+           id="g11028"
+           clip-path="url(#clipPath11032)"><g
+             id="g11034"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(267,210)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11038"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan11036">1</tspan></text></g></g></g><g
+         id="g11040"><g
+           id="g11042"
+           clip-path="url(#clipPath11046)"><g
+             id="g11048"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(267,230)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11052"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan11050">*</tspan></text></g></g></g><g
+         id="g11054"><g
+           id="g11056"
+           clip-path="url(#clipPath11060)"><g
+             id="g11062"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(243.2178,211)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11066"><tspan
+                 x="0 2 3.1112001 5.336 6.4471998 8.6719999 12.004 14.2288 16.4536"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan11064">statement</tspan></text></g></g></g><g
+         id="g11068"><g
+           id="g11070"
+           clip-path="url(#clipPath11074)"><g
+             id="g11076"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(231.8242,228)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11080"><tspan
+                 x="0 2 3.1112001 5.336 6.4471998 8.6719999 12.004 14.2288 16.4536 17.5648 19.7896 22.0144 22.9032 24.0144 24.9032 27.128"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan11078">statementeditlog</tspan></text></g></g></g><g
+         id="g11082"><g
+           id="g11084"
+           clip-path="url(#clipPath11088)"><g
+             id="g11090"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 266,208 -2,-4 -1,4"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11092" /></g></g></g><g
+         id="g11094"><g
+           id="g11096"
+           clip-path="url(#clipPath11100)"><g
+             id="g11102"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 263,229 1,4 2,-4"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11104" /></g></g></g><g
+         id="g11106"><g
+           id="g11108"
+           clip-path="url(#clipPath11112)"><g
+             id="g11114"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 343,219 c -1.1046,0 -2,0.8954 -2,2"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11116" /></g><g
+             id="g11118"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="M 341,233 V 221"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11120" /></g><g
+             id="g11122"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 383.5,219 c 1.3807,0 2.5,-1.1193 2.5,-2.5"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11124" /></g><g
+             id="g11126"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 343,219 h 41"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11128" /></g><g
+             id="g11130"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="M 386,216 V 204"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11132" /></g></g></g><g
+         id="g11134"><g
+           id="g11136"
+           clip-path="url(#clipPath11140)"><g
+             id="g11142"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(343,230)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11146"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan11144">*</tspan></text></g></g></g><g
+         id="g11148"><g
+           id="g11150"
+           clip-path="url(#clipPath11154)"><g
+             id="g11156"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(359.3281,211)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11160"><tspan
+                 x="0 2.8887999 5.1135998 6.4456 8.4455996 9.5567999 10.4456 12.6704 15.5592 17.784 20.008801 21.120001"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan11158">workflowdata</tspan></text></g></g></g><g
+         id="g11162"><g
+           id="g11164"
+           clip-path="url(#clipPath11168)"><g
+             id="g11170"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(311.4922,228)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11174"><tspan
+                 x="0 1.332 3.5567999 5.7816 8.0064001 10.2312 12.456 14.6808 16.0128 17.124001 20.455999 22.680799 24.9056"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan11172">reqdepartment</tspan></text></g></g></g><g
+         id="g11176"><g
+           id="g11178"
+           clip-path="url(#clipPath11182)"><g
+             id="g11184"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(388,210)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11188"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan11186">1</tspan></text></g></g></g><g
+         id="g11190"><g
+           id="g11192"
+           clip-path="url(#clipPath11196)"><g
+             id="g11198"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 388,208 -2,-4 -2,4"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11200" /></g></g></g><g
+         id="g11202"><g
+           id="g11204"
+           clip-path="url(#clipPath11208)"><g
+             id="g11210"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 339,229 2,4 1,-4"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11212" /></g></g></g><g
+         id="g11214"><g
+           id="g11216"
+           clip-path="url(#clipPath11220)"><g
+             id="g11222"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 364,250 h 37"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11224" /></g></g></g><g
+         id="g11226"><g
+           id="g11228"
+           clip-path="url(#clipPath11232)"><g
+             id="g11234"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(365.4922,244)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11238"><tspan
+                 x="0 1.332 3.5567999 5.7816 8.0064001 10.2312 12.456 14.6808 16.0128 17.124001 20.455999 22.680799 24.9056"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan11236">reqdepartment</tspan></text></g></g></g><g
+         id="g11240"><g
+           id="g11242"
+           clip-path="url(#clipPath11246)"><g
+             id="g11248"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(396,256)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11252"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan11250">1</tspan></text></g></g></g><g
+         id="g11254"><g
+           id="g11256"
+           clip-path="url(#clipPath11260)"><g
+             id="g11262"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(366,256)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11266"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan11264">*</tspan></text></g></g></g><g
+         id="g11268"><g
+           id="g11270"
+           clip-path="url(#clipPath11274)"><g
+             id="g11276"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(379.3828,261)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11280"><tspan
+                 x="0 2.2248001 4.4496002 6.6743999 8.8992004 10.2312 11.3424 14.6744 16.8992 19.124001"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan11278">department</tspan></text></g></g></g><g
+         id="g11282"><g
+           id="g11284"
+           clip-path="url(#clipPath11288)"><g
+             id="g11290"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 397,252 4,-2 -4,-2"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11292" /></g></g></g><g
+         id="g11294"><g
+           id="g11296"
+           clip-path="url(#clipPath11300)"><g
+             id="g11302"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 368,248 -4,2 4,2"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11304" /></g></g></g><g
+         id="g11306"><g
+           id="g11308"
+           clip-path="url(#clipPath11312)"><g
+             id="g11314"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 425,294.5 c 0,1.3807 0.8954,2.5 2,2.5"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11316" /></g><g
+             id="g11318"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 425,270 v 25"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11320" /></g><g
+             id="g11322"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 427,297 h 30"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11324" /></g></g></g><g
+         id="g11326"><g
+           id="g11328"
+           clip-path="url(#clipPath11332)"><g
+             id="g11334"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(447.1094,292)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11338"><tspan
+                 x="0 2.2248001 4.2248001 6.4496002"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan11336">user</tspan></text></g></g></g><g
+         id="g11340"><g
+           id="g11342"
+           clip-path="url(#clipPath11346)"><g
+             id="g11348"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(427,276)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11352"><tspan
+                 x="0 2.2248001 3.3376 4.4503999"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan11350">0..1</tspan></text></g></g></g><g
+         id="g11354"><g
+           id="g11356"
+           clip-path="url(#clipPath11360)"><g
+             id="g11362"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(453,303)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11366"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan11364">*</tspan></text></g></g></g><g
+         id="g11368"><g
+           id="g11370"
+           clip-path="url(#clipPath11374)"><g
+             id="g11376"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(401.3828,277)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11380"><tspan
+                 x="0 2.2248001 4.4496002 6.6743999 8.8992004 10.2312 11.3424 14.6744 16.8992 19.124001"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan11378">department</tspan></text></g></g></g><g
+         id="g11382"><g
+           id="g11384"
+           clip-path="url(#clipPath11388)"><g
+             id="g11390"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 453,299 4,-2 -4,-2"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11392" /></g></g></g><g
+         id="g11394"><g
+           id="g11396"
+           clip-path="url(#clipPath11400)"><g
+             id="g11402"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 427,274 -2,-4 -2,4"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11404" /></g></g></g><g
+         id="g11406"><g
+           id="g11408"
+           clip-path="url(#clipPath11412)"><g
+             id="g11414"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="M 478,291 V 204"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11416" /></g></g></g><g
+         id="g11418"><g
+           id="g11420"
+           clip-path="url(#clipPath11424)"><g
+             id="g11426"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(467.1094,286)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11430"><tspan
+                 x="0 2.2248001 4.2248001 6.4496002"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan11428">user</tspan></text></g></g></g><g
+         id="g11432"><g
+           id="g11434"
+           clip-path="url(#clipPath11438)"><g
+             id="g11440"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(480,288)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11444"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan11442">1</tspan></text></g></g></g><g
+         id="g11446"><g
+           id="g11448"
+           clip-path="url(#clipPath11452)"><g
+             id="g11454"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(480,210)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11458"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan11456">*</tspan></text></g></g></g><g
+         id="g11460"><g
+           id="g11462"
+           clip-path="url(#clipPath11466)"><g
+             id="g11468"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(458.2754,211)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11472"><tspan
+                 x="0 2 4.2248001 7.5567999 10.8888 13.1136 15.3384"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan11470">comment</tspan></text></g></g></g><g
+         id="g11474"><g
+           id="g11476"
+           clip-path="url(#clipPath11480)"><g
+             id="g11482"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 480,208 -2,-4 -2,4"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11484" /></g></g></g><g
+         id="g11486"><g
+           id="g11488"
+           clip-path="url(#clipPath11492)"><g
+             id="g11494"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 476,287 2,4 2,-4"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11496" /></g></g></g><g
+         id="g11498"><g
+           id="g11500"
+           clip-path="url(#clipPath11504)"><g
+             id="g11506"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 265,311.5 c 0,1.3807 1.1193,2.5 2.5,2.5"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11508" /></g><g
+             id="g11510"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="M 457,314 H 268"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11512" /></g><g
+             id="g11514"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="M 265,312 V 271"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11516" /></g></g></g><g
+         id="g11518"><g
+           id="g11520"
+           clip-path="url(#clipPath11524)"><g
+             id="g11526"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(268,277)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11530"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan11528">*</tspan></text></g></g></g><g
+         id="g11532"><g
+           id="g11534"
+           clip-path="url(#clipPath11538)"><g
+             id="g11540"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(452,320)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11544"><tspan
+                 x="0"
+                 y="0"
+                 id="tspan11542">1</tspan></text></g></g></g><g
+         id="g11546"><g
+           id="g11548"
+           clip-path="url(#clipPath11552)"><g
+             id="g11554"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(232.8242,278)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11558"><tspan
+                 x="0 2 3.1112001 5.336 6.4471998 8.6719999 12.004 14.2288 16.4536 17.5648 19.7896 22.0144 22.9032 24.0144 24.9032 27.128"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan11556">statementeditlog</tspan></text></g></g></g><g
+         id="g11560"><g
+           id="g11562"
+           clip-path="url(#clipPath11566)"><g
+             id="g11568"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><text
+               transform="translate(447.1094,309)"
+               style="font-variant:normal;font-weight:normal;font-size:4px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+               id="text11572"><tspan
+                 x="0 2.2248001 4.2248001 6.4496002"
+                 y="0"
+                 sodipodi:role="line"
+                 id="tspan11570">user</tspan></text></g></g></g><g
+         id="g11574"><g
+           id="g11576"
+           clip-path="url(#clipPath11580)"><g
+             id="g11582"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 267,275 -2,-4 -1,4"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11584" /></g></g></g><g
+         id="g11586"><g
+           id="g11588"
+           clip-path="url(#clipPath11592)"><g
+             id="g11594"
+             transform="matrix(1,0,0,-1,12.2457,829.644)"><path
+               d="m 453,316 4,-2 -4,-2"
+               style="fill:none;stroke:#413723;stroke-width:0.467267;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+               id="path11596" /></g></g></g></g></g></svg>
diff --git a/src/main/asciidoc/images/pdf-concept.png b/src/main/asciidoc/images/pdf-concept.png
new file mode 100644
index 0000000..4412436
--- /dev/null
+++ b/src/main/asciidoc/images/pdf-concept.png
Binary files differ
diff --git a/src/main/asciidoc/images/pdf-concept.svg b/src/main/asciidoc/images/pdf-concept.svg
new file mode 100644
index 0000000..cfa33cd
--- /dev/null
+++ b/src/main/asciidoc/images/pdf-concept.svg
@@ -0,0 +1,526 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   inkscape:export-ydpi="300"
+   inkscape:export-xdpi="300"
+   inkscape:export-filename="/Users/tobiass/Work/repos/org.eclipse.openk-usermodules.statementpublicaffairs.backend/src/main/asciidoc/images/pdf-concept.png"
+   sodipodi:docname="pdf-concept.svg"
+   inkscape:version="1.0 (4035a4f, 2020-05-01)"
+   id="svg2508"
+   version="1.1"
+   viewBox="0 0 230.02571 103.72173"
+   height="103.72173mm"
+   width="230.02571mm">
+  <defs
+     id="defs2502">
+    <marker
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker4057"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4055"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Mstart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker4047"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4045"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(0.4,0,0,0.4,4,0)" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3859"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3857" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3849"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mstart">
+      <path
+         transform="matrix(0.4,0,0,0.4,4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3847" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:stockid="Arrow1Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker3729"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path3727"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:stockid="Arrow1Mstart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker3719"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path3717"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         transform="matrix(0.4,0,0,0.4,4,0)" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="Arrow1Mend"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mend">
+      <path
+         transform="matrix(-0.4,0,0,-0.4,-4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3326" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3621"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Lend">
+      <path
+         transform="matrix(-0.8,0,0,-0.8,-10,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3619" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="Arrow1Lend"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Lend">
+      <path
+         transform="matrix(-0.8,0,0,-0.8,-10,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3320" />
+    </marker>
+    <marker
+       inkscape:collect="always"
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="Arrow1Mstart"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Mstart">
+      <path
+         transform="matrix(0.4,0,0,0.4,4,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path3323" />
+    </marker>
+  </defs>
+  <sodipodi:namedview
+     showguides="false"
+     inkscape:window-maximized="0"
+     inkscape:window-y="23"
+     inkscape:window-x="0"
+     inkscape:window-height="2027"
+     inkscape:window-width="3840"
+     fit-margin-bottom="5"
+     fit-margin-right="5"
+     fit-margin-left="5"
+     lock-margins="true"
+     fit-margin-top="5"
+     showgrid="false"
+     inkscape:document-rotation="0"
+     inkscape:current-layer="layer1"
+     inkscape:document-units="mm"
+     inkscape:cy="171.14194"
+     inkscape:cx="651.00713"
+     inkscape:zoom="2.1345432"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base" />
+  <metadata
+     id="metadata2505">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     transform="translate(-13.993404,-175.59294)"
+     id="layer1"
+     inkscape:groupmode="layer"
+     inkscape:label="Layer 1">
+    <g
+       id="g3229">
+      <g
+         id="g3211">
+        <rect
+           y="180.94147"
+           x="19.243404"
+           height="87.397133"
+           width="69.222809"
+           id="rect3071"
+           style="fill:#f9f9f9;stroke:#999999;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none" />
+        <g
+           style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+           id="g3174">
+          <rect
+             style="fill:#f9f9f9;stroke:#999999;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+             id="rect3075"
+             width="29.95948"
+             height="14.699824"
+             x="28.305275"
+             y="191.89952"
+             ry="2.4054258" />
+          <text
+             xml:space="preserve"
+             style="font-style:normal;font-weight:normal;font-size:3.68515px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+             x="36.055965"
+             y="200.62148"
+             id="text3089"><tspan
+               sodipodi:role="line"
+               id="tspan3087"
+               x="36.055965"
+               y="200.62148"
+               style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">address</tspan></text>
+        </g>
+        <g
+           style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+           id="g3179">
+          <rect
+             style="fill:#f9f9f9;stroke:#999999;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+             id="rect3077"
+             width="13.096207"
+             height="24.321527"
+             x="68.153725"
+             y="189.24295" />
+          <text
+             id="text3093"
+             y="202.78474"
+             x="71.200218"
+             style="font-style:normal;font-weight:normal;font-size:3.68515px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+             xml:space="preserve"><tspan
+               style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+               y="202.78474"
+               x="71.200218"
+               id="tspan3091"
+               sodipodi:role="line">info</tspan></text>
+        </g>
+        <g
+           style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+           transform="translate(-0.13364029)"
+           id="g3184">
+          <rect
+             style="fill:#f9f9f9;stroke:#999999;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+             id="rect3079"
+             width="52.919369"
+             height="36.615925"
+             x="27.528765"
+             y="218.35919" />
+          <text
+             xml:space="preserve"
+             style="font-style:normal;font-weight:normal;font-size:3.68515px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+             x="43.968548"
+             y="237.64062"
+             id="text3101"><tspan
+               sodipodi:role="line"
+               id="tspan3099"
+               x="43.968548"
+               y="237.64062"
+               style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">content-p1</tspan></text>
+        </g>
+      </g>
+      <text
+         id="text3109"
+         y="273.62643"
+         x="48.165859"
+         style="font-style:normal;font-weight:normal;font-size:3.33218px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.0833046"
+         xml:space="preserve"><tspan
+           style="stroke-width:0.0833046"
+           y="273.62643"
+           x="48.165859"
+           id="tspan3107"
+           sodipodi:role="line">page 1</tspan></text>
+    </g>
+    <g
+       id="g3239">
+      <g
+         id="g3196"
+         style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
+        <rect
+           style="fill:#f9f9f9;stroke:#999999;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+           id="rect3073"
+           width="69.222809"
+           height="87.397133"
+           x="101.56242"
+           y="180.94147" />
+        <g
+           transform="translate(0.13363075,-0.40090179)"
+           id="g3189"
+           style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
+          <rect
+             y="190.16052"
+             x="109.71241"
+             height="69.760826"
+             width="52.655575"
+             id="rect3081"
+             style="fill:#f9f9f9;stroke:#999999;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none" />
+          <text
+             id="text3105"
+             y="226.0378"
+             x="125.94382"
+             style="font-style:normal;font-weight:normal;font-size:3.68515px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+             xml:space="preserve"><tspan
+               style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+               y="226.0378"
+               x="125.94382"
+               id="tspan3103"
+               sodipodi:role="line">content-p2</tspan></text>
+        </g>
+      </g>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:3.33218px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.0833046"
+         x="130.48488"
+         y="273.62643"
+         id="text3113"><tspan
+           sodipodi:role="line"
+           id="tspan3111"
+           x="130.48488"
+           y="273.62643"
+           style="stroke-width:0.0833046">page 2</tspan></text>
+    </g>
+    <g
+       id="g4707">
+      <g
+         style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+         id="g3169"
+         transform="translate(1.7336402,7.2812887)">
+        <rect
+           y="241.61534"
+           x="185.29372"
+           height="16.079334"
+           width="51.74176"
+           id="rect3115"
+           style="fill:#f9f9f9;stroke:#999999;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none" />
+        <path
+           id="path3117"
+           d="m 193.25032,249.57195 h 12.56166"
+           style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+        <text
+           id="text3121"
+           y="244.91824"
+           x="188.32153"
+           style="font-style:normal;font-weight:normal;font-size:2.26631px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+           xml:space="preserve"><tspan
+             style="font-size:2.57482px;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+             y="244.91824"
+             x="188.32153"
+             id="tspan3119"
+             sodipodi:role="line">sincerely yours,</tspan><tspan
+             id="tspan3123"
+             style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+             y="247.8553"
+             x="188.32153"
+             sodipodi:role="line" /></text>
+        <text
+           id="text3127"
+           y="252.39642"
+           x="193.09843"
+           style="font-style:normal;font-weight:normal;font-size:2.32136px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+           xml:space="preserve"><tspan
+             style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+             y="252.39642"
+             x="193.09843"
+             id="tspan3125"
+             sodipodi:role="line">First line</tspan><tspan
+             id="tspan3129"
+             style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+             y="255.29813"
+             x="193.09843"
+             sodipodi:role="line">Second line</tspan></text>
+        <path
+           style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+           d="m 214.417,249.57195 h 12.56166"
+           id="path3131" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-weight:normal;font-size:2.32136px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+           x="214.26512"
+           y="252.39642"
+           id="text3137"><tspan
+             sodipodi:role="line"
+             id="tspan3133"
+             x="214.26512"
+             y="252.39642"
+             style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">First line</tspan><tspan
+             sodipodi:role="line"
+             x="214.26512"
+             y="255.29813"
+             style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+             id="tspan3135">Second line</tspan></text>
+      </g>
+      <text
+         id="text3113-4"
+         y="273.62643"
+         x="207.20358"
+         style="font-style:normal;font-weight:normal;font-size:3.33219px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+         xml:space="preserve"><tspan
+           style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+           y="273.62643"
+           x="207.20358"
+           id="tspan3111-6"
+           sodipodi:role="line">closing</tspan></text>
+    </g>
+    <g
+       transform="translate(5.7968345)"
+       id="g4822">
+      <g
+         id="g4558">
+        <rect
+           y="180.84294"
+           x="186.13057"
+           height="52.953373"
+           width="41.941666"
+           id="rect3260"
+           style="fill:#f9f9f9;stroke:#999999;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none" />
+        <rect
+           y="202.22588"
+           x="191.11955"
+           height="14.6422"
+           width="31.963713"
+           id="rect3262"
+           style="fill:#f9f9f9;stroke:#999999;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none" />
+        <text
+           id="text3266"
+           y="212.49548"
+           x="211.6432"
+           style="font-style:normal;font-weight:normal;font-size:2.23281px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.302947;stroke-miterlimit:4;stroke-dasharray:none"
+           xml:space="preserve"><tspan
+             style="text-align:center;text-anchor:middle;stroke-width:0.302947;stroke-miterlimit:4;stroke-dasharray:none"
+             y="212.49548"
+             x="211.6432"
+             sodipodi:role="line"
+             id="tspan3278">width</tspan></text>
+        <path
+           id="path3301"
+           d="m 191.79851,181.73927 v 19.58534"
+           style="fill:none;stroke:#000000;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow1Mstart);marker-end:url(#Arrow1Mend);paint-order:normal" />
+        <path
+           style="fill:none;stroke:#000000;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3719);marker-end:url(#marker3729);paint-order:normal"
+           d="m 197.09018,202.74977 v 13.51411"
+           id="path3715" />
+        <path
+           id="path3845"
+           d="m 191.99016,213.21098 h 29.82881"
+           style="fill:none;stroke:#000000;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3849);marker-end:url(#marker3859);paint-order:normal" />
+        <path
+           style="fill:none;stroke:#000000;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4047);marker-end:url(#marker4057);paint-order:normal"
+           d="m 186.63709,202.62764 h 4.05099"
+           id="path4043" />
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-weight:normal;font-size:2.23281px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.302947;stroke-miterlimit:4;stroke-dasharray:none"
+           x="201.05986"
+           y="207.20381"
+           id="text4443"><tspan
+             id="tspan4441"
+             sodipodi:role="line"
+             x="201.05986"
+             y="207.20381"
+             style="text-align:center;text-anchor:middle;stroke-width:0.302947;stroke-miterlimit:4;stroke-dasharray:none">height</tspan></text>
+        <text
+           id="text4471"
+           y="191.3288"
+           x="193.12231"
+           style="font-style:normal;font-weight:normal;font-size:2.23281px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.302947;stroke-miterlimit:4;stroke-dasharray:none"
+           xml:space="preserve"><tspan
+             style="text-align:center;text-anchor:middle;stroke-width:0.302947;stroke-miterlimit:4;stroke-dasharray:none"
+             y="191.3288"
+             x="193.12231"
+             sodipodi:role="line"
+             id="tspan4469">y</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-weight:normal;font-size:2.23281px;line-height:1.25;font-family:sans-serif;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.302947;stroke-miterlimit:4;stroke-dasharray:none"
+           x="188.3598"
+           y="201.38298"
+           id="text4475"><tspan
+             id="tspan4473"
+             sodipodi:role="line"
+             x="188.3598"
+             y="201.38298"
+             style="text-align:center;text-anchor:middle;stroke-width:0.302947;stroke-miterlimit:4;stroke-dasharray:none">x</tspan></text>
+      </g>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:3.33219px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+         x="196.08548"
+         y="239.23058"
+         id="text4494"><tspan
+           sodipodi:role="line"
+           id="tspan4492"
+           x="196.08548"
+           y="239.23058"
+           style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">position, size</tspan></text>
+    </g>
+  </g>
+</svg>
diff --git a/src/main/asciidoc/images/userdoc/admin-departments.png b/src/main/asciidoc/images/userdoc/admin-departments.png
new file mode 100644
index 0000000..e5d4800
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/admin-departments.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/admin-tags.png b/src/main/asciidoc/images/userdoc/admin-tags.png
new file mode 100644
index 0000000..d6905f0
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/admin-tags.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/admin-textblock-edit.png b/src/main/asciidoc/images/userdoc/admin-textblock-edit.png
new file mode 100644
index 0000000..b3ffdd1
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/admin-textblock-edit.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/admin-textblock.png b/src/main/asciidoc/images/userdoc/admin-textblock.png
new file mode 100644
index 0000000..fb934f6
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/admin-textblock.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/admin-usersettings.png b/src/main/asciidoc/images/userdoc/admin-usersettings.png
new file mode 100644
index 0000000..037a6e5
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/admin-usersettings.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/admin.png b/src/main/asciidoc/images/userdoc/admin.png
new file mode 100644
index 0000000..ae7149f
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/admin.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-admin-departments-download.png b/src/main/asciidoc/images/userdoc/button-admin-departments-download.png
new file mode 100644
index 0000000..c3806b3
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-admin-departments-download.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-admin-departments-save.png b/src/main/asciidoc/images/userdoc/button-admin-departments-save.png
new file mode 100644
index 0000000..b88b8b7
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-admin-departments-save.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-admin-departments-upload.png b/src/main/asciidoc/images/userdoc/button-admin-departments-upload.png
new file mode 100644
index 0000000..8f59676
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-admin-departments-upload.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-admin-departments.png b/src/main/asciidoc/images/userdoc/button-admin-departments.png
new file mode 100644
index 0000000..a30663d
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-admin-departments.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-admin-documents.png b/src/main/asciidoc/images/userdoc/button-admin-documents.png
new file mode 100644
index 0000000..ef42309
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-admin-documents.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-admin-setuser.png b/src/main/asciidoc/images/userdoc/button-admin-setuser.png
new file mode 100644
index 0000000..b3235a9
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-admin-setuser.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-admin-tags-plus.png b/src/main/asciidoc/images/userdoc/button-admin-tags-plus.png
new file mode 100644
index 0000000..547d5b8
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-admin-tags-plus.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-admin-textblocks.png b/src/main/asciidoc/images/userdoc/button-admin-textblocks.png
new file mode 100644
index 0000000..3b16f78
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-admin-textblocks.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-admin-usersettings.png b/src/main/asciidoc/images/userdoc/button-admin-usersettings.png
new file mode 100644
index 0000000..6def659
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-admin-usersettings.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-approve-negative.png b/src/main/asciidoc/images/userdoc/button-approve-negative.png
new file mode 100644
index 0000000..0bdb91d
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-approve-negative.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-approve-positive.png b/src/main/asciidoc/images/userdoc/button-approve-positive.png
new file mode 100644
index 0000000..1238b68
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-approve-positive.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-back-to-details.png b/src/main/asciidoc/images/userdoc/button-back-to-details.png
new file mode 100644
index 0000000..ca7e0ce
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-back-to-details.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-back-to-inbox.png b/src/main/asciidoc/images/userdoc/button-back-to-inbox.png
new file mode 100644
index 0000000..70cb55e
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-back-to-inbox.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-collapse.png b/src/main/asciidoc/images/userdoc/button-collapse.png
new file mode 100644
index 0000000..6d455b0
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-collapse.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-cross.png b/src/main/asciidoc/images/userdoc/button-cross.png
new file mode 100644
index 0000000..cdb860d
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-cross.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-delete.png b/src/main/asciidoc/images/userdoc/button-delete.png
new file mode 100644
index 0000000..76318d3
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-delete.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-download.png b/src/main/asciidoc/images/userdoc/button-download.png
new file mode 100644
index 0000000..1128b11
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-download.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-draft-contribute.png b/src/main/asciidoc/images/userdoc/button-draft-contribute.png
new file mode 100644
index 0000000..9f45da1
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-draft-contribute.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-draft-verify.png b/src/main/asciidoc/images/userdoc/button-draft-verify.png
new file mode 100644
index 0000000..724d08d
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-draft-verify.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-edit-workflowdata.png b/src/main/asciidoc/images/userdoc/button-edit-workflowdata.png
new file mode 100644
index 0000000..4419b1c
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-edit-workflowdata.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-edit.png b/src/main/asciidoc/images/userdoc/button-edit.png
new file mode 100644
index 0000000..c36a9a6
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-edit.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-enhance-contributions.png b/src/main/asciidoc/images/userdoc/button-enhance-contributions.png
new file mode 100644
index 0000000..c6038a0
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-enhance-contributions.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-enhance-infodata.png b/src/main/asciidoc/images/userdoc/button-enhance-infodata.png
new file mode 100644
index 0000000..0804fd0
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-enhance-infodata.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-finalize-statement.png b/src/main/asciidoc/images/userdoc/button-finalize-statement.png
new file mode 100644
index 0000000..cfb51b3
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-finalize-statement.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-finish-process.png b/src/main/asciidoc/images/userdoc/button-finish-process.png
new file mode 100644
index 0000000..83b5dd5
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-finish-process.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-finish-work.png b/src/main/asciidoc/images/userdoc/button-finish-work.png
new file mode 100644
index 0000000..4fd39af
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-finish-work.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-generate-pdf.png b/src/main/asciidoc/images/userdoc/button-generate-pdf.png
new file mode 100644
index 0000000..cf27a6e
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-generate-pdf.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-goto-statement.png b/src/main/asciidoc/images/userdoc/button-goto-statement.png
new file mode 100644
index 0000000..3880993
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-goto-statement.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-help.png b/src/main/asciidoc/images/userdoc/button-help.png
new file mode 100644
index 0000000..1910953
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-help.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-home.png b/src/main/asciidoc/images/userdoc/button-home.png
new file mode 100644
index 0000000..bf9db08
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-home.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-mail-delete.png b/src/main/asciidoc/images/userdoc/button-mail-delete.png
new file mode 100644
index 0000000..81bea4d
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-mail-delete.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-mail-refresh.png b/src/main/asciidoc/images/userdoc/button-mail-refresh.png
new file mode 100644
index 0000000..b4552d2
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-mail-refresh.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-mail-to-statement.png b/src/main/asciidoc/images/userdoc/button-mail-to-statement.png
new file mode 100644
index 0000000..ba991cb
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-mail-to-statement.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-mail.png b/src/main/asciidoc/images/userdoc/button-mail.png
new file mode 100644
index 0000000..77959db
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-mail.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-map.png b/src/main/asciidoc/images/userdoc/button-map.png
new file mode 100644
index 0000000..c21d4eb
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-map.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-negative-response.png b/src/main/asciidoc/images/userdoc/button-negative-response.png
new file mode 100644
index 0000000..e4aace9
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-negative-response.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-new-contact.png b/src/main/asciidoc/images/userdoc/button-new-contact.png
new file mode 100644
index 0000000..050b5e2
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-new-contact.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-newstatement.png b/src/main/asciidoc/images/userdoc/button-newstatement.png
new file mode 100644
index 0000000..66b2114
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-newstatement.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-open-for-departments.png b/src/main/asciidoc/images/userdoc/button-open-for-departments.png
new file mode 100644
index 0000000..f486c1a
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-open-for-departments.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-open-gis.png b/src/main/asciidoc/images/userdoc/button-open-gis.png
new file mode 100644
index 0000000..5429d96
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-open-gis.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-plus.png b/src/main/asciidoc/images/userdoc/button-plus.png
new file mode 100644
index 0000000..09e9d1c
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-plus.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-resend-mail.png b/src/main/asciidoc/images/userdoc/button-resend-mail.png
new file mode 100644
index 0000000..11061d9
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-resend-mail.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-save.png b/src/main/asciidoc/images/userdoc/button-save.png
new file mode 100644
index 0000000..d14e038
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-save.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-search.png b/src/main/asciidoc/images/userdoc/button-search.png
new file mode 100644
index 0000000..2f51382
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-search.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-set-changes.png b/src/main/asciidoc/images/userdoc/button-set-changes.png
new file mode 100644
index 0000000..6fca111
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-set-changes.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-set-infodata.png b/src/main/asciidoc/images/userdoc/button-set-infodata.png
new file mode 100644
index 0000000..08c2589
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-set-infodata.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-set-workflowdata.png b/src/main/asciidoc/images/userdoc/button-set-workflowdata.png
new file mode 100644
index 0000000..c5c1665
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-set-workflowdata.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-settings.png b/src/main/asciidoc/images/userdoc/button-settings.png
new file mode 100644
index 0000000..fa97cc2
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-settings.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-sync-users.png b/src/main/asciidoc/images/userdoc/button-sync-users.png
new file mode 100644
index 0000000..faf9e76
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-sync-users.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-textblock-sort-down.png b/src/main/asciidoc/images/userdoc/button-textblock-sort-down.png
new file mode 100644
index 0000000..8d3d74b
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-textblock-sort-down.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-textblock-sort-up.png b/src/main/asciidoc/images/userdoc/button-textblock-sort-up.png
new file mode 100644
index 0000000..a62f790
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-textblock-sort-up.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/button-validate-textarrangement.png b/src/main/asciidoc/images/userdoc/button-validate-textarrangement.png
new file mode 100644
index 0000000..2dc34e9
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/button-validate-textarrangement.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/checkbox-empty.png b/src/main/asciidoc/images/userdoc/checkbox-empty.png
new file mode 100644
index 0000000..3590dda
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/checkbox-empty.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/checkbox-optional.png b/src/main/asciidoc/images/userdoc/checkbox-optional.png
new file mode 100644
index 0000000..c06af95
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/checkbox-optional.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/checkbox-set.png b/src/main/asciidoc/images/userdoc/checkbox-set.png
new file mode 100644
index 0000000..9d6c84a
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/checkbox-set.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/contributions.png b/src/main/asciidoc/images/userdoc/contributions.png
new file mode 100644
index 0000000..f02e73f
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/contributions.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/dashboard-all.png b/src/main/asciidoc/images/userdoc/dashboard-all.png
new file mode 100644
index 0000000..6328644
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/dashboard-all.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/dashboard-button-own.png b/src/main/asciidoc/images/userdoc/dashboard-button-own.png
new file mode 100644
index 0000000..91c28a3
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/dashboard-button-own.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/dashboard-entry-due.png b/src/main/asciidoc/images/userdoc/dashboard-entry-due.png
new file mode 100644
index 0000000..665276f
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/dashboard-entry-due.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/dashboard-entry.png b/src/main/asciidoc/images/userdoc/dashboard-entry.png
new file mode 100644
index 0000000..d5bbe9f
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/dashboard-entry.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/details-comments.png b/src/main/asciidoc/images/userdoc/details-comments.png
new file mode 100644
index 0000000..8f97b0b
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/details-comments.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/details-consideration.png b/src/main/asciidoc/images/userdoc/details-consideration.png
new file mode 100644
index 0000000..0d8970f
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/details-consideration.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/details-contribution-state.png b/src/main/asciidoc/images/userdoc/details-contribution-state.png
new file mode 100644
index 0000000..eda1c00
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/details-contribution-state.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/details-documents.png b/src/main/asciidoc/images/userdoc/details-documents.png
new file mode 100644
index 0000000..57f8b70
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/details-documents.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/details-general-info.png b/src/main/asciidoc/images/userdoc/details-general-info.png
new file mode 100644
index 0000000..405709b
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/details-general-info.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/details-geo-position.png b/src/main/asciidoc/images/userdoc/details-geo-position.png
new file mode 100644
index 0000000..34be7bc
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/details-geo-position.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/details-linked-statements.png b/src/main/asciidoc/images/userdoc/details-linked-statements.png
new file mode 100644
index 0000000..040e06f
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/details-linked-statements.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/details-outbox-documents-withstatement.png b/src/main/asciidoc/images/userdoc/details-outbox-documents-withstatement.png
new file mode 100644
index 0000000..89f0279
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/details-outbox-documents-withstatement.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/details-outbox-documents.png b/src/main/asciidoc/images/userdoc/details-outbox-documents.png
new file mode 100644
index 0000000..2861859
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/details-outbox-documents.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/details-process-state.png b/src/main/asciidoc/images/userdoc/details-process-state.png
new file mode 100644
index 0000000..cf34ea8
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/details-process-state.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/details.png b/src/main/asciidoc/images/userdoc/details.png
new file mode 100644
index 0000000..f5bf54b
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/details.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/draft.png b/src/main/asciidoc/images/userdoc/draft.png
new file mode 100644
index 0000000..65ab6fa
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/draft.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/inbox.png b/src/main/asciidoc/images/userdoc/inbox.png
new file mode 100644
index 0000000..127f798
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/inbox.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/mailtostatement-attachments.png b/src/main/asciidoc/images/userdoc/mailtostatement-attachments.png
new file mode 100644
index 0000000..bffe06a
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/mailtostatement-attachments.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/mailtostatement-mailattachments.png b/src/main/asciidoc/images/userdoc/mailtostatement-mailattachments.png
new file mode 100644
index 0000000..1f1d2b0
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/mailtostatement-mailattachments.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/mailtostatement-mailtext.png b/src/main/asciidoc/images/userdoc/mailtostatement-mailtext.png
new file mode 100644
index 0000000..c231a94
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/mailtostatement-mailtext.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/mailtostatement.png b/src/main/asciidoc/images/userdoc/mailtostatement.png
new file mode 100644
index 0000000..7462688
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/mailtostatement.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/mapsearch.png b/src/main/asciidoc/images/userdoc/mapsearch.png
new file mode 100644
index 0000000..bca40df
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/mapsearch.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/negativeresponse-textedit.png b/src/main/asciidoc/images/userdoc/negativeresponse-textedit.png
new file mode 100644
index 0000000..d0e63ce
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/negativeresponse-textedit.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/negativeresponse.png b/src/main/asciidoc/images/userdoc/negativeresponse.png
new file mode 100644
index 0000000..807eea6
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/negativeresponse.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/newstatement-attachments.png b/src/main/asciidoc/images/userdoc/newstatement-attachments.png
new file mode 100644
index 0000000..9e6e7c6
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/newstatement-attachments.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/newstatement.png b/src/main/asciidoc/images/userdoc/newstatement.png
new file mode 100644
index 0000000..e5b36f0
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/newstatement.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/overview.png b/src/main/asciidoc/images/userdoc/overview.png
new file mode 100644
index 0000000..ebc13f6
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/overview.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/popup.png b/src/main/asciidoc/images/userdoc/popup.png
new file mode 100644
index 0000000..0877d16
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/popup.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/response-textedit.png b/src/main/asciidoc/images/userdoc/response-textedit.png
new file mode 100644
index 0000000..c82a6f2
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/response-textedit.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/search-result.png b/src/main/asciidoc/images/userdoc/search-result.png
new file mode 100644
index 0000000..d55e52b
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/search-result.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/search.png b/src/main/asciidoc/images/userdoc/search.png
new file mode 100644
index 0000000..58d3abd
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/search.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/textedit-blockedit.png b/src/main/asciidoc/images/userdoc/textedit-blockedit.png
new file mode 100644
index 0000000..92c3ddf
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/textedit-blockedit.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/textedit-contribution-state.png b/src/main/asciidoc/images/userdoc/textedit-contribution-state.png
new file mode 100644
index 0000000..f1614ac
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/textedit-contribution-state.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/textedit-edit-button.png b/src/main/asciidoc/images/userdoc/textedit-edit-button.png
new file mode 100644
index 0000000..c36a9a6
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/textedit-edit-button.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/textedit-freetext.png b/src/main/asciidoc/images/userdoc/textedit-freetext.png
new file mode 100644
index 0000000..7046ee0
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/textedit-freetext.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/textedit-normalview.png b/src/main/asciidoc/images/userdoc/textedit-normalview.png
new file mode 100644
index 0000000..ccbcaca
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/textedit-normalview.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/textedit-outbox-docs.png b/src/main/asciidoc/images/userdoc/textedit-outbox-docs.png
new file mode 100644
index 0000000..bd29b3b
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/textedit-outbox-docs.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/textedit-preview-button.png b/src/main/asciidoc/images/userdoc/textedit-preview-button.png
new file mode 100644
index 0000000..0479fee
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/textedit-preview-button.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/textedit-preview.png b/src/main/asciidoc/images/userdoc/textedit-preview.png
new file mode 100644
index 0000000..d7e946e
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/textedit-preview.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/textedit-revert-button.png b/src/main/asciidoc/images/userdoc/textedit-revert-button.png
new file mode 100644
index 0000000..7660c98
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/textedit-revert-button.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/textedit-textblock.png b/src/main/asciidoc/images/userdoc/textedit-textblock.png
new file mode 100644
index 0000000..a6a45fb
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/textedit-textblock.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/textedit.png b/src/main/asciidoc/images/userdoc/textedit.png
new file mode 100644
index 0000000..65e8d86
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/textedit.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/titlebar-navigation.png b/src/main/asciidoc/images/userdoc/titlebar-navigation.png
new file mode 100644
index 0000000..8c897be
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/titlebar-navigation.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/titlebar-user.png b/src/main/asciidoc/images/userdoc/titlebar-user.png
new file mode 100644
index 0000000..2378e47
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/titlebar-user.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/titlebar.png b/src/main/asciidoc/images/userdoc/titlebar.png
new file mode 100644
index 0000000..9b9415b
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/titlebar.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/titlenbar-user.png b/src/main/asciidoc/images/userdoc/titlenbar-user.png
new file mode 100644
index 0000000..4aab26e
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/titlenbar-user.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/workflowdata-departments.png b/src/main/asciidoc/images/userdoc/workflowdata-departments.png
new file mode 100644
index 0000000..07773bc
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/workflowdata-departments.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/workflowdata-geographic-pos.png b/src/main/asciidoc/images/userdoc/workflowdata-geographic-pos.png
new file mode 100644
index 0000000..897198d
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/workflowdata-geographic-pos.png
Binary files differ
diff --git a/src/main/asciidoc/images/userdoc/workflowdata.png b/src/main/asciidoc/images/userdoc/workflowdata.png
new file mode 100644
index 0000000..21e073d
--- /dev/null
+++ b/src/main/asciidoc/images/userdoc/workflowdata.png
Binary files differ
diff --git a/src/main/asciidoc/userDocumentation/userDocumentation.adoc b/src/main/asciidoc/userDocumentation/userDocumentation.adoc
new file mode 100644
index 0000000..376c013
--- /dev/null
+++ b/src/main/asciidoc/userDocumentation/userDocumentation.adoc
@@ -0,0 +1,1132 @@
+= Benutzerhandbuch: OpenKONSEQUENZ Modul - Stellungnahmen
+:Author: Tobias Stummer, Dr. Christopher Keim, Christian Simon
+
+:icons:
+
+:source-highlighter: highlightjs
+:highlightjs-theme: solarized_dark
+
+:lang: de
+
+:encoding: utf-8
+
+:imagesdir: ../images
+:iconsdir: ../images/icons
+
+:toc:
+:toc-title: Inhaltsverzeichnis
+:toclevels: 4
+:toc-placement!:
+:sectanchors:
+:numbered:
+
+<<<
+
+== Übersicht
+
+Das OpenKONSEQUENZ Modul Stellungnahmen begleitet den Prozess der Bearbeitung von Stellungnahmeanfragen. Neu eingegangene Anfragen per Email oder Brief werden in einen Stellungnahmeprozess überführt und in Zusammenarbeit mehrerer Mitarbeiter/innen bearbeitet. Ein Prozess Workflow des Stellungnahmenprozess leitet das Zusammenführen der Fachkenntnisse der verschiedenen Mitarbeiter/innen des Prozesses. Abschließend werden diese Beiträge in einer Stellungnahmeantwort zusammengeführt und versendet.
+
+=== Rollen
+
+Für das Bearbeiten der Stellungnahme wird zwischen folgenden Rollen unterschieden:
+
+[option="header, cols="1,3"]
+|===
+|Rolle| Aufgaben
+|Sachbearbeiter/in| Erstellung, Steuerung und Finalisierung von Stellungnahmen
+|Fachbereichsmitarbeiter/in| Anreicherung mit Fachkenntnis
+|Genehmiger/in| Genehmigung von Stellungnahmeantworten
+|Administrator/in| Einrichtung und Anpassung zentraler Konfigurationsparameter
+|===
+
+Der Zugang zu den verschiedenen Prozessschritten und die jeweils erlaubten Bearbeitungsoptionen wird anhand dieser Rollen beschränkt.
+
+=== Prozess
+
+Die Bearbeitung einer Stellungnahmeanfrage wird durch folgenden Workflowprozess geleitet:
+
+image::Statement-workflow.svg[]
+Eine größere Darstellung findet sich im <<Workflow Diagramm, Anhang>>.
+
+Der Aufbau des Workflowprozesses gliedert sich in drei rollenspezifische Zeilen (Lane). Diese werden im Folgenden in der Bearbeitungsreihenfolge beschrieben.
+
+Ein/e Sachbearbeiter/in ist der Ausgangspunkt für neue Stellungnahmeprozesse. Diese/r legt eine neue Stellungnahme an und reichert diese mit Informationen in Form von Dokumenten aus der Anfrage oder auch, für die Bearbeitung hilfreiche, Notizen an. Eine erste Version der Stellungnahmeantwort dient als Gerüst für die weiteren Bearbeitungsschritte. Zuvor festgelegte benötigte Fachbereichsinformationen werden anschließend durch die Mitarbeiter/innen der jeweiligen Fachbereiche dem Stellungnahmeprozess angefügt sowie die Stellungnahmeantwort erweitert. Sind alle Beiträge der Fachbereiche enthalten kann diese durch eine/n Sachbearbeiter/in zur Bearbeitung weitergeführt werden. Nach Überprüfung auf Vollständigkeit wird die Stellungnahme erstellt und einem/einer Genehmiger/in zur Prüfung vorgelegt. Diese/r verifiziert die Stellungnahme und schließt den Prozess ab. Im Fehlerfall ist noch eine Korrektur der Versandparameter und eine Finalisierung durch eine/n Sachbearbeiter/in erforderlich.
+
+Die Teilaufgaben werden im Folgenden genauer beschrieben.
+
+Neue Stellungnahme::
+
+Das Anlegen eines neuen Stellungnahmeprozesses startet die Bearbeitung der Stellungnahmeantwort. Hierbei werden grundlegende Informationen festgelegt und Eingangsdokumente angehängt.
+Diese Aufgage kann nur durch eine/n Sachbearbeiter/in angestoßen werden.
+Eine neue Stellungnahme kann einerseits aus einer <<Neue Stellungnahme aus Email, Email>> aus dem Stellungnahmeposteingang überführt, oder durch das <<Neue Stellungnahme, manuelle>> Eintragen einer per Post erhaltenen Anfrage angelegt werden.
+
+Ergänzen Infodatensatz und Entscheidung Zuständigkeit::
+
+Der Infodatensatz umschreibt die Basisinformationen, welche zur Entscheidungsgrundlage der Zuständigkeit Verwendung finden. Darauf aufbauend entscheidet ein/e Sachbearbeiter/in ob der Sachverhalt in die Zuständigkeit des Energieversorgers fällt. Die Entscheidung kann im Verlauf der Bearbeitung der Stellungnahmeantwort zum Beispiel im Genehmigungsprozess erneut beeinflusst werden, was eine erneute Bearbeitung der Prozessaufgaben erfordert.
+Eine detaillierte Erläuterung der Eingabemaske ist in Abschnitt <<Ergänzen Infodatensatz und Entscheidung Zuständigkeit>> beschrieben.
+
+Aufbereiten der Daten und Erstellen des Workflowdatensatz::
+
+Bei Zuständigkeit durch den Energieversorger ergänzt ein/e Sachbearbeiter/in den Stellungnahmeprozess um weitere Informationen. Dazu zählen Positionsdaten und die Auswahl der für die Stellungnahme erforderlichen sowie optionalen Fachbereiche.
+Eine detaillierte Erläuterung der Eingabemaske ist in Abschnitt <<Aufbereiten der Daten und Erstellen des Workflowdatensatz>> beschrieben.
+
+Erstellen Entwurf Stellungnahme::
+
+Vor dem Anreichern durch die Fachbereiche kann die/der Sachbearbeiter/in eine erste Rohfassung der Stellungnahmeantwort anlegen.
+Eine detaillierte Erläuterung der Eingabemaske ist in Abschnitt <<Erstellen Entwurf Stellungnahme>> beschrieben.
+
+Anreichern durch die Fachbereiche::
+
+In diesem Bearbeitungsschritt steuern die vorher festgelegten erforderlichen und optionalen Fachbereiche ihre Stellungnahmeinformationen in Form von Ausgangsdokumenten sowie Anpassungen des Stellungnahmeantworttext bei.
+Dieser Arbeitsschritt wird von allen Fachbereichen geteilt, wobei immer nur ein/e Nutzer/in zeitgleich Änderungen vornehmen kann.
+Eine detaillierte Erläuterung der Eingabemaske für die Fachbereichsmitarbeiter(innen) ist in Abschnitt <<Anreichern durch die Fachbereiche - Fachbereichsmitarbeiter/in>> beschrieben.
+Sind alle benötigten Beiträge der Fachbereiche eingebracht worden, oder sind Änderungen an den Stellungnahmedaten erforderlich kann ein(e) Stellungnahmensachbearbeiter den Stellungnahmeprozess in den nächsten Bearbeitungsschritt, wie in <<Anreichern durch die Fachbereiche - Sachbearbeiter/in>> beschrieben, überführen.
+
+Prüfen und Verfassen der Antwort::
+
+Nach der Überführung aus dem vorherigen Bearbeitungsschritt bieten sich drei grundlegende Optionen für die/den Sachbearbeiter/in.
+Sind weitere Beistellungen der Fachbereiche erforderlich kann ein/e Sachbearbeiter/in einen Kommentar dazu anfügen und den Bearbeitungszustand des jeweiligen Fachbereichs anpassen. Werden grundlegendere Anpassungen der Stellungnahme erforderlich kann ein/e Sachbeareiter/in diese in die Aufgabe "Ergänzen Infodatensatz und Entscheiden Zuständigkeit" überführen und die erforderlichen Anpassungen in den jeweiligen Aufgabeschritten durchführen. Sind alle erforderlichen Informationen zusammengetragen, finalisiert der/die Sachbearbeiter/in die Stellungnahme und legt sie zur Genehmigung vor.
+Eine detaillierte Erläuterung der Eingabemaske ist in Abschnitt <<Prüfen und Verfassen der Antwort>> beschrieben.
+
+Verfassen der Negativantwort::
+
+Entscheidet ein/e Sachbearbeiter/in, dass der Energievorsorger für ein Anliegen nicht zuständig ist, wird eine negative Antwort durch die/den Sachbearbeiter/in verfasst und anschließend zur Genehmigung vorgelegt. Auch hier kann der/die Sachbearbeiter/in entscheiden, dass grundlegende Anpassungen an den Stellungnahmeinformationen nötig sind und den Stellungnahmeprozess wieder in die Aufgabe "Ergänzen Infodatensatz und Entscheiden Zuständigkeit" überführen.
+Eine detaillierte Erläuterung der Eingabemaske ist in Abschnitt <<Verfassen der Negativantwort>> beschrieben.
+
+
+Prüfen und Genehmigen der Antwort::
+
+Für die Finalisierung des Stellungnahmeprozesses ist eine Genehmigung durch eine/n Genehmiger/in nötig. Diese/r überprüft erneut die Stellungnahme- oder Negativantwort auf Korrektheit. Sind weitere Bearbeitungsschritte nötig, überführt der/die Genehmiger/in den Stellungnahmeprozess wieder in die Aufgabe "Ergänzen Infodatensatz und Entscheiden Zuständigkeit". Darüber hinaus kann diese/r einen Kommentar über die erforderlichen Anpassungen sowie Ablehnungsgründe abgeben. Wird die Stellungnahme genehmigt wird diese per Email zusammen mit den zum Versand hinterlegten Dokumenten an die festgelegte Email-Adresse versendet. Bei erfolgreichem Versand ist der Stellungnahmeprozess damit abgeschlossen.
+Eine detaillierte Erläuterung der Eingabemaske ist in Abschnitt <<Prüfen und Genehmigen der Antwort>> beschrieben.
+
+Versenden der Antwort::
+
+Für den Fall, dass die Stellungnahme nicht erfolgreich per Email versendet werden konnte, kann ein/e Sachbearbeiter/in erneut die Versanddaten prüfen und den Versand per Email anstoßen. Für den manuellen Versand per Post kann die Stellungnahmeantwort sowie die Anlagen für den Versand heruntergeladen und der Stellungnahmeprozess abgeschlossen werden. 
+Eine detaillierte Erläuterung der Eingabemaske ist in Abschnitt <<Versenden der Antwort>> beschrieben.
+
+<<<
+
+== Nutzeroberfläche
+
+Im Folgenden wird der generelle Aufbau der Nutzeroberfläche erläutert. Zunächst werden die Ansichten, die für alle Anwederrollen zugänglich sind, ausgeführt. Anschließend wird in den rollenspezifischen Abschnitten genauer auf die aufgabenspezifischen Ansichten und die Administratoransicht eingegangen.
+
+=== Genereller Aufbau
+
+.Genereller Aufbau der Nutzeroberfläche
+image::userdoc/overview.png[800]
+
+Die Nutzeroberfläche gliedert sich in die grundlegenden Teile _Titelleiste_ und _Inhalt_, die im folgenden beschrieben werden.
+
+==== Titelleiste
+
+.Titelleiste
+image::userdoc/titlebar.png[800]
+
+Die Titelleiste beinhaltet die Navigation zwischen den Hauptansichten, sowie die Anzeige des/der aktuell angemeldeten Anwenders/Anwenderin.
+
+image::userdoc/titlebar-navigation.png[width=200]
+In der Titelleiste werden je nach zugewiesenen Rollen Navigationselemente für die verfügbaren Ansichten angezeigt. Generelle Ansichten sind das Dashboard, die Suche sowie die Kartenübersicht. Sachbearbeiter/innen haben darüber hinaus die Ansicht des Email-Postfachs, die Erstellung einer Stellungnahme sowie die Adminansicht zur Auswahl. Die Rolle Administrator/in ermöglicht ebenso den Zugriff auf die Adminansicht.
+
+
+.Titelleiste Navigation
+[cols="1,5"]
+|===
+a|image:userdoc/button-home.png[20,20]| <<Dashboard>> 
+a|image:userdoc/button-search.png[20,20]| <<Detailsuche>> 
+a|image:userdoc/button-map.png[20,20]| <<Kartensuche>> 
+a|image:userdoc/button-mail.png[20,20]| <<Posteingang>> 
+a|image:userdoc/button-newstatement.png[20,20]| <<Neue Stellungnahme>> 
+a|image:userdoc/button-settings.png[20,20]| <<Adminoberfläche>> 
+a|image:userdoc/button-help.png[20,20]| <<Benutzerhandbuch>> 
+|===
+
+Der Button für die Ansicht auf der man sich aktuell befindet wird dunkler angezeigt. In dem Fall aus obiger Tabelle ist es das Dashboard.
+
+image::userdoc/titlebar-user.png[width=120]
+Über die Anzeige des aktuell angemeldeten Nutzers kann sich ein/e Anwender/in vom Stellungnahmemodul abmelden.
+
+==== Inhalt
+
+Der Inhalt ist je nach ausgewählter Hauptansicht oder Aufgabe unterschiedlich ausgeprägt.
+Darin befindet sich links die Ansicht des konkreten Inhalts. Sind weitere Navigations oder Bearbeitungsschritte möglich, werden diese durch Buttons in einer Seitenleiste am rechten Rand repräsentiert.
+
+Die Seitenleiste hat eine grundlegend dreigeteilte Struktur (oben, mittig, unten) in der jeweils Buttons oder Information angezeigt werden. Navigationselemente, oder Bearbeitungsschritte die nicht den Abschluss einer Aufgabe erzeugen werden oben angezeigt. Erzeugt ein Button einen Abschluss einer Aufgabe wird dieser in der unteren Hälfte der Seitenleiste angezeigt. Die Mitte des Seitenmenüs dient der Anzeige von Fehlern oder wichtigen Informationen.
+
+==== Popup
+.Popup
+image::userdoc/popup.png[width=150]
+
+In unerwarteten Fehlerfällen, die oft nicht durch die/den Anwender/in selbst behoben werden kann, wird ein Popup (Toast) in der rechten oberen Ecke angezeigt, welches alle anderen visuellen Elemente überlagert.
+
+<<<
+
+=== Dashboard
+
+Das Dashboard ist in der <<Titelleiste,Navigationsleiste>> über den Button image:userdoc/button-home.png[25,25] zu erreichen und wird beim Öffnen des Stellungnahmemoduls angezeigt.
+
+.Dashboard
+image::userdoc/dashboard-all.png[800]
+
+Diese Ansicht dient für einen schnellen Überblick über alle aktuell laufenden Stellungnahmeprozesse. Diese werden in mehrere Kategorien aufgeteilt. Diese Kategorien werden als Tabellen dargestellt und zeigen eine gefilterte Ansicht der Stellungnahmen. Je nach Rolle des Anwenders werden unterschiedliche, den Anwendungsfällen der jeweiligen Nutzerrolle entsprechende, Kategorien angezeigt. Die unterste Tabelle beinhaltet alle weiteren Stellungnahmeprozesse, die nicht in eine der vorherigen Kategorien passen.
+
+Des Weiteren besteht die Möglichkeit die angezeigten Stellungnahmeprozesse mit dem Button image:userdoc/dashboard-button-own.png[] auf diejenigen zu reduzieren, an denen der Anwender bereits im Vorfeld mitgewirkt hat.
+
+Jeder Tabelleneintrag beschreibt die wichtigsten Parameter für eine erste Einortung durch den Anwender.
+
+.Dashboard Tabelleneintrag
+image::userdoc/dashboard-entry.png[]
+
+Die jeweiligen Spalten werden im Folgenden erläutert.
+
+.Dashboard Tabellenaufbau
+[options="header",cols="1,3"]
+|===
+|Bezeichner|Beschreibung
+|ID| Eindeutiges Identifikationsmerkmal einer Stellungnahme, welches _Unser Zeichen_ entspricht.
+|Titel| Titelbezeichnung der Stellungnahme
+|Ort| Ort des Stellungnahmesachverhalts
+|Ortsteil| Ortsteil des Stellungnahmesachverhalts
+|Vorganstyp| Art des Vorgangs
+|Fristende| Datum der Frist
+|Bearbeitungsstatus| Aktuelle Prozessaufgabe
+|Antworten der Fachbereiche| Anzeige der erfolgten Fachbereichsbeiträge zu den Erforderlichen
+a|image:userdoc/button-goto-statement.png[20,20]| Absprung in die <<Detailansicht>> der betreffenden Stellungnahme
+|===
+
+Bei nahendem Fristende wird dies zusätzlich im jeweiligen Tabelleneintrag mit einem Ausrufezeichen hervorgehoben.
+
+.Dashboard nahendes Fristende
+image::userdoc/dashboard-entry-due.png[width=150]
+
+<<<
+
+=== Detailsuche
+
+Bereits abgeschlossene Stellungnahmeprozesse werden nicht länger auf dem Dashboard angezeigt. Um diese zu finden kann die Detailsuche verwendet werden.
+Die Detailsuche ist in der <<Titelleiste,Navigationsleiste>> über den Button image:userdoc/button-search.png[25,25] zu erreichen.
+
+.Detailsuche
+image::userdoc/search.png[]
+
+Die Suchfunktion ermöglicht eine Suche über die wesentlichen Stellungnahmeparameter. Das Textfeld ermöglicht eine Präzisierung der Suchergebnisse durch eine Verkettung von Suchbegriffen. Mehrere Suchbegriffe werden dazu mit einem Leerzeichen getrennt aneinander gereiht.
+
+Das Suchergebnis kann durch weitere Suchparameter verfeinert werden. Ein Beispiel dafür ist der _Vorgangstyp_. Jeder dieser Suchparameter kann durch einen Klick auf den Beschreibungstext aktiviert und wieder deaktiviert werden. In obiger Abbildung sind die Suchparameter _Vorgangstyp_, _Erstellungsdatum bis_ sowie _Eingang bis_ aktiviert.
+
+.Detailsuche Suchergebnis
+image::userdoc/search-result.png[]
+
+Die Suchergebnisse werden in einer Tabellenform mit den wichtigsten Identifikationsmerkmalen präsentiert.
+Bei einer größeren Anzahl an Suchergebnissen können sich diese auf mehrere Seiten erstrecken, welche über die Seitennavigation am unteren Tabellenrand umgeblättert werden.
+
+Die jeweiligen Spalten werden im folgenden genauer erläutert:
+
+.Detailsuche Tabellenaufbau
+[options="header",cols="1,3"]
+|===
+|Bezeichner|Beschreibung
+|ID| Eindeutiges Identifikationsmerkmal einer Stellungnahme welches _Unser Zeichen_ entspricht.
+|Titel| Titelbezeichnung der Stellungnahme
+|Ort| Ort des Stellungnahmesachverhalts
+|Ortsteil| Ortsteil des Stellungnahmesachverhalts
+|Vorganstyp| Art des Vorgangs
+|Erstellungsdatum| Datum der Erstellung des Briefes/der Email
+|Eingangdatum| Datum bei Erhalt des Briefs/der Email
+|Fristende| Datum der Frist
+a|image:userdoc/button-goto-statement.png[20,20]| Absprung in die <<Detailansicht>> der betreffenden Stellungnahme
+|===
+
+<<<
+
+=== Kartensuche
+Die Kartensuche bietet einen Überblick aller der Stellungnahmen in einem ausgewählten Gebiet.
+Sie ist in der <<Titelleiste,Navigationsleiste>> über den Button image:userdoc/button-map.png[25,25] zu erreichen.
+
+.Kartensuche
+image::userdoc/mapsearch.png[]
+
+In dieser Ansicht werden die Suchergebnisse an ihrer hinterlegten Geoposition auf der Karte markiert. Um die dargestellten Stellungnahmen weiter einzugrenzen können Filterparameter gesetzt werden. Die angezeigten Stellungnahmen können nach Vorgangstyp und dem Fristzeitraum eingegrenzt werden. Die Suchparameter können durch einen Klick auf den Beschreibungstext aktiviert und wieder deaktiviert werden. In obiger Abbildung ist der Suchparameter _Frist bis_ aktiviert.
+
+Mittels Klick auf einen Stellungnahme-Pin wird die Stellungnahme ID (_Unser Zeichen_) als auch der Titel der Stellungnahme als Link angezeigt. Ein Klick auf diesen Link leitet auf die <<Detailansicht>> der selektierten Stellungnahme weiter.
+
+Durch einen Klick auf den Button _Im GIS öffnen_ kann der aktuelle Kartenausschnitt im konfigurierten GIS geöffnet werden.
+
+<<<
+
+=== Detailansicht
+
+Die Detailansicht bietet einen Überblick über die Stellungnahmedetails. Sie ist darüber hinaus Ausgangspunkt für anstehende Bearbeitungsschritte des Stellungnahmeprozesses.
+
+.Detailansicht
+image::userdoc/details.png[]
+
+Der grundlegende Aufbau der Detailansicht gliedert sich in zwei Teile. In der Hauptansicht werden die Stellungnahmedetails aufgelistet und im Seitenmenü werden Navigationsmöglichkeiten und mögliche Bearbeitungsschritte angezeigt. Befindet sich die Stellungnahme zum Zeitpunkt des Aufrufs in Bearbeitung durch einen anderen Anwender, so wird dies in dem Informationsbereich des Seitenmenüs angezeigt. Eine zeitgleiche Bearbeitung ist in diesem Fall nicht möglich.
+
+Die Auflistung der Stellungnahmedetails gliedert sich in die Blöcke _Allgemeine Informationen_, _Geographische Position_, _Eingangsdokumente_, _Bearbeitungsstatus der Fachbereiche_, _Ausgangsdokumente_, _Kommentare_, _Prozessinformationen_, _Verknüpfte Vorgänge_ und _Abwägungsergebnis_, die im Folgenden beschrieben werden. Abhängig vom Bearbeitungsfortschritt werden einzelne Detailblöcke nicht angezeigt.
+
+[.lead]
+Allgemeine Informationen
+
+In diesem Detailblock werden die Basisinformationen der Stellungnahme sowie die Kontaktinformationen des Auftraggebers aufgeführt.
+
+.Detailblock Allgemeine Informationen
+image::userdoc/details-general-info.png[]
+
+[.lead]
+Geographische Position
+
+Die Kartenansicht des Detailblocks Geographische Position stellt eine Ortsansicht des betreffenden Stellungnahmesachverhalts dar.
+
+.Detailblock Geographische Position
+image::userdoc/details-geo-position.png[]
+
+Darüber hinaus kann durch den Button _Im GIS öffnen_ auf der Kartenansicht der Ausschnitt im GIS geöffnet werden.
+
+[.lead]
+Eingangsdokumente
+
+Tiefergehende Information zum Stellungnahmensachverhalt sind in diesem Detailblock in Form von herunterladbaren Dokumenten aufgeführt, die beim Anlegen oder Erweitern der Stellungnahme hinterlegt wurden. Wenn hinterlegt, werden in der Auflisten auch sogenannte _Marker_ (Tags) zu den Dokumenten angezeigt, die diese klassifizieren.
+
+Wurde die Stellungnahme aus dem Emailpostfach erstellt und dabei der Emailtext als Anhang überführt wird dieser gesondert als mailText.txt aufgeführt. Alle weiteren überführten Attachments aus der Email sind gesondert als Email-Dokumente klassifiziert.
+
+.Detailblock Eingangsdokumente
+image::userdoc/details-documents.png[]
+
+Mittels Klick auf den Button image:userdoc/button-download.png[20,20] kann das Dokument herunter geladen werden.
+
+[.lead]
+Bearbeitungsstatus der Fachbereiche
+
+Dieser Detailblock zeigt den aktuellen Bearbeitungsstand durch die erforderlichen und optionalen Fachbereiche dar. Abgehakte Fachbereiche haben die Stellungnahme bereits mit ihren Informationen angereichert. In der Blocküberschrift wird ein Indikator für den Bearbeitungsstand durch die Fachbereiche angezeigt.
+
+.Detailblock Bearbeitungsstatus der Fachbereiche
+image::userdoc/details-contribution-state.png[]
+
+[.lead]
+Ausgangsdokumente
+
+Hier werden alle Dokumente, die für den Versand an die Stellungnahme hinterlegt wurden, aufgelistet. Nach der Erstellung der Stellungnahmeantwort findet sich hier auch das Stellungnahmedokument als PDF.
+
+.Detailblock Ausgansdokumente
+image::userdoc/details-outbox-documents.png[]
+
+Mittels Klick auf den Button image:userdoc/button-download.png[20,20] kann das Dokument herunter geladen werden.
+
+[.lead]
+Kommentare
+
+Dieser Detailblock dient der Kommunikation wichtiger Informationen zwischen den verschiedenen Bearbeitern der Stellungnahme. Beispiele dafür sind die intern kommunizierten Beweggründe und Einschätzungen für die Zuständigkeitsentscheidung, noch benötigte Informationen als Hinweis für die Fachbereiche sowie eine Erklärung des Ablehnungsgrunds im Falle einer Nichtgenehmigung im Genehmigungsprozessschritt.
+
+.Detailblock Kommentare
+image::userdoc/details-comments.png[]
+
+Kommentare können jederzeit von Anwendern des Stellungnahmemoduls verfasst und wieder gelöscht werden, wobei sich das Löschen auf die eigenen Kommentare beschränkt.
+
+[.lead]
+Prozessinformationen
+
+Diese Ansicht bietet einen Überblick über den Bearbeitungsstatus des Stellungnahmeprozesses. In der graphischen Darstellung kann der gesamte Stellungnahmeprozessworkflow angezeigt werden. Ist der Stellungnahmeprozess noch nicht abgeschlossen wird die aktuelle Aufgabe farblich hervorgehoben. Die Tabelle auf der rechten Seite zeigt die Historie des Stellungnahmeprozesses mit Einträgen der jeweiligen Aufgaben, dem Abschlussdatum und der Kennung des jeweiligen Bearbeiters.
+
+.Detailblock Prozessinformationen
+image::userdoc/details-process-state.png[]
+
+[.lead]
+Verknüpfte Vorgänge
+
+Hier werden Vorgänger- und Nachfolgerstellungnahmen aufgelistet die mit der Stellungnahme verknüpft wurden.
+
+.Detailblock Verknüpfte Vorgänge
+image::userdoc/details-linked-statements.png[]
+
+Mittels Klick auf den Button image:userdoc/button-goto-statement.png[20,20] des jeweiligen Vorgänger- oder Nachfolgereintrags kann in die <<Detailansicht>> der betreffenden Stellungnahme abgesprungen werden. Diese wird dabei in einem neuen Browsertab geöffnet.
+
+[.lead]
+Abwägungsergebnis
+
+Hier werden die Abwägungsergebnisdokumente hochgeladen und aufgelistet.
+
+Dieser Detailblock wird bis zur Fertigstellung des Stellungnahmeprozesses nicht angezeigt.
+
+.Detailblock Abwägungsergebnis
+image::userdoc/details-consideration.png[]
+
+Mittels Klick auf den Button image:userdoc/button-download.png[20,20] kann das jeweilige Dokument herunter geladen werden. Das Anfügen des Abwägungsergebnisses ist nur für eine/n Sachbearbeiter/in möglich.
+
+=== Benutzerhandbuch
+
+Das Benutzerhandbuch kann in der <<Titelleiste,Navigationsleiste>> über den Button image:userdoc/button-help.png[25,25] angezeigt werden.
+
+<<<
+
+=== Ansichten Sachbearbeiter/in
+
+Der/Die Sachbearbeiter/in hat wie in Abschnitt <<Prozess>> beschrieben folgende den Bearbeitungsschritten der Stellungnahme zuordenbaren Ansichten.
+
+==== Posteingang
+Diese Ansicht zeigt den Posteingang des Emailpostfachs für Stellungnahmeanfragen.
+Der Posteingang ist in der <<Titelleiste,Navigationsleiste>> über den Button image:userdoc/button-mail.png[25,25] zu erreichen.
+
+.Posteingang
+image::userdoc/inbox.png[]
+
+Die Ansicht teilt sich in zwei Bereiche auf. Der linke Bereich stellt eine Liste der Emails mit Betreff, Datum und Sender dar. Diese kann bei Bedarf mittels Klick auf den Button image:userdoc/button-mail-refresh.png[20,20] aktualisiert werden. Durch Klick auf eine Email wird der rechte Bereich mit dem Inhalt der jeweiligen Email gefüllt. Diese hat einen typischen Aufbau, wie er auch in diversen Email-Programmen Verwendung findet. Eingangs werden Betreff und Absenderinformationen sowie das Sendedatum angezeigt. Danach folgt der Email Text. Im unteren Bereich befindet sich eine Liste der Anhänge, welche durch einen Klick auf den jeweiligen Button image:userdoc/button-download.png[20,20] heruntergeladen und betrachtet werden kann.
+
+===== Spam
+
+Trotz möglichen Filtermechanismen von unerwünschten Emails (ugs. Spam) seitens des Mailservers können unerwünschte Emails oder Rückantworten, die nicht in eine Stellungnahme überführt werden, im Posteingang auftauchen. Diese können mit dem Löschen Button image:userdoc/button-mail-delete.png[20.20] aus dem Posteingang verschoben werden.
+
+===== Als Stellungnahme überführen
+
+Möchte man aus einer Email einen neuen Stellungnahmeprozess anstoßen leitet ein Klick auf den Button image:userdoc/button-mail-to-statement.png[width=150] auf die Ansicht <<Neue Stellungnahme aus Email>> weiter in der ein neuer Stellungnahmeprozess angelegt werden kann.
+
+<<<
+
+==== Neue Stellungnahme aus Email
+
+.Neue Stellungnahme aus Email
+image::userdoc/mailtostatement.png[]
+
+Der Aufbau des Inhalts gliedert sich in die Abschnitte _Allgemeine Informationen_, _Kontakt_ und _Eingangsdokumente_.
+
+===== Allgemeine Informationen
+
+Im Abschnitt _Allgemeine Informationen_ werden die Basisinformationen des Stellungnahmesachverhalts festgelegt.
+Einige der Informationen werden bereits mit Werten aus der referenzierten Email vorbelegt und können durch die/den Anwender/in angepasst werden.
+
+[options="header", cols="1,2"]
+|====
+|Bezeichnung|Definition
+|Titel| Sprechendes Unterscheidungsmerkmal welches nur im internen Gebrauch verwendet wird
+|Art des Vorgangs| Kategoriesierung der Stellungnahme
+|Ort| Name des Orts
+|Ortsteil| Name des Ortsteils
+|Erstellungsdatum| Erstellungsdatum des Versenders
+|Eingangsdatum| Datum des Stellungnahmeeingangs
+|Frist| Datum der Frist
+|Referenzzeichen| Optionales Zeichen des Versenders - _Ihr Zeichen_ auf der Stellungnahmeantwort
+|====
+
+Während der Eingabe der Parameter Ort und Ortsteil werden diese mit hinterlegten Einstellungen abgeglichen und das Ergebnis der betroffenen Sparten als Text ausgegeben. Konnten Sparten aus den Eingabeparametern Ort und Ortsteil ausgemacht werden, werden diese mit dem Text "In diesem Ortsteil... folgende Sparten: ..." aufgeführt. Wenn für die Eingabe keine Konfiguration gefunden wurde, wird der Text "Es konnten keine Sparten ausgemacht werden" angezeigt.
+
+===== Kontakt
+
+Es muss ein valider Kontakt für die Stellungnahme aus der Kontaktliste ausgewählt werden. Kann zu der Senderadresse ein passender Kontakt gefunden werde, so wird dieser vorselektiert.
+Ist dies nicht der Fall, so kann mittels Suchfeld die Liste der verfügbaren Kontakte gefiltert werden. Auf der rechten Seite sind die Kontaktdetails des aktuell gewählten Kontakts aufgeführt.
+
+Lässt sich kein passender Kontakt finden muss er im Kontaktstammdatenmodul angelegt werden. Ein Klick auf den Button image:userdoc/button-new-contact.png[width=100] öffnet das Kontaktaktstammdatenmodul in einem neuen Browsertab. Nach erfolgreichem Anlegen eines neuen Kontakts sollte dieser mittels Suchfunktion aufgelistet werden.
+
+TIP: Ein valider Kontakt ist ein *Ansprechpartner* mit *Anschrift* und *Email-Adresse (opt.)* der einem *Unternehmen* zugewiesen ist.
+
+===== Eingangsdokumente
+
+Im Block Eingangsdokumente werden zur Bearbeitung erforderliche Anhänge verwaltet. Hier können neben den Anhängen der referenzierten Email auch eigene Dokumente der Stellungnahme hinzugefügt und mit Merkern (Tags) annotiert werden.
+
+
+.Neue Stellungnahme Eingangsdokumente Email-text
+image::userdoc/mailtostatement-mailtext.png[width=200]
+
+Soll der Email-Text nicht im Stellungnahmemodul hinterlegt werden kann er mittels Checkbox deselektiert werden. Nach dem Anlegen der Stellungnahme ist dieser als "mailText.txt" in der Liste der Eingangsdokumente verfügbar.
+
+.Neue Stellungnahme Eingangsdokumente Email-Anhänge
+image::userdoc/mailtostatement-mailattachments.png[width=300]
+
+Nicht benötigte Email-Angänge können mittels Checkbox deselektiert werden. Diese werden anschließend nicht im Stellungnahmemodul hinterlegt.
+
+
+.Neue Stellungnahme Eingangsdokumente hinzufügen
+image::userdoc/mailtostatement-attachments.png[width=300]
+
+Werden weitere Dokumente für die Bearbeitung benötigt können diese im Bereich _Dokumente hinzufügen_ gesetzt werden.
+
+===== Seitenmenü
+
+Wie in Abschnitt <<Seitenmenü>> beschrieben werden darin die inhaltsspezifischen Elemente in mehreren Gruppen angeordnet.
+Sie haben folgende Funktionalität:
+
+[cols="1,2"]
+|===
+a|image:userdoc/button-back-to-inbox.png[width=150]| Navigation zum <<Posteingang>>. Eine Stellungnahme wird nicht angelegt
+a|image:userdoc/button-negative-response.png[width=150]| Netzbetreiber ist nicht zuständig. Stellungnahme mit Dokumenten anlegen und zur <<Verfassen der Negativantwort>> wechseln
+a|image:userdoc/button-set-infodata.png[width=150]| Netzbetreiber ist zuständig. Stellungnahme mit Dokumenten anlegen und zur <<Aufbereiten der Daten und Erstellen des Workflowdatensatz>> wechseln
+|===
+
+<<<
+
+==== Neue Stellungnahme
+
+Um in die Ansicht zu gelangen zum Anlegen einer neuen Stellungnahme, ist in der <<Titelleiste,Navigationsleiste>> der Button image:userdoc/button-newstatement.png[25,25] zu drücken.
+
+.Neue Stellungnahme
+image::userdoc/newstatement.png[]
+
+Der Aufbau des Inhalts gliedert sich in die Abschnitte _Allgemeine Informationen_, _Kontakt_ und _Eingangsdokumente_.
+
+===== Allgemeine Informationen
+
+Im Abschnitt _Allgemeine Informationen_ werden die Basisinformationen des Stellungnahmesachverhalts festgelegt.
+
+[options="header", cols="1,2"]
+|====
+|Bezeichnung|Definition
+|Titel| Sprechendes Unterscheidungsmerkmal, welches nur im internen Gebrauch verwendet wird
+|Art des Vorgangs| Kategorisierung der Stellungnahme
+|Ort| Name des Orts
+|Ortsteil| Name des Ortsteils
+|Erstellungsdatum| Erstellungsdatum des Versenders
+|Eingangsdatum| Datum des Stellungnahmeeingangs
+|Frist| Datum der Frist
+|Referenzzeichen| Optionales Zeichen des Versenders - _Ihr Zeichen_ auf der Stellungnahmeantwort
+|====
+
+Während der Eingabe der Parameter Ort und Ortsteil werden diese mit hinterlegten Einstellungen abgeglichen und das Ergebnis der betroffenen Sparten als Text ausgegeben. Konnten Sparten aus den Eingabeparametern Ort und Ortsteil ausgemacht werden, werden diese mit dem Text "In diesem Ortsteil... folgende Sparten: ..." aufgeführt. Wenn für die Eingabe keine Konfiguration gefunden wurde, wird der Text "Es konnten keine Sparten ausgemacht werden" angezeigt.
+
+===== Kontakt
+
+Es muss ein valider Kontakt für die Stellungnahme aus der Kontaktliste ausgewählt werden.
+Die Liste der verfügbaren Kontakte kann mittels Suchfeld eingeschränkt werden. Auf der rechten Seite sind die Kontaktdetails des aktuell gewählten Kontakts aufgeführt.
+
+Lässt sich kein passender Kontakt finden muss er im Kontaktstammdatenmodul angelegt werden. Ein Klick auf den Button image:userdoc/button-new-contact.png[width=100] öffnet das Kontaktaktstammdatenmodul in einem neuen Browsertab. Nach erfolgreichem Anlegen eines neuen Kontakts sollte dieser mittels Suchfunktion aufgelistet werden.
+
+TIP: Ein valider Kontakt ist ein *Ansprechpartner* mit *Anschrift* und *Email-Adresse (opt.)* der einem *Unternehmen* zugewiesen ist.
+
+===== Eingangsdokumente
+
+Im Block Eingangsdokumente werden zur Bearbeitung erforderliche Anhänge verwaltet.
+
+.Neue Stellungnahme Eingangsdokumente hinzufügen
+image::userdoc/newstatement-attachments.png[]
+
+Die Dokumente können im Bereich _Dokumente hinzufügen_ gesetzt und mit Merkern (Tags) annotiert werden.
+
+===== Seitenmenü
+
+Wie im Abschnitt <<Seitenmenü>> beschrieben werden darin die inhaltsspezifischen Elemente in mehreren Gruppen angeordnet.
+Sie haben folgende Funktionalität:
+
+[cols="1,2"]
+|===
+a|image:userdoc/button-back-to-inbox.png[width=150]| Navigation zum <<Posteingang>>. Eine Stellungnahme wird nicht angelegt
+a|image:userdoc/button-negative-response.png[width=150]| Netzbetreiber ist nicht zuständig. Stellungnahme mit Dokumenten anlegen und zur <<Verfassen der Negativantwort>> wechseln
+a|image:userdoc/button-set-infodata.png[width=150]| Netzbetreiber ist zuständig. Stellungnahme mit Dokumenten anlegen und zur <<Aufbereiten der Daten und Erstellen des Workflowdatensatz>> wechseln
+|===
+
+<<<
+
+==== Ergänzen Infodatensatz und Entscheidung Zuständigkeit
+
+Die Ansicht _Ergänzen Infodatensatz und Entscheidung Zuständigkeit_ gestaltet sich analog zu den Ansichten <<Neue Stellungnahme>> und <<Neue Stellungnahme aus Email>>, je nachdem ob eine Email aus dem Posteingang Ausgangsbasis des Stellungnahmeprozesses ist oder nicht. Diese Ansicht wird nur angezeigt, wenn im Verlauf des Stellungnahmeprozess eine erneute Bearbeitung dieser Daten erforderlich wird oder keine Genehmigung der Stellungnahmeantwort erteilt wurde.
+
+<<<
+
+==== Verfassen der Negativantwort
+
+Die Aufgabe _Verfassen der Negativantwort_ umfasst die Bearbeitung einer negativen Stellungnahmeantwort. Diese Ansicht folgt dem Aufbau der Detailansicht und bietet beim Bearbeiten einen schnellen Zugriff auf die wesentlichen Stellungnahmeinformationen.
+
+.Verfassen der Negativantwort
+image::userdoc/negativeresponse.png[]
+
+Die für die Bearbeitung nötigen Blöcke _Entwurf der Stellungnahme_ sowie _Anhänge für den Versand_ sind initial ausgeklappt.
+
+===== Entwurf der Stellungnahme
+
+In diesem Block wird der Antworttext verfasst.
+
+.Entwurf der Stellungnahme
+image::userdoc/negativeresponse-textedit.png[]
+
+Die Ansicht teilt sich in zwei vertikale Hälften auf. Die linke Hälfte zeigt die aktuelle Textzusammenstellung. Die rechte Hälfte zeigt alle verfügbaren Textabschnitte, die in die linke Hälfte übernommen werden können.
+
+Zur Bearbeitung stehen mehrere Textabschnittarten zur Verfügung.
+
+.Textabschnitt Arten
+[options="header", cols="1,2"]
+|===
+|Typ|Beschreibung
+|Zeilenumbruch| Nachfolgender Text beginnt am Zeilenanfang
+|Seitenumbruch| Nachfolgender Text beginnt auf nächster Seite
+|Freitext| Durch den Anwender erstellter Text
+|Textblock| Vordefinierter Textabschnitt
+|===
+
+Textabschnitte können mittels Drag-and-Drop in ihrer Sortierung umgestaltet werden. Dabei ist darauf zu achten, dass Textblöcke Abhängigkeiten zueinander aufweisen können.
+
+.Textblock Abhängigkeiten
+[options="header", cols="1,2"]
+|===
+|Typ| Beschreibung
+|Reihenfolge| Textblöcke einer Gruppe besitzen eine zueinander festgelegte Reihenfolge
+|Ausschluß| Textblöcke können sich gegenseitig ausschließen
+|Zwingend| Textblöcke können die Verwendung anderer Textblöcke bedingen
+|===
+
+Die Korrektheit der Zusammenstellung der Textabschnitte kann in Seitenmenü validiert werden. Diese werden anschließend rot hervorgehoben und Informationen zur Auflösung gegeben.
+
+Textabschnitte vom Typ Freitext werden wie folgt bearbeitet.
+
+.Freitext Bearbeitung
+image::userdoc/textedit-freetext.png[width=320]
+
+Ein Klick auf den Button image:userdoc/textedit-edit-button.png[16,16] setzt das Freitextfeld in den Editiermodus. In diesem kann nun der Freitext gestaltet werden. Anschließend wird durch ein Deselektieren des Freitextfelds der bearbeitete Text gesetzt. Soll der Inhalt des Freitextfelds geleert werden kann dies mittels des Button image:userdoc/textedit-revert-button.png[16,16] erfolgen.
+
+Im Freitext sowie bei der Bearbeitung von Textblöcken können folgende Textmodifikationen eingebracht werden.
+
+.Textmodifikationen
+[cols="1,5"]
+|===
+|+__kursiv__+ | Mit zwei Unterstrichen (+__+) umrahmter Text wird im Dokument _kursiv_ dargestellt
+|+**fett**+ | Mit zwei Sternen (+**+) umrahmter Text wird im Dokument *fett* dargestellt
+|* Aufzählung | Ein Stern (*) am Zeilenanfang erzeugt einen neuen Aufzählungspunkt
+|===
+
+Textabschnitte vom Typ Textblock werden wie folgt bearbeitet.
+
+.Textblock Bearbeitung
+image::userdoc/textedit-textblock.png[width=340]
+
+Ein Klick auf den Button image:userdoc/textedit-edit-button.png[16,16] setzt den Textblock in den Editiermodus. Der bereits enthaltene Text wird in einen Freitext überführt und kann nun gestaltet werden. Der Textabschnitt behält weiterhin den Typ Textblock mit allen zugehörigen Textblockabhängigkeiten. Durch ein Deselektieren des Textblocks wird der bearbeitete Text als Ersatztext gesetzt. Ein Klick auf den Button image:userdoc/textedit-revert-button.png[16,16] löscht den Ersatztext und stellt den ursprünglichen Textblockinhalt wieder her.
+
+Für eine erste Vorschau der Textzusammenstellung kann mittels Klick auf den Button image:userdoc/textedit-preview-button.png[16,16] eine Textvorschau über die rechte Hälfte eingeblendet werden. Über das Seitenmenü ist zudem eine Vorschaufunktion des generierten PDF-Dokuments möglich.
+
+===== Anhänge für den Versand
+
+Dokumente, die zusätzlich zur negativen Stellungnahmeantwort versendet werden sollen, können in diesem Block angeheftet und mittels _Speichern_ oder _Stellungnahme finalisieren_ zur Stellungnahme hinzugefügt werden.
+
+.Anhänge für den Versand
+image::userdoc/textedit-outbox-docs.png[]
+
+===== Seitenmenü
+
+Wie in Abschnitt <<Seitenmenü>> beschrieben werden darin die inhaltsspezifischen Elemente in mehreren Gruppen angeordnet.
+Sie haben folgende Funktionalität:
+
+[options="header", cols="1,2"]
+|===
+|Button | Beschreibung
+a|image:userdoc/button-back-to-details.png[width=150]| Navigation zur <<Detailansicht>>. Anhänge werden nicht hinzugefügt. Eine Stellungnahmeantwort wird nicht angelegt
+a|image:userdoc/button-save.png[width=150]| Die aktuelle Textzusammenstellung wird gespeichert. Anhänge werden hinzugefügt
+a|image:userdoc/button-validate-textarrangement.png[width=150]| Die aktuelle Textzusammenstellung wird auf Fehler überprüft.
+a|image:userdoc/button-generate-PDF.png[width=150]| Die aktuelle Textzusammenstellung wird auf Fehler überprüft und ein PDF-Dokument zur Vorschau generiert. Die aktuelle Textzusammenstellung wird nicht gespeichert.
+a|image:userdoc/button-enhance-infodata.png[width=150]| Erneute Anpassung der Basisinformationen ist erforderlich. Die Aufgabe wird ohne Speicherung der Textzusammenstellung abgeschlossen.
+a|image:userdoc/button-finalize-statement.png[width=150]| Antwort PDF generieren und überprüfen. Anschließend können neu eingeblendete Buttons zur Freigabe des Dokuments gewählt werden
+|===
+
+<<<
+
+==== Aufbereiten der Daten und Erstellen des Workflowdatensatz
+
+In diesen Stellungnahmeprozessschritt wird der/die Sachbearbeiter/in automatisch nach Erstellung einer Stellungnahme weitergeleitet. Alternativ wird im Seitenmenü der <<Detailansicht>> folgender Button angezeigt.
+[cols="1,2"]
+|===
+a|image:userdoc/button-edit-workflowdata.png[width=150]| Ansicht zur Bearbeitung der Workflowdaten anzeigen
+|===
+
+.Aufbereiten der Daten und Erstellen des Workflowdatensatz
+image::userdoc/workflowdata.png[]
+
+Die für die Bearbeitung nötigen Blöcke _Geographische Position_ sowie _Betroffene Fachbereiche_ sind initial aufgeklappt.
+
+===== Geographische Position
+
+In diesem Block kann für den Stellungnahmesachverhalt eine Position hinterlegt werden. Diese dient als Markierung des betreffenden Gebiets und erlaubt einen schnellen Überblick über die Umgebung in den weiteren Bearbeitungsschritten.
+
+.Geographische Position
+image::userdoc/workflowdata-geographic-pos.png[]
+
+Die Kartenansicht bietet ein gewohntes Nutzerinterface vergleichbarer Kartenanwendungen. In der Suchleiste kann eine erste grobe Suche auf Basis des Orts erfolgen. Wird für die Sucheingabe eine Koordinate gefunden, wechselt die Kartenansicht, zeigt die gefunden Koordinate zentriert an und setzt die Markierung an diese Stelle. Der genaue Ort kann dann anschließend weiter detailliert werden indem der Marker mit erneutem Klick versetzt wird.
+
+Ein Absprung das GIS mit entsprechender Koordinate ist mittels Klick auf den Button image:userdoc/button-open-gis.png[width=80] möglich.
+
+===== Betroffene Fachbereiche
+
+In diesem Block werden die zur Bearbeitung der Stellungnahme benötigten Fachbereiche festgelegt. Ist für die in den Stellungnahme Basisinformationen gesetzten Parametern Ort und Ortsteil eine Auswahl an Fachbereichen im Stellungnahmemodul hinterlegt, so sind diese bereits beim ersten Aufruf vorselektiert.
+
+.Betroffene Fachbereiche
+image::userdoc/workflowdata-departments.png[]
+
+Für die Selektierung jedes Fachbereichs stehen folgende Optionen zur Verfügung.
+[options="header"cols="1,5"]
+|===
+|Zustand | Beschreibung
+a|image:userdoc/checkbox-empty.png[width=16,16]| Fachbereich ist nicht ausgewählt. Bearbeitung für die Stellungnahme ist nicht erforderlich
+a|image:userdoc/checkbox-set.png[width=16,16]| Fachbereich ist ausgewählt. Bearbeitung für die Stellungnahme ist erforderlich 
+a|image:userdoc/checkbox-optional.png[width=16,16]| Fachbereich ist optional. Bearbeitung für die Stellungnahme ist optional
+|===
+
+Die Zustände können mit mehrfachem Klick der Checkbox eingestellt werden. Dabei ist die Reihenfolge wie folgt. Beim ersten Klick der Checkbox wird dieser Fachbereich als erforderlich markiert. Bei einem weiteren Klick ist der Fachbereich nun optional. Der dritte Klick vervollständig den Durchlauf und der Fachbereich ist wieder als nicht erforderlich eingestellt.
+
+===== Seitenmenü
+
+Wie in Abschnitt <<Seitenmenü>> beschrieben werden darin die inhaltsspezifischen Elemente in mehreren Gruppen angeordnet.
+Sie haben folgende Funktionalität:
+
+[options="header", cols="1,2"]
+|===
+|Button | Beschreibung
+a|image:userdoc/button-back-to-details.png[width=150]| Navigation zur <<Detailansicht>>. Anhänge werden nicht hinzugefügt. Eine Stellungnahmeantwort wird nicht angelegt
+a|image:userdoc/button-save.png[width=150]| Die aktuell festgelegte Geoposition und die gewählten Fachbereiche werden gespeichert.
+a|image:userdoc/button-set-workflowdata.png[width=150]| Die aktuell festgelegte Geoposition und die gewählteten Fachbereiche werden gespeichert. Die Prozessschritt wird abgeschlossen.
+|===
+
+<<<
+
+==== Erstellen Entwurf Stellungnahme
+
+Diese Ansicht folgt dem Aufbau der Detailansicht und bietet beim Bearbeiten einen schnellen Zugriff auf die wesentlichen Stellungnahmeinformationen.
+
+.Erstellen Entwurf Stellungnahme
+image::userdoc/draft.png[]
+
+Die für die Bearbeitung nötigen Blöcke _Entwurf der Stellungnahme_ sowie _Anhänge für den Versand_ sind initial aufgeklappt.
+
+===== Entwurf der Stellungnahme
+
+In diesem Block wird der Antworttext verfasst.
+
+.Entwurf der Stellungnahme
+image::userdoc/response-textedit.png[]
+
+Die Ansicht teilt sich in zwei vertikale Hälften auf. Die linke Hälfte zeigt die aktuelle Textzusammenstellung. Die rechte Hälfte zeigt alle verfügbaren Textabschnitte, die in die linke Hälfte übernommen werden können.
+
+Zur Bearbeitung stehen mehrere Textabschnittarten zur Verfügung.
+
+.Textabschnitt Arten
+[options="header", cols="1,2"]
+|===
+|Typ|Beschreibung
+|Zeilenumbruch| Nachfolgender Text beginnt am Zeilenanfang
+|Seitenumbruch| Nachfolgender Text beginnt auf nächster Seite
+|Freitext| Durch den Anwender erstellter Text
+|Textblock| Vordefinierter Textabschnitt
+|===
+
+Textabschnitte können mittels Drag-and-Drop in ihrer Sortierung umgestaltet werden. Dabei ist darauf zu achten, dass Textblöcke Abhängigkeiten zueinander aufweisen können.
+
+.Textblock Abhängigkeiten
+[options="header", cols="1,2"]
+|===
+|Typ| Beschreibung
+|Reihenfolge| Textblöcke einer Gruppe besitzen eine zueinander festgelegte Reihenfolge
+|Ausschluß| Textblöcke können sich gegenseitig ausschließen
+|Zwingend| Textblöcke können die Verwendung anderer Textblöcke bedingen
+|===
+
+Die Korrektheit der Zusammenstellung der Textabschnitte kann über das Seitenmenü validiert werden. Diese werden anschließend rot hervorgehoben und Informationen zur Auflösung gegeben.
+
+Textabschnitte vom Typ Freitext werden wie folgt bearbeitet.
+
+.Freitext Bearbeitung
+image::userdoc/textedit-freetext.png[width=320]
+
+Ein Klick auf den Button image:userdoc/textedit-edit-button.png[16,16] setzt das Freitextfeld in den Editiermodus. In diesem kann nun der Freitext gestaltet werden. Anschließend wird durch ein Deselektieren des Freitextfelds der bearbeitete Text gesetzt. Soll der Inhalt des Freitextfelds geleert werden kann dies mittels des Button image:userdoc/textedit-revert-button.png[16,16] erfolgen.
+
+Im Freitext sowie bei der Bearbeitung von Textblöcken können folgende Textmodifikationen eingebracht werden.
+
+.Textmodifikationen
+[cols="1,5"]
+|===
+|+__kursiv__+ | Mit zwei Unterstrichen (+__+) umrahmter Text wird im Dokument _kursiv_ dargestellt
+|+**fett**+ | Mit zwei Sternen (+**+) umrahmter Text wird im Dokument *fett* dargestellt
+|* Aufzählung | Ein Stern (*) am Zeilenanfang erzeugt einen neuen Aufzählungspunkt
+|===
+
+Textabschnitte vom Typ Textblock werden wie folgt bearbeitet.
+
+.Textblock Bearbeitung
+image::userdoc/textedit-textblock.png[width=340]
+
+Ein Klick auf den Button image:userdoc/textedit-edit-button.png[16,16] setzt den Textblock in den Editiermodus. Der bereits enthaltene Text wird in einen Freitext überführt und kann nun gestaltet werden. Der Textabschnitt behält weiterhin den Typ Textblock mit allen zugehörigen Textblock-Abhängigkeiten. Durch ein Deselektieren des Textblocks wird der bearbeitete Text als Ersatztext gesetzt. Ein Klick auf den Button image:userdoc/textedit-revert-button.png[16,16] löscht den Ersatztext und stellt wieder den ursprünglichen Textblockinhalt her.
+
+Für eine erste Vorschau der Textzusammenstellung kann mittels Klick auf den Button image:userdoc/textedit-preview-button.png[16,16] eine Textvorschau über die rechte Hälfte eingeblendet werden. Über das Seitenmenü ist zudem eine Vorschaufunktion des generierten PDF-Dokuments möglich.
+
+===== Anhänge für den Versand
+
+Dokumente, die zusätzlich zur Stellungnahmeantwort versendet werden sollen, können in diesem Block angeheftet und mittels _Speichern_ oder _Stellungnahme finalisieren_ zur Stellungnahme hinzugefügt werden.
+
+.Anhänge für den Versand
+image::userdoc/textedit-outbox-docs.png[]
+
+===== Seitenmenü
+
+Wie in Abschnitt <<Seitenmenü>> beschrieben werden darin die inhaltsspezifischen Elemente in mehreren Gruppen angeordnet.
+Sie haben folgende Funktionalität:
+
+[cols="1,2"]
+|===
+a|image:userdoc/button-back-to-details.png[width=150]| Navigation zur <<Detailansicht>>. Anhänge werden nicht hinzugefügt. Eine Stellungnahmeantwort wird nicht angelegt
+a|image:userdoc/button-save.png[width=150]| Die aktuelle Textzusammenstellung wird gespeichert. Anhänge werden hinzugefügt
+a|image:userdoc/button-validate-textarrangement.png[width=150]| Die aktuelle Textzusammenstellung wird auf Fehler überprüft.
+a|image:userdoc/button-generate-PDF.png[width=150]| Die aktuelle Textzusammenstellung wird auf Fehler überprüft und ein PDF-Dokument zur Vorschau generiert. Die aktuelle Textzusammenstellung wird nicht gespeichert.
+a|image:userdoc/button-open-for-departments.png[width=150]| Freigeben für die Anreicherung durch die Fachbereiche
+|===
+
+<<<
+
+==== Anreichern durch die Fachbereiche - Sachbearbeiter/in
+
+In diesem Stellungnahmeprozessschritt kann der/die Sachbearbeiter/in den Vorgang durch folgenden Seitenmenü-Button in der <<Detailansicht>> weiterführen. 
+[cols="1,2"]
+|===
+a|image:userdoc/button-draft-verify.png[width=150]| Der Stellungnahmeprozess geht in den nächsten Zustand <<Prüfen und Verfassen der Antwort>> überführen.
+|===
+
+<<<
+
+==== Prüfen und Verfassen der Antwort
+
+In diesem Schritt sind die gleichen Bearbeitungsmöglichkeiten wie in der <<Erstellen Entwurf Stellungnahme>> möglich. Der/Die Sachbearbeiter/in überprüft in diesem Schritt ob alle Beiträge der Fachbereiche vollständig vorliegen, oder noch zusätzliche Informationen erforderlich sind. Hier kann auch im Block _Bearbeitungsstatus der Fachbereiche_ der jeweilige Status gesetzt bzw. zurückgesetzt werden, um den betreffenden Fachbereichen einen erneute Bearbeitung zu signalisieren.
+
+===== Seitenmenü
+
+[options="header", cols="1,2"]
+|===
+|Button | Beschreibung
+a|image:userdoc/button-back-to-details.png[width=150]| Navigation zur <<Detailansicht>>. Anhänge werden nicht hinzugefügt. Eine Stellungnahmeantwort wird nicht angelegt
+a|image:userdoc/button-save.png[width=150]| Die aktuelle Textzusammenstellung wird gespeichert. Anhänge werden hinzugefügt
+a|image:userdoc/button-validate-textarrangement.png[width=150]| Die aktuelle Textzusammenstellung wird auf Fehler überprüft.
+a|image:userdoc/button-generate-PDF.png[width=150]| Die aktuelle Textzusammenstellung wird auf Fehler überprüft und ein PDF-Dokument zur Vorschau generiert. Die aktuelle Textzusammenstellung wird nicht gespeichert.
+a|image:userdoc/button-enhance-infodata.png[width=150]| Erneute Anpassung der Basisinformationen ist erforderlich. Die Aufgabe wird ohne Speicherung der Textzusammenstellung abgeschlossen.
+a|image:userdoc/button-enhance-contributions.png[width=150]| Die Stellungnahme wird erneut in den Zustand zur _Anreicherung durch die Fachbereiche_ überführt
+a|image:userdoc/button-finalize-statement.png[width=150]| Antwort PDF generieren und überprüfen. Anschließend können neu eingeblendete Buttons zur Freigabe des Dokuments gewählt werden
+|===
+
+<<<
+
+==== Versenden der Antwort
+
+War der automatische Versand nach der Genehmigung nicht erfolgreich, kann dieser in diesem Prozessschritt manuell durch den/die Sachbearbeiter/in erfolgen.
+Dies kann vor allem bei nicht gesetzter Email-Adresse in den Empfängerkontaktdaten begründet liegen.
+
+Diesen Schritt kann der/die Sachbearbeiter/in direkt in der Detailansicht durchführen.
+
+Soll die Stellungnahme nicht per Email versendet werden, so können die im Block _Anhänge für den Versand_ befindlichen Dokumente für den Versand heruntergeladen werden.
+
+.Anhänge für den Versand
+image::userdoc/details-outbox-documents-withstatement.png[]
+
+Mittels Klick auf den Button image:userdoc/button-download.png[16,16] kann dazu das jeweilige Dokument heruntergeladen werden.
+
+Eine nicht vorhandene Email-Adresse kann bei Bedarf im Kontaktstammdatenmodul angepasst und der Versand anschließend erneut veranlasst werden.
+
+===== Seitenmenü
+
+Neben den Buttons zur Navigation der <<Detailansicht>> stehen folgende Buttons zur Verfügung.
+[options="header", cols="1,2"]
+|===
+|Button | Beschreibung
+a|image:userdoc/button-finish-process.png[width=150]| Abschließen des Stellungnahmeprozess. Eine Email wird nicht versendet.
+a|image:userdoc/button-resend-mail.png[width=150]| Versenden der Stellungnahmeantwort. Bei erfolgreichem Versand wird der Stellungnahmeprozess abgeschlossen
+|===
+
+<<<
+
+=== Ansichten Fachbereichsmitarbeiter/in
+
+Der/Die Fachbereichsmitarbeiter/in hat wie in Abschnitt <<Prozess>> beschrieben folgende Bearbeitungsschritte der Stellungnahme.
+
+==== Anreichern durch die Fachbereiche - Fachbereichsmitarbeiter/in
+
+In diesem Stellungnahmeprozessschritt kann der/die Fachbereichsmitarbeiter/in den Vorgang durch folgenden Seitenmenü-Button in der <<Detailansicht>> weiterführen. 
+[cols="1,2"]
+|===
+a|image:userdoc/button-draft-contribute.png[width=150]| Der Stellungnahmeprozess wird von dem/der Anwender/in zur Bearbeitung gesperrt und die Ansicht gewechselt.
+|===
+
+Diese Ansicht folgt dem Aufbau der Detailansicht, um beim Bearbeiten einen schnellen Zugriff auf die wesentlichen Stellungnahmeinformationen zu ermöglichen.
+
+.Erstellen Entwurf Stellungnahme
+image::userdoc/draft.png[]
+
+Die für die Bearbeitung nötigen Blöcke _Entwurf der Stellungnahme_ sowie _Anhänge für den Versand_ sind initial aufgeklappt.
+
+===== Entwurf der Stellungnahme
+
+In diesem Block wird der Antworttext verfasst.
+
+.Entwurf der Stellungnahme
+image::userdoc/response-textedit.png[]
+
+Die Ansicht teilt sich in zwei vertikale Hälften auf. Die linke Hälfte zeigt die aktuelle Textzusammenstellung. Die rechte Hälfte zeigt alle verfügbaren Textabschnitte, die in die linke Hälfte übernommen werden können.
+
+Zur Bearbeitung stehen mehrere Textabschnittarten.
+
+.Textabschnitt Arten
+[options="header", cols="1,2"]
+|===
+|Typ|Beschreibung
+|Zeilenumbruch| Nachfolgender Text beginnt am Zeilenanfang
+|Seitenumbruch| Nachfolgender Text beginnt auf nächster Seite
+|Freitext| Durch den Anwender erstellter Text
+|Textblock| Vordefinierter Textabschnitt
+|===
+
+Textabschnitte können mittels Drag-and-Drop in ihrer Sortierung umgestaltet werden. Dabei ist darauf zu achten, dass Textblöcke Abhängigkeiten zueinander aufweisen können.
+
+.Textblock Abhängigkeiten
+[options="header", cols="1,2"]
+|===
+|Typ| Beschreibung
+|Reihenfolge| Textblöcke einer Gruppe besitzen eine zueinander festgelegte Reihenfolge
+|Ausschluß| Textblöcke können sich gegenseitig ausschließen
+|Zwingend| Textblöcke können die Verwendung anderer Textblöcke bedingen
+|===
+
+Die Korrektheit der Zusammenstellung der Textabschnitte kann über das Seitenmenü validiert werden. Diese werden anschließend rot hervorgehoben und Informationen zur Auflösung gegeben.
+
+Textabschnitte vom Typ Freitext werden wie folgt bearbeitet.
+
+.Freitext Bearbeitung
+image::userdoc/textedit-freetext.png[width=320]
+
+Ein Klick auf den Button image:userdoc/textedit-edit-button.png[16,16] setzt das Freitextfeld in den Editiermodus. In diesem kann nun der Freitext gestaltet werden. Anschließend wird durch ein Deselektieren des Freitextfelds der bearbeitete Text gesetzt. Soll der Inhalt des Freitextfelds geleert werden kann dies mittels des Button image:userdoc/textedit-revert-button.png[16,16] erfolgen.
+
+Im Freitext sowie bei der Bearbeitung von Textblöcken können folgende Textmodifikationen eingebracht werden.
+
+.Textmodifikationen
+[cols="1,5"]
+|===
+|+__kursiv__+ | Mit zwei Unterstrichen (+__+) umrahmter Text wird im Dokument _kursiv_ dargestellt
+|+**fett**+ | Mit zwei Sternen (+**+) umrahmter Text wird im Dokument *fett* dargestellt
+|* Aufzählung | Ein Stern (*) am Zeilenanfang erzeugt einen neuen Aufzählungspunkt
+|===
+
+Textabschnitte vom Typ Textblock werden wie folgt bearbeitet.
+
+.Textblock Bearbeitung
+image::userdoc/textedit-textblock.png[width=340]
+
+Ein Klick auf den Button image:userdoc/textedit-edit-button.png[16,16] setzt den Textblock in den Editiermodus. Der bereits enthaltene Text wird in einen Freitext überführt und kann nun gestaltet werden. Der Textabschnitt behält weiterhin den Typ Textblock mit allen zugehörigen Textblock-Abhängigkeiten. Durch ein Deselektieren des Textblocks wird der bearbeitete Text als Ersatztext gesetzt. Ein Klick auf den Button image:userdoc/textedit-revert-button.png[16,16] löscht den Ersatztext und stellt wieder den ursprünglichen Textblockinhalt her.
+
+Für eine erste Vorschau der Textzusammenstellung kann mittels Klick auf den Button image:userdoc/textedit-preview-button.png[16,16] eine Textvorschau über die rechte Hälfte eingeblendet werden. Über das Seitenmenü ist zudem eine Vorschaufunktion des generierten PDF-Dokuments möglich.
+
+===== Anhänge für den Versand
+
+Dokumente, die zusätzlich zur Stellungnahmeantwort versendet werden sollen, können in diesem Block angeheftet und mittels _Speichern_ oder _Stellungnahme finalisieren_ zur Stellungnahme hinzugefügt werden.
+
+.Anhänge für den Versand
+image::userdoc/textedit-outbox-docs.png[]
+
+===== Seitenmenü
+
+Wie in Abschnitt <<Seitenmenü>> beschrieben werden darin die inhaltsspezifischen Elemente in mehreren Gruppen angeordnet.
+Sie haben folgende Funktionalität:
+
+[options="header", cols="1,2"]
+|===
+|Button | Beschreibung
+a|image:userdoc/button-back-to-details.png[width=150]| Navigation zur <<Detailansicht>>. Anhänge werden nicht hinzugefügt. Eine Stellungnahmeantwort wird nicht angelegt
+a|image:userdoc/button-save.png[width=150]| Die aktuelle Textzusammenstellung wird gespeichert. Anhänge werden hinzugefügt
+a|image:userdoc/button-validate-textarrangement.png[width=150]| Die aktuelle Textzusammenstellung wird auf Fehler überprüft.
+a|image:userdoc/button-generate-PDF.png[width=150]| Die aktuelle Textzusammenstellung wird auf Fehler überprüft und ein PDF-Dokument zur Vorschau generiert. Die aktuelle Textzusammenstellung wird nicht gespeichert.
+a|image:userdoc/button-finish-work.png[width=150]| Der aktuelle Zustand wird gespeichert und der Fachbereich des/der Anwender/in wird als Bearbeitet markiert. Die Stellungnahme wird für andere wieder zur Bearbeitung freigegeben
+|===
+
+<<<
+
+=== Ansichten Genehmiger/in
+
+Der/Die Genehmiger/in hat wie in Abschnitt <<Prozess>> beschrieben folgende Bearbeitungsschritte der Stellungnahme.
+
+==== Prüfen und Genehmigen der Antwort
+
+Diesen Schritt kann der/die Genehmiger/in direkt in der Detailansicht durchführen.
+
+Hierzu können die Dokumente der Stellungnahmeantwort im Block _Anhänge für den Versand_ überprüft werden.
+
+.Anhänge für den Versand
+image::userdoc/details-outbox-documents-withstatement.png[]
+
+Mittels Klick auf den Button image:userdoc/button-download.png[16,16] kann dazu das jeweilge Dokument heruntergeladen werden.
+
+Es wird empfohlen die Gründe der Ablehnung in einem Kommentar zu verfassen, und so die nachfolgenden Bearbeiter/innen darüber zu informieren.
+
+===== Seitenmenü
+
+Neben den Buttons zur Navigation der <<Detailansicht>> stehen folgende Buttons zur Genehmigung bzw. Ablehnung zur Verfügung.
+[options="header", cols="1,2"]
+|===
+|Button | Beschreibung
+a|image:userdoc/button-approve-negative.png[width=150]| Ablehnung der Stellungnahme. Erneute Anpassung der Basisinformationen ist erforderlich
+a|image:userdoc/button-approve-positive.png[width=150]| Genehmigung der Stellungnahme. Anstoßen des automatischen Versands per Email
+|===
+
+<<<
+
+=== Adminoberfläche
+
+Die Adminoberfläche ist in der <<Titelleiste,Navigationsleiste>> über den Button image:userdoc/button-settings.png[25,25] zu erreichen.
+
+.Adminoberfläche
+image::userdoc/admin.png[]
+
+Beim Wechsel in die Adminoberfläche wird standardmäßig die _Textbausteinverwaltung_ dargestellt.
+
+==== Seitenmenü
+
+Der Aufbau des Seitenmenüs in der Adminoberfläche teilt sich in zwei vertikale Hälften auf. Buttons die in der oberen Hälfte zu finden sind, dienen der Navigation zwischen den verschiedenen Administrationsansichten. Die untere Hälfte beinhaltet Buttons zum Speichern der gewählten Parameter.
+
+Es stehen folgende Ansichten zur Verfügung. Diese können je nach Rolle des/der Anwender/in unterschiedliche Umfänge haben.
+
+[options="header", cols="1,2"]
+|===
+|Button | Beschreibung
+a|image:userdoc/button-admin-textblocks.png[width=150]| Einstellen der Textbausteine
+a|image:userdoc/button-admin-documents.png[width=150]| Einstellungen der Dokumente (Tags)
+a|image:userdoc/button-admin-departments.png[width=150]| Einstellen der Fachbereiche und Sparten zu Ortsinformation
+a|image:userdoc/button-admin-textblocks.png[width=150]| Verwaltung der Nutzer des Stellungnahmemodul. (Email, Fachbereichszuordnung)
+|=== 
+
+<<<
+
+==== Textbausteinverwaltung
+
+In der Textbausteinverwaltung kann die Textbausteinkonfiguration angepasst werden.
+
+TIP: Eine Anpassung der Textbausteinkonfiguration wirkt sich nur auf nachfolgend erstellte Stellungnahmeprozesse aus.
+
+.Adminoberfläche Textbausteinverwaltung
+image::userdoc/admin.png[]
+
+
+===== Auswahllisten
+
+Im Drop-Down _Auswahlliste_ kann die gewünschte Auswahlliste zur Bearbeitung gewählt werden. Anschließend kann der _Name_ angepasst und neue _Einträge_ der Auswahlliste angelegt, bearbeitet und gelöscht werden.
+
+===== Gruppe anlegen
+
+Mittels Klick auf den Button image:userdoc/button-plus.png[16,16] im Gruppenheader wird eine neue nachfolgende Gruppe angelegt.
+Beim Anlegen einer neuen Gruppe wird zusätzlich ein erster Textbaustein in der Gruppe erstellt.
+
+===== Gruppe bearbeiten
+
+Mittels Klick auf den Button image:userdoc/button-edit.png[16,16] im Gruppenheader kann der Gruppenname angepasst werden.
+Ein Klick auf den Button image:userdoc/button-delete.png[16,16] löscht die Gruppe.
+
+===== Neuen Textbaustein in einer Gruppe anlegen
+
+Mittels Klick auf den Button image:userdoc/button-plus.png[16,16] in einem Textbaustein wird ein neuer nachfolgender Textbaustein in der Gruppe angelegt.
+
+===== Textbaustein bearbeiten
+
+Mittels Klick auf den Button image:userdoc/button-edit.png[16,16] im Textbausteinheader wird auf der rechten Hälfte die zugehörige Bearbeitungsansicht angezeigt.
+
+Anschließend können die Parameter des Textbaustein bearbeitet werden.
+
+.Textbaustein Bearbeiten
+image::userdoc/admin-textblock-edit.png[width=500]
+
+Im oberen Textfeld kann der Freitext des Textblocks angepasst werden. Zur Unterstützung bei der Eingabe sind Buttons zur Editierhilfe für Aufzählungen und Textmodifier wie *fett* und _kursiv_ verfügbar.
+
+Die Abhängigkeiten zwischen Textbausteinen können mittels Drag-and-Drop des jeweiligen Textbausteins in eine der Abhängigkeitslisten erfolgen.
+
+Folgende Abhängigkeitsarten stehen zur Auswahl:
+
+.Textblock Abhängigkeiten
+[options="header", cols="1,3"]
+|===
+|Art|Beschreibung
+|Ausschluss| Textbaustein schließt gewählte Textbausteine aus
+|Alle| Alle gewählten Textbausteine müssen vorhanden sein
+|Mindestens einer| Mindestens einer der gewählten Textbausteine muss vorhanden sein
+|Genau einer| Einer der gewählten Textbausteine muss vorhanden sein. Alle anderen dürfen nicht vorhanden sein.
+|===
+
+TIP: Es wird empfohlen sich auf einfache Abhängigkeiten zu beschränken, da dies beim Zusammenstellen einer Stellungnahmeantwort zu komplexeren Editiervorgängen führen kann.
+
+===== Textbaustein Sortierung
+
+Die Reihenfolge der Textbausteine innerhalb einer Gruppe gibt auch die zwingende Reihenfolge im Stellungnahmedokument vor.
+Um diese Reihenfolge der Textbausteine anzupassen können diese mittels der Buttons image:userdoc/button-textblock-sort-up.png[16,16] sowie image:userdoc/button-textblock-sort-down.png[16,16] angepasst werden.
+
+===== Seitenmenü
+
+Neben den Navigationsoptionen zu anderen Administrationsansichten im oberen Drittel des Seitenmenü stehen folgende Aktionen zur Auswahl
+[options="header", cols="1,3"]
+|===
+|Art|Beschreibung
+a|image:userdoc/button-set-changes.png[width=150]| Textbausteinkonfiguration setzen
+|===
+
+<<<
+
+==== Einstellungen Dokumente
+
+===== Marken (Tags)
+
+In dieser Ansicht können weitere Marken (Tags) zur Klassifizierung von  Dokumente, die einer Stellungnahme hinzugefügt wurden, erstellt werden.
+
+.Adminoberfläche Einstellungen Dokumente
+image::userdoc/admin-tags.png[]
+
+Dazu einen gewünschten Tagnamen im Textfeld eintragen und mittels Button image:userdoc/button-admin-tags-plus.png[20,20] hinzufügen. Damit wird der neue Marker noch nicht in der Konfiguration des Stellungnahmemodul angelegt und kann mittels des Button image:userdoc/button-cross.png[16,16] wieder aus Gruppe der neu zu erstellenden Marker entfernt werden.
+
+TIP: Einmal im Stellungnahmemodul konfigurierte Tags können nachträglich nicht mehr gelöscht oder umbenannt werden.
+
+===== Seitenmenü
+
+Neben den Navigationsoptionen zu anderen Administrationsansichten im oberen Drittel des Seitenmenü stehen folgende Aktionen zur Auswahl
+[options="header", cols="1,3"]
+|===
+|Art|Beschreibung
+a|image:userdoc/button-set-changes.png[width=150]| Neue Marken werden hinzugefügt
+|===
+
+<<<
+
+==== Fachbereiche und Sparten
+
+In dieser Ansicht können die Fachbereiche und ihre Zuordnung zu Ort und Ortschaft sowie die dazu gehörenden Sparten angepasst werden.
+
+.Adminoberfläche Fachbereiche bearbeiten
+image::userdoc/admin-departments.png[]
+
+Zur Bearbeitung wird zuerst die aktuelle Konfiguration als CSV Datei heruntergeladen. In einem externen Editor für CSV Dateien kann diese dann angepasst und wieder hochgeladen werden. Anschließend kann die neue Konfiguration vor dem Setzen noch mit Suchoptionen auf Korrektheit überprüft werden, bevor sie abschließend als neue Konfiguration gesetzt wird.
+
+Die Ansichtsblöcke _Fachbereiche_, _Sparten_ und _Organisation_ ermöglichen die Überprüfung der hochgeladenen Konfiguration.
+
+In der Ansicht _Fachbereiche_ werden alle Fachbereiche nach Gruppe sortiert dargestellt.
+Die Ansicht _Sparten_ stellt eine Liste aller konfigurierten Sparten dar. Fehler durch unterschiedliche Schreibweisen werden hier schnell ersichtlich.
+Die Ansicht _Organisation_ erlaubt eine detaillierte Inspektion einzelner Einträge nach der Kombination aus Ort und Ortsteil.
+
+===== Seitenmenü
+Das Herunterladen und Hochladen einer CSV Datei sowie das Speichern der Konfiguration kann über die folgenden Buttons im Seitenmenü durchgeführt werden.
+[options="header", cols="1,3"]
+|===
+|Button|Beschreibung
+a|image:userdoc/button-admin-departments-download.png[width=150]| Herunterladen der aktuellen Konfiguration
+a|image:userdoc/button-admin-departments-upload.png[width=150]| Hochladen einer neuen Konfiguration (wird noch nicht gespeichert)
+a|image:userdoc/button-admin-departments-save.png[width=150]| Speichern der hochgeladenen Konfiguration
+|===
+
+<<<
+
+==== Nutzerverwaltung
+
+In dieser Ansicht können die Nutzer des Stellungnahmemodul verwaltet werden.
+
+.Adminoberfläche Nutzerverwaltung
+image::userdoc/admin-usersettings.png[]
+
+===== Anlegen neuer Nutzer
+
+Neue Nutzer des Stellungnahmemoduls sind in der zentralen OpenKONSEQUENZ Nutzerverwaltung ("AuthNAuth") mit ihren jeweiligen Nutzerrollen anzulegen.
+Mittels Klick auf den Button image:userdoc/button-sync-users.png[width=120] werden neue Nutzer aus der zentralen Nutzerverwaltung in das Stellungnahmemodul übernommen und können anschließend weiter bearbeitet werden.
+
+===== Nutzerbearbeitung
+
+Um eine/n Nutzer/in bearbeiten zu können, muss diese/r zuerst im Block _Suche_ ausgewählt werden. Dazu kann die Liste der angezeigten Nutzer über die Einschränkung mittels Suchleiste präzisiert werden.
+
+Ist eine Benachrichtigung des Nutzers/der Nutzerin erforderlich, kann eine Email Addresse im Stellungnahmemodul hinterlegt bzw. angepasst werden.
+
+Ist der/die Nutzer/in Teil eines Fachbereichs kann dieser über die Drop-Down Listen der Fachbereichsgruppe und des Fachbereichs eingestellt werden.
+
+Ein Klick auf den Button image:userdoc/button-admin-setuser.png[width=120] werden die Änderungen in die Konfiguration des Stellungnahmemoduls übernommen.
+
+== Anhang
+
+<<<
+
+=== Workflow Diagramm
+
+image::Statement-workflow-portrait.svg[]
+
+
+