diff options
523 files changed, 0 insertions, 99194 deletions
diff --git a/documentation/addons/addons-cval.asciidoc b/documentation/addons/addons-cval.asciidoc deleted file mode 100644 index 8624bed70c..0000000000 --- a/documentation/addons/addons-cval.asciidoc +++ /dev/null @@ -1,131 +0,0 @@ ---- -title: Installing Commercial Vaadin Add-on Licence -order: 5 -layout: page ---- - -[[addons.cval]] -= Installing Commercial Vaadin Add-on Licence - -The commercial Vaadin add-ons require installing a license key before using -them. The license keys are development licenses and checked during widget set -compilation, or in Vaadin TestBench when executing tests, so you do not need -them when deploying the application. - -[[addons.cval.obtaining]] -== Obtaining License Keys - -You can purchase add-ons or obtain a free trial key from the Vaadin website. You -need to register in the website to obtain a key. - -You can get license keys from -link:https://vaadin.com/pro/licenses[vaadin.com/pro/licenses], where you can -navigate by selecting in the Vaadin website "My Account > Licenses" or directly -[menuchoice]#Licenses# if you are a Pro Tools subscriber. - -[[figure.addons.cval.obtaining]] -.Obtaining CVAL License -image::img/cval-pro-licenses-3.png[] - -Click on a license key to obtain the purchased or trial key. - -[[figure.addons.cval.obtaining]] -.Obtaining CVAL License Key -image::img/cval-pro-licenses-code.png[] - - -[[addons.cval.installing]] -== Installing License Key in License File - -To install the license key in a development workstation, you can copy and paste -it verbatim to a file in your home directory. - -License for each product has a separate license file as follows: - -Vaadin Charts:: [filename]#.vaadin.charts.developer.license# -Vaadin Spreadsheet:: [filename]#.vaadin.spreadsheet.developer.license# -Vaadin TestBench:: [filename]#.vaadin.testbench.developer.license# -Vaadin TouchKit:: [filename]#.vaadin.touchkit.developer.license# - - -For example, in Linux and OS X: - -[subs="normal"] ----- -[prompt]#$# [command]#echo# "[replaceable]#L1cen5e-c0de#" > [parameter]#~/.vaadin.[replaceable]+++#+++<product>+++#+++.developer.license# ----- - -[[addons.cval.systemproperty]] -== Passing License Key as System Property - -You can also pass the key as a system property to the widget set compiler, -usually with a [literal]#++-D++# option. For example, on the command-line: - -[subs="normal"] ----- -[prompt]#$# [command]#java# -D[parameter]#vaadin.[replaceable]+++#+++<product>+++#+++.developer.license#=[replaceable]#L1cen5e-c0de# ... ----- -ifdef::web[] -See link:https://vaadin.com/directory/help/installing-cval-license[the CVAL -license key installation instructions] for more details. -endif::web[] - -[[addons.cval.systemproperty.environments]] -=== Passing License Key in Different Environments - -How you actually pass the parameter to the widget set compiler depends on the -development environment and the build system that you use to compile the widget -set. Below are listed a few typical environments: - -Eclipse IDE:: To install the license key for all projects, select "Window > Preferences" and -navigate to the "Java > Installed JREs" section. Select the JRE version that you -use for the application and click [guibutton]#Edit#. In the [guilabel]#Default -VM arguments#, give the [parameter]#-D# expression as shown above. - -Apache Ant:: If compiling the project with Apache Ant, you could set the key in the Ant -script as follows: - - -+ -[subs="normal"] ----- -<sysproperty key="vaadin.[replaceable]#<product>#.developer.license" - value="**L1cen5e-c0de**"/> ----- -+ -However, you should never store license keys in a source repository, so if the -Ant script is stored in a source repository, you should pass the license key to -Ant as a property that you then use in the script for the value argument of the -[literal]#++<sysproperty>++# as follows: - - -+ -[subs="normal"] ----- -<sysproperty key="vaadin.[replaceable]#<product>#.developer.license" - value="**${vaadin.[replaceable]#<product>#.developer.license}**"/> ----- -+ -When invoking Ant from the command-line, you can pass the property with a -[parameter]#-D# parameter to Ant. - -Apache Maven:: If building the project with Apache Maven, you can pass the license key with a -[literal]#++-D++# parameter to Maven: - - -+ -[subs="normal"] ----- -[prompt]#$# [command]#mvn# -D[parameter]#vaadin.[replaceable]+++#+++<product>+++#+++.developer.license#=[replaceable]#L1cen5e-c0de# package ----- -Continuous Integration Systems:: In CIS systems, you can pass the license key to build runners as a system -property in the build configuration. However, this only passes it to a runner. -As described above, Ant does not pass it to sub-processes implicitly, so you -need to forward it explicitly as described earlier. - - - - - - - diff --git a/documentation/addons/addons-downloading.asciidoc b/documentation/addons/addons-downloading.asciidoc deleted file mode 100644 index 6ccf440420..0000000000 --- a/documentation/addons/addons-downloading.asciidoc +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: Downloading Add-ons from Vaadin Directory -order: 2 -layout: page ---- - -[[addons.downloading]] -= Downloading Add-ons from Vaadin Directory - -If you are not using Maven or a Maven-compatible dependency manager such as Ivy, -or want to manage for your libraries manually, you can download add-on packages -from the details page of an add-on in Vaadin Directory. - -. Select the version; some add-ons have several versions available. The latest is -shown by default, but you can choose another the version to download from the -dropdown menu in the header of the details page. - -. Click [guibutton]#Download Now# and save the JAR or Zip file on your computer. - -. If the add-on is packaged in a Zip package, unzip the package and follow any -instructions provided inside the package. Typically, you just need to copy a JAR -file to your web project under the [filename]#WEB-INF/lib# directory. - -+ -Note that some add-ons may require other libraries. You can resolve such -dependencies manually, but we recommend using a dependency manager such as Ivy -or Maven in your project. - -. Update and recompile your project. In Eclipse, select the project and press F5. - -. You may need to compile the client-side implementations of the add-on -components, that is, a __widget set__. This is the case for majority of add-ons, -except for pure server-side, theme, or data binding add-ons. Compiling the -widget set depends on the build environment. See <<addons.downloading.ant>>, or -later in this chapter for instructions for compiling the widget set with Eclipse -and -Maven.+ -//// -See <xref linkend="addons.compiling"/> for -instructions. -//// - -. Update the project in your development web server and possibly restart the -server. - - -[[addons.downloading.ant]] -== Compiling Widget Sets with an Ant Script - -If you need to compile the widget set with an Ant script, you can find a script -template package at the link:http://vaadin.com/download/[Vaadin download page]. -You can copy the files in the package to your project and, once configured, use -it by running Ant in the directory. - -If you are using an IDE such as Eclipse, __always__ remember to refresh the -project to synchronize it with the filesystem after compiling the widget set -outside the IDE. - - - - diff --git a/documentation/addons/addons-eclipse.asciidoc b/documentation/addons/addons-eclipse.asciidoc deleted file mode 100644 index cd7508466d..0000000000 --- a/documentation/addons/addons-eclipse.asciidoc +++ /dev/null @@ -1,107 +0,0 @@ ---- -title: Installing Add-ons in Eclipse with Ivy -order: 3 -layout: page ---- - -[[addons.eclipse]] -= Installing Add-ons in Eclipse with Ivy - -The Vaadin Plugin for Eclipse uses Apache Ivy to resolve dependencies. The -dependencies should be listed in the [filename]#ivy.xml# file in the project -root. The Vaadin Directory allows dowloading add-ons from a Maven repository, -which can be accessed also by Ivy. - -You can also use Ivy to resolve dependencies in an Ant script. - -. Open the add-on page in Vaadin Directory. - -. Select the version. The latest is shown by default, but you can choose another -the version from the dropdown menu in the header of the add-on details page. - -. Click the [guilabel]#Maven/Ivy# to display the Ivy dependency declaration, as -illustrated in Figure <<figure.addons.eclipse.ivybutton>>. If the add-on is -available with multiple licenses, you will be prompted to select a license for -the dependency. - -+ -[[figure.addons.eclipse.ivybutton]] -.Ivy Dependency Declaration -image::img/directory-ivy-dependency.png[] - -. Open the [filename]#ivysettings.xml# in your Eclipse project either in the XML -or Ivy Editor (either double-click the file or right-click it and select "Open -With > Ivy Editor"). - -+ -Check that the settings file has the [literal]#++<ibiblio>++# entry given in the -Directory page. It should be, if the file was created by the Vaadin project -wizard in Eclipse. If not, copy it there. - - -+ ----- -<chain name="default"> - ... - <ibiblio name="vaadin-addons" - usepoms="true" - m2compatible="true" - root="http://maven.vaadin.com/vaadin-addons"/> - ... -</chain> ----- -+ -If you get Vaadin addons from another repository, such as the local repository -if you have compiled them yourself, you need to define a resolver for the -repository in the settings file. - -. Open the [filename]#ivy.xml# in your Eclipse project and copy the Ivy dependency -to inside the [literal]#++dependencies++# element. It should be as follows: - - -+ -[subs="normal"] ----- -<dependencies> - ... - <dependency org="**com.vaadin.addon**" - name="**vaadin-charts**" - rev="**1.0.0**"/> -</dependencies> ----- -+ -You can specify either a fixed version number or a dynamic revision tag, such as -[literal]#++latest.release++#. You can find more information about the -link:http://ant.apache.org/ivy/history/2.1.0/ivyfile/dependency.html[dependency -declarations] in Ivy documentation. - -+ -If the [filename]#ivy.xml# does not have a [literal]#++<configurations -defaultconfmapping="default->default">++# defined, you also need to have -[literal]#++conf="default->default"++# in the dependency to resolve transient -dependencies correctly. - -+ -IvyIDE immediately resolves the dependencies when you save the file. - -. Compile the add-on widget set -//// -, as described in <xref -linkend="addons.compiling.eclipse"/>. -//// -by clicking the [guilabel]#Compile Vaadin widgets# button in the toolbar. - -+ -[[figure.addons.eclipse.toolbar]] -.Compiling Widget Set in Eclipse -image::img/widgetset-compiling-toolbar-hi.png[] - - -If you experience problems with Ivy, first check all the dependency parameters. -IvyDE can sometimes cause unexpected problems. You can clear the Ivy dependency -cache by right-clicking the project and selecting "Ivy > Clean all caches". To -refresh Ivy configuration, select "Ivy > Refresh". To try resolving again Ivy, -select "Ivy > Resolve". - - - diff --git a/documentation/addons/addons-maven.asciidoc b/documentation/addons/addons-maven.asciidoc deleted file mode 100644 index 9c5ca8c25c..0000000000 --- a/documentation/addons/addons-maven.asciidoc +++ /dev/null @@ -1,170 +0,0 @@ ---- -title: Using Add-ons in a Maven Project -order: 4 -layout: page ---- - -[[addons.maven]] -= Using Add-ons in a Maven Project - -((("Maven", "using add-ons", id="term.addons.maven", range="startofrange"))) - - -To use add-ons in a Maven project, you simply have to add them as dependencies -in the project POM. Most add-ons include a widget set, which are compiled to the -project widget set. - -Creating, compiling, and packaging a Vaadin project with Maven was described in -<<dummy/../../../framework/getting-started/getting-started-maven#getting-started.maven,"Using -Vaadin with Maven">>. - -[[addons.maven.dependency]] -== Adding a Dependency - -Vaadin Directory provides a Maven repository for all the add-ons in the -Directory. - -. Open the add-on page in Vaadin Directory. - -. Select the version. The latest is shown by default, but you can choose another -the version from the dropdown menu in the header of the add-on details page. - -. Click the [guilabel]#Maven/Ivy# to display the Maven dependency declaration, as -illustrated in Figure <<figure.addons.maven.pombutton>>. If the add-on is -available with multiple licenses, you will be prompted to select a license for -the dependency. - -+ -[[figure.addons.maven.pombutton]] -.Maven POM Definitions -image::img/directory-maven-pom.png[] - -. Copy the [literal]#++dependency++# declaration to the [filename]#pom.xml# file -in your project, under the [literal]#++dependencies++# element. - - -+ -[subs="normal"] ----- - ... - <dependencies> - ... - <dependency> - <groupId>**com.vaadin.addon**</groupId> - <artifactId>**vaadin-charts**</artifactId> - <version>**1.0.0**</version> - </dependency> - </dependencies> ----- -+ -You can use an exact version number, as is done in the example above, or -[literal]#++LATEST++# to always use the latest version of the add-on. - -+ -The POM excerpt given in Directory includes also a repository definition, but if -you have used the [literal]#++vaadin-archetype-application++# to create your -project, it already includes the definition. - -. Compile the widget set as described in the following section. - - - -[[addons.maven.compiling]] -== Compiling the Project Widget Set - -If you have used the [literal]#++vaadin-archetype-application++# to create the -project, the [filename]#pom.xml# includes all necessary declarations to compile -the widget set. The widget set compilation occurs in standard Maven build phase, -such as with [parameter]#package# or [parameter]#install# goal. - -[subs="normal"] ----- -[prompt]#$# [command]#mvn# [parameter]#package# ----- -Then, just deploy the WAR to your application server. - -[[addons.maven.compiling.recompiling]] -=== Recompiling the Widget Set - -The Vaadin plugin for Maven tries to avoid recompiling the widget set unless -necessary, which sometimes means that it is not compiled even when it should. -Running the [literal]#++clean++# goal usually helps, but causes a full -recompilation. You can compile the widget set manually by running the -[parameter]#vaadin:compile# goal. - -[subs="normal"] ----- -[prompt]#$# [command]#mvn# [parameter]#vaadin:compile# ----- -Note that this does not update the project widget set by searching new widget -sets from the class path. It must be updated if you add or remove add-ons, for -example. You can do that by running the [literal]#++vaadin:update-widgetset++# -goal in the project directory. - -[subs="normal"] ----- -[prompt]#$# [command]#mvn# [parameter]#vaadin:update-widgetset# -... -[INFO] auto discovered modules [your.company.gwt.ProjectNameWidgetSet] -[INFO] Updating widgetset your.company.gwt.ProjectNameWidgetSet -[ERROR] 27.10.2011 19:22:34 com.vaadin.terminal.gwt.widgetsetutils.ClassPathExplorer getAvailableWidgetSets -[ERROR] INFO: Widgetsets found from classpath: -... - ----- -Do not mind the "ERROR" labels, they are just an issue with the Vaadin Plugin -for Maven. - -After running the update, you need to run the [literal]#++vaadin:compile++# goal -to actually compile the widget set. - - - -[[addons.maven.widgetset]] -== Enabling Widget Set Compilation - -If you are not using a POM created with the proper Vaadin archetype, you may -need to enable widget set compilation manually. The simplest way to do that is -to copy the definitions from a POM created with the archetype. Specifically, you -need to copy the [literal]#++plugin++# definitions. You also need the Vaadin -dependencies. - -You need to create an empty widget set definition file, which the widget set -compilation will populate with widget sets found from the class path. Create a -[filename]#src/main/java/com/example/AppWidgetSet.gwt.xml# file (in the project -package) with an empty [literal]#++<module>++# element as follows: - - ----- -<module> -</module> ----- - -[[addons.maven.widgetset.web]] -=== Enabling the Widget Set in the UI - -If you have previously used the default widget set in the project, you need to -enable the project widget set in the [filename]#web.xml# deployment descriptor. -Edit the [filename]#src/main/webapp/WEB-INF/web.xml# file and add or modify the -[literal]#++widgetset++# parameter for the servlet as follows. - -[subs="normal"] ----- -<servlet> - ... - <init-param> - <description>Widget Set to Use</description> - <param-name>widgetset</param-name> - <param-value>**com.example.AppWidgetSet**</param-value> - </init-param> -</servlet> ----- -The parameter is the class name of the widget set, that is, without the -[filename]#.gwt.xml# extension and with the Java dot notation for class names -that include the package name. - - - -(((range="endofrange", startref="term.addons.maven"))) - - diff --git a/documentation/addons/addons-overview.asciidoc b/documentation/addons/addons-overview.asciidoc deleted file mode 100644 index 39d699fc08..0000000000 --- a/documentation/addons/addons-overview.asciidoc +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Overview -order: 1 -layout: page ---- - -[[addons.overview]] -= Overview - -In addition to the components, layouts, themes, and data sources built in into -the core Vaadin library, many others are available as add-ons. -link:http://vaadin.com/directory/[Vaadin Directory] provides a rich collection -of add-ons for Vaadin, and you may find others from independent sources. Add-ons -are also one way to share your own components between projects. - -Installation of add-ons from Vaadin Directory is simple, just adding an Ivy or -Maven dependency, or downloading the JAR package and and dropping it in the web -library folder of the project. Most add-ons include a widget set, which you need -to compile, but it's usually just a click of a button or a single command. - -After trying out an add-on, you can give some feedback to the author of the -add-on by rating the add-on with one to five stars and optionally leaving a -comment. Most add-ons also have a discussion forum thread for user feedback and -questions. - -Add-ons available from Vaadin Directory are distributed under different -licenses, of which some are commercial. While the add-ons can be downloaded -directly, you should note their license and other terms and conditions. Many are -offered under a dual licensing agreement so that they can be used in open source -projects for free, and many have a trial period for closed-source development. -Commercial Vaadin add-ons distributed under the CVAL license require installing -a license key as instructed in -<<dummy/../../../framework/addons/addons-cval#addons.cval,"Installing Commercial -Vaadin Add-on Licence">>. - - - diff --git a/documentation/addons/addons-troubleshooting.asciidoc b/documentation/addons/addons-troubleshooting.asciidoc deleted file mode 100644 index a899b3d26f..0000000000 --- a/documentation/addons/addons-troubleshooting.asciidoc +++ /dev/null @@ -1,57 +0,0 @@ ---- -title: Troubleshooting -order: 6 -layout: page ---- - -[[addons.troubleshooting]] -= Troubleshooting - -If you experience problems with using add-ons, you can try the following: - -* Check the [filename]#.gwt.xml# descriptor file under the the project root -package. For example, if the project root package is -[filename]#com.example.myproject#, the widget set definition file is typically -at [filename]#com/example/project/AppWidgetset.gwt.xml#. The location is not -fixed and it can be elsewhere, as long as references to it match. See -<<dummy/../../../framework/clientside/clientside-module#clientside.module,"Client-Side -Module Descriptor">> for details on the contents of the client-side module -descriptor, which is used to define a widget set. - -* Check the [filename]#WEB-INF/web.xml# deployment descriptor and see that the -servlet for your UI has a widget set parameter, such as the following: - - -+ ----- -<init-param> - <description>UI widgetset</description> - <param-name>widgetset</param-name> - <param-value>com.example.project.AppWidgetSet</param-value> -</init-param> ----- -+ -Check that the widget set class corresponds with the [filename]#.gwt.xml# file -in the source tree. - -* See the [filename]#VAADIN/widgetsets# directory and check that the widget set -appears there. You can remove it and recompile the widget set to see that the -compilation works properly. - -* Use the [guilabel]#Net# tab in Firebug to check that the widget set (and theme) -is loaded properly. - -* Use the ?debug parameter for the application to open the debug window and check -if there is any version conflict between the widget set and the Vaadin library, -or the themes. See -<<dummy/../../../framework/advanced/advanced-debug#advanced.debug,"Debug Mode -and Window">> for details. - -* Refresh and recompile the project. In Eclipse, select the project and press F5, -stop the server, clean the server temporary directories, and restart it. - -* Check the Error Log view in Eclipse (or in the IDE you use). - - - - diff --git a/documentation/addons/chapter-addons.asciidoc b/documentation/addons/chapter-addons.asciidoc deleted file mode 100644 index 4319e43456..0000000000 --- a/documentation/addons/chapter-addons.asciidoc +++ /dev/null @@ -1,19 +0,0 @@ -[[addons]] -== Using Vaadin Add-ons - -This chapter describes the installation of add-on components, themes, -containers, and other tools from the Vaadin Directory and the use of commercial -add-ons offered by Vaadin. - - -include::addons-overview.asciidoc[leveloffset=+2] - -include::addons-downloading.asciidoc[leveloffset=+2] - -include::addons-eclipse.asciidoc[leveloffset=+2] - -include::addons-maven.asciidoc[leveloffset=+2] - -include::addons-cval.asciidoc[leveloffset=+2] - -include::addons-troubleshooting.asciidoc[leveloffset=+2] diff --git a/documentation/addons/img/compile-widgetset-16.png b/documentation/addons/img/compile-widgetset-16.png Binary files differdeleted file mode 100644 index aeafb8bbaf..0000000000 --- a/documentation/addons/img/compile-widgetset-16.png +++ /dev/null diff --git a/documentation/addons/img/cval-pro-licenses-3.png b/documentation/addons/img/cval-pro-licenses-3.png Binary files differdeleted file mode 100644 index 4306eb2bd2..0000000000 --- a/documentation/addons/img/cval-pro-licenses-3.png +++ /dev/null diff --git a/documentation/addons/img/cval-pro-licenses-code.png b/documentation/addons/img/cval-pro-licenses-code.png Binary files differdeleted file mode 100644 index 1f467e8b4f..0000000000 --- a/documentation/addons/img/cval-pro-licenses-code.png +++ /dev/null diff --git a/documentation/addons/img/directory-ivy-dependency.png b/documentation/addons/img/directory-ivy-dependency.png Binary files differdeleted file mode 100644 index 3393699315..0000000000 --- a/documentation/addons/img/directory-ivy-dependency.png +++ /dev/null diff --git a/documentation/addons/img/directory-maven-pom.png b/documentation/addons/img/directory-maven-pom.png Binary files differdeleted file mode 100644 index 720d4b089c..0000000000 --- a/documentation/addons/img/directory-maven-pom.png +++ /dev/null diff --git a/documentation/addons/img/widgetset-compiling-toolbar-hi.png b/documentation/addons/img/widgetset-compiling-toolbar-hi.png Binary files differdeleted file mode 100644 index 79e14ec60e..0000000000 --- a/documentation/addons/img/widgetset-compiling-toolbar-hi.png +++ /dev/null diff --git a/documentation/addons/img/widgetset-compiling-toolbar-lo.png b/documentation/addons/img/widgetset-compiling-toolbar-lo.png Binary files differdeleted file mode 100644 index 70b3e9bfb4..0000000000 --- a/documentation/addons/img/widgetset-compiling-toolbar-lo.png +++ /dev/null diff --git a/documentation/addons/img/widgetset-compiling-toolbar.png b/documentation/addons/img/widgetset-compiling-toolbar.png Binary files differdeleted file mode 100644 index 853b2c457c..0000000000 --- a/documentation/addons/img/widgetset-compiling-toolbar.png +++ /dev/null diff --git a/documentation/addons/original-drawings/widgetset-compiling-toolbar.svg b/documentation/addons/original-drawings/widgetset-compiling-toolbar.svg deleted file mode 100644 index 780d401457..0000000000 --- a/documentation/addons/original-drawings/widgetset-compiling-toolbar.svg +++ /dev/null @@ -1,176 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- sodipodi:docname="widgetset-compiling-toolbar.svg"
- sodipodi:docbase="/home/tsoots/ohj/translations/po"
- inkscape:output_extension="org.inkscape.output.svg.inkscape">
- <defs
- id="defs1903">
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective7" />
- <inkscape:perspective
- id="perspective2499"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- y2="471.38400"
- y1="45.132561"
- xlink:href="#linearGradient7601"
- x2="1370.5586"
- x1="-526.86133"
- spreadMethod="reflect"
- inkscape:collect="always"
- id="linearGradient10877"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(8.892150e-2,0.000000,0.000000,0.155616,635.7169,9.380527)" />
- <linearGradient
- y2="471.38400"
- y1="45.132561"
- xlink:href="#linearGradient7601"
- x2="1370.5586"
- x1="-526.86133"
- spreadMethod="reflect"
- inkscape:collect="always"
- id="linearGradient10869"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.323979,0.000000,0.000000,0.566975,399.6324,14.15086)" />
- <linearGradient
- y2="471.38400"
- y1="45.132561"
- xlink:href="#linearGradient7601"
- x2="1370.5586"
- x1="-526.86133"
- spreadMethod="reflect"
- inkscape:collect="always"
- id="linearGradient7607"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.755921,0,0,1.32289,-36,0)" />
- <linearGradient
- inkscape:collect="always"
- id="linearGradient7601">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop7603" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop7605" />
- </linearGradient>
- <inkscape:perspective
- id="perspective13602"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective2529"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="2.8"
- inkscape:cx="295.42901"
- inkscape:cy="873.26277"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1333"
- inkscape:window-height="739"
- inkscape:window-x="1493"
- inkscape:window-y="131"
- showgrid="false" />
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <image
- y="116.93364"
- x="125.21431"
- id="image2501"
- height="48"
- width="281"
- sodipodi:absref="/home/magi/itmill/book-7/manual/img/addons/widgetset-compiling-toolbar.png"
- xlink:href="/home/magi/itmill/book-7/manual/img/addons/widgetset-compiling-toolbar.png" />
- <rect
- style="opacity:1;fill:#eeeff2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.0999999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.29999998;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect2535"
- width="24.496172"
- height="16.667501"
- x="204.80843"
- y="122.51678" />
- <image
- y="122.34544"
- x="208.74406"
- id="image2531"
- height="17.262691"
- width="17.262691"
- sodipodi:absref="//home/magi/itmill/book-7/manual/img/addons/compile-widgetset-16.png"
- xlink:href="/home/magi/itmill/book-7/manual/img/addons/compile-widgetset-16.png"
- style="fill:#eeeff2;fill-opacity:1" />
- <g
- style="display:inline"
- inkscape:label="Layer 1"
- id="g13611"
- transform="matrix(2.4577007e-2,0,0,2.4577007e-2,218.45402,137.72183)">
- <g
- id="g1317">
- <path
- style="fill:url(#linearGradient7607);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
- id="path6080"
- d="M 70.29035,24.82601 L 70.29035,627.16976 L 105.72785,627.16976 L 105.72785,591.73226 L 141.16535,591.73226 L 141.16535,556.32601 L 176.5716,556.32601 L 176.5716,520.88851 L 212.0091,520.88851 L 247.4466,520.88851 L 247.4466,591.73226 L 282.8841,591.73226 L 282.8841,662.60726 L 318.3216,662.60726 L 318.3216,733.48226 L 353.7591,733.48226 L 353.7591,768.91976 L 424.60285,768.91976 L 424.60285,733.48226 L 460.04035,733.48226 L 460.04035,662.60726 L 424.60285,662.60726 L 424.60285,591.73226 L 389.1966,591.73226 L 389.1966,520.88851 L 353.7591,520.88851 L 353.7591,450.01351 L 495.47785,450.01351 L 495.47785,414.57601 L 460.04035,414.57601 L 460.04035,379.13851 L 424.60285,379.13851 L 424.60285,343.70101 L 389.1966,343.70101 L 389.1966,308.29476 L 353.7591,308.29476 L 353.7591,272.85726 L 318.3216,272.85726 L 318.3216,237.41976 L 282.8841,237.41976 L 282.8841,201.98226 L 247.4466,201.98226 L 247.4466,166.54476 L 212.0091,166.54476 L 212.0091,131.10726 L 176.5716,131.10726 L 176.5716,95.669761 L 141.16535,95.669761 L 141.16535,60.26351 L 105.72785,60.26351 L 105.72785,24.82601 L 70.29035,24.82601 z" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- id="rect1430"
- d="M 35.4375,24.8125 L 35.4375,627.15625 L 70.875,627.15625 L 70.875,591.71875 L 106.3125,591.71875 L 106.3125,556.3125 L 70.875,556.3125 L 70.875,95.65625 L 106.3125,95.65625 L 106.3125,60.25 L 70.875,60.25 L 70.875,24.8125 L 35.4375,24.8125 z M 106.3125,95.65625 L 106.3125,131.09375 L 141.71875,131.09375 L 141.71875,95.65625 L 106.3125,95.65625 z M 141.71875,131.09375 L 141.71875,166.53125 L 177.15625,166.53125 L 177.15625,131.09375 L 141.71875,131.09375 z M 177.15625,166.53125 L 177.15625,201.96875 L 212.59375,201.96875 L 212.59375,166.53125 L 177.15625,166.53125 z M 212.59375,201.96875 L 212.59375,237.40625 L 248.03125,237.40625 L 248.03125,201.96875 L 212.59375,201.96875 z M 248.03125,237.40625 L 248.03125,272.84375 L 283.46875,272.84375 L 283.46875,237.40625 L 248.03125,237.40625 z M 283.46875,272.84375 L 283.46875,308.28125 L 318.90625,308.28125 L 318.90625,272.84375 L 283.46875,272.84375 z M 318.90625,308.28125 L 318.90625,343.6875 L 354.34375,343.6875 L 354.34375,308.28125 L 318.90625,308.28125 z M 354.34375,343.6875 L 354.34375,379.125 L 389.75,379.125 L 389.75,343.6875 L 354.34375,343.6875 z M 389.75,379.125 L 389.75,414.5625 L 283.46875,414.5625 L 283.46875,450 L 283.46875,520.875 L 318.90625,520.875 L 318.90625,450 L 460.625,450 L 460.625,414.5625 L 425.1875,414.5625 L 425.1875,379.125 L 389.75,379.125 z M 318.90625,520.875 L 318.90625,591.71875 L 354.34375,591.71875 L 354.34375,520.875 L 318.90625,520.875 z M 354.34375,591.71875 L 354.34375,662.59375 L 389.75,662.59375 L 389.75,591.71875 L 354.34375,591.71875 z M 389.75,662.59375 L 389.75,733.46875 L 425.1875,733.46875 L 425.1875,662.59375 L 389.75,662.59375 z M 389.75,733.46875 L 318.90625,733.46875 L 318.90625,768.90625 L 389.75,768.90625 L 389.75,733.46875 z M 318.90625,733.46875 L 318.90625,662.59375 L 283.46875,662.59375 L 283.46875,733.46875 L 318.90625,733.46875 z M 283.46875,662.59375 L 283.46875,591.71875 L 248.03125,591.71875 L 248.03125,662.59375 L 283.46875,662.59375 z M 248.03125,591.71875 L 248.03125,520.875 L 212.59375,520.875 L 212.59375,591.71875 L 248.03125,591.71875 z M 212.59375,520.875 L 212.59375,450 L 177.15625,450 L 177.15625,485.4375 L 141.71875,485.4375 L 141.71875,520.875 L 177.15625,520.875 L 212.59375,520.875 z M 141.71875,520.875 L 106.3125,520.875 L 106.3125,556.3125 L 141.71875,556.3125 L 141.71875,520.875 z" />
- <path
- style="fill:#ffffff;fill-opacity:1;stroke:none"
- id="rect3779"
- d="M 70.875,95.65625 L 70.875,556.3125 L 106.3125,556.3125 L 106.3125,520.875 L 141.71875,520.875 L 141.71875,485.4375 L 177.15625,485.4375 L 177.15625,450 L 212.59375,450 L 212.59375,520.875 L 248.03125,520.875 L 248.03125,591.71875 L 283.46875,591.71875 L 283.46875,662.59375 L 318.90625,662.59375 L 318.90625,733.46875 L 354.34375,733.46875 L 389.75,733.46875 L 389.75,662.59375 L 354.34375,662.59375 L 354.34375,591.71875 L 318.90625,591.71875 L 318.90625,520.875 L 283.46875,520.875 L 283.46875,414.5625 L 318.90625,414.5625 L 354.34375,414.5625 L 389.75,414.5625 L 389.75,379.125 L 354.34375,379.125 L 354.34375,343.6875 L 318.90625,343.6875 L 318.90625,308.28125 L 283.46875,308.28125 L 283.46875,272.84375 L 248.03125,272.84375 L 248.03125,237.40625 L 212.59375,237.40625 L 212.59375,201.96875 L 177.15625,201.96875 L 177.15625,166.53125 L 141.71875,166.53125 L 141.71875,131.09375 L 106.3125,131.09375 L 106.3125,95.65625 L 70.875,95.65625 z" />
- </g>
- </g>
- </g>
-</svg>
diff --git a/documentation/advanced/advanced-architecture.asciidoc b/documentation/advanced/advanced-architecture.asciidoc deleted file mode 100644 index 437c6f4a1d..0000000000 --- a/documentation/advanced/advanced-architecture.asciidoc +++ /dev/null @@ -1,298 +0,0 @@ ---- -title: Advanced Application Architectures -order: 10 -layout: page ---- - -[[advanced.architecture]] -= Advanced Application Architectures - -In this section, we continue from the basic application architectures described -in -<<dummy/../../../framework/application/application-architecture#application.architecture,"Building -the UI">> and discuss some of the more advanced patterns that are often used in -Vaadin applications. - -[[advanced.architecture.layering]] -== Layered Architectures - -Layered architectures, where each layer has a clearly distinct responsibility, -are probably the most common architectures. Typically, applications follow at -least a three-layer architecture: - -* User interface (or presentation) layer -* Domain layer -* Data store layer - -Such an architecture starts from a __domain model__, which defines the data -model and the "business logic" of the application, typically as beans or POJOs. -A user interface is built on top of the domain model, in our context with the -Vaadin Framework. The Vaadin user interface could be bound directly to the data -model through the Vaadin Data Model, described in -<<dummy/../../../framework/datamodel/datamodel-overview.asciidoc#datamodel.overview,"Binding -Components to Data">>. Beneath the domain model lies a data store, such as a -relational database. The dependencies between the layers are restricted so that -a higher layer may depend on a lower one, but never the other way around. - -[[figure.advanced.architecture.layering]] -.Three-Layer Architecture -image::img/three-layer-architecture-hi.png[] - -An __application layer__ (or __service layer__) is often distinguished from the -domain layer, offering the domain logic as a service, which can be used by the -user interface layer, as well as for other uses. In Java EE development, -Enterprise JavaBeans (EJBs) are typically used for building this layer. - -An __infrastructure layer__ (or __data access layer__) is often distinguished -from the data store layer, with a purpose to abstract the data store. For -example, it could involve a persistence solution such as JPA and an EJB -container. This layer becomes relevant with Vaadin when binding Vaadin -components to data with the JPAContainer, as described in -<<dummy/../../../framework/jpacontainer/jpacontainer-overview.asciidoc#jpacontainer.overview,"Vaadin -JPAContainer">>. - - -[[advanced.architecture.mvp]] -== Model-View-Presenter Pattern - -The Model-View-Presenter (MVP) pattern is one of the most common patterns in -developing large applications with Vaadin. It is similar to the older -Model-View-Controller (MVC) pattern, which is not as meaningful in Vaadin -development. Instead of an implementation-aware controller, there is an -implementation-agnostic presenter that operates the view through an interface. -The view does not interact directly with the model. This isolates the view -implementation better than in MVC and allows easier unit testing of the -presenter and model. - -[[figure.advanced.architecture.mvp]] -.Model-View-Presenter Pattern -image::img/mvp-pattern-hi.png[] - -<<figure.advanced.architecture.mvp>> illustrates the MVP pattern with a simple -calculator. The domain model is realized in the [classname]#Calculator# class, -which includes a data model and some model logic operations. The -[classname]#CalculatorViewImpl# is a Vaadin implementation of the view, defined -in the [interfacename]#CalculatorView# interface. The -[classname]#CalculatorPresenter# handles the user interface logic. User -interaction events received in the view are translated into -implementation-independent events for the presenter to handle (the view -implementation could also just call the presenter). - -Let us first look how the model and view are bound together by the presenter in -the following example: - - -[source, java] ----- - -// Create the model and the Vaadin view implementation -CalculatorModel model = new CalculatorModel(); -CalculatorViewImpl view = new CalculatorViewImpl(); - -// The presenter binds the model and view together -new CalculatorPresenter(model, view); - -// The view implementation is a Vaadin component -layout.addComponent(view); ----- - -You could add the view anywhere in a Vaadin application, as it is a composite -component. - -[[advanced.architecture.mvp.model]] -=== The Model - -Our business model is quite simple, with one value and a number of operations -for manipulating it. - - -[source, java] ----- -/** The model **/ -class CalculatorModel { - private double value = 0.0; - - public void clear() { - value = 0.0; - } - - public void add(double arg) { - value += arg; - } - - public void multiply(double arg) { - value *= arg; - } - - public void divide(double arg) { - if (arg != 0.0) - value /= arg; - } - - public double getValue() { - return value; - } - - public void setValue(double value) { - this.value = value; - } -} ----- - - -[[advanced.architecture.mvp.view]] -=== The View - -The purpose of the view in MVP is to display data and receive user interaction. -It relays the user interaction to the presenter in an fashion that is -independent of the view implementation, that is, no Vaadin events. It is defined -as a UI framework interface that can have multiple implementations. - - -[source, java] ----- -interface CalculatorView { - public void setDisplay(double value); - - interface CalculatorViewListener { - void buttonClick(char operation); - } - public void addListener(CalculatorViewListener listener); -} ----- - -The are design alternatives for the view. It could receive the listener in its -constructor, or it could just know the presenter. Here, we forward button clicks -as an implementation-independent event. - -As we are using Vaadin, we make a Vaadin implementation of the interface as -follows: - - -[source, java] ----- -class CalculatorViewImpl extends CustomComponent - implements CalculatorView, ClickListener { - private Label display = new Label("0.0"); - - public CalculatorViewImpl() { - GridLayout layout = new GridLayout(4, 5); - - // Create a result label that spans over all - // the 4 columns in the first row - layout.addComponent(display, 0, 0, 3, 0); - - // The operations for the calculator in the order - // they appear on the screen (left to right, top - // to bottom) - String[] operations = new String[] { - "7", "8", "9", "/", "4", "5", "6", - "*", "1", "2", "3", "-", "0", "=", "C", "+" }; - - // Add buttons and have them send click events - // to this class - for (String caption: operations) - layout.addComponent(new Button(caption, this)); - - setCompositionRoot(layout); - } - - public void setDisplay(double value) { - display.setValue(Double.toString(value)); - } - - /* Only the presenter registers one listener... */ - List<CalculatorViewListener> listeners = - new ArrayList<CalculatorViewListener>(); - - public void addListener(CalculatorViewListener listener) { - listeners.add(listener); - } - - /** Relay button clicks to the presenter with an - * implementation-independent event */ - @Override - public void buttonClick(ClickEvent event) { - for (CalculatorViewListener listener: listeners) - listener.buttonClick(event.getButton() - .getCaption().charAt(0)); - } -} ----- - - -[[advanced.architecture.mvp.presenter]] -=== The Presenter - -The presenter in MVP is a middle-man that handles all user interaction logic, -but in an implementation-independent way, so that it doesn't actually know -anything about Vaadin. It shows data in the view and receives user interaction -back from it. - - -[source, java] ----- -class CalculatorPresenter - implements CalculatorView.CalculatorViewListener { - CalculatorModel model; - CalculatorView view; - - private double current = 0.0; - private char lastOperationRequested = 'C'; - - public CalculatorPresenter(CalculatorModel model, - CalculatorView view) { - this.model = model; - this.view = view; - - view.setDisplay(current); - view.addListener(this); - } - - @Override - public void buttonClick(char operation) { - // Handle digit input - if ('0' <= operation && operation <= '9') { - current = current * 10 - + Double.parseDouble("" + operation); - view.setDisplay(current); - return; - } - - // Execute the previously input operation - switch (lastOperationRequested) { - case '+': - model.add(current); - break; - case '-': - model.add(-current); - break; - case '/': - model.divide(current); - break; - case '*': - model.multiply(current); - break; - case 'C': - model.setValue(current); - break; - } // '=' is implicit - - lastOperationRequested = operation; - - current = 0.0; - if (operation == 'C') - model.clear(); - view.setDisplay(model.getValue()); - } -} ----- - -In the above example, we held some state information in the presenter. -Alternatively, we could have had an intermediate controller between the -presenter and the model to handle the low-level button logic. - - - - - diff --git a/documentation/advanced/advanced-cdi.asciidoc b/documentation/advanced/advanced-cdi.asciidoc deleted file mode 100644 index d5d135ca1f..0000000000 --- a/documentation/advanced/advanced-cdi.asciidoc +++ /dev/null @@ -1,997 +0,0 @@ ---- -title: Vaadin CDI Add-on -order: 17 -layout: page ---- - -[[advanced.cdi]] -= Vaadin CDI Add-on - -((("Contexts and Dependency Injection", id="term.advanced.cdi.cdilong", range="startofrange"))) - - -((("CDI", id="term.advanced.cdi.cdi", range="startofrange"))) - - -((("Vaadin CDI Add-on", id="term.advanced.cdi.cdiaddon", range="startofrange"))) - - -Vaadin CDI add-on makes it easier to use contexts and dependency injection (CDI) -in Vaadin applications. CDI is a Java EE feature especially targeted for web -applications, which have well-defined contextual scopes, such as sessions, -views, requests, and so forth. The lifecycle of objects, such as beans, can be -managed by binding their lifecycles to such contexts. Vaadin CDI enables these -features with two additional kinds of Vaadin-specific contextual scopes: UIs and -navigation views. - -To learn more about Vaadin CDI, the link:[Vaadin CDI Tutorial] gives a hands-on -introduction. The source code of the CDI Tutorial demo is available for browsing -or cloning at https://github.com/vaadin-samples/cdi-tutorial. - -[[advanced.cdi.cdi]] -== CDI Overview - -Contexts and dependency injection, defined in the JSR-299 standard, is a Java EE -feature that, through a set of services, helps in improving application -architecture by decoupling the management of service object lifecycles from -client objects using them. The lifecycle of objects stored in a CDI container is -defined by a context. The managed objects or beans are accessed using dependency -injection. - -CDI builds on the Java concept of beans, but with somewhat different definition -and requirements. - -Regarding general CDI topics, such as use of qualifiers, interceptors, -decorators, event notifications, and other CDI features, we refer you to CDI -documentation. - -ifdef::web[] -* link:http://jaxenter.com/tutorial-introduction-to-cdi-contexts-and-dependency-injection-for-java-ee-jsr-299-104536.html[Introduction -to CDI]. Pete Muir and Mark Struberg, JAXenter. - -* link:http://docs.jboss.org/weld/reference/latest/en-US/html_single/[Weld - CDI -Reference Implementation] - -* link:http://cdi-spec.org/[CDI Specification] - -* link:https://vaadin.com/wiki?p_p_id=36&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&p_p_col_id=row-1&p_p_col_pos=1&p_p_col_count=3&p_r_p_185834411_title=Vaadin+CDI&p_r_p_185834411_nodeName=vaadin.com+wiki&_36_struts_action=%2Fwiki%2Fview[Vaadin -CDI Tutorial] - -endif::web[] - -[[advanced.cdi.cdi.injection]] -=== Dependency Injection - -__Dependency injection__ is a way to pass dependencies (service objects) to -dependent objects (clients) by injecting them in member variables or initializer -parameters, instead of managing the lifecycle in the clients or passing them -explicitly as parameters. In CDI, injection of a service object to a client is -specified by the [classname]#@Inject# annotation. - -For example, if we have a UI view that depends on user data, we could inject the -data in the client as follows: - - -[source, java] ----- -public class MainView extends CustomComponent implements View { - @Inject - User user; - - ... - @Override - public void enter(ViewChangeEvent event) { - greeting.setValue("Hello, " + user.getName()); - } -} ----- - -In addition to injecting managed beans with the annotation, you can query for -them from the bean manager. - - -[[advanced.cdi.cdi.contexts]] -=== Contexts and Scopes - -__Contexts__ in CDI are services that manage the lifecycle of objects and handle -their injection. Generally speaking, a context is a situation in which an -instance is used with a unique identity. Such objects are essentially -"singletons" in the context. While conventional singletons are application-wide, -objects managed by a CDI container can be "singletons" in a more narrow -__scope__: a user session, a particular UI instance associated with the session, -a view within the UI, or even just a single request. Such a context defines the -lifecycle of the object: its creation, use, and finally its destruction. - -As a very typical example in a web application, you would have a user data -object associated with a user session. - - -[source, java] ----- -@SessionScoped -public class User { - private String name; - - public void setName(String name) {this.name = name;} - public String getName() {return name;} -} ----- - -Now, when you need to refer to the user, you can use CDI injection to inject the -session-scoped "singleton" to a member variable or a constructor parameter. - - -[source, java] ----- -public class MainView extends CustomComponent implements View { - @Inject - User user; - - ... - - @Override - public void enter(ViewChangeEvent event) { - greeting.setValue("Hello, " + user.getName()); - } -} ----- - - - -[[advanced.cdi.installation]] -== Installing Vaadin CDI Add-on - -Vaadin CDI requires a Java EE 7 compatible servlet container, such as Glassfish -or Apache TomEE Web Profile, as mentioned for the reference toolchain in -<<dummy/../../../framework/getting-started/getting-started-environment#getting-started.environment,"Setting -up the Development Environment">>. - -To install the Vaadin CDI add-on, either define it as an Ivy or Maven dependency -or download it from the Vaadin Directory add-on page at -<<,vaadin.com/directory#addon/vaadin-cdi>>. See -<<dummy/../../../framework/addons/addons-overview.asciidoc#addons.overview,"Using -Vaadin Add-ons">> for general instructions for installing and using Vaadin -add-ons. - -The Ivy dependency is as follows: - -[subs="normal"] ----- - <dependency org="com.vaadin" name="vaadin-cdi" - rev="[replaceable]#latest.release#"/> ----- -The Maven dependency is as follows: - -[subs="normal"] ----- - <dependency> - <groupId>com.vaadin</groupId> - <artifactId>vaadin-cdi</artifactId> - <version>[replaceable]#LATEST#</version> - </dependency> - <dependency> - <groupId>javax.enterprise</groupId> - <artifactId>cdi-api</artifactId> - <version>[replaceable]#1.2#</version> - </dependency> ----- - -[[advanced.cdi.peparing]] -== Preparing Application for CDI - -A Vaadin application that uses CDI must have a file named [filename]#beans.xml# -in the [filename]#WEB-INF# directory. The file can be completely empty (it has -content only in certain limited situations), but it must be present. - -The application should not have a servlet extending [classname]#VaadinServlet#, -as Vaadin servlet has its own [classname]#VaadinCDIServlet# that is deployed -automatically. If you need multiple servlets or need to customize the Vaadin CDI -servlet, see <<advanced.cdi.deployment>>. - - -[[advanced.cdi.cdiui]] -== Injecting a UI with [classname]#@CDIUI# - -((("[classname]#@CDIUI#", id="term.advanced.cdi.cdiui", range="startofrange"))) - - -Vaadin CDI offers an easier way to instantiate UIs and to define the URL mapping -for them than the usual ways described in -<<dummy/../../../framework/application/application-environment#application.environment,"Deploying -an Application">>. To define a UI class that should be instantiated for a given -URL, you simply need to annotate the class with [classname]#@CDIUI#. It takes an -optional URL path as parameter. - - -[source, java] ----- -@CDIUI("myniceui") -@Theme("valo") -public class MyNiceUI extends UI { - ... ----- - -Giving empty UI path maps the UI to the root of the application context. - - -[source, java] ----- -@CDIUI("") ----- - -If the optional UI path is not given, the path is determined automatically from -the class name by removing a possible "-UI" suffix in the class name, making it -lower-case, and for capitalized letters, a hyphen is added. For example, a UI -with class name [classname]#MyNiceUI# would have path [literal]#++my-nice++#. -The URL consists of the server address, application context, and the UI path. -For example, when running a Vaadin application in a development workstation, you -would have URL such as http://localhost:8080/myproject/my-nice. - -UI path mappings are reported in the server log during deployment. - -See <<advanced.cdi.deployment>> for how to handle servlet URL mapping of CDI UIs -when working with multiple servlets in the same web application. - -(((range="endofrange", startref="term.advanced.cdi.cdiui"))) - -[[advanced.cdi.scopes]] -== Scopes - -((("CDI", "scopes", id="term.advanced.cdi.scopes", range="startofrange"))) - - -As in programming languages, where a variable name refers to a unique object -within the scope of the variable, a CDI scope is a context in which an object -has unique identity. In CDI, objects to be injected are identified by their type -and any qualifiers they may have. The scope can be defined as an annotation to -the service class as follows: - - -[source, java] ----- -@SessionScoped -public class User { - ... ----- - -CDI defines a number of scopes. Note that the standard CDI scopes are defined -under the [package]#javax.enterprise.context# package and Vaadin CDI scopes -under [package]#com.vaadin.cdi#, while JSF scopes are defined in -[package]#javax.faces.bean#. - -[[advanced.cdi.scopes.ui]] -=== UI Scope - -UI-scoped beans are uniquely identified within a UI instance, that is, a browser -window or tab. - -Vaadin CDI provides two annotations for the UI scope, differing in how they -enable proxies, as explained later. - -[classname]#@UIScoped#([package]#com.vaadin.cdi#):: ((("[classname]#@UIScoped#", id="term.advanced.cdi.scopes.uiscoped", range="startofrange"))) - - -+ -Injection with this annotation will create a direct reference to the bean rather -than a proxy. There are some limitations when not using proxies. Circular -references (injecting A to B and B to A) will not work, and neither do CDI -interceptors and decorators. - -(((range="endofrange", startref="term.advanced.cdi.scopes.uiscoped"))) -[classname]#@NormalUIScoped#([package]#com.vaadin.cdi#):: As [classname]#@UIScoped#, but injecting a managed bean having this annotation -injects a proxy for the bean instead of a direct reference. This is the normal -behaviour with CDI, as many CDI features utilize the proxy. - - - -Defining a CDI view (annotated with [classname]#@CDIView# as described later) as -[classname]#@UIScoped# makes the view retain the same instance when the user -navigates away and back to the view. - - -[[advanced.cdi.scopes.view]] -=== View Scopes - -The lifecycle of a view-scoped bean starts when the user navigates to a view -referring to the object and ends when the user navigates out of the view (or -when the UI is closed or expires). - -Vaadin CDI provides two annotations for the view scope, differing in how they -enable proxies, as explained later. - -[classname]#@ViewScoped#([package]#com.vaadin.cdi#):: Injection with this annotation will create a direct reference to the bean rather -than a proxy. There are some limitations when not using proxies. Circular -references (injecting A to B and B to A) will not work, and neither do CDI -interceptors and decorators. - -[classname]#@NormalViewScoped#([package]#com.vaadin.cdi#):: As [classname]#@NormalScoped#, except that injecting with this annotation will -create a proxy for the contextual instance rather than provide the contextual -instance itself. See the explanation of proxies below. - - - - -[[advanced.cdi.scopes.cdi]] -=== Standard CDI Scopes - -[classname]#@ApplicationScoped#:: ((("[classname]#@ApplicationScoped#", id="term.advanced.cdi.scopes.applicationscoped", range="startofrange"))) - - -+ -Application-scoped beans are shared by all servlets in the web application, and -are essentially equal to singletons.//TODO This is just a guess - is it -true? -Note that referencing application-scoped beans is not thread-safe and access -must be synchronized. - -(((range="endofrange", startref="term.advanced.cdi.scopes.applicationscoped"))) -[classname]#@SessionScoped#:: ((("[classname]#@SessionScoped#", id="term.advanced.cdi.scopes.sessionscoped", range="startofrange"))) - - -+ -The lifecycle and visibility of session-scoped beans is bound to a HTTP or user -session, which in Vaadin applications is associated with the -[classname]#VaadinSession# (see -<<dummy/../../../framework/application/application-lifecycle#application.lifecycle.session,"User -Session">>). This is a very typical scope to store user data, as is done in many -examples in this section, or database connections. The lifecycle of -session-scoped beans starts when a user opens the page for a UI in the browser, -and ends when the session expires after the last UI in the session is closed. - -(((range="endofrange", startref="term.advanced.cdi.scopes.sessionscoped"))) - - - -[[advanced.cdi.scopes.proxies]] -=== Proxies vs Direct References - -CDI uses proxy objects to enable many of the CDI features, by hooking into -message-passing from client to service beans. Under the hood, a proxy is an -instance of an automatically generated class that extends the proxied bean type, -so communicating through a proxy occurs transparently, as it has the same -polymorphic type as the actual bean. Whether proxying is enabled or not is -defined in the scope: CDI scopes are either __normal scopes__, which can be -proxied, or __pseudoscopes__, which use direct references to injected beans. - -The proxying mechanism creates some requirements for injecting objects in normal -scope: - -* The objects may not be primitive types or arrays - -* The bean class must not be final - -* The bean class must not have final methods - - -Beans annotated with [classname]#@UIScoped# or [classname]#@ViewScoped# use a -pseudoscope, and are therefore injected with direct references to the bean -instances, while [classname]#@NormalUIScoped# and [classname]#@NormalViewScoped# -beans will use a proxy for communicating with the beans. - -When using proxies, be aware that it is not guaranteed that the -[methodname]#hashCode()# or [methodname]#equals()# will match when comparing a -proxy to its underlying instance. It is imperative to be aware of this when, for -example, adding proxies to a [interfacename]#Collection#. - -You should avoid using normal scopes with Vaadin components, as proxies may not -work correctly within the Vaadin framework. If Vaadin CDI plugin detects such -use, it displays a warning such as the following: - - ----- -INFO: The following Vaadin components are injected -into normal scoped contexts: - @NormalUIScoped org.example.User -This approach uses proxy objects and has not been -extensively tested with the framework. Please report -any unexpected behavior. Switching to a pseudo-scoped -context may also resolve potential issues. ----- - - -(((range="endofrange", startref="term.advanced.cdi.scopes"))) - -[[advanced.cdi.deployment]] -== Deploying CDI UIs and Servlets - -Vaadin CDI hooks into Vaadin framework by using a special -[classname]#VaadinCDIServlet#. As described earlier, you do not need to map an -URL path to a UI, as it is handled by Vaadin CDI. However, in the following, we -go through some cases where you need to customize the servlet or use CDI with -non-CDI servlets and UIs in a web application. - -[[advanced.cdi.deployment.urlmapping]] -=== Defining Servlet Root with [classname]#@URLMapping# - -CDI UIs are managed by a CDI servlet ( [classname]#VaadinCDIServlet#), which is -by default mapped to the root of the application context. For example, if the -name of a CDI UI is " [literal]#++my-cdi++#" and application context is -[literal]#++/myproject++#, the UI would by default have URL " -[literal]#++/myproject/my-cdi++#". If you do not want to have the servlet mapped -to context root, you can use the [classname]#@URLMapping# annotation to map all -CDI UIs to a sub-path. The annotation must be given to only one CDI UI, usually -the one with the default ("") path. - -For example, if we have a root UI and another: - - -[source, java] ----- -@CDIUI("") // At CDI servlet root -@URLMapping("mycdiuis") // Define CDI Servlet root -public class MyCDIRootUI extends UI {...} - -@CDIUI("another") -public class AnotherUI extends UI {...} ----- - -These two UIs would have URLs /myproject/mycdiuis and -/myproject/mycdiuis/another, respectively. - -You can also map the CDI servlet to another URL in servlet definition in -[filename]#web.xml#, as described the following. - - -[[advanced.cdi.servlets.mixing]] -=== Mixing With Other Servlets - -The [classname]#VaadinCDIServlet# is normally used as the default servlet, but -if you have other servlets in the application, such as for non-CDI UIs, you need -to define the CDI servlet explicitly in the [filename]#web.xml#. You can map the -servlet to any URL path, but perhaps typically, you define it as the default -servlet as follows, and map the other servlets to other URL paths: - -[subs="normal"] ----- -<web-app> - ... - - <servlet> - <servlet-name>Default</servlet-name> - <servlet-class> - com.vaadin.cdi.internal.VaadinCDIServlet - </servlet-class> - </servlet> - - <servlet-mapping> - <servlet-name>Default</servlet-name> - <url-pattern>[replaceable]#/mycdiuis/*#</url-pattern> - </servlet-mapping> - - <servlet-mapping> - <servlet-name>Default</servlet-name> - <url-pattern>/VAADIN/*</url-pattern> - </servlet-mapping> -</web-app> ----- -With such a setting, paths to CDI UIs would have base path -[filename]#/myapp/mycdiuis#, to which the (optional) UI path would be appended. -The [filename]#/VAADIN/*# only needs to be mapped to the servlet if there are no -other Vaadin servlets. - - -[[advanced.cdi.servlets.custom]] -=== Custom Servlets - -When customizing the Vaadin servlet, as outlined in -<<dummy/../../../framework/application/application-lifecycle#application.lifecycle.servlet-service,"Vaadin -Servlet, Portlet, and Service">>, you simply need to extend -[classname]#com.vaadin.cdi.internal.VaadinCDIServlet# instead of -[classname]#com.vaadin.servlet.VaadinServlet#. - -The custom servlet must not have [classname]#@WebServlet# annotation or -[classname]#@VaadinServletConfiguration#, as you would normally with a Vaadin -servlet, as described in -<<dummy/../../../framework/application/application-environment#application.environment,"Deploying -an Application">>. - - - -ifdef::web[] -[[advanced.cdi.navigation]] -== View Navigation - -Vaadin CDI extends the navigation framework in Vaadin, described in -<<dummy/../../../framework/advanced/advanced-navigator#advanced.navigator,"Navigating -in an Application">>. It manages CDI views with a special view provider and -enables view scoping. - -[[advanced.cdi.navigation.ui]] -=== Preparing the UI - -You can define navigation for any single-component container, as described in -<<dummy/../../../framework/advanced/advanced-navigator#advanced.navigator.navigating,"Setting -Up for Navigation">>, but typically you set up navigation for the entire UI -content. To use Vaadin CDI views, you need to inject a -[classname]#CDIViewProvider# in the UI and add it as a provider for the -navigator. - - -[source, java] ----- -@CDIUI("mycdiui") -public class MyCDIUI extends UI { - @Inject - CDIViewProvider viewProvider; - - @Override - protected void init(VaadinRequest request) { - Navigator navigator = new Navigator(this, this); - navigator.addProvider(viewProvider); - - // Navigate to start view - navigator.navigateTo(""); - } -} ----- - - -[[advanced.cdi.navigation.view]] -=== The View - -A view managed by Vaadin CDI only needs to have the [classname]#@CDIView# -annotation. - - -[source, java] ----- -@CDIView("main") -public class MainView extends CustomComponent implements View { - ... ----- - -The annotation can have the following optional paramers: - -value (optional):: Specifies the view name by which it can be accessed programmatically and by the -URI fragment. - - -+ -[source, java] ----- -@CDIView("main") ----- -+ -If other optional parameters are given, the value must be given by the named -[parameter]#value# parameter. - -+ -If the view name is not given, it is derived from the class name by removing a -possible "View" suffix, making it lower case, and using a dash ("-") to separate -words originally denoted by capital letters. Thereby, a view class such as -[classname]#MyFunnyView# would have name " [literal]#++my-funny++#". - -supportsParameters:: Specifies whether view parameters can be passed to the view as a suffix to the -name in the navigation state, that is, in the form of -[literal]#++viewname+viewparameters++#. The view name is merely a prefix and -there is no separator nor format for the parameters, but those are left for the -view to handle. The parameter support mode is disabled by default. - - -+ -[source, java] ----- -@CDIView(value="myview", supportsParameters=true) ----- -+ -You could then navigate to the state with a URI fragment such as -[literal]#++#!myview/someparameter++# or programmatically with: - - -+ -[source, java] ----- -getUI().getNavigator().navigateTo("myview/someparameter"); ----- -+ -The [methodname]#enter()# method of the view gets the URI fragment as parameter -as is and can interpret it in any application-defined way. - -+ -Note that in this mode, matching a navigation state to a view is done by the -prefix of the fragment! Thereby, no other views may start with the name of the -view as prefix. For example, if the view name is " [literal]#++main++#", you -must not have a view named " [literal]#++maintenance++#". - -uis:: If the application has multiple UIs that use [classname]#CDIViewProvider#, you -can use this parameter to specify which UIs can show the view. - - -+ -[source, java] ----- -@CDIView(value="myview", uis={MyCDIUI.class}) ----- -+ -If the list contains [parameter]#UI.class#, the view is available to all UIs. - - -+ -[source, java] ----- -@CDIView(value="myview", uis={UI.class}) ----- - - -In the following, we have a login view that accesses a session-scoped user -object. Here, we use a constant to define the view name, so that we can use the -constant when navigating to it. - - -[source, java] ----- -@CDIView(LoginView.VIEWNAME) -public class LoginView extends CustomComponent - implements View { - public final static String VIEWNAME = ""; - - // Here we inject to the constructor and actually do - // not store the injected object to use it later - @Inject - public LoginView(User user) { - VerticalLayout layout = new VerticalLayout(); - - // An input field for editing injected data - BeanItem<User> item = new BeanItem<User>(user); - TextField username = new TextField("User name", - item.getItemProperty("name")); - username.setNullRepresentation(""); - layout.addComponent(username); - - // Login button (authentication omitted) / Java 8 - layout.addComponent(new Button("Login", e -> - getUI().getNavigator(). - navigateTo(MainView.VIEWNAME))); - - setCompositionRoot(layout); - } - - @Override - public void enter(ViewChangeEvent event) {} -} ----- - -You could now navigate to the view from any other view in the UI with: - - -[source, java] ----- -getUI().getNavigator().navigateTo(LoginView.VIEWNAME); ----- - - -endif::web[] - -ifdef::web[] -[[advanced.cdi.events]] -== CDI Events - -((("CDI", "events", id="term.advanced.cdi.events", range="startofrange"))) - - -CDI events can be used for many purposes in Vaadin applications, such as passing -messages between different parts of a view, between views, between UIs, or -between users. Some cases require special consideration, such as when -communicating between UIs and how injected components should be scoped. - -[[advanced.cdi.events.intro]] -=== Observing Events - -Let us consider a case where changes in one part of the UI (or view) require -updating other parts of the UI. This is typical in master-detail views, for -updating the master view after editing details, or when handling input from a -sub-window. While you can handle such a situation with a custom call-back -listener, CDI event mechanism simplifies the task. - -Let us consider the following simple UI containing two panels. The input panel -will send events, which are received by other parts of the UI, in this case a -display panel. The panels need to be injected to enable CDI event passing in -them. - - -[source, java] ----- -@CDIUI("cdievents") -@Theme("valo") -public class CDIEventUI extends UI { - @Inject - InputPanel inputPanel; - - @Inject - DisplayPanel displayPanel; - - @Override - protected void init(VaadinRequest request) { - Layout content = - new HorizontalLayout(inputPanel, displayPanel); - setContent(content); - } -} ----- - -Now, let us look closer at the sending panel. To send messages, it needs to -inject a [classname]#javax.enterprise.event.Event# object. As we are injecting -the event to a component class, we need to specify the full package name to -avoid confusion with Vaadin [classname]#Component.Event#. - - -[source, java] ----- -class InputPanel extends Panel { - @Inject - private javax.enterprise.event.Event<MyEvent> event; - - public InputPanel() { - super("Input"); - - TextField editor = new TextField(); - Button save = new Button("Save", e -> // Java 8 - event.fire(new MyEvent(editor.getValue()))); - - setContent(new VerticalLayout(editor, save)); - } -} ----- - -Firing an event is done with the [methodname]#fire()# method on the injected -event object. In our example, the event is as follows: - - -[source, java] ----- -public class MyEvent implements Serializable { - private String text; - - public MyEvent(String text) { - this.text = text; - } - - public String getName() { - return text; - } -} ----- - -The event is received by any method (in an injected object) marked by -[classname]#@Observes# annotation for the event parameter to observe the event -type. - - -[source, java] ----- -@UIScoped -class DisplayPanel extends Panel { - Label display = new Label("-nothing to display-"); - - public DisplayPanel() { - super("Display"); - setContent(display); - } - - void myEventObserver(@Observes MyEvent event) { - display.setValue("Observed: " + event.getName()); - } -} ----- - -Such a component that observes events from other components must be scoped to -the UI or view, as otherwise it will be request-scoped and a new instance is -created for receiving each event. - -The UI with interaction is shown in <<figure.advanced.cdi.events.intro>>. - -[[figure.advanced.cdi.events.intro]] -.Observing CDI Events -image::img/cdi-events-observing.png[] - -Any injection qualifiers defined for the event object in the sender are matched -in the observers, which feature we will use later to avoid receiving unwanted -events. - - -[[advanced.cdi.events.broadcasting]] -=== Communicating Between UIs - -((("broadcasting", id="term.advanced.cdi.events.broadcasting", range="startofrange"))) - - -CDI events are not propagated to inactive contexts, and only the context of the -currently processed UI is active. Further, as explained in -<<dummy/../../../framework/advanced/advanced-push#advanced.push.running,"Accessing -UI from Another Thread">>, other Vaadin UIs may not be accessed without proper -synchronization, as their requests are processed concurrently in different -server threads. Therefore, you need to pass the events through an -application-scoped messaging service and synchronize the access to other UIs by -using the [methodname]#access()# method. - -In -<<dummy/../../../framework/advanced/advanced-push#advanced.push.pusharound,"Broadcasting -to Other Users">> we looked into how to pass messages to all other UIs using a -broadcasting service. In that example, we used static variables and methods to -store references and to access the service. With CDI, we can let the context -manage its lifecycle, access it by injection, and pass messages by CDI events. -By scoping the messaging service to application, we essentially make it a -singleton. - - -[source, java] ----- -@ApplicationScoped -public class CDIBroadcaster implements Serializable { ----- - -As we can not let CDI deliver the messages, the messaging service needs to keep -book of the messaging clients (UIs) waiting to receive messages. - - -[source, java] ----- - private Collection<UI> uis = new HashSet<UI>(); - - public synchronized void register(UI listener) { - uis.add(listener); - } - - public synchronized void unregister(UI listener) { - uis.remove(listener); - } ----- - -The main logic of the messaging service is to observe messages and fire them in -the recipient UIs. As we are broadcasting to all UIs here, we again use an -executor service to execute the code. To lock on the session when accessing the -UIs, we use the [methodname]#access()# method. - - -[source, java] ----- - // Inject event to be fired - @Inject - private javax.enterprise.event.Event<BroadcastMessage> - messageEvent; - - ExecutorService executorService = - Executors.newSingleThreadExecutor(); - - // Observe messages (only from clients) - @SuppressWarnings("unused") - private synchronized void observeMessage( - @Observes @OriginalSender - final BroadcastMessage message) { - for (final UI listener: uis) - executorService.execute(() -> - listener.access(()-> - messageEvent.fire(message))); - } -} ----- - -Here we use a [classname]#@OriginalSender# qualifier to receive events only from -a client (original sender), not from the messaging service itself, which would -cause an infinite event loop. The qualifier is defined as follows: - -((("CDI", "qualifiers"))) - -[source, java] ----- -@Qualifier -@Retention(RUNTIME) -@Target({PARAMETER, FIELD}) -public @interface OriginalSender {} ----- - -The message type is a simple POJO as follows: - - -[source, java] ----- -public class BroadcastMessage { - private String text; - private Object sender; // For checking if sent by self - - ... constructor, getters, and setters ... -} ----- - -Let us take a look at the UI class, which manages both the messaging service and -the client components. The UI just needs to register itself in the messaging -service and build the UI, including the UI components doing messaging. We could, -of course, do that also at view level. - -((("[classname]#@Push#"))) - -[source, java] ----- -@CDIUI("cdichat") -@Push -public class CDIChatUI extends UI { - @Inject - CDIBroadcaster broadcaster; - - @Inject - ChatBox chatbox; - - @Override - protected void init(VaadinRequest request) { - setContent(chatbox); - - // Register to receive broadcasts - broadcaster.register(this); - } - - // Must also unregister when the UI expires or is closed - @Override - public void detach() { - broadcaster.unregister(this); - super.detach(); - } -} ----- - -Now for an actual messaging client, we look at the chat box component. Most of -the UI code is omitted from the example. As noted earlier, the component -receiving events must be scoped to the UI, to avoid creation of invalid -instances. - -((("[classname]#@UIScoped#"))) - -[source, java] ----- -@UIScoped -class ChatBox extends CustomComponent { - VerticalLayout messages = new VerticalLayout(); - - public ChatBox(CDIChatUI cdiChatUI) { - ... build the composite ... - - TextField input = new TextField(); - - Button send = new Button("Send", e -> { // Java 8 - // Broadcast the input - broadcast(input.getValue()); - addMessage(input.getValue()); // Add to self - }); - ... - } - - @Inject - @OriginalSender - private javax.enterprise.event.Event<BroadcastMessage> - messageEvent; - - // Sends a message - private void broadcast(String msg) { - messageEvent.fire(new BroadcastMessage(msg, this)); - } - - // Receives messages - @SuppressWarnings("unused") - private void observeMessage( - @Observes BroadcastMessage event) { - if (event.getSender() != this) - addMessage(event.getText()); - } - - private void addMessage(String msg) { - messages.addComponent(new Label(msg)); - } -} ----- - -((("CDI", "qualifiers"))) -Note that the client object is completely unaware of the fact that the messages -are delivered through a messaging service; we have successfully decoupled the -messaging logic required by Vaadin UIs from the component. Only the requirement -for using the event qualifier remains (notice that its use is not checked at -compile time). - -(((range="endofrange", startref="term.advanced.cdi.events.broadcasting"))) - -(((range="endofrange", startref="term.advanced.cdi.events"))) -endif::web[] - -(((range="endofrange", startref="term.advanced.cdi.cdilong"))) -(((range="endofrange", startref="term.advanced.cdi.cdi"))) -(((range="endofrange", startref="term.advanced.cdi.cdiaddon"))) - - diff --git a/documentation/advanced/advanced-debug.asciidoc b/documentation/advanced/advanced-debug.asciidoc deleted file mode 100644 index 9a0d8d7ba8..0000000000 --- a/documentation/advanced/advanced-debug.asciidoc +++ /dev/null @@ -1,208 +0,0 @@ ---- -title: Debug Mode and Window -order: 3 -layout: page ---- - -[[advanced.debug]] -= Debug Mode and Window - -Vaadin applications can be run in two modes: __debug mode__ and __production -mode__. The debug mode, which is on by default, enables a number of built-in -debug features for Vaadin developers: - -* Debug Window -* Display debug information in the Debug Window and server console -* On-the-fly compilation of Sass themes - -[[advanced.debug.mode]] -== Enabling the Debug Mode - -The debug mode is enabled and production mode disabled by default in the UI -templates created with the Eclipse plugin or the Maven archetypes. The debug -mode can be enabled by giving a [parameter]#productionMode=false# parameter to -the Vaadin servlet configuration: - -[subs="normal"] ----- -@VaadinServletConfiguration( - productionMode = **false**, - ui = **MyprojectUI.class**) ----- -Or with a context parameter in the [filename]#web.xml# deployment descriptor: - -[subs="normal"] ----- -<context-param> - <description>Vaadin production mode</description> - <param-name>productionMode</param-name> - <param-value>**false**</param-value> -</context-param> ----- -Enabling the production mode disables the debug features, thereby preventing -users from easily inspecting the inner workings of the application from the -browser. - - -[[advanced.debug.open]] -== Opening the Debug Window - -Running an application in the debug mode enables the client-side Debug Window in -the browser. You can open the Debug Window by adding " ?debug" parameter to the -URL of the UI, for example, http://localhost:8080/myapp/?debug. The Debug Window -has buttons for controlling the debugging features and a scrollable log of debug -messages. - -[[]] -.Debug Window -image::img/debug-window-annotated-hi.png[] - -The functionalities are described in detail in the subsequent sections. You can -move the window by dragging it from the title bar and resize it from the -corners. The [guibutton]#Minimize# button minimizes the debug window in the -corner of the browser window, and the [guibutton]#Close# button closes it. - -If you use the Firebug plugin for Firefox or the Developer Tools console in -Chrome, the log messages will also be printed to the Firebug console. In such a -case, you may want to enable client-side debugging without showing the Debug -Window with " ?debug=quiet" in the URL. In the quiet debug mode, log messages -will only be printed to the console of the browser debugger. - - -[[advanced.debug.log]] -== Debug Message Log - -The debug message log displays client-side debug messages, with time counter in -milliseconds. The control buttons allow you to clear the log, reset the timer, -and lock scrolling. - -[[]] -.Debug Message Log -image::img/debug-log-hi.png[] - -[[advanced.debug.log.custom]] -=== Logging to Debug Window - -You can take advantage of the debug mode when developing client-side components, -by using the standard Java [classname]#Logger# to write messages to the log. The -messages will be written to the debug window and Firebug console. No messages -are written if the debug window is not open or if the application is running in -production mode. - - - -[[advanced.debug.info]] -== General Information - -The [guilabel]#General information about the application(s)# tab displays -various information about the UI, such as version numbers of the client and -servlet engine, and the theme. If they do not match, you may need to compile the -widget set or theme. - -[[]] -.General Information -image::img/debug-info.png[] - - -[[advanced.debug.hierarchy]] -== Inspecting Component Hierarchy - -The [guilabel]#Component Hierarchy# tab has several sub-modes that allow -debugging the component tree in various ways. - -[[advanced.debug.hierarchy.tree]] -=== Connector Hierarchy Tree - -The [guibutton]#Show the connector hierarchy tree# button displays the -client-side connector hierarchy. As explained in -<<dummy/../../../framework/gwt/gwt-overview.asciidoc#gwt.overview,"Integrating -with the Server-Side">>, client-side widgets are managed by connectors that -handle communication with the server-side component counterparts. The connector -hierarchy therefore corresponds with the server-side component tree, but the -client-side widget tree and HTML DOM tree have more complexity. - -[[]] -.Connector Hierarchy Tree -image::img/debug-hierarchy-tree.png[] - -Clicking on a connector highlights the widget in the UI. - - -[[advanced.debug.hierarchy.inspect]] -=== Inspecting a Component - -The [guibutton]#Select a component in the page to inspect it# button lets you -select a component in the UI by clicking it and display its client-side -properties. - -To view the HTML structure and CSS styles in more detail, you can use Firebug in -Firefox, or the Developer Tools in Chrome, as described in -<<dummy/../../../framework/getting-started/getting-started-environment#getting-started.environment.firefox,"Firefox -and Firebug">>. Firefox also has a built-in feature for inspecting HTML and CSS. - - -[[advanced.debug.hierarchy.analyze]] -=== Analyzing Layout Problems - -The [guilabel]#Check layouts for potential problems# button analyzes the -currently visible UI and makes a report of possible layout related problems. All -detected layout problems are displayed in the log and also printed to the -console. - -[[]] -.Debug Window Showing the Result of Layout Analysis. -image::img/debug-window-analyze-layouts.png[] - -Clicking on a reported problem highlights the component with the problem in the -UI. - -The most common layout problem is caused by placing a component that has a -relative size inside a container (layout) that has undefined size in the -particular direction (height or width). For example, adding a -[classname]#Button# with 100% width inside a [classname]#VerticalLayout# with -undefined width. In such a case, the error would look as shown in -<<dummy/../../../framework//-overview.asciidoc#figure.advanced.debug.hierarchy.analyze,"">>. - -[classname]#CustomLayout# components can not be analyzed in the same way as -other layouts. For custom layouts, the button analyzes all contained -relative-sized components and checks if any relative dimension is calculated to -zero so that the component will be invisible. The error log will display a -warning for each of these invisible components. It would not be meaningful to -emphasize the component itself as it is not visible, so when you select such an -error, the parent layout of the component is emphasized if possible. - - -[[advanced.debug.hierarchy.used]] -=== Displaying Used Connectors - -The last button, [guibutton]#Show used connectors and how to optimize widget -set#, displays a list of all currently visible connectors. It also generates a -connector bundle loader factory, which you can use to optimize the widget set so -that it only contains the widgets actually used in the UI. Note, however, that -it only lists the connectors visible in the current UI state, and you usually -have more connectors than that. - - - -[[advanced.debug.communication]] -== Communication Log - -The [guilabel]#Communication# tab displays all server requests. You can unfold -the requests to view details, such as the connectors involved. Clicking on a -connector highlights the corresponding element in the UI. - -You can use Firebug or Developer Tools in Firefox or Chrome, respectively, to -get more detailed information about the requests and responses. - - -[[advanced.debug.devmodes]] -== Debug Modes - -The [guilabel]#Menu# tab in the window opens a sub-menu to select various -settings. Here you can also launch the GWT SuperDevMode, as described in -<<dummy/../../../framework/clientside/clientside-debugging#clientside.debugging,"Debugging -Client-Side Code">>. - - - - diff --git a/documentation/advanced/advanced-dragndrop.asciidoc b/documentation/advanced/advanced-dragndrop.asciidoc deleted file mode 100644 index 69335c6369..0000000000 --- a/documentation/advanced/advanced-dragndrop.asciidoc +++ /dev/null @@ -1,567 +0,0 @@ ---- -title: Drag and Drop -order: 12 -layout: page ---- - -[[advanced.dragndrop]] -= Drag and Drop - -((("Drag and Drop", id="term.advanced.dragndrop", range="startofrange"))) - - -Dragging an object from one location to another by grabbing it with mouse, -holding the mouse button pressed, and then releasing the button to "drop" it to -the other location is a common way to move, copy, or associate objects. For -example, most operating systems allow dragging and dropping files between -folders or dragging a document on a program to open it. In Vaadin, it is -possible to drag and drop components and parts of certain components. - -Dragged objects, or __transferables__, are essentially data objects. You can -drag and drop rows in [classname]#Table# and nodes in [classname]#Tree# -components, either within or between the components. You can also drag entire -components by wrapping them inside [classname]#DragAndDropWrapper#. - -Dragging starts from a __drag source__, which defines the transferable. -Transferables implement the [classname]#Transferable# interfaces. For trees and -tables, which are bound to [classname]#Container# data sources, a node or row -transferable is a reference to an [classname]#Item# in the Vaadin Data Model. -Dragged components are referenced with a [classname]#WrapperTransferable#. -Starting dragging does not require any client-server communication, you only -need to enable dragging. All drag and drop logic occurs in two operations: -determining ( __accepting__) where dropping is allowed and actually dropping. -Drops can be done on a __drop target__, which implements the -[classname]#DropTarget# interface. Three components implement the interface: -[classname]#Tree#, [classname]#Table#, and [classname]#DragAndDropWrapper#. -These accept and drop operations need to be provided in a __drop handler__. -Essentially all you need to do to enable drag and drop is to enable dragging in -the drag source and implement the [methodname]#getAcceptCriterion()# and -[methodname]#drop()# methods in the [classname]#DropHandler# interface. - -The client-server architecture of Vaadin causes special requirements for the -drag and drop functionality. The logic for determining where a dragged object -can be dropped, that is, __accepting__ a drop, should normally be done on the -client-side, in the browser. Server communications are too slow to have much of -such logic on the server-side. The drag and drop feature therefore offers a -number of ways to avoid the server communications to ensure a good user -experience. - -[[advanced.dragndrop.drophandler]] -== Handling Drops - -Most of the user-defined drag and drop logic occurs in a __drop handler__, which -is provided by implementing the [methodname]#drop()# method in the -[classname]#DropHandler# interface. A closely related definition is the drop -accept criterion, which is defined in the [methodname]#getAcceptCriterion()# -method in the same interface. It is described in -<<advanced.dragndrop.acceptcriteria>> later. - -The [methodname]#drop()# method gets a [classname]#DragAndDropEvent# as its -parameters. The event object provides references to two important object: -[classname]#Transferable# and [classname]#TargetDetails#. - -A [classname]#Transferable# contains a reference to the object (component or -data item) that is being dragged. A tree or table item is represented as a -[classname]#TreeTransferable# or [classname]#TableTransferable# object, which -carries the item identifier of the dragged tree or table item. These special -transferables, which are bound to some data in a container, are -[classname]#DataBoundTransferable#. Dragged components are represented as -[classname]#WrapperTransferable# objects, as the components are wrapped in a -[classname]#DragAndDropWrapper#. - -The [classname]#TargetDetails# object provides information about the exact -location where the transferable object is being dropped. The exact class of the -details object depends on the drop target and you need to cast it to the proper -subclass to get more detailed information. If the target is selection component, -essentially a tree or a table, the [classname]#AbstractSelectTargetDetails# -object tells the item on which the drop is being made. For trees, the -[classname]#TreeTargetDetails# gives some more details. For wrapped components, -the information is provided in a [classname]#WrapperDropDetails# object. In -addition to the target item or component, the details objects provide a __drop -location__. For selection components, the location can be obtained with the -[methodname]#getDropLocation()# and for wrapped components with -[methodname]#verticalDropLocation()# and [methodname]#horizontalDropLocation()#. -The locations are specified as either [classname]#VerticalDropLocation# or -[classname]#HorizontalDropLocation# objects. The drop location objects specify -whether the transferable is being dropped above, below, or directly on (at the -middle of) a component or item. - -Dropping on a [classname]#Tree#, [classname]#Table#, and a wrapped component is -explained further in the following sections. - - -[[advanced.dragndrop.treedrop]] -== Dropping Items On a [classname]#Tree# - -You can drag items from, to, or within a [classname]#Tree#. Making tree a drag -source requires simply setting the drag mode with [methodname]#setDragMode()#. -[classname]#Tree# currently supports only one drag mode, -[literal]#++TreeDragMode.NODE++#, which allows dragging single tree nodes. While -dragging, the dragged node is referenced with a [classname]#TreeTransferable# -object, which is a [classname]#DataBoundTransferable#. The tree node is -identified by the item ID of the container item. - -When a transferable is dropped on a tree, the drop location is stored in a -[classname]#TreeTargetDetails# object, which identifies the target location by -item ID of the tree node on which the drop is made. You can get the item ID with -[methodname]#getItemIdOver()# method in -[classname]#AbstractSelectTargetDetails#, which the -[classname]#TreeTargetDetails# inherits. A drop can occur directly on or above -or below a node; the exact location is a [classname]#VerticalDropLocation#, -which you can get with the [methodname]#getDropLocation()# method. - -In the example below, we have a [classname]#Tree# and we allow reordering the -tree items by drag and drop. - - -[source, java] ----- -final Tree tree = new Tree("Inventory"); -tree.setContainerDataSource(TreeExample.createTreeContent()); -layout.addComponent(tree); - -// Expand all items -for (Iterator<?> it = tree.rootItemIds().iterator(); it.hasNext();) - tree.expandItemsRecursively(it.next()); - -// Set the tree in drag source mode -tree.setDragMode(TreeDragMode.NODE); - -// Allow the tree to receive drag drops and handle them -tree.setDropHandler(new DropHandler() { - public AcceptCriterion getAcceptCriterion() { - return AcceptAll.get(); - } - - public void drop(DragAndDropEvent event) { - // Wrapper for the object that is dragged - Transferable t = event.getTransferable(); - - // Make sure the drag source is the same tree - if (t.getSourceComponent() != tree) - return; - - TreeTargetDetails target = (TreeTargetDetails) - event.getTargetDetails(); - - // Get ids of the dragged item and the target item - Object sourceItemId = t.getData("itemId"); - Object targetItemId = target.getItemIdOver(); - - // On which side of the target the item was dropped - VerticalDropLocation location = target.getDropLocation(); - - HierarchicalContainer container = (HierarchicalContainer) - tree.getContainerDataSource(); - - // Drop right on an item -> make it a child - if (location == VerticalDropLocation.MIDDLE) - tree.setParent(sourceItemId, targetItemId); - - // Drop at the top of a subtree -> make it previous - else if (location == VerticalDropLocation.TOP) { - Object parentId = container.getParent(targetItemId); - container.setParent(sourceItemId, parentId); - container.moveAfterSibling(sourceItemId, targetItemId); - container.moveAfterSibling(targetItemId, sourceItemId); - } - - // Drop below another item -> make it next - else if (location == VerticalDropLocation.BOTTOM) { - Object parentId = container.getParent(targetItemId); - container.setParent(sourceItemId, parentId); - container.moveAfterSibling(sourceItemId, targetItemId); - } - } -}); ----- - -[[advanced.dragndrop.treedrop.criteria]] -=== Accept Criteria for Trees - -[classname]#Tree# defines some specialized accept criteria for trees. - -[classname]#TargetInSubtree#(client-side):: Accepts if the target item is in the specified sub-tree. The sub-tree is specified by the item ID of the root of the sub-tree in the constructor. The second constructor includes a depth parameter, which specifies how deep from the given root node are drops accepted. Value [literal]#++-1++# means infinite, that is, the entire sub-tree, and is therefore the same as the simpler constructor. -[classname]#TargetItemAllowsChildren#(client-side):: Accepts a drop if the tree has [methodname]#setChildrenAllowed()# enabled for the target item. The criterion does not require parameters, so the class is a singleton and can be acquired with [methodname]#Tree.TargetItemAllowsChildren.get()#. For example, the following composite criterion accepts drops only on nodes that allow children, but between all nodes: -+ -[source, java] ----- -return new Or (Tree.TargetItemAllowsChildren.get(), new Not(VerticalLocationIs.MIDDLE)); ----- - -[classname]#TreeDropCriterion#(server-side):: Accepts drops on only some items, which as specified by a set of item IDs. You must extend the abstract class and implement the [methodname]#getAllowedItemIds()# to return the set. While the criterion is server-side, it is lazy-loading, so that the list of accepted target nodes is loaded only once from the server for each drag operation. See <<advanced.dragndrop.acceptcriteria>> for an example. - - -In addition, the accept criteria defined in [classname]#AbstractSelect# are -available for a [classname]#Tree#, as listed in -<<advanced.dragndrop.acceptcriteria>>. - - - -[[advanced.dragndrop.tabledrop]] -== Dropping Items On a [classname]#Table# - -You can drag items from, to, or within a [classname]#Table#. Making table a drag -source requires simply setting the drag mode with [methodname]#setDragMode()#. -[classname]#Table# supports dragging both single rows, with -[literal]#++TableDragMode.ROW++#, and multiple rows, with -[literal]#++TableDragMode.MULTIROW++#. While dragging, the dragged node or nodes -are referenced with a [classname]#TreeTransferable# object, which is a -[classname]#DataBoundTransferable#. Tree nodes are identified by the item IDs of -the container items. - -When a transferable is dropped on a table, the drop location is stored in a -[classname]#AbstractSelectTargetDetails# object, which identifies the target row -by its item ID. You can get the item ID with [methodname]#getItemIdOver()# -method. A drop can occur directly on or above or below a row; the exact location -is a [classname]#VerticalDropLocation#, which you can get with the -[methodname]#getDropLocation()# method from the details object. - -[[advanced.dragndrop.tabledrop.criteria]] -=== Accept Criteria for Tables - -[classname]#Table# defines one specialized accept criterion for tables. - -[classname]#TableDropCriterion#(server-side):: Accepts drops only on (or above or below) items that are specified by a set of item IDs. You must extend the abstract class and implement the [methodname]#getAllowedItemIds()# to return the set. While the criterion is server-side, it is lazy-loading, so that the list of accepted target items is loaded only once from the server for each drag operation. - - - - -[[advanced.dragndrop.acceptcriteria]] -== Accepting Drops - -((("Drag and Drop", "Accept Criteria", id="term.advanced.dragndrop.acceptcriteria", range="startofrange"))) - - -You can not drop the objects you are dragging around just anywhere. Before a -drop is possible, the specific drop location on which the mouse hovers must be -__accepted__. Hovering a dragged object over an accepted location displays an -__accept indicator__, which allows the user to position the drop properly. As -such checks have to be done all the time when the mouse pointer moves around the -drop targets, it is not feasible to send the accept requests to the server-side, -so drops on a target are normally accepted by a client-side __accept -criterion__. - -A drop handler must define the criterion on the objects which it accepts to be -dropped on the target. The criterion needs to be provided in the -[classname]#getAcceptCriterion()# method of the [classname]#DropHandler# -interface. A criterion is represented in an [classname]#AcceptCriterion# object, -which can be a composite of multiple criteria that are evaluated using logical -operations. There are two basic types of criteria: __client-side__ and -__server-side criteria__. The various built-in criteria allow accepting drops -based on the identity of the source and target components, and on the __data -flavor__ of the dragged objects. - -To allow dropping any transferable objects, you can return a universal accept -criterion, which you can get with [methodname]#AcceptAll.get()#. - - -[source, java] ----- -tree.setDropHandler(new DropHandler() { - public AcceptCriterion getAcceptCriterion() { - return AcceptAll.get(); - } - ... ----- - -[[advanced.dragndrop.acceptcriteria.client-side]] -=== Client-Side Criteria - -The __client-side criteria__, which inherit the -[classname]#ClientSideCriterion#, are verified on the client-side, so server -requests are not needed for verifying whether each component on which the mouse -pointer hovers would accept a certain object. - -The following client-side criteria are define in -[package]#com.vaadin.event.dd.acceptcriterion#: - -[classname]#AcceptAll#:: Accepts all transferables and targets. -[classname]#And#:: Performs the logical AND operation on two or more client-side criteria; accepts the transferable if all the given sub-criteria accept it. -[classname]#ContainsDataFlavour#:: The transferable must contain the defined data flavour. -[classname]#Not#:: Performs the logical NOT operation on a client-side criterion; accepts the transferable if and only if the sub-criterion does not accept it. -[classname]#Or#:: Performs the logical OR operation on two or more client-side criteria; accepts the transferable if any of the given sub-criteria accepts it. -[classname]#SourceIs#:: Accepts all transferables from any of the given source components -[classname]#SourceIsTarget#:: Accepts the transferable only if the source component is the same as the target. This criterion is useful for ensuring that items are dragged only within a tree or a table, and not from outside it. -[classname]#TargetDetailIs#:: Accepts any transferable if the target detail, such as the item of a tree node or table row, is of the given data flavor and has the given value. - - -In addition, target components such as [classname]#Tree# and [classname]#Table# -define some component-specific client-side accept criteria. See -<<advanced.dragndrop.treedrop>> for more details. - -[classname]#AbstractSelect# defines the following criteria for all selection -components, including [classname]#Tree# and [classname]#Table#. - -[classname]#AcceptItem#:: Accepts only specific items from a specific selection component. The selection component, which must inherit [classname]#AbstractSelect#, is given as the first parameter for the constructor. It is followed by a list of allowed item identifiers in the drag source. -[classname]#AcceptItem.ALL#:: Accepts all transferables as long as they are items. -[classname]#TargetItemIs#:: Accepts all drops on the specified target items. The constructor requires the target component ( [classname]#AbstractSelect#) followed by a list of allowed item identifiers. -[classname]#VerticalLocationIs.MIDDLE#,[classname]#TOP#, and[classname]#BOTTOM#:: The three static criteria accepts drops on, above, or below an item. For example, you could accept drops only in between items with the following: -[source, java] ----- -public AcceptCriterion getAcceptCriterion() { - return new Not(VerticalLocationIs.MIDDLE); -} ----- - - - - - -[[advanced.dragndrop.acceptcriteria.server-side]] -=== Server-Side Criteria - -The __server-side criteria__ are verified on the server-side with the -[methodname]#accept()# method of the [classname]#ServerSideCriterion# class. -This allows fully programmable logic for accepting drops, but the negative side -is that it causes a very large amount of server requests. A request is made for -every target position on which the pointer hovers. This problem is eased in many -cases by the component-specific lazy loading criteria -[classname]#TableDropCriterion# and [classname]#TreeDropCriterion#. They do the -server visit once for each drag and drop operation and return all accepted rows -or nodes for current [classname]#Transferable# at once. - -The [methodname]#accept()# method gets the drag event as a parameter so it can -perform its logic much like in [methodname]#drop()#. - - -[source, java] ----- -public AcceptCriterion getAcceptCriterion() { - // Server-side accept criterion that allows drops on any other - // location except on nodes that may not have children - ServerSideCriterion criterion = new ServerSideCriterion() { - public boolean accept(DragAndDropEvent dragEvent) { - TreeTargetDetails target = (TreeTargetDetails) - dragEvent.getTargetDetails(); - - // The tree item on which the load hovers - Object targetItemId = target.getItemIdOver(); - - // On which side of the target the item is hovered - VerticalDropLocation location = target.getDropLocation(); - if (location == VerticalDropLocation.MIDDLE) - if (! tree.areChildrenAllowed(targetItemId)) - return false; // Not accepted - - return true; // Accept everything else - } - }; - return criterion; -} ----- - -The server-side criteria base class [classname]#ServerSideCriterion# provides a -generic [methodname]#accept()# method. The more specific -[classname]#TableDropCriterion# and [classname]#TreeDropCriterion# are -conveniency extensions that allow definiting allowed drop targets as a set of -items. They also provide some optimization by lazy loading, which reduces server -communications significantly. - - -[source, java] ----- -public AcceptCriterion getAcceptCriterion() { - // Server-side accept criterion that allows drops on any - // other tree node except on node that may not have children - TreeDropCriterion criterion = new TreeDropCriterion() { - @Override - protected Set<Object> getAllowedItemIds( - DragAndDropEvent dragEvent, Tree tree) { - HashSet<Object> allowed = new HashSet<Object>(); - for (Iterator<Object> i = - tree.getItemIds().iterator(); i.hasNext();) { - Object itemId = i.next(); - if (tree.hasChildren(itemId)) - allowed.add(itemId); - } - return allowed; - } - }; - return criterion; -} ----- - - -[[advanced.dragndrop.acceptcriteria.indicators]] -=== Accept Indicators - -When a dragged object hovers on a drop target, an __accept indicator__ is -displayed to show whether or not the location is accepted. For -[parameter]#MIDDLE# location, the indicator is a box around the target (tree -node, table row, or component). For vertical drop locations, the accepted -locations are shown as horizontal lines, and for horizontal drop locations as -vertical lines. - -For [classname]#DragAndDropWrapper# drop targets, you can disable the accept -indicators or __drag hints__ with the [parameter]#no-vertical-drag-hints#, -[parameter]#no-horizontal-drag-hints#, and [parameter]#no-box-drag-hints# -styles. You need to add the styles to the __layout that contains__ the wrapper, -not to the wrapper itself. - - -[source, java] ----- -// Have a wrapper -DragAndDropWrapper wrapper = new DragAndDropWrapper(c); -layout.addComponent(wrapper); - -// Disable the hints -layout.addStyleName("no-vertical-drag-hints"); -layout.addStyleName("no-horizontal-drag-hints"); -layout.addStyleName("no-box-drag-hints"); ----- - - -(((range="endofrange", startref="term.advanced.dragndrop.acceptcriteria"))) - -[[advanced.dragndrop.dragging]] -== Dragging Components - -Dragging a component requires wrapping the source component within a -[classname]#DragAndDropWrapper#. You can then allow dragging by putting the -wrapper (and the component) in drag mode with [methodname]#setDragStartMode()#. -The method supports two drag modes: [parameter]#DragStartMode.WRAPPER# and -[parameter]#DragStartMode.COMPONENT#, which defines whether the entire wrapper -is shown as the drag image while dragging or just the wrapped component. - - -[source, java] ----- -// Have a component to drag -final Button button = new Button("An Absolute Button"); - -// Put the component in a D&D wrapper and allow dragging it -final DragAndDropWrapper buttonWrap = new DragAndDropWrapper(button); -buttonWrap.setDragStartMode(DragStartMode.COMPONENT); - -// Set the wrapper to wrap tightly around the component -buttonWrap.setSizeUndefined(); - -// Add the wrapper, not the component, to the layout -layout.addComponent(buttonWrap, "left: 50px; top: 50px;"); ----- - -The default height of [classname]#DragAndDropWrapper# is undefined, but the -default width is 100%. If you want to ensure that the wrapper fits tightly -around the wrapped component, you should call [methodname]#setSizeUndefined()# -for the wrapper. Doing so, you should make sure that the wrapped component does -not have a relative size, which would cause a paradox. - -Dragged components are referenced in the [classname]#WrapperTransferable#. You -can get the reference to the dragged component with -[methodname]#getDraggedComponent()#. The method will return [literal]#++null++# -if the transferable is not a component. Also HTML 5 drags (see later) are held -in wrapper transferables. - - -[[advanced.dragndrop.drop-on-component]] -== Dropping on a Component - -Drops on a component are enabled by wrapping the component in a -[classname]#DragAndDropWrapper#. The wrapper is an ordinary component; the -constructor takes the wrapped component as a parameter. You just need to define -the [classname]#DropHandler# for the wrapper with -[methodname]#setDropHandler()#. - -In the following example, we allow moving components in an absolute layout. -Details on the drop handler are given later. - - -[source, java] ----- -// A layout that allows moving its contained components -// by dragging and dropping them -final AbsoluteLayout absLayout = new AbsoluteLayout(); -absLayout.setWidth("100%"); -absLayout.setHeight("400px"); - -... put some (wrapped) components in the layout ... - -// Wrap the layout to allow handling drops -DragAndDropWrapper layoutWrapper = - new DragAndDropWrapper(absLayout); - -// Handle moving components within the AbsoluteLayout -layoutWrapper.setDropHandler(new DropHandler() { - public AcceptCriterion getAcceptCriterion() { - return AcceptAll.get(); - } - - public void drop(DragAndDropEvent event) { - ... - } -}); ----- - -[[advanced.dragndrop.drop-on-component.details]] -=== Target Details for Wrapped Components - -The drop handler receives the drop target details in a -[classname]#WrapperTargetDetails# object, which implements the -[classname]#TargetDetails# interface. - - -[source, java] ----- -public void drop(DragAndDropEvent event) { - WrapperTransferable t = - (WrapperTransferable) event.getTransferable(); - WrapperTargetDetails details = - (WrapperTargetDetails) event.getTargetDetails(); ----- - -The wrapper target details include a [classname]#MouseEventDetails# object, -which you can get with [methodname]#getMouseEvent()#. You can use it to get the -mouse coordinates for the position where the mouse button was released and the -drag ended. Similarly, you can find out the drag start position from the -transferable object (if it is a [classname]#WrapperTransferable#) with -[methodname]#getMouseDownEvent()#. - - -[source, java] ----- -// Calculate the drag coordinate difference -int xChange = details.getMouseEvent().getClientX() - - t.getMouseDownEvent().getClientX(); -int yChange = details.getMouseEvent().getClientY() - - t.getMouseDownEvent().getClientY(); - -// Move the component in the absolute layout -ComponentPosition pos = - absLayout.getPosition(t.getSourceComponent()); -pos.setLeftValue(pos.getLeftValue() + xChange); -pos.setTopValue(pos.getTopValue() + yChange); ----- - -You can get the absolute x and y coordinates of the target wrapper with -[methodname]#getAbsoluteLeft()# and [methodname]#getAbsoluteTop()#, which allows -you to translate the absolute mouse coordinates to coordinates relative to the -wrapper. Notice that the coordinates are really the position of the wrapper, not -the wrapped component; the wrapper reserves some space for the accept -indicators. - -The [methodname]#verticalDropLocation()# and -[methodname]#horizontalDropLocation()# return the more detailed drop location in -the target. - - - -[[advanced.dragndrop.external]] -== Dragging Files from Outside the Browser - -The [classname]#DragAndDropWrapper# allows dragging files from outside the -browser and dropping them on a component wrapped in the wrapper. Dropped files -are automatically uploaded to the application and can be acquired from the -wrapper with [methodname]#getFiles()#. The files are represented as -[classname]#Html5File# objects as defined in the inner class. You can define an -upload [classname]#Receiver# to receive the content of a file to an -[classname]#OutputStream#. - -Dragging and dropping files to browser is supported in HTML 5 and requires a -compatible browser, such as Mozilla Firefox 3.6 or newer. - - -(((range="endofrange", startref="term.advanced.dragndrop"))) - - diff --git a/documentation/advanced/advanced-embedding.asciidoc b/documentation/advanced/advanced-embedding.asciidoc deleted file mode 100644 index ca2ccd3a0e..0000000000 --- a/documentation/advanced/advanced-embedding.asciidoc +++ /dev/null @@ -1,460 +0,0 @@ ---- -title: Embedding UIs in Web Pages -order: 2 -layout: page ---- - -[[advanced.embedding]] -= Embedding UIs in Web Pages - -Many web sites are not all Vaadin, but Vaadin UIs are used only for specific -functionalities. In practice, many web applications are a mixture of dynamic web -pages, such as JSP, and Vaadin UIs embedded in such pages. - -Embedding Vaadin UIs in web pages is easy and there are several different ways -to embed them. One is to have a [literal]#++<div>++# placeholder for the UI and -load the Vaadin Client-Side Engine with some simple JavaScript code. Another -method is even easier, which is to simply use the [literal]#++<iframe>++# -element. Both of these methods have advantages and disadvantages. One -disadvantage of the [literal]#++<iframe>++# method is that the size of the -[literal]#++<iframe>++# element is not flexible according to the content while -the [literal]#++<div>++# method allows such flexibility. The following sections -look closer into these two embedding methods. - -[[advanced.embedding.div]] -== Embedding Inside a [literal]#++div++# Element - -You can embed one or more Vaadin UIs inside a web page with a method that is -equivalent to loading the initial page content from the Vaadin servlet in a -non-embedded UI. Normally, the [classname]#VaadinServlet# generates an initial -page that contains the correct parameters for the specific UI. You can easily -configure it to load multiple Vaadin UIs in the same page. They can have -different widget sets and different themes. - -Embedding an UI requires the following basic tasks: - -* Set up the page header -* Include a GWT history frame in the page -* Call the [filename]#vaadinBootstrap.js# file -* Define the [literal]#++<div>++# element for the UI -* Configure and initialize the UI - -Notice that you can view the loader page for the UI easily by opening the UI in -a web browser and viewing the HTML source code of the page. You could just copy -and paste the embedding code from the page, but some modifications and -additional settings are required, mainly related to the URLs that have to be -made relative to the page instead of the servlet URL. - -ifdef::web[] -[[advanced.embedding.div.head]] -=== The Head Matter - -The HTML page in which the Vaadin UI is embedded should be a valid HTML 5 -document. The content of the head element is largely up to you. The character -encoding must be UTF-8. Some meta declarations are necessary for compatibility. -You can also set the page favicon in the head element. - -[subs="normal"] ----- -<!DOCTYPE html> -<html> - <head> - <meta http-equiv="Content-Type" - content="text/html; charset=UTF-8" /> - <meta http-equiv="X-UA-Compatible" - content="IE=9;chrome=1" /> - - <title>[replaceable]#This is my Embedding Page#</title> - - <!-- Set up the favicon from the Vaadin theme --> - <link rel="shortcut icon" type="image/vnd.microsoft.icon" - href="/VAADIN/themes/[replaceable]#reindeer#/favicon.ico" /> - <link rel="icon" type="image/vnd.microsoft.icon" - href="/VAADIN/themes/[replaceable]#reindeer#/favicon.ico" /> - </head> ----- -endif::web[] - -ifdef::web[] -[[advanced.embedding.div.body]] -=== The Body Matter - -The page content must include some Vaadin-related definitions before you can -embed Vaadin UIs in it. - -The [filename]#vaadinBootstrap.js# script makes definitions for starting up the -UI. It must be called before initializing the UI. The source path must be -relative to the path of the embedding page. - -[subs="normal"] ----- -<body> - <script type="text/javascript" - src="[replaceable]#./#VAADIN/vaadinBootstrap.js"></script> ----- -The bootstrap script is served by the Vaadin servlet from inside the -[filename]#vaadin-server# JAR. - -Vaadin, or more precisely GWT, requires an invisible history frame, which is -used for tracking the page or fragment history in the browser. - - -[source, html] ----- - <iframe tabindex="-1" id="__gwt_historyFrame" - style="position: absolute; width: 0; height: 0; - border: 0; overflow: hidden" - src="javascript:false"></iframe> ----- - -endif::web[] - -ifdef::web[] -[[advanced.embedding.div.div]] -=== UI Placeholder Element - -A Vaadin UI is embedded in a placeholder [literal]#++<div>++# element. It should -have the following features: - -* The [literal]#++<div>++# element must have an [literal]#++id++# attribute, which must be a unique ID in the page, normally something that identifies the servlet of the UI uniquely. -* It must have at least the [literal]#++v-app++# style class. -* it should have a nested [literal]#++<div>++# element with [literal]#++v-app-loading++# style class. This is a placeholder for the loading indicator that is displayed while the UI is being loaded. -* It should also contain a [literal]#++<noscript>++# element that is shown if the browser does not support JavaScript or it has been disabled. The content of the element should instruct the use to enable JavaScript in the browser. - -The placeholder element can include style settings, typically a width and -height. If the sizes are not defined, the UI will have an undefined size in the -particular dimension, which must be in accordance with the sizing of the UI -components. - -For example: - -[subs="normal"] ----- -<div style="[replaceable]#width: 300px; border: 2px solid green;#" - id="helloworldui" class="v-app"> - <div class="v-app-loading"></div> - <noscript>[replaceable]#You have to enable javascript in your browser to# - [replaceable]#use an application built with Vaadin.#</noscript> -</div> ----- -endif::web[] - -ifdef::web[] -[[advanced.embedding.div.init]] -=== Initializing the UI - -The UI is loaded by calling the [literal]#++initApplication()++# method for the -[literal]#++vaadin++# object defined in the bootstrap script. Before calling it, -you should check that the bootstrap script was loaded properly. - -[subs="normal"] ----- -<script type="text/javascript">//<![CDATA[ - if (!window.vaadin) - alert("[replaceable]#Failed to load the bootstrap JavaScript:#"+ - "[replaceable]#VAADIN/vaadinBootstrap.js#"); ----- -The [literal]#++initApplication()++# takes two parameters. The first parameter -is the UI identifier, exactly as given as the [literal]#++id++# attribute of the -placeholder element. The second parameter is an associative map that contains -parameters for the UI. - -The map must contain the following items: - -[parameter]#browserDetailsUrl#:: This should be the URL path (relative to the embedding page) to the Vaadin -servlet of the UI. It is used by the bootstrap to communicate browser details. A -trailing slash may be needed in some cases. - -+ -Notice that this parameter is not included in the loader page generated by the -servlet, because in that case, it can default to the current URL. - -[parameter]#serviceUrl#:: This is used for server requests after initial loading and should be same as for -[parameter]#browserDetailsUrl#. The two parameters are redundant and either may -be removed in -future.+ -//Bug -#10122 - -[parameter]#widgetset#:: This should be the exact class name of the widget set for the UI, that is, without the [filename]#.gwt.xml# file name extension. If the UI has no custom widget set, you can use the [classname]#com.vaadin.DefaultWidgetSet#. -[parameter]#theme#:: Name of the theme, such as one of the built-in themes ( [literal]#++reindeer++#, [literal]#++runo++#, or [literal]#++chameleon++#) or a custom theme. It must exist under the [filename]#VAADIN/themes# folder. -[parameter]#versionInfo#:: This parameter is itself an associative map that can contain two parameters: [parameter]#vaadinVersion# contains the version number of the Vaadin version used by the application. The [parameter]#applicationVersion# parameter contains the version of the particular application. The contained parameters are optional, but the [parameter]#versionInfo# parameter itself is not. -[parameter]#vaadinDir#:: Relative path to the [filename]#VAADIN# directory. It is relative to the URL of the embedding page. -[parameter]#heartbeatInterval#:: The [parameter]#hearbeatInterval# parameter defines the frequency of the keep-alive hearbeat for the UI in seconds, as described in <<dummy/../../../framework/application/application-lifecycle#application.lifecycle.ui-expiration,"UI Expiration">>. -[parameter]#debug#:: The parameter defines whether the debug window, as described in <<dummy/../../../framework/advanced/advanced-debug#advanced.debug,"Debug Mode and Window">>, is enabled. -[parameter]#standalone#:: This parameter should be [parameter]#false# when embedding. The parameter defines whether the UI is rendered on its own in the browser window or in some context. A standalone UI may do things that might interfere with other parts of the page, such as change the page title and request focus when it is loaded. When embedding, the UI is not standalone. -[parameter]#authErrMsg#,[parameter]#comErrMsg#, and[parameter]#sessExpMsg#:: These three parameters define the client-side error messages for authentication error, communication error, and session expiration, respectively. The parameters are associative maps themselves and must contain two key-value pairs: [parameter]#message#, which should contain the error text in HTML, and [parameter]#caption#, which should be the error caption. - - -For example: - -[subs="normal"] ----- - vaadin.initApplication("[replaceable]#helloworldui#", { - "browserDetailsUrl": "[replaceable]#helloworld#/", - "serviceUrl": "[replaceable]#helloworld#/", - "widgetset": "[replaceable]#com.example.MyWidgetSet#", - "theme": "[replaceable]#mytheme#", - "versionInfo": {"vaadinVersion": "[replaceable]#7.0.0#"}, - "vaadinDir": "[replaceable]#VAADIN/#", - "heartbeatInterval": [replaceable]#300#, - "debug": [replaceable]#true#, - "standalone": false, - "authErrMsg": { - "message": "[replaceable]#Take note of any unsaved data, "+ "and <u>click here<\/u> to continue.#", - "caption": "Authentication problem" - }, - "comErrMsg": { - "message": "[replaceable]#Take note of any unsaved data, "+ "and <u>click here<\/u> to continue.#", - "caption": "Communication problem" - }, - "sessExpMsg": { - "message": "[replaceable]#Take note of any unsaved data, "+ "and <u>click here<\/u> to continue.#", - "caption": "Session Expired" - } - });//]]> -</script> ----- -Notice that many of the parameters are normally deployment parameters, specified -in the deployment descriptor, as described in -<<dummy/../../../framework/application/application-environment#application.environment.parameters,"Other -Servlet Configuration Parameters">>. - -endif::web[] - -ifdef::web[] -[[advanced.embedding.div.summary]] -=== Summary of Div Embedding - -Below is a complete example of embedding an UI in a [literal]#++<div>++# -element. - - -[source, html] ----- -<?xml version="1.0" encoding="UTF-8" ?> -<!DOCTYPE html> -<html> -<head> - <meta http-equiv="Content-Type" - content="text/html; charset=UTF-8" /> - <meta http-equiv="X-UA-Compatible" - content="IE=9;chrome=1" /> - - <title>Embedding a Vaadin Application in HTML Page</title> - - <!-- Set up the favicon from the Vaadin theme --> - <link rel="shortcut icon" type="image/vnd.microsoft.icon" - href="/VAADIN/themes/reindeer/favicon.ico" /> - <link rel="icon" type="image/vnd.microsoft.icon" - href="/VAADIN/themes/reindeer/favicon.ico" /> -</head> - -<body> - <!-- Loads the Vaadin widget set, etc. --> - <script type="text/javascript" - src="VAADIN/vaadinBootstrap.js"></script> - - <!-- GWT requires an invisible history frame. It is --> - <!-- needed for page/fragment history in the browser. --> - <iframe tabindex="-1" id="__gwt_historyFrame" - style="position: absolute; width: 0; height: 0; - border: 0; overflow: hidden" - src="javascript:false"></iframe> - - <h1>Embedding a Vaadin UI</h1> - - <p>This is a static web page that contains an embedded Vaadin - application. It's here:</p> - - <!-- So here comes the div element in which the Vaadin --> - <!-- application is embedded. --> - <div style="width: 300px; border: 2px solid green;" - id="helloworld" class="v-app"> - - <!-- Optional placeholder for the loading indicator --> - <div class=" v-app-loading"></div> - - <!-- Alternative fallback text --> - <noscript>You have to enable javascript in your browser to - use an application built with Vaadin.</noscript> - </div> - - <script type="text/javascript">//<![CDATA[ - if (!window.vaadin) - alert("Failed to load the bootstrap JavaScript: "+ - "VAADIN/vaadinBootstrap.js"); - - /* The UI Configuration */ - vaadin.initApplication("helloworld", { - "browserDetailsUrl": "helloworld/", - "serviceUrl": "helloworld/", - "widgetset": "com.example.MyWidgetSet", - "theme": "mytheme", - "versionInfo": {"vaadinVersion": "7.0.0"}, - "vaadinDir": "VAADIN/", - "heartbeatInterval": 300, - "debug": true, - "standalone": false, - "authErrMsg": { - "message": "Take note of any unsaved data, "+ - "and <u>click here<\/u> to continue.", - "caption": "Authentication problem" - }, - "comErrMsg": { - "message": "Take note of any unsaved data, "+ - "and <u>click here<\/u> to continue.", - "caption": "Communication problem" - }, - "sessExpMsg": { - "message": "Take note of any unsaved data, "+ - "and <u>click here<\/u> to continue.", - "caption": "Session Expired" - } - });//]] > - </script> - - <p>Please view the page source to see how embedding works.</p> -</body> -</html> ----- - -endif::web[] - - -[[advanced.embedding.iframe]] -== Embedding Inside an [literal]#++iframe++# Element - -Embedding a Vaadin UI inside an [literal]#++<iframe>++# element is even easier -than the method described above, as it does not require definition of any Vaadin -specific definitions. - -You can embed an UI with an element such as the following: - -[subs="normal"] ----- -<iframe src="[replaceable]#/myapp/myui#"></iframe> ----- -The [literal]#++<iframe>++# elements have several downsides for embedding. One -is that their size of is not flexible depending on the content of the frame, but -the content must be flexible to accommodate in the frame. You can set the size -of an [literal]#++<iframe>++# element with [literal]#++height++# and -[literal]#++width++# attributes. Other issues arise from themeing and -communication with the frame content and the rest of the page. - -Below is a complete example of using the [literal]#++<iframe>++# to embed two -applications in a web page. - - -[source, html] ----- -<!DOCTYPE html> -<html> - <head> - <title>Embedding in IFrame</title> - </head> - - <body style="background: #d0ffd0;"> - <h1>This is a HTML page</h1> - <p>Below are two Vaadin applications embedded inside - a table:</p> - - <table align="center" border="3"> - <tr> - <th>The Calculator</th> - <th>The Color Picker</th> - </tr> - <tr valign="top"> - <td> - <iframe src="/vaadin-examples/Calc" height="200" - width="150" frameborder="0"></iframe> - </td> - <td> - <iframe src="/vaadin-examples/colorpicker" - height="330" width="400" - frameborder="0"></iframe> - </td> - </tr> - </table> - </body> -</html> ----- - -The page will look as shown in <<figure.embedding.iframe>> below. - -[[figure.embedding.iframe]] -.Vaadin Applications Embedded Inside IFrames -image::img/embedding3.png[] - -You can embed almost anything in an iframe, which essentially acts as a browser -window. However, this creates various problems. The iframe must have a fixed -size, inheritance of CSS from the embedding page is not possible, and neither is -interaction with JavaScript, which makes mashups impossible, and so on. Even -bookmarking with URI fragments will not work. - -Note also that websites can forbid iframe embedding by specifying an -[literal]#++X-Frame-Options: SAMEORIGIN++# header in the HTTP response. - - -ifdef::web[] -[[advanced.embedding.xs]] -== Cross-Site Embedding with the Vaadin XS Add-on - -__The XS add-on is currently not available for Vaadin 7.__ - -In the previous sections, we described the two basic methods for embedding -Vaadin applications: in a [literal]#++<div>++# element and in an -[literal]#++<iframe>++#. One problem with div embedding is that it does not work -between different Internet domains, which is a problem if you want to have your -website running in one server and your Vaadin application in another. The -security model in browsers effectively prevents such cross-site embedding of -Ajax applications by enforcing the __same origin policy__ for XmlHttpRequest -calls, even if the server is running in the same domain but different port. -While iframe is more permissive, allowing embedding almost anything in anywhere, -it has many disadvantanges, as described earlier. - -The Vaadin XS (Cross-Site) add-on works around the limitation in div embedding -by using JSONP-style communication instead of the standard XmlHttpRequests. - -Embedding is done simply with: - - -[source, html] ----- - <script src="http://demo.vaadin.com/xsembed/getEmbedJs" - type="text/javascript"></script> ----- - -This includes an automatically generated embedding script in the page, thereby -making embedding effortless. - -This assumes that the main layout of the application has undefined height. If -the height is 100%, you have to wrap it inside an element with a defined height. -For example: - - -[source, html] ----- - <div style="height: 500px;"> - <script src="http://demo.vaadin.com/xsembed/getEmbedJs" - type="text/javascript"></script> -</div> ----- - -It is possible to restrict where the application can be embedded by using a -whitelist. The add-on also encrypts the client-server communication, which is -more important for embedded applications than usual. - -You can get the Vaadin XS add-on from Vaadin Directory. It is provided as a Zip -package. Download and extract the installation package to a local folder. -Instructions for installation and further information is given in the -[filename]#README.html# file in the package. - -Some restrictions apply. You can have only one embedded application in one page. -Also, some third-party libraries may interfere with the communication. Other -notes are given in the README. - -endif::web[] - - - diff --git a/documentation/advanced/advanced-gae.asciidoc b/documentation/advanced/advanced-gae.asciidoc deleted file mode 100644 index 0547f2f134..0000000000 --- a/documentation/advanced/advanced-gae.asciidoc +++ /dev/null @@ -1,71 +0,0 @@ ---- -title: Google App Engine Integration -order: 7 -layout: page ---- - -[[advanced.gae]] -= Google App Engine Integration - -__This section is not yet fully updated to Vaadin 7.__ - -Vaadin includes support to run Vaadin applications in the Google App Engine -(GAE). The most essential requirement for GAE is the ability to serialize the -application state. Vaadin applications are serializable through the -[classname]#java.io.Serializable# interface. - -To run as a GAE application, an application must use -[classname]#GAEVaadinServlet# instead of [classname]#VaadinServlet#, and of -course implement the [classname]#java.io.Serializable# interface for all -persistent classes. You also need to enable session support in -[filename]#appengine-web.xml# with: - - -[source, xml] ----- -<sessions-enabled>true</sessions-enabled> ----- - -The Vaadin Project wizard can create the configuration files needed for GAE -deployment. See -<<dummy/../../../framework/getting-started/getting-started-first-project#getting-started.first-project.creation,"Creating -the Project">>. When the Google App Engine deployment configuration is selected, -the wizard will create the project structure following the GAE Servlet -convention instead of the regular Servlet convention. The main differences are: - -* Source directory: [filename]#src/main/java# -* Output directory: [filename]#war/WEB-INF/classes# -* Content directory: [filename]#war# - -== Rules and Limitations - -Running Vaadin applications in Google App Engine has the following rules and -limitations: - -* Avoid using the session for storage, usual App Engine limitations apply (no -synchronization, that is, it is unreliable). - -* Vaadin uses memcache for mutex, the key is of the form -[parameter]#_vmutex<sessionid>#. - -* The Vaadin [classname]#WebApplicationContext# class is serialized separately -into memcache and datastore; the memcache key is [parameter]#_vac<sessionid># -and the datastore entity kind is [parameter]#_vac# with identifiers of the type -[parameter]#_vac<sessionid>#. - -* __Do not__ update the application state when serving an -[classname]#ConnectorResource# (such as [classname]#ClassResource#. -[methodname]#getStream()#). - -* __Avoid__ (or be very careful when) updating application state in a -[classname]#TransactionListener# - it is called even when the application is not -locked and won't be serialized (such as with [classname]#ConnectorResource#), -and changes can therefore be lost (it should be safe to update things that can -be safely discarded later, that is, valid only for the current request). - -* The application remains locked during uploads - a progress bar is not possible. - - - - - diff --git a/documentation/advanced/advanced-global.asciidoc b/documentation/advanced/advanced-global.asciidoc deleted file mode 100644 index 94b822235a..0000000000 --- a/documentation/advanced/advanced-global.asciidoc +++ /dev/null @@ -1,234 +0,0 @@ ---- -title: Accessing Session-Global Data -order: 15 -layout: page ---- - -[[advanced.global]] -= Accessing Session-Global Data - -__This section is mostly up-to-date with Vaadin 7, but has some information -which still needs to be updated.__ - -Applications typically need to access some objects from practically all user -interface code, such as a user object, a business data model, or a database -connection. This data is typically initialized and managed in the UI class of -the application, or in the session or servlet. - -For example, you could hold it in the UI class as follows: - - -[source, java] ----- -class MyUI extends UI { - UserData userData; - - public void init() { - userData = new UserData(); - } - - public UserData getUserData() { - return userData; - } -} ----- - -Vaadin offers two ways to access the UI object: with [methodname]#getUI()# -method from any component and the global [methodname]#UI.getCurrent()# method. - -The [methodname]#getUI()# works as follows: - - -[source, java] ----- -data = ((MyUI)component.getUI()).getUserData(); ----- - -This does not, however work in many cases, because it requires that the -components are attached to the UI. That is not the case most of the time when -the UI is still being built, such as in constructors. - - -[source, java] ----- -class MyComponent extends CustomComponent { - public MyComponent() { - // This fails with NullPointerException - Label label = new Label("Country: " + - getUI().getLocale().getCountry()); - - setCompositionRoot(label); - } -} ----- - -The global access methods for the currently served servlet, session, and UI -allow an easy way to access the data: - - -[source, java] ----- -data = ((MyUI) UI.getCurrent()).getUserData(); ----- - -[[advanced.global.passing.problem]] -== The Problem - -The basic problem in accessing session-global data is that the -[methodname]#getUI()# method works only after the component has been attached to -the application. Before that, it returns [parameter]#null#. This is the case in -constructors of components, such as a [classname]#CustomComponent#: - -Using a static variable or a singleton implemented with such to give a global -access to user session data is not possible, because static variables are global -in the entire web application, not just the user session. This can be handy for -communicating data between the concurrent sessions, but creates a problem within -a session. - -The data would be shared by all users and be reinitialized every time a new user -opens the application. - - -[[advanced.global.passing.solutions-overview]] -== Overview of Solutions - -To get the application object or any other global data, you have the following -solutions: - -* Pass a reference to the global data as a parameter - -* Initialize components in [methodname]#attach()# method - -* Initialize components in the [methodname]#enter()# method of the navigation view -(if using navigation) - -* Store a reference to global data using the __ThreadLocal Pattern__ - - -Each solution is described in the following sections. - - -[[advanced.global.passing]] -== Passing References Around - -You can pass references to objects as parameters. This is the normal way in -object-oriented programming. - - -[source, java] ----- -class MyApplication extends Application { - UserData userData; - - public void init() { - Window mainWindow = new Window("My Window"); - setMainWindow(mainWindow); - - userData = new UserData(); - - mainWindow.addComponent(new MyComponent(this)); - } - - public UserData getUserData() { - return userData; - } -} - -class MyComponent extends CustomComponent { - public MyComponent(MyApplication app) { - Label label = new Label("Name: " + - app.getUserData().getName()); - - setCompositionRoot(label); - } -} ----- - -If you need the reference in other methods, you either have to pass it again as -a parameter or store it in a member variable. - -The problem with this solution is that practically all constructors in the -application need to get a reference to the application object, and passing it -further around in the classes is another hard task. - - -[[advanced.global.attach]] -== Overriding [methodname]#attach()# - -The [methodname]#attach()# method is called when the component is attached to -the UI through containment hierarchy. The [methodname]#getUI()# method always -works. - - -[source, java] ----- -class MyComponent extends CustomComponent { - public MyComponent() { - // Must set a dummy root in constructor - setCompositionRoot(new Label("")); - } - - @Override - public void attach() { - Label label = new Label("Name: " + - ((MyUI)component.getUI()) - .getUserData().getName()); - - setCompositionRoot(label); - } -} ----- - -While this solution works, it is slightly messy. You may need to do some -initialization in the constructor, but any construction requiring the global -data must be done in the [methodname]#attach()# method. Especially, -[classname]#CustomComponent# requires that the -[methodname]#setCompositionRoot()# method is called in the constructor. If you -can't create the actual composition root component in the constructor, you need -to use a temporary dummy root, as is done in the example above. - -Using [methodname]#getUI()# also needs casting if you want to use methods -defined in your UI class. - - -[[advanced.global.threadlocal]] -== ThreadLocal Pattern - -((("ThreadLocal pattern", id="term.advanced.global.threadlocal", range="startofrange"))) - - -Vaadin uses the ThreadLocal pattern for allowing global access to the -[classname]#UI#, and [classname]#Page# objects of the currently processed server -request with a static [methodname]#getCurrent()# method in all the respective -classes. This section explains why the pattern is used in Vaadin and how it -works. You may also need to reimplement the pattern for some purpose. - -The ThreadLocal pattern gives a solution to the global access problem by solving -two sub-problems of static variables. - -As the first problem, assume that the servlet container processes requests for -many users (sessions) sequentially. If a static variable is set in a request -belonging one user, it could be read or re-set by the next incoming request -belonging to another user. This can be solved by setting the global reference at -the beginning of each HTTP request to point to data of the current user, as -illustrated in Figure <<figure.advanced.global.threadlocal.sequentiality>>. - -[[figure.advanced.global.threadlocal.sequentiality]] -.Switching a static (or ThreadLocal) reference during sequential processing of requests -image::img/threadlocal-sequentiality-hi.png[] - -The second problem is that servlet containers typically do thread pooling with -multiple worker threads that process requests. Therefore, setting a static -reference would change it in all threads running concurrently, possibly just -when another thread is processing a request for another user. The solution is to -store the reference in a thread-local variable instead of a static. You can do -so by using the [classname]#ThreadLocal# class in Java for the switch reference. - -[[figure.advanced.global.threadlocal.concurrency]] -.Switching [classname]#ThreadLocal# references during concurrent processing of requests -image::img/threadlocal-concurrency-hi.png[] - -(((range="endofrange", startref="term.advanced.global.threadlocal"))) - - - diff --git a/documentation/advanced/advanced-javascript.asciidoc b/documentation/advanced/advanced-javascript.asciidoc deleted file mode 100644 index 6e9cbc45e5..0000000000 --- a/documentation/advanced/advanced-javascript.asciidoc +++ /dev/null @@ -1,109 +0,0 @@ ---- -title: JavaScript Interaction -order: 14 -layout: page ---- - -[[advanced.javascript]] -= JavaScript Interaction - -Vaadin supports two-direction JavaScript calls from and to the server-side. This -allows interfacing with JavaScript code without writing client-side integration -code. - -[[advanced.javascript.calling]] -== Calling JavaScript - -You can make JavaScript calls from the server-side with the -[methodname]#execute()# method in the [classname]#JavaScript# class. You can get -a [classname]#JavaScript# instance from the current [classname]#Page# object -with [methodname]#getJavaScript()#.//TODO Check that the API is -so. - - -[source, java] ----- -// Execute JavaScript in the currently processed page -Page.getCurrent().getJavaScript().execute("alert('Hello')"); ----- - -The [classname]#JavaScript# class itself has a static shorthand method -[methodname]#getCurrent()# to get the instance for the currently processed page. - - -[source, java] ----- -// Shorthand -JavaScript.getCurrent().execute("alert('Hello')"); ----- - -The JavaScript is executed after the server request that is currently processed -returns. If multiple JavaScript calls are made during the processing of the -request, they are all executed sequentially after the request is done. Hence, -the JavaScript execution does not pause the execution of the server-side -application and you can not return values from the JavaScript. - - -[[advanced.javascript.callback]] -== Handling JavaScript Function Callbacks - -You can make calls with JavaScript from the client-side to the server-side. This -requires that you register JavaScript call-back methods from the server-side. -You need to implement and register a [classname]#JavaScriptFunction# with -[methodname]#addFunction()# in the current [classname]#JavaScript# object. A -function requires a name, with an optional package path, which are given to the -[methodname]#addFunction()#. You only need to implement the [methodname]#call()# -method to handle calls from the client-side JavaScript. - - -[source, java] ----- - -JavaScript.getCurrent().addFunction("com.example.foo.myfunc", - new JavaScriptFunction() { - @Override - public void call(JsonArray arguments) { - Notification.show("Received call"); - } -}); - -Link link = new Link("Send Message", new ExternalResource( - "javascript:com.example.foo.myfunc()")); ----- - -Parameters passed to the JavaScript method on the client-side are provided in a -[classname]#JSONArray# passed to the [methodname]#call()# method. The parameter -values can be acquired with the [methodname]#get()# method by the index of the -parameter, or any of the type-casting getters. The getter must match the type of -the passed parameter, or an exception is thrown. - - -[source, java] ----- -JavaScript.getCurrent().addFunction("com.example.foo.myfunc", - new JavaScriptFunction() { - @Override - public void call(JsonArray arguments) { - try { - String message = arguments.getString(0); - int value = arguments.getInt(1); - Notification.show("Message: " + message + - ", value: " + value); - } catch (Exception e) { - Notification.show("Error: " + e.getMessage()); - } - } -}); - -Link link = new Link("Send Message", new ExternalResource( - "javascript:com.example.foo.myfunc(prompt('Message'), 42)")); ----- - -The function callback mechanism is the same as the RPC mechanism used with -JavaScript component integration, as described in -<<dummy/../../../framework/gwt/gwt-javascript#gwt.javascript.rpc,"RPC from -JavaScript to Server-Side">>. - - - - diff --git a/documentation/advanced/advanced-logging.asciidoc b/documentation/advanced/advanced-logging.asciidoc deleted file mode 100644 index 12200d32ee..0000000000 --- a/documentation/advanced/advanced-logging.asciidoc +++ /dev/null @@ -1,137 +0,0 @@ ---- -title: Logging -order: 13 -layout: page ---- - -[[advanced.logging]] -= Logging - -(((, id="term.advanced.logging", range="startofrange"))) - - -You can do logging in Vaadin application using the standard -[package]#java.util.logging# facilities. Configuring logging is as easy as -putting a file named [filename]#logging.properties# in the default package of -your Vaadin application ( [filename]#src# in an Eclipse project or -[filename]#src/main/java# or [filename]#src/main/resources# in a Maven project). -This file is read by the [classname]#Logger# class when a new instance of it is -initialize. - -[[advanced.logging.tomcat]] -== Logging in Apache Tomcat - -For logging Vaadin applications deployed in Apache Tomcat, you do not need to do -anything special to log to the same place as Tomcat itself. If you need to write -the Vaadin application related messages elsewhere, just add a custom -[filename]#logging.properties# file to the default package of your Vaadin -application. - -If you would like to pipe the log messages through another logging solution, see -<<advanced.logging.slf4j>> below. - - -[[advanced.logging.liferay]] -== Logging in Liferay - -Liferay mutes logging through [package]#java.util.logging# by default. In order -to enable logging, you need to add a [filename]#logging.properties# file of your -own to the default package of your Vaadin application. This file should define -at least one destination where to save the log messages. - -You can also log through SLF4J, which is used in and bundled with Liferay. -Follow the instructions in <<advanced.logging.slf4j>>. - - -[[advanced.logging.slf4j]] -== Piping to Log4j using SLF4J - -((("Log4j"))) -((("SLF4J"))) -Piping output from [package]#java.util.logging# to Log4j is easy with SLF4J ( -http://slf4j.org/). The basic way to go about this is to add the SLF4J JAR file -as well as the [filename]#jul-to-slf4j.jar# file, which implements the bridge -from [package]#java.util.logging#, to SLF4J. You will also need to add a third -logging implementation JAR file, that is, [filename]#slf4j-log4j12-x.x.x.jar#, -to log the actual messages using Log4j. For more info on this, please visit the -SLF4J site. - -In order to get the [package]#java.util.logging# to SLF4J bridge installed, you -need to add the following snippet of code to your [classname]#UI# class at the -very top://TODO: Sure it's UI class and not the -servlet? - - -[source, java] ----- - static { - SLF4JBridgeHandler.install(); - } ----- - -This will make sure that the bridge handler is installed and working before -Vaadin starts to process any logging calls. - - -[WARNING] -.Please note! -==== -This can seriously impact on the cost of disabled logging statements (60-fold -increase) and a measurable impact on enabled log statements (20% overall -increase). However, Vaadin doesn't log very much, so the effect on performance -will be negligible. - -==== - - - - -[[advanced.logging.core]] -== Using Logger - -You can do logging with a simple pattern where you register a static logger -instance in each class that needs logging, and use this logger wherever logging -is needed in the class. For example: - - -[source, java] ----- -public class MyClass { - private final static Logger logger = - Logger.getLogger(MyClass.class.getName()); - - public void myMethod() { - try { - // do something that might fail - } catch (Exception e) { - logger.log(Level.SEVERE, "FAILED CATASTROPHICALLY!", e); - } - } -} ----- - -((("static"))) -((("memory -leak"))) -((("PermGen"))) -Having a [literal]#++static++# logger instance for each class needing logging -saves a bit of memory and time compared to having a logger for every logging -class instance. However, it could cause the application to leak PermGen memory -with some application servers when redeploying the application. The problem is -that the [classname]#Logger# may maintain hard references to its instances. As -the [classname]#Logger# class is loaded with a classloader shared between -different web applications, references to classes loaded with a per-application -classloader would prevent garbage-collecting the classes after redeploying, -hence leaking memory. As the size of the PermGen memory where class object are -stored is fixed, the leakage will lead to a server crash after many -redeployments. The issue depends on the way how the server manages classloaders, -on the hardness of the back-references, and may also be different between Java 6 -and 7. So, if you experience PermGen issues, or want to play it on the safe -side, you should consider using non-static [classname]#Logger# instances.//As -discussed in Forum thread 1175841 -(24.2.2012). - - -(((range="endofrange", startref="term.advanced.logging"))) - - diff --git a/documentation/advanced/advanced-navigator.asciidoc b/documentation/advanced/advanced-navigator.asciidoc deleted file mode 100644 index a03c05367f..0000000000 --- a/documentation/advanced/advanced-navigator.asciidoc +++ /dev/null @@ -1,289 +0,0 @@ ---- -title: Navigating in an Application -order: 9 -layout: page ---- - -[[advanced.navigator]] -= Navigating in an Application - -Plain Vaadin applications do not have normal web page navigation as they usually -run on a single page, as all Ajax applications do. Quite commonly, however, -applications have different views between which the user should be able to -navigate. The [classname]#Navigator# in Vaadin can be used for most cases of -navigation. Views managed by the navigator automatically get a distinct URI -fragment, which can be used to be able to bookmark the views and their states -and to go back and forward in the browser history. - -[[advanced.navigator.navigating]] -== Setting Up for Navigation - -The [classname]#Navigator# class manages a collection of __views__ that -implement the [interfacename]#View# interface. The views can be either -registered beforehand or acquired from a __view provider__. When registering, -the views must have a name identifier and be added to a navigator with -[methodname]#addView()#. You can register new views at any point. Once -registered, you can navigate to them with [methodname]#navigateTo()#. - -[classname]#Navigator# manages navigation in a component container, which can be -either a [interfacename]#ComponentContainer# (most layouts) or a -[interfacename]#SingleComponentContainer# ( [classname]#UI#, [classname]#Panel#, -or [classname]#Window#). The component container is managed through a -[interfacename]#ViewDisplay#. Two view displays are defined: -[classname]#ComponentContainerViewDisplay# and -[classname]#SingleComponentContainerViewDisplay#, for the respective component -container types. Normally, you can let the navigator create the view display -internally, as we do in the example below, but you can also create it yourself -to customize it. - -Let us consider the following UI with two views: start and main. Here, we define -their names with enums to be typesafe. We manage the navigation with the UI -class itself, which is a [interfacename]#SingleComponentContainer#. - - -[source, java] ----- -public class NavigatorUI extends UI { - Navigator navigator; - protected static final String MAINVIEW = "main"; - - @Override - protected void init(VaadinRequest request) { - getPage().setTitle("Navigation Example"); - - // Create a navigator to control the views - navigator = new Navigator(this, this); - - // Create and register the views - navigator.addView("", new StartView()); - navigator.addView(MAINVIEW, new MainView()); - } -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.navigator.basic[on-line example, window="_blank"]. - -The [classname]#Navigator# automatically sets the URI fragment of the -application URL. It also registers a [interfacename]#URIFragmentChangedListener# -in the page - -ifdef::web[] -(see <<dummy/../../../framework/advanced/advanced-urifu#advanced.urifu,"Managing -URI -Fragments">>) -endif::web[] - to show the view identified by the URI fragment if entered or navigated to in -the browser. This also enables browser navigation history in the application. - -[[advanced.navigator.navigating.viewprovider]] -=== View Providers - -You can create new views dynamically using a __view provider__ that implements -the [interfacename]#ViewProvider# interface. A provider is registered in -[classname]#Navigator# with [methodname]#addProvider()#. - -The [methodname]#ClassBasedViewProvider# is a view provider that can dynamically -create new instances of a specified view class based on the view name. - -The [methodname]#StaticViewProvider# returns an existing view instance based on -the view name. The [methodname]#addView()# in [classname]#Navigator# is actually -just a shorthand for creating a static view provider for each registered view. - - -[[advanced.navigator.navigating.viewchangelistener]] -=== View Change Listeners - -You can handle view changes also by implementing a -[interfacename]#ViewChangeListener# and adding it to a [classname]#Navigator#. -When a view change occurs, a listener receives a [classname]#ViewChangeEvent# -object, which has references to the old and the activated view, the name of the -activated view, as well as the fragment parameters. - - - -[[advanced.navigator.view]] -== Implementing a View - -Views can be any objects that implement the [interfacename]#View# interface. -When the [methodname]#navigateTo()# is called for the navigator, or the -application is opened with the URI fragment associated with the view, the -navigator switches to the view and calls its [methodname]#enter()# method. - -To continue with the example, consider the following simple start view that just -lets the user to navigate to the main view. It only pops up a notification when -the user navigates to it and displays the navigation button. - - -[source, java] ----- -/** A start view for navigating to the main view */ -public class StartView extends VerticalLayout implements View { - public StartView() { - setSizeFull(); - - Button button = new Button("Go to Main View", - new Button.ClickListener() { - @Override - public void buttonClick(ClickEvent event) { - navigator.navigateTo(MAINVIEW); - } - }); - addComponent(button); - setComponentAlignment(button, Alignment.MIDDLE_CENTER); - } - - @Override - public void enter(ViewChangeEvent event) { - Notification.show("Welcome to the Animal Farm"); - } -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.navigator.basic[on-line example, window="_blank"]. - -You can initialize the view content in the constructor, as was done in the -example above, or in the [methodname]#enter()# method. The advantage with the -latter method is that the view is attached to the view container as well as to -the UI at that time, which is not the case in the constructor. - - -[[advanced.navigator.urifragment]] -== Handling URI Fragment Path - -URI fragment part of a URL is the part after a hash [literal]#++#++# character. -Is used for within-UI URLs, because it is the only part of the URL that can be -changed with JavaScript from within a page without reloading the page. The URLs -with URI fragments can be used for hyperlinking and bookmarking, as well as -browser history, just like any other URLs. In addition, an exclamation mark -[literal]#++#!++# after the hash marks that the page is a stateful AJAX page, -which can be crawled by search engines. Crawling requires that the application -also responds to special URLs to get the searchable content. URI fragments are -managed by [classname]#Page#, which provides a low-level API. - -URI fragments can be used with [classname]#Navigator# in two ways: for -navigating to a view and to a state within a view. The URI fragment accepted by -[methodname]#navigateTo()# can have the view name at the root, followed by -fragment parameters after a slash (" [literal]#++/++#"). These parameters are -passed to the [methodname]#enter()# method in the [interfacename]#View#. - -In the following example, we implement within-view navigation. Here we use the -following declarative design for the view: - - -[source, html] ----- -<v-vertical-layout size-full> - <v-horizontal-layout size-full :expand> - <v-panel caption="List of Equals" height-full width-auto> - <v-vertical-layout _id="menuContent" width-auto margin/> - </v-panel> - - <v-panel _id="equalPanel" caption="An Equal" size-full :expand/> - </v-horizontal-layout> - - <v-button _id="logout">Logout</v-button> -</v-vertical-layout> ----- - -The view's logic code would be as follows: - - -[source, java] ----- -/** Main view with a menu (with declarative layout design) */ -@DesignRoot -public class MainView extends VerticalLayout implements View { - // Menu navigation button listener - class ButtonListener implements Button.ClickListener { - String menuitem; - public ButtonListener(String menuitem) { - this.menuitem = menuitem; - } - - @Override - public void buttonClick(ClickEvent event) { - // Navigate to a specific state - navigator.navigateTo(MAINVIEW + "/" + menuitem); - } - } - - VerticalLayout menuContent; - Panel equalPanel; - Button logout; - - public MainView() { - Design.read(this); - - menuContent.addComponent(new Button("Pig", - new ButtonListener("pig"))); - menuContent.addComponent(new Button("Cat", - new ButtonListener("cat"))); - menuContent.addComponent(new Button("Dog", - new ButtonListener("dog"))); - menuContent.addComponent(new Button("Reindeer", - new ButtonListener("reindeer"))); - menuContent.addComponent(new Button("Penguin", - new ButtonListener("penguin"))); - menuContent.addComponent(new Button("Sheep", - new ButtonListener("sheep"))); - - // Allow going back to the start - logout.addClickListener(event -> // Java 8 - navigator.navigateTo("")); - } - - @DesignRoot - class AnimalViewer extends VerticalLayout { - Label watching; - Embedded pic; - Label back; - - public AnimalViewer(String animal) { - Design.read(this); - - watching.setValue("You are currently watching a " + - animal); - pic.setSource(new ThemeResource( - "img/" + animal + "-128px.png")); - back.setValue("and " + animal + - " is watching you back"); - } - } - - @Override - public void enter(ViewChangeEvent event) { - if (event.getParameters() == null - || event.getParameters().isEmpty()) { - equalPanel.setContent( - new Label("Nothing to see here, " + - "just pass along.")); - return; - } else - equalPanel.setContent(new AnimalViewer( - event.getParameters())); - } -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.navigator.basic[on-line example, window="_blank"]. - -The animal sub-view would have the following declarative design: - - -[source, html] ----- -<v-vertical-layout size-full> - <v-label _id="watching" size-auto :middle :center/> - <v-embedded _id="pic" :middle :center :expand/> - <v-label _id="back" size-auto :middle :center/> -</v-vertical-layout> ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.navigator.basic[on-line example, window="_blank"]. - -The main view is shown in <<figure.advanced.navigator.mainview>>. At this point, -the URL would be [literal]#++http://localhost:8080/myapp#!main/reindeer++#. - -[[figure.advanced.navigator.mainview]] -.Navigator Main View -image::img/navigator-mainview.png[] - - - - diff --git a/documentation/advanced/advanced-printing.asciidoc b/documentation/advanced/advanced-printing.asciidoc deleted file mode 100644 index 9ed39eced1..0000000000 --- a/documentation/advanced/advanced-printing.asciidoc +++ /dev/null @@ -1,181 +0,0 @@ ---- -title: Printing -order: 6 -layout: page ---- - -[[advanced.printing]] -= Printing - -((("printing", id="term.advanced.printing", range="startofrange"))) - - -Vaadin does not have any special support for printing. There are two basic ways -to print - in a printer controlled by the application server or by the user from -the web browser. Printing in the application server is largely independent of -the UI, you just have to take care that printing commands do not block server -requests, possibly by running the print commands in another thread. - -((("[methodname]#print()#", id="term.advanced.printing.print", -range="startofrange"))) - - -((("JavaScript", "[methodname]#print()#", -id="term.advanced.printing.JavaScript.print", -range="startofrange"))) - - -For client-side printing, most browsers support printing the web page. You can -either print the current or a special print page that you open. The page can be -styled for printing with special CSS rules, and you can hide unwanted elements. -You can also print other than Vaadin UI content, such as HTML or PDF. - -[[advanced.printing.browserwindow]] -== Printing the Browser Window - -Vaadin does not have special support for launching the printing in browser, but -you can easily use the JavaScript [methodname]#print()# method that opens the -print window of the browser. - -((("JavaScript", "[methodname]#execute()#"))) - -[source, java] ----- -Button print = new Button("Print This Page"); -print.addClickListener(new Button.ClickListener() { - public void buttonClick(ClickEvent event) { - // Print the current page - JavaScript.getCurrent().execute("print();"); - } -}); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.printing.this[on-line example, window="_blank"]. - -The button in the above example would print the current page, including the -button itself. You can hide such elements in CSS, as well as otherwise style the -page for printing. Style definitions for printing are defined inside a -[literal]#++@media print {}++# block in CSS. - - -[[advanced.printing.opening]] -== Opening a Print Window - -You can open a browser window with a special UI for print content and -automatically launch printing the content. - - -[source, java] ----- -public static class PrintUI extends UI { - @Override - protected void init(VaadinRequest request) { - // Have some content to print - setContent(new Label( - "<h1>Here's some dynamic content</h1>\n" + - "<p>This is to be printed.</p>", - ContentMode.HTML)); - - // Print automatically when the window opens - JavaScript.getCurrent().execute( - "setTimeout(function() {" + - " print(); self.close();}, 0);"); - } -} -... - -// Create an opener extension -BrowserWindowOpener opener = - new BrowserWindowOpener(PrintUI.class); -opener.setFeatures("height=200,width=400,resizable"); - -// A button to open the printer-friendly page. -Button print = new Button("Click to Print"); -opener.extend(print); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.printing.open[on-line example, window="_blank"]. - -How the browser opens the window, as an actual (popup) window or just a tab, -depends on the browser. After printing, we automatically close the window with -JavaScript [methodname]#close()# call. - -(((range="endofrange", startref="term.advanced.printing.print"))) -(((range="endofrange", startref="term.advanced.printing.JavaScript.print"))) - -[[advanced.printing.pdf]] -== Printing PDF - -((("PDF"))) -To print content as PDF, you need to provide the downloadable content as a -static or a dynamic resource, such as a [classname]#StreamResource#. - -You can let the user open the resource using a [classname]#Link# component, or -some other component with a [classname]#PopupWindowOpener# extension. When such -a link or opener is clicked, the browser opens the PDF in the browser, in an -external viewer (such as Adobe Reader), or lets the user save the document. - -It is crucial to notice that clicking a [classname]#Link# or a -[classname]#PopupWindowOpener# is a client-side operation. If you get the -content of the dynamic PDF from the same UI state, you can not have the link or -opener enabled, as then clicking it would not get the current UI content. -Instead, you have to create the resource object before the link or opener are -clicked. This usually requires a two-step operation, or having the print -operation available in another view. - - -[source, java] ----- -// A user interface for a (trivial) data model from which -// the PDF is generated. -final TextField name = new TextField("Name"); -name.setValue("Slartibartfast"); - -// This has to be clicked first to create the stream resource -final Button ok = new Button("OK"); - -// This actually opens the stream resource -final Button print = new Button("Open PDF"); -print.setEnabled(false); - -ok.addClickListener(new ClickListener() { - @Override - public void buttonClick(ClickEvent event) { - // Create the PDF source and pass the data model to it - StreamSource source = - new MyPdfSource((String) name.getValue()); - - // Create the stream resource and give it a file name - String filename = "pdf_printing_example.pdf"; - StreamResource resource = - new StreamResource(source, filename); - - // These settings are not usually necessary. MIME type - // is detected automatically from the file name, but - // setting it explicitly may be necessary if the file - // suffix is not ".pdf". - resource.setMIMEType("application/pdf"); - resource.getStream().setParameter( - "Content-Disposition", - "attachment; filename="+filename); - - // Extend the print button with an opener - // for the PDF resource - BrowserWindowOpener opener = - new BrowserWindowOpener(resource); - opener.extend(print); - - name.setEnabled(false); - ok.setEnabled(false); - print.setEnabled(true); - } -}); - -layout.addComponent(name); -layout.addComponent(ok); -layout.addComponent(print); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.printing.pdfgeneration[on-line example, window="_blank"]. - - -(((range="endofrange", startref="term.advanced.printing"))) - - diff --git a/documentation/advanced/advanced-push.asciidoc b/documentation/advanced/advanced-push.asciidoc deleted file mode 100644 index df9279c6bb..0000000000 --- a/documentation/advanced/advanced-push.asciidoc +++ /dev/null @@ -1,417 +0,0 @@ ---- -title: Server Push -order: 16 -layout: page ---- - -[[advanced.push]] -= Server Push - -When you need to update a UI from another UI, possibly of another user, or from -a background thread running in the server, you usually want to have the update -show immediately, not when the browser happens to make the next server request. -For this purpose, you can use __server push__ that sends the data to the browser -immediately. Push is based on a client-server connection, usually a WebSocket -connection, that the client establishes and the server can then use to send -updates to the client. - -The server-client communication is done by default with a WebSocket connection -if the browser and the server support it. If not, Vaadin will fall back to a -method supported by the browser. Vaadin Push uses a custom build of the -link:https://github.com/Atmosphere/atmosphere[Atmosphere framework] for -client-server communication. - -[[advanced.push.installation]] -== Installing the Push Support - -The server push support in Vaadin requires the separate Vaadin Push library. It -is included in the installation package as [filename]#vaadin-push.jar#. - -[[advanced.push.installation.ivy]] -=== Retrieving with Ivy - -With Ivy, you can get it with the following declaration in the -[filename]#ivy.xml#: - - -[source, xml] ----- -<dependency org="com.vaadin" name="vaadin-push" - rev="&vaadin.version;" conf="default->default"/> ----- - -In some servers, you may need to exlude a [literal]#++sl4j++# dependency as -follows: - - -[source, xml] ----- -<dependency org="com.vaadin" name="vaadin-push" - rev="&vaadin.version;" conf="default->default"> - <exclude org="org.slf4j" name="slf4j-api"/> -</dependency> ----- - -Pay note that the Atmosphere library is a bundle, so if you retrieve the -libraries with Ant, for example, you need to retrieve -[literal]#++type="jar,bundle"++#. - - -[[advanced.push.installation.maven]] -=== Retrieving with Maven - -In Maven, you can get the push library with the following dependency in the POM: - - -[source, xml] ----- -<dependency> - <groupId>com.vaadin</groupId> - <artifactId>vaadin-push</artifactId> - <version>${vaadin.version}</version> -</dependency> ----- - - - -[[advanced.push.enabling]] -== Enabling Push for a UI - -To enable server push, you need to define the push mode either in the deployment -descriptor or with the [classname]#@Push# annotation for the UI. - -[[advanced.push.enabling.pushmode]] -=== Push Modes - -You can use server push in two modes: [literal]#++automatic++# and -[literal]#++manual++#. The automatic mode pushes changes to the browser -automatically after access() finishes. With the manual mode, you can do the push -explicitly with [methodname]#push()#, which allows more flexibility. - - -[[advanced.push.enabling.pushmode]] -=== The [classname]#@Push# annotation - -You can enable server push for a UI with the [classname]#@Push# annotation as -follows. It defaults to automatic mode ( [parameter]#PushMode.AUTOMATIC#). - - -[source, java] ----- -@Push -public class PushyUI extends UI { ----- - -To enable manual mode, you need to give the [parameter]#PushMode.MANUAL# -parameter as follows: - - -[source, java] ----- -@Push(PushMode.MANUAL) -public class PushyUI extends UI { ----- - - -[[advanced.push.enabling.servlet]] -=== Servlet Configuration - -You can enable the server push and define the push mode also in the servlet -configuration with the [parameter]#pushmode# parameter for the servlet in the -[filename]#web.xml# deployment descriptor. If you use a Servlet 3.0 compatible -server, you also want to enable asynchronous processing with the -[literal]#++async-supported++# parameter. Note the use of Servlet 3.0 schema in -the deployment descriptor. - - -[subs="normal"] ----- -<?xml version="1.0" encoding="UTF-8"?> -<web-app - id="WebApp_ID" version="**3.0**" - xmlns="**http://java.sun.com/xml/ns/javaee**" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="**http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd**"> - <servlet> - <servlet-name>Pushy UI</servlet-name> - <servlet-class> - com.vaadin.server.VaadinServlet</servlet-class> - - <init-param> - <param-name>UI</param-name> - <param-value>**com.example.my.PushyUI**</param-value> - </init-param> - - <!-- Enable server push --> - <init-param> - <param-name>pushmode</param-name> - <param-value>**automatic**</param-value> - </init-param> - <async-supported>**true**</async-supported> - </servlet> -</web-app> ----- - -[[advanced.push.running]] -== Accessing UI from Another Thread - -Making changes to a [classname]#UI# object from another thread and pushing them -to the browser requires locking the user session when accessing the UI. -Otherwise, the UI update done from another thread could conflict with a regular -event-driven update and cause either data corruption or deadlocks. Because of -this, you may only access an UI using the [methodname]#access()# method, which -locks the session to prevent conflicts. It takes a [interfacename]#Runnable# -which it executes as its parameter. - -For example: - - -[source, java] ----- -ui.access(new Runnable() { - @Override - public void run() { - series.add(new DataSeriesItem(x, y)); - } -}); ----- - -In Java 8, where a parameterless lambda expression creates a runnable, you could -simply write: - - -[source, java] ----- -ui.access(() -> - series.add(new DataSeriesItem(x, y))); ----- - -If the push mode is [literal]#++manual++#, you need to push the pending UI -changes to the browser explicitly with the [methodname]#push()# method. - - -[source, java] ----- -ui.access(new Runnable() { - @Override - public void run() { - series.add(new DataSeriesItem(x, y)); - ui.push(); - } -}); ----- - -Below is a complete example of a case where we make UI changes from another -thread. - - -[source, java] ----- -public class PushyUI extends UI { - Chart chart = new Chart(ChartType.AREASPLINE); - DataSeries series = new DataSeries(); - - @Override - protected void init(VaadinRequest request) { - chart.setSizeFull(); - setContent(chart); - - // Prepare the data display - Configuration conf = chart.getConfiguration(); - conf.setTitle("Hot New Data"); - conf.setSeries(series); - - // Start the data feed thread - new FeederThread().start(); - } - - class FeederThread extends Thread { - int count = 0; - - @Override - public void run() { - try { - // Update the data for a while - while (count < 100) { - Thread.sleep(1000); - - access(new Runnable() { - @Override - public void run() { - double y = Math.random(); - series.add( - new DataSeriesItem(count++, y), - true, count > 10); - } - }); - } - - // Inform that we have stopped running - access(new Runnable() { - @Override - public void run() { - setContent(new Label("Done!")); - } - }); - } catch (InterruptedException e) { - e.printStackTrace(); - } - } - } -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.push.simple[on-line example, window="_blank"]. - -When sharing data between UIs or user sessions, you need to consider the -message-passing mechanism more carefully, as explained next. - - -[[advanced.push.pusharound]] -== Broadcasting to Other Users - -Broadcasting messages to be pushed to UIs in other user sessions requires having -some sort of message-passing mechanism that sends the messages to all UIs that -register as recipients. As processing server requests for different UIs is done -concurrently in different threads of the application server, locking the threads -properly is very important to avoid deadlock situations. - -[[advanced.push.pusharound.broadcaster]] -=== The Broadcaster - -The standard pattern for sending messages to other users is to use a -__broadcaster__ singleton that registers the UIs and broadcasts messages to them -safely. To avoid deadlocks, it is recommended that the messages should be sent -through a message queue in a separate thread. Using a Java -[classname]#ExecutorService# running in a single thread is usually the easiest -and safest way. - - -[source, java] ----- -public class Broadcaster implements Serializable { - static ExecutorService executorService = - Executors.newSingleThreadExecutor(); - - public interface BroadcastListener { - void receiveBroadcast(String message); - } - - private static LinkedList<BroadcastListener> listeners = - new LinkedList<BroadcastListener>(); - - public static synchronized void register( - BroadcastListener listener) { - listeners.add(listener); - } - - public static synchronized void unregister( - BroadcastListener listener) { - listeners.remove(listener); - } - - public static synchronized void broadcast( - final String message) { - for (final BroadcastListener listener: listeners) - executorService.execute(new Runnable() { - @Override - public void run() { - listener.receiveBroadcast(message); - } - }); - } -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.push.pusharound[on-line example, window="_blank"]. - -In Java 8, you could use lambda expressions for the listeners instead of the -interface, and a parameterless expression to create the runnable: - - -[source, java] ----- -for (final Consumer<String> listener: listeners) - executorService.execute(() -> - listener.accept(message)); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.push.pusharound[on-line example, window="_blank"]. - - -[[advanced.push.pusharound.receiving]] -=== Receiving Broadcasts - -The receivers need to implement the receiver interface and register to the -broadcaster to receive the broadcasts. A listener should be unregistered when -the UI expires. When updating the UI in a receiver, it should be done safely as -described earlier, by executing the update through the [methodname]#access()# -method of the UI. - - -[source, java] ----- -@Push -public class PushAroundUI extends UI - implements Broadcaster.BroadcastListener { - - VerticalLayout messages = new VerticalLayout(); - - @Override - protected void init(VaadinRequest request) { - ... build the UI ... - - // Register to receive broadcasts - Broadcaster.register(this); - } - - // Must also unregister when the UI expires - @Override - public void detach() { - Broadcaster.unregister(this); - super.detach(); - } - - @Override - public void receiveBroadcast(final String message) { - // Must lock the session to execute logic safely - access(new Runnable() { - @Override - public void run() { - // Show it somehow - messages.addComponent(new Label(message)); - } - }); - } -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.push.pusharound[on-line example, window="_blank"]. - - -[[advanced.push.pusharound.sending]] -=== Sending Broadcasts - -To send broadcasts with a broadcaster singleton, such as the one described -above, you would only need to call the [methodname]#broadcast()# method as -follows. - - -[source, java] ----- -final TextField input = new TextField(); -sendBar.addComponent(input); - -Button send = new Button("Send"); -send.addClickListener(new ClickListener() { - @Override - public void buttonClick(ClickEvent event) { - // Broadcast the message - Broadcaster.broadcast(input.getValue()); - - input.setValue(""); - } -}); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.push.pusharound[on-line example, window="_blank"]. - - - - - diff --git a/documentation/advanced/advanced-requesthandler.asciidoc b/documentation/advanced/advanced-requesthandler.asciidoc deleted file mode 100644 index df991bc5cd..0000000000 --- a/documentation/advanced/advanced-requesthandler.asciidoc +++ /dev/null @@ -1,96 +0,0 @@ ---- -title: Request Handlers -order: 4 -layout: page ---- - -[[advanced.requesthandler]] -= Request Handlers - -Request handlers are useful for catching request parameters or generating -dynamic content, such as HTML, images, PDF, or other content. You can provide -HTTP content also with stream resources, as described in -<<dummy/../../../framework/application/application-resources#application.resources.stream,"Stream -Resources">>. The stream resources, however, are only usable from within a -Vaadin application, such as in an [classname]#Image# component. Request handlers -allow responding to HTTP requests made with the application URL, including GET -or POST parameters. You could also use a separate servlet to generate dynamic -content, but a request handler is associated with the user session and it can -easily access data associated with the session and the user. - -To handle requests, you need to implement the [interfacename]#RequestHandler# -interface. The [methodname]#handleRequest()# method gets the session, request, -and response objects as parameters. - -If the handler writes a response, it must return [literal]#++true++#. This stops -running other possible request handlers. Otherwise, it should return -[literal]#++false++# so that another handler could return a response. -Eventually, if no other handler writes a response, a UI will be created and -initialized. - -In the following example, we catch requests for a sub-path in the URL for the -servlet and write a plain text response. The servlet path consists of the -context path and the servlet (sub-)path. Any additional path is passed to the -request handler in the [parameter]#pathInfo# of the request. For example, if the -full path is [filename]#/myapp/myui/rhexample#, the path info will be -[filename]#/rhexample#. Also, request parameters are available. - - -[source, java] ----- -// A request handler for generating some content -VaadinSession.getCurrent().addRequestHandler( - new RequestHandler() { - @Override - public boolean handleRequest(VaadinSession session, - VaadinRequest request, - VaadinResponse response) - throws IOException { - if ("/rhexample".equals(request.getPathInfo())) { - // Generate a plain text document - response.setContentType("text/plain"); - response.getWriter().append( - "Here's some dynamically generated content.\n"); - response.getWriter().format(Locale.ENGLISH, - "Time: %Tc\n", new Date()); - - // Use shared session data - response.getWriter().format("Session data: %s\n", - session.getAttribute("mydata")); - - return true; // We wrote a response - } else - return false; // No response was written - } -}); ----- - -A request handler can be used by embedding it in a page or opening a new page -with a link or a button. In the following example, we pass some data to the -handler through a session attribute. - - -[source, java] ----- -// Input some shared data in the session -TextField dataInput = new TextField("Some data"); -dataInput.addValueChangeListener(event -> - VaadinSession.getCurrent().setAttribute("mydata", - event.getProperty().getValue())); -dataInput.setValue("Here's some"); - -// Determine the base path for the servlet -String servletPath = VaadinServlet.getCurrent() - .getServletContext().getContextPath() - + "/book"; // Servlet - -// Display the page in a pop-up window -Link open = new Link("Click to Show the Page", - new ExternalResource(servletPath + "/rhexample"), - "_blank", 500, 350, BorderStyle.DEFAULT); - -layout.addComponents(dataInput, open); ----- - - - diff --git a/documentation/advanced/advanced-security.asciidoc b/documentation/advanced/advanced-security.asciidoc deleted file mode 100644 index d3b0a5249c..0000000000 --- a/documentation/advanced/advanced-security.asciidoc +++ /dev/null @@ -1,56 +0,0 @@ ---- -title: Common Security Issues -order: 8 -layout: page ---- - -[[advanced.security]] -= Common Security Issues - -[[advanced.security.sanitizing]] -== Sanitizing User Input to Prevent Cross-Site Scripting - -You can put raw HTML content in many components, such as the [classname]#Label# -and [classname]#CustomLayout#, as well as in tooltips and notifications. In such -cases, you should make sure that if the content has any possibility to come from -user input, you must make sure that the content is safe before displaying it. -Otherwise, a malicious user can easily make a -link:http://en.wikipedia.org/wiki/Cross-site_scripting[cross-site scripting -attack] by injecting offensive JavaScript code in such components. See other -sources for more information about cross-site scripting. - -Offensive code can easily be injected with [literal]#++<script>++# markup or in -tag attributes as events, such as -[parameter]#onLoad#.//// -TODO Consider an example, Alice, Bob, -etc. -//// -Cross-site scripting vulnerabilities are browser dependent, depending on the -situations in which different browsers execute scripting markup. - -Therefore, if the content created by one user is shown to other users, the -content must be sanitized. There is no generic way to sanitize user input, as -different applications can allow different kinds of input. Pruning (X)HTML tags -out is somewhat simple, but some applications may need to allow (X)HTML content. -It is therefore the responsibility of the application to sanitize the input. - -Character encoding can make sanitization more difficult, as offensive tags can -be encoded so that they are not recognized by a sanitizer. This can be done, for -example, with HTML character entities and with variable-width encodings such as -UTF-8 or various CJK encodings, by abusing multiple representations of a -character. Most trivially, you could input [literal]#++<++# and [literal]#++>++# -with [literal]#++<++# and [literal]#++>++#, respectively. The input could -also be malformed and the sanitizer must be able to interpret it exactly as the -browser would, and different browsers can interpret malformed HTML and -variable-width character encodings differently. - -Notice that the problem applies also to user input from a -[classname]#RichTextArea# is transmitted as HTML from the browser to server-side -and is not sanitized. As the entire purpose of the [classname]#RichTextArea# -component is to allow input of formatted text, you can not just remove all HTML -tags. Also many attributes, such as [parameter]#style#, should pass through the -sanitization. - - - - diff --git a/documentation/advanced/advanced-shortcuts.asciidoc b/documentation/advanced/advanced-shortcuts.asciidoc deleted file mode 100644 index a3c57a3d25..0000000000 --- a/documentation/advanced/advanced-shortcuts.asciidoc +++ /dev/null @@ -1,292 +0,0 @@ ---- -title: Shortcut Keys -order: 5 -layout: page ---- - -[[advanced.shortcuts]] -= Shortcut Keys - -Vaadin provides simple ways to define shortcut keys for field components, as -well as to a default button, and a lower-level generic shortcut API based on -actions. - -A __shortcut__ is an action that is executed when a key or key combination is -pressed within a specific scope in the UI. The scope can be the entire -[classname]#UI# or a [classname]#Window# inside it. - -[[advanced.shortcuts.defaultbutton]] -== Shortcut Keys for Default Buttons - -You can add a __click shortcut__ to a button to set it as "default" button; -pressing the defined key, typically Enter, in any component in the scope -(sub-window or UI) causes a click event for the button to be fired. - -You can define a click shortcut with the [methodname]#setClickShortcut()# -shorthand method: - - -[source, java] ----- -// Have an OK button and set it as the default button -Button ok = new Button("OK"); -ok.setClickShortcut(KeyCode.ENTER); -ok.addStyleName(ValoTheme.BUTTON_PRIMARY); ----- - -The [methodname]#setClickShortcut()# is a shorthand method to create, add, and -manage a [classname]#ClickShortcut#, rather than to add it with -[methodname]#addShortcutListener()#. - -Themes offer special button styles to show that a button is special. In the Valo -theme, you can use the [literal]#++BUTTON_PRIMARY++# style name. The result can -be seen in <<figure.advanced.shortcuts.defaultbutton>>. - -[[figure.advanced.shortcuts.defaultbutton]] -.Default Button with Click Shortcut -image::img/shortcut-defaultbutton.png[] - - -[[advanced.shortcuts.focus]] -== Field Focus Shortcuts - -You can define a shortcut key that sets the focus to a field component (any -component that inherits [classname]#AbstractField#) by adding a -[classname]#FocusShortcut# as a shortcut listener to the field. - -The constructor of the [classname]#FocusShortcut# takes the field component as -its first parameter, followed by the key code, and an optional list of modifier -keys, as listed in <<advanced.shortcuts.keycodes>>. - - -[source, java] ----- -// A field with Alt+N bound to it -TextField name = new TextField("Name (Alt+N)"); -name.addShortcutListener( - new AbstractField.FocusShortcut(name, KeyCode.N, - ModifierKey.ALT)); -layout.addComponent(name); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.shortcut.focus[on-line example, window="_blank"]. - -You can also specify the shortcut by a shorthand notation, where the shortcut -key is indicated with an ampersand ( [literal]#++&++#). - - -[source, java] ----- -// A field with Alt+A bound to it, using shorthand notation -TextField address = new TextField("Address (Alt+A)"); -address.addShortcutListener( - new AbstractField.FocusShortcut(address, "&Address")); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.shortcut.focus[on-line example, window="_blank"]. - -This is especially useful for internationalization, so that you can determine -the shortcut key from the localized string. - - -[[advanced.shortcuts.actions]] -== Generic Shortcut Actions - -Shortcut keys can be defined as __actions__ using the -[classname]#ShortcutAction# class. It extends the generic [classname]#Action# -class that is used for example in [classname]#Tree# and [classname]#Table# for -context menus. Currently, the only classes that accept -[classname]#ShortcutAction#s are [classname]#Window# and [classname]#Panel#. - -To handle key presses, you need to define an action handler by implementing the -[classname]#Handler# interface. The interface has two methods that you need to -implement: [methodname]#getActions()# and [methodname]#handleAction()#. - -The [methodname]#getActions()# method must return an array of -[classname]#Action# objects for the component, specified with the second -parameter for the method, the [parameter]#sender# of an action. For a keyboard -shortcut, you use a [classname]#ShortcutAction#. The implementation of the -method could be following: - - -[source, java] ----- -// Have the unmodified Enter key cause an event -Action action_ok = new ShortcutAction("Default key", - ShortcutAction.KeyCode.ENTER, null); - -// Have the C key modified with Alt cause an event -Action action_cancel = new ShortcutAction("Alt+C", - ShortcutAction.KeyCode.C, - new int[] { ShortcutAction.ModifierKey.ALT }); - -Action[] actions = new Action[] {action_cancel, action_ok}; - -public Action[] getActions(Object target, Object sender) { - if (sender == myPanel) - return actions; - - return null; -} ----- - -The returned [classname]#Action# array may be static or you can create it -dynamically for different senders according to your needs. - -The constructor of [classname]#ShortcutAction# takes a symbolic caption for the -action; this is largely irrelevant for shortcut actions in their current -implementation, but might be used later if implementors use them both in menus -and as shortcut actions. The second parameter is the key code and the third a -list of modifier keys, which are listed in <<advanced.shortcuts.keycodes>>. - -The following example demonstrates the definition of a default button for a user -interface, as well as a normal shortcut key, AltC for clicking the -[guibutton]#Cancel# button. - - -[source, java] ----- -public class DefaultButtonExample extends CustomComponent - implements Handler { - // Define and create user interface components - Panel panel = new Panel("Login"); - FormLayout formlayout = new FormLayout(); - TextField username = new TextField("Username"); - TextField password = new TextField("Password"); - HorizontalLayout buttons = new HorizontalLayout(); - - // Create buttons and define their listener methods. - Button ok = new Button("OK", this, "okHandler"); - Button cancel = new Button("Cancel", this, "cancelHandler"); - - // Have the unmodified Enter key cause an event - Action action_ok = new ShortcutAction("Default key", - ShortcutAction.KeyCode.ENTER, null); - - // Have the C key modified with Alt cause an event - Action action_cancel = new ShortcutAction("Alt+C", - ShortcutAction.KeyCode.C, - new int[] { ShortcutAction.ModifierKey.ALT }); - - public DefaultButtonExample() { - // Set up the user interface - setCompositionRoot(panel); - panel.addComponent(formlayout); - formlayout.addComponent(username); - formlayout.addComponent(password); - formlayout.addComponent(buttons); - buttons.addComponent(ok); - buttons.addComponent(cancel); - - // Set focus to username - username.focus(); - - // Set this object as the action handler - panel.addActionHandler(this); - } - - /** - * Retrieve actions for a specific component. This method - * will be called for each object that has a handler; in - * this example just for login panel. The returned action - * list might as well be static list. - */ - public Action[] getActions(Object target, Object sender) { - System.out.println("getActions()"); - return new Action[] { action_ok, action_cancel }; - } - - /** - * Handle actions received from keyboard. This simply directs - * the actions to the same listener methods that are called - * with ButtonClick events. - */ - public void handleAction(Action action, Object sender, - Object target) { - if (action == action_ok) { - okHandler(); - } - if (action == action_cancel) { - cancelHandler(); - } - } - - public void okHandler() { - // Do something: report the click - formlayout.addComponent(new Label("OK clicked. " - + "User=" + username.getValue() + ", password=" - + password.getValue())); - } - - public void cancelHandler() { - // Do something: report the click - formlayout.addComponent(new Label("Cancel clicked. User=" - + username.getValue() + ", password=" - + password.getValue())); - } -} ----- - -Notice that the keyboard actions can currently be attached only to -[classname]#Panel#s and [classname]#Window#s. This can cause problems if you -have components that require a certain key. For example, multi-line -[classname]#TextField# requires the Enter key. There is currently no way to -filter the shortcut actions out while the focus is inside some specific -component, so you need to avoid such conflicts. - - -[[advanced.shortcuts.keycodes]] -== Supported Key Codes and Modifier Keys - -The shortcut key definitions require a key code to identify the pressed key and -modifier keys, such as Shift, Alt, or Ctrl, to specify a key combination. - -The key codes are defined in the [classname]#ShortcutAction.KeyCode# interface -and are: - -Keys [parameter]#A#to[parameter]#Z#:: Normal letter keys -[parameter]#F1#to[parameter]#F12#:: Function keys - -[parameter]#BACKSPACE#,[parameter]#DELETE#,[parameter]#ENTER#,[parameter]#ESCAPE#,[parameter]#INSERT#,[parameter]#TAB#:: Control keys - -[parameter]#NUM0#to[parameter]#NUM9#:: Number pad keys - -[parameter]#ARROW_DOWN#,[parameter]#ARROW_UP#,[parameter]#ARROW_LEFT#,[parameter]#ARROW_RIGHT#:: Arrow keys - -[parameter]#HOME#,[parameter]#END#,[parameter]#PAGE_UP#,[parameter]#PAGE_DOWN#:: Other movement keys - - - -Modifier keys are defined in [classname]#ShortcutAction.ModifierKey# and are: - -[parameter]#ModifierKey.ALT#:: Alt key -[parameter]#ModifierKey.CTRL#:: Ctrl key -[parameter]#ModifierKey.SHIFT#:: Shift key - - -All constructors and methods accepting modifier keys take them as a variable -argument list following the key code, separated with commas. For example, the -following defines a CtrlShiftN key combination for a shortcut. - - -[source, java] ----- -TextField name = new TextField("Name (Ctrl+Shift+N)"); -name.addShortcutListener( - new AbstractField.FocusShortcut(name, KeyCode.N, - ModifierKey.CTRL, - ModifierKey.SHIFT)); ----- - -=== Supported Key Combinations - -The actual possible key combinations vary greatly between browsers, as most -browsers have a number of built-in shortcut keys, which can not be used in web -applications. For example, Mozilla Firefox allows binding almost any key -combination, while Opera does not even allow binding Alt shortcuts. Other -browsers are generally in between these two. Also, the operating system can -reserve some key combinations and some computer manufacturers define their own -system key combinations. - - - - - diff --git a/documentation/advanced/advanced-spring.asciidoc b/documentation/advanced/advanced-spring.asciidoc deleted file mode 100644 index 7f83b864fd..0000000000 --- a/documentation/advanced/advanced-spring.asciidoc +++ /dev/null @@ -1,696 +0,0 @@ ---- -title: Vaadin Spring Add-on -order: 18 -layout: page ---- - -[[advanced.spring]] -= Vaadin Spring Add-on - -((("Vaadin Spring", id="term.advanced.spring.springlong", range="startofrange"))) - - -((("Spring", id="term.advanced.spring.spring", range="startofrange"))) - - -Vaadin Spring and Vaadin Spring Boot add-ons make it easier to use Spring in -Vaadin applications. Vaadin Spring enables Spring dependency injection with -custom UI and view providers, and provides three custom scopes: -[classname]#UIScope#, [classname]#ViewScope#, and -[classname]#VaadinSessionScope#. - -API documentation for add-ons is available at: - -* Vaadin Spring API at link:https://vaadin.com/api/vaadin-spring[vaadin.com/api/vaadin-spring] -* Vaadin Spring Boot API at link:https://vaadin.com/api/vaadin-spring-boot[vaadin.com/api/vaadin-spring-boot] - -To learn more about Vaadin Spring, the -link:https://vaadin.com/wiki/-/wiki/Main/Vaadin+Spring[Vaadin Spring Tutorial] -gives a hands-on introduction. The source code of the Spring Tutorial demo is -available for browsing or cloning at -link:https://github.com/Vaadin/spring-tutorial[github.com/Vaadin/spring-tutorial]. - -[[advanced.spring.spring]] -== Spring Overview - -__Spring Framework__ is a Java application framework that provides many useful -services for building applications, such as authentication, authorization, data -access, messaging, testing, and so forth. In the Spring core, one of the central -features is dependency injection, which accomplishes inversion of control for -dependency management in managed beans. Other Spring features rely on it -extensively. As such, Spring offers capabilities similar to CDI, but with -integration with other Spring services. Spring is well-suited for applications -where Vaadin provides the UI layer and Spring is used for other aspects of the -application logic. - -__Spring Boot__ is a Spring application development tool that allows creating -Spring applications easily. __Vaadin Spring Boot__ builds on Spring Boot to -allow creating Vaadin Spring applications easily. It starts up a servlet, -handles the configuration of the application context, registers a UI provider, -and so forth. - -Regarding general Spring topics, we recommend the following Spring -documentation: - -ifdef::web[] -* link:http://docs.spring.io/spring/docs/current/spring-framework-reference/htmlsingle/[Spring -Framework Reference Documentation]. - -* link:http://projects.spring.io/spring-framework/[Spring Project] - -* link:https://vaadin.com/wiki/-/wiki/Main/Vaadin+Spring[Vaadin Spring Tutorial] - -endif::web[] - -[[advanced.spring.spring.injection]] -=== Dependency Injection - -__Dependency injection__ is a way to pass dependencies (service objects) to -dependent objects (clients) by injecting them in member variables or initializer -parameters, instead of managing the lifecycle in the clients or passing them -explicitly as parameters. In Spring, injection of a service object to a client -is configured with the [classname]#@Autowired# annotation. - -For a very typical example in a web application, you could have a user data -object associated with a user session: - - -[source, java] ----- -@SpringComponent -@VaadinSessionScope -public class User implements Serializable { - private String name; - - public void setName(String name) {this.name = name;} - public String getName() {return name;} -} ----- - -The [classname]#@SpringComponent# annotation allows for automatic detection of -managed beans by Spring. (The annotation is exactly the same as the regular -Spring [classname]#@Component#, but has been given an alias, because Vaadin has -a [interfacename]#Component# interface, which can cause trouble.) - -Now, if we have a UI view that depends on user data, we could inject the data in -the client as follows: - - -[source, java] ----- -public class MainView extends CustomComponent implements View { - User user; - Label greeting = new Label(); - - @Autowired - public MainView(User user) { - this.user = user; - ... - } - - ... - @Override - public void enter(ViewChangeEvent event) { - // Then you can use the injected data - // for some purpose - greeting.setValue("Hello, " + user.getName()); - } -} ----- - -Here, we injected the user object in the constructor. The user object would be -created automatically when the view is created, with all such references -referring to the same shared instance in the scope of the Vaadin user session. - - -[[advanced.spring.spring.contexts]] -=== Contexts and Scopes - -__Contexts__ in Spring are services that manage the lifecycle of objects and -handle their injection. Generally speaking, a context is a situation in which an -instance is used with a unique identity. Such objects are essentially -"singletons" in the context. While conventional singletons are application-wide, -objects managed by a Spring container can be "singletons" in a more narrow -__scope__: a user session, a particular UI instance associated with the session, -a view within the UI, or even just a single request. Such a context defines the -lifecycle of the object: its creation, use, and finally its destruction. - -Earlier, we introduced a user class defined as session-scoped: - - -[source, java] ----- -@SpringComponent -@VaadinSessionScope -public class User { ----- - -Now, when you need to refer to the user, you can use Spring injection to inject -the session-scoped "singleton" to a member variable or a constructor parameter; -the former in the following: - - -[source, java] ----- -public class MainView extends CustomComponent implements View { - @Autowired - User user; - - Label greeting = new Label(); - ... - - @Override - public void enter(ViewChangeEvent event) { - greeting.setValue("Hello, " + user.getName()); - } -} ----- - - - -[[advanced.spring.boot]] -== Quick Start with Vaadin Spring Boot - -The Vaadin Spring Boot is an add-on that allows for easily creating a project -that uses Vaadin Spring. It is meant to be used together with Spring Boot, which -enables general Spring functionalities in a web application. - -You can use the Spring Initializr at -link:https://start.spring.io/[start.spring.io] website to generate a project, -which you can then download as a package and import in your IDE. The generated -project is a Spring application stub; you need to add at least Vaadin -dependencies ( [literal]#++vaadin-spring-boot++#, [literal]#++vaadin-themes++#, -and [literal]#++vaadin-client-compiled++#) and a UI class to the generated -project, as well as a theme, and so forth. - -See the link:https://vaadin.com/wiki/-/wiki/Main/Vaadin+Spring[Vaadin Spring -Tutorial] for detailed instructions for using Spring Boot. - - -[[advanced.spring.installation]] -== Installing Vaadin Spring Add-on - -Vaadin Spring requires a Java EE 7 compatible servlet container, such as -Glassfish or Apache TomEE Web Profile, as mentioned for the reference toolchain -in -<<dummy/../../../framework/getting-started/getting-started-environment#getting-started.environment,"Setting -up the Development Environment">>. - -To install the Vaadin Spring and/or Vaadin Spring Boot add-ons, either define -them as an Ivy or Maven dependency or download from the Vaadin Directory add-on -page at <<,vaadin.com/directory#addon/vaadin-spring>> or -<<,vaadin.com/directory#addon/vaadin-spring-boot>>. See -<<dummy/../../../framework/addons/addons-overview.asciidoc#addons.overview,"Using -Vaadin Add-ons">> for general instructions for installing and using Vaadin -add-ons. - -The Ivy dependency is as follows: - -[subs="normal"] ----- - <dependency org="com.vaadin" name="vaadin-spring" - rev="[replaceable]#latest.release#"/> ----- -The Maven dependency is as follows: - -[subs="normal"] ----- - <dependency> - <groupId>com.vaadin</groupId> - <artifactId>vaadin-spring</artifactId> - <version>[replaceable]#LATEST#</version> - </dependency> ----- - -[[advanced.spring.peparing]] -== Preparing Application for Spring - -A Vaadin application that uses Spring must have a file named -[filename]#applicationContext.xml# in the [filename]#WEB-INF# directory. - -[subs="normal"] ----- -<?xml version="1.0" encoding="UTF-8"?> -<beans xmlns="http://www.springframework.org/schema/beans" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xmlns:context="http://www.springframework.org/schema/context" - xsi:schemaLocation=" - http://www.springframework.org/schema/beans - http://www.springframework.org/schema/beans/spring-beans.xsd - http://www.springframework.org/schema/context - http://www.springframework.org/schema/context/spring-context-4.1.xsd"> - - //Configuration object - - <bean class="[replaceable]#com.example.myapp.MySpringUI.MyConfiguration#" /> - - //Location for automatically scanned beans - - <context:component-scan - base-package="[replaceable]#com.example.myapp.domain#" /> -</beans> ----- -The application should not have a servlet extending [classname]#VaadinServlet#, -as Vaadin servlet has its own [classname]#VaadinSpringServlet# that is deployed -automatically. If you need multiple servlets or need to customize the Vaadin -Spring servlet, see <<advanced.spring.deployment>>. - -You can configure managed beans explicitly in the file, or configure them to be -scanned using the annotations, which is the preferred way described in this -section. - - -[[advanced.spring.springui]] -== Injecting a UI with [classname]#@SpringUI# - -((("[classname]#@SpringUI#", id="term.advanced.spring.springui", range="startofrange"))) - - -Vaadin Spring offers an easier way to instantiate UIs and to define the URL -mapping for them than the usual ways described in -<<dummy/../../../framework/application/application-environment#application.environment,"Deploying -an Application">>. It is also needed for enabling Spring features in the UI. To -define a UI class that should be instantiated for a given URL, you simply need -to annotate the class with [classname]#@SpringUI#. It takes an optional path as -parameter. - - -[source, java] ----- -@SpringUI(path="/myniceui") -@Theme("valo") -public class MyNiceUI extends UI { - ... ----- - -The path in the URL for accessing the UI consists of the context path of the -application and the UI path, for example, [literal]#++/myapp/myniceui++#. Giving -empty UI path maps the UI to the root of the application context, for example, -[literal]#++/myapp++#. - - -[source, java] ----- -@SpringUI ----- - -See <<advanced.spring.deployment>> for how to handle servlet URL mapping of -Spring UIs when working with multiple servlets in the same web application. - -(((range="endofrange", startref="term.advanced.spring.springui"))) - -[[advanced.spring.scopes]] -== Scopes - -((("Spring", "scopes", id="term.advanced.spring.scopes", range="startofrange"))) - - -As in programming languages, where a variable name refers to a unique object -within the scope of the variable, an object has unique identity within a scope -in Spring. However, instead of identifying the objects by variable names, they -are identified by their type (object class) and any qualifiers they may have. - -The scope of an object can be defined with an annotation to the class as -follows: - - -[source, java] ----- -@VaadinSessionScope -public class User { - ... ----- - -Defining a scope in Spring is normally done with the [classname]#@Scope# -annotation. For example, [literal]#++@Scope("prototype")++# creates a new -instance every time one is requested/auto-wired. Such standard scopes can be -used with some limitations. For example, Spring session and request scopes do -not work in background threads and with certain push transport modes. - -Vaadin Spring provides three scopes useful in Vaadin applications: a session -scope, a UI scope, a view scope, all defined in the -[package]#com.vaadin.spring.annotation# package. - -[[advanced.spring.scopes.session]] -=== [classname]#@VaadinSessionScope# - -The session scope is the broadest of the custom scopes defined in Vaadin Spring. -Objects in the Vaadin session scope are unique in a user session, and shared -between all UIs open in the session. This is the most basic scope in Vaadin -applications, useful for accessing data for the user associated with the -session. It is also useful when updating UIs from a background thread, as in -those cases the UI access is locked on the session and also data should be in -that scope. - - -[[advanced.spring.scopes.ui]] -=== [classname]#@UIScope# - -UI-scoped beans are uniquely identified within a UI instance, that is, a browser -window or tab. The lifecycle of UI-scoped beans is bound between to the -initialization and closing of a UI. Whenever you inject a bean, as long as you -are within the same UI, you will get the same instance. - -Annotating a Spring view (annotated with [classname]#@SpringView# as described -later) also as [classname]#@UIScoped# makes the view retain the same instance -when the user navigates away and back to the view. - - -[[advanced.spring.scopes.view]] -=== [classname]#@ViewScope# - -The annotation enables the view scope in a bean. The lifecycle of such a bean -starts when the user navigates to a view referring to the object and ends when -the user navigates out of the view (or when the UI is closed or expires). - -Views themselves are by default view-scoped, so a new instance is created every -time the user navigates to the view. - - -(((range="endofrange", startref="term.advanced.spring.scopes"))) - -ifdef::web[] -[[advanced.spring.navigation]] -== View Navigation - -Vaadin Spring extends the navigation framework in Vaadin, described in -<<dummy/../../../framework/advanced/advanced-navigator#advanced.navigator,"Navigating -in an Application">>. It manages Spring views with a special view provider and -enables view scoping. - -[[advanced.spring.navigation.ui]] -=== Preparing the UI - -You can define navigation for any single-component container, as described in -<<dummy/../../../framework/advanced/advanced-navigator#advanced.navigator.navigating,"Setting -Up for Navigation">>, but typically you set up navigation for the entire UI -content. To use Vaadin Spring views, you need to inject a -[classname]#SpringViewProvider# in the UI and add it as a provider for the -navigator. - - -[source, java] ----- -@SpringUI(path="/myspringui") -public class MySpringUI extends UI { - @Autowired - SpringViewProvider viewProvider; - - @Override - protected void init(VaadinRequest request) { - Navigator navigator = new Navigator(this, this); - navigator.addProvider(viewProvider); - - // Navigate to start view - navigator.navigateTo(""); - } -} ----- - - -[[advanced.spring.navigation.view]] -=== The View - -A view managed by Vaadin Spring only needs to have the [classname]#@SpringView# -annotation, which registers the view in the [classname]#SpringViewProvider#. The -annotation is also necessary to enable Spring features in the view, such as -injection. - - -[source, java] ----- -@SpringView(name=MainView.NAME) -public class MainView extends CustomComponent implements View { - public static final String NAME = "main"; - ... ----- - -The annotation can have the following optional paramers: - -name (optional):: Specifies the path by which the view can be accessed programmatically and by the -URI fragment. - - -+ -[source, java] ----- -@SpringView(name="main") ----- -+ -If the view name is not given, it is derived from the class name by removing a -possible "View" suffix, making it lower case, and using a dash ("-") to separate -words originally denoted by capital letters. Thereby, a view class such as -[classname]#MyFunnyView# would have name " [literal]#++my-funny++#". - -+ -It is a recommended pattern to have the view name in a static member constant in -the view class, as was done in the example previously, so that the name can be -referred to safely. - -supportsParameters:: Specifies whether view parameters can be passed to the view as a suffix to the -name in the navigation state, that is, in the form of -[literal]#++viewname+viewparameters++#. The view name is merely a prefix and -there is no separator nor format for the parameters, but those are left for the -view to handle. The parameter support mode is disabled by default. - - -+ -[source, java] ----- -@SpringView(name="myview", supportsParameters=true) ----- -+ -You could then navigate to the state with a URI fragment such as -[literal]#++#!myview/someparameter++# or programmatically with: - - -+ -[source, java] ----- -getUI().getNavigator().navigateTo("myview/someparameter"); ----- -+ -The [methodname]#enter()# method of the view gets the URI fragment as parameter -as is and can interpret it in any application-defined way. - -+ -Note that in this mode, matching a navigation state to a view is done by the -prefix of the fragment! Thereby, no other views may start with the name of the -view as prefix. For example, if the view name is " [literal]#++main++#", you -must not have a view named " [literal]#++maintenance++#". - -uis:: If the application has multiple UIs that use [classname]#SpringViewProvider#, -you can use this parameter to specify which UIs can show the view. - - -+ -[source, java] ----- -@SpringView(name="myview", uis={MySpringUI.class}) ----- -+ -If the list contains [parameter]#UI.class#, the view is available to all UIs. - - -+ -[source, java] ----- -@SpringView(name="myview", uis={UI.class}) ----- - - -In the following, we have a login view that accesses a session-scoped user -object. Here, we use a constant to define the view name, so that we can use the -constant when navigating to it. - - -[source, java] ----- -@SpringView(name=LoginView.NAME) -public class LoginView extends CustomComponent - implements View { - public final static String NAME = ""; - - // Here we inject to the constructor and actually do - // not store the injected object to use it later - @Autowired - public LoginView(User user) { - VerticalLayout layout = new VerticalLayout(); - - // An input field for editing injected data - BeanItem<User> item = new BeanItem<User>(user); - TextField username = new TextField("User name", - item.getItemProperty("name")); - username.setNullRepresentation(""); - layout.addComponent(username); - - // Login button (authentication omitted) / Java 8 - layout.addComponent(new Button("Login", e -> - getUI().getNavigator(). - navigateTo(MainView.VIEWNAME))); - - setCompositionRoot(layout); - } - - @Override - public void enter(ViewChangeEvent event) {} -} ----- - -You could now navigate to the view from any other view in the UI with: - - -[source, java] ----- -getUI().getNavigator().navigateTo(LoginView.VIEWNAME); ----- - - -endif::web[] - -[[advanced.spring.accesscontrol]] -== Access Control - -Access control for views can be implemented by registering beans implementing -[interfacename]#ViewAccessControl# or -[interfacename]#ViewInstanceAccessControl#, which can restrict access to the -view either before or after a view instance is created. - -Integration with authorization solutions, such as Spring Security, is provided -by additional unofficial add-ons on top of Vaadin Spring. - -[[advanced.spring.accesscontrol.accessdenied]] -=== Access Denied View - -By default, the view provider acts as if a denied view didn't exist. You can set -up an "Access Denied" view that is shown if the access is denied with -[methodname]#setAccessDeniedView()# in [classname]#SpringViewProvider#. - - -[source, java] ----- -@Autowired -SpringViewProvider viewProvider; - -@Override -protected void init(VaadinRequest request) { - Navigator navigator = new Navigator(this, this); - navigator.addProvider(viewProvider); - - // Set up access denied view - viewProvider.setAccessDeniedViewClass( - MyAccessDeniedView.class); ----- - - - -[[advanced.spring.deployment]] -== Deploying Spring UIs and Servlets - -Vaadin Spring hooks into Vaadin framework by using a special -[classname]#VaadinSpringServlet#. As described earlier, you do not need to map -an URL path to a UI, as it is handled by Vaadin Spring. However, in the -following, we go through some cases where you need to customize the servlet or -use Spring with non-Spring servlets and UIs in a web application. - -[[advanced.spring.servlets.custom]] -=== Custom Servlets - -When customizing the Vaadin servlet, as outlined in -<<dummy/../../../framework/application/application-lifecycle#application.lifecycle.servlet-service,"Vaadin -Servlet, Portlet, and Service">>, you simply need to extend -[classname]#com.vaadin.spring.internal.VaadinSpringServlet# instead of -[classname]#com.vaadin.servlet.VaadinServlet#. - -[subs="normal"] ----- -@WebServlet(value = "[replaceable]#/*#", asyncSupported = true) -public class [replaceable]#MySpringServlet# extends SpringVaadinServlet { -} ----- -The custom servlet must not have [classname]#@VaadinServletConfiguration#, as -you would normally with a Vaadin servlet, as described in -<<dummy/../../../framework/application/application-environment#application.environment,"Deploying -an Application">>. - - -[[advanced.spring.deployment.urlmapping]] -=== Defining Servlet Root - -Spring UIs are managed by a Spring servlet ( [classname]#VaadinSpringServlet#), -which is by default mapped to the root of the application context. For example, -if the name of a Spring UI is " [literal]#++my-spring-ui++#" and application -context is [literal]#++/myproject++#, the UI would by default have URL " -[literal]#++/myproject/my-spring-ui++#". If you do not want to have the servlet -mapped to context root, you can use a [classname]#@WebServlet# annotation for -the servlet or a [filename]#web.xml# definition to map all Spring UIs to a -sub-path. - -For example, if we have a root UI and another: - -[subs="normal"] ----- -@SpringUI(path=[replaceable]#""#) // At Spring servlet root -public class [replaceable]#MySpringRootUI# extends UI {...} - -@SpringUI("[replaceable]#another#") -public class [replaceable]#AnotherUI# extends UI {...} ----- -Then define a path for the servlet by defining a custom servlet: - -[subs="normal"] ----- -@WebServlet(value = "[replaceable]#/myspringuis/*#", asyncSupported = true) -public class [replaceable]#MySpringServlet# extends SpringVaadinServlet { -} ----- -These two UIs would have URLs /myproject/myspringuis and -/myproject/myspringuis/another, respectively. - -You can also map the Spring servlet to another URL in servlet definition in -[filename]#web.xml#, as described the following. - - -[[advanced.spring.servlets.mixing]] -=== Mixing With Other Servlets - -The [classname]#VaadinSpringServlet# is normally used as the default servlet, -but if you have other servlets in the application, such as for non-Spring UIs, -you need to define the Spring servlet explicitly in the [filename]#web.xml#. You -can map the servlet to any URL path, but perhaps typically, you define it as the -default servlet as follows, and map the other servlets to other URL paths: - -[subs="normal"] ----- -<web-app> - ... - - <servlet> - <servlet-name>Default</servlet-name> - <servlet-class> - com.vaadin.spring.internal.VaadinSpringServlet - </servlet-class> - </servlet> - - <servlet-mapping> - <servlet-name>Default</servlet-name> - <url-pattern>[replaceable]#/myspringuis/*#</url-pattern> - </servlet-mapping> - - <servlet-mapping> - <servlet-name>Default</servlet-name> - <url-pattern>/VAADIN/*</url-pattern> - </servlet-mapping> -</web-app> ----- -With such a setting, paths to Spring UIs would have base path -[filename]#/myapp/myspringuis#, to which the (optional) UI path would be -appended. The [filename]#/VAADIN/*# only needs to be mapped to the servlet if -there are no other Vaadin servlets. - - - -(((range="endofrange", startref="term.advanced.spring.springlong"))) -(((range="endofrange", startref="term.advanced.spring.spring"))) - - diff --git a/documentation/advanced/advanced-urifu.asciidoc b/documentation/advanced/advanced-urifu.asciidoc deleted file mode 100644 index 709d6c4bd3..0000000000 --- a/documentation/advanced/advanced-urifu.asciidoc +++ /dev/null @@ -1,191 +0,0 @@ ---- -title: Managing URI Fragments -order: 11 -layout: page ---- - -[[advanced.urifu]] -= Managing URI Fragments - -A major issue in AJAX applications is that as they run in a single web page, -bookmarking the application URL (or more generally the __URI__) can only -bookmark the application, not an application state. This is a problem for many -applications, such as product catalogs and discussion forums, in which it would -be good to provide links to specific products or messages. Consequently, as -browsers remember the browsing history by URI, the history and the -[guibutton]#Back# button do not normally work. The solution is to use the -__fragment identifier__ part of the URI, which is separated from the primary -part (address + path + optional query parameters) of the URI with the hash (#) -character. For example: - - ----- -http://example.com/path#myfragment ----- - -The exact syntax of the fragment identifier part is defined in RFC 3986 -(Internet standard STD 66) that defines the URI syntax. A fragment may only -contain the regular URI __path characters__ (see the standard) and additionally -the slash and the question mark. - -Vaadin offers two ways to enable the use of URI fragments: the high-level -[classname]#Navigator# utility described in -<<dummy/../../../framework/advanced/advanced-navigator#advanced.navigator,"Navigating -in an Application">> and the low-level API described here. - -[[advanced.urifu.setting]] -== Setting the URI Fragment - -You can set the current fragment identifier with the -[methodname]#setUriFragment()# method in the [classname]#Page# object. - - -[source, java] ----- -Page.getCurrent().setUriFragment("mars"); ----- - -Setting the URI fragment causes an [interfacename]#UriFragmentChangeEvent#, -which is processed in the same server request. As with UI rendering, the URI -fragment is changed in the browser after the currently processed server request -returns the response. - -Prefixing the fragment identifier with an exclamation mark enables the web -crawler support described in <<advanced.urifu.crawling>>. - - -[[advanced.urifu.reading]] -== Reading the URI Fragment - -The current URI fragment can be acquired with the [methodname]#getUriFragment()# -method from the current [classname]#Page# object. The fragment is known when the -[methodname]#init()# method of the UI is called. - - -[source, java] ----- -// Read initial URI fragment to create UI content -String fragment = getPage().getUriFragment(); -enter(fragment); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.urifragment.basic[on-line example, window="_blank"]. - -To enable reusing the same code when the URI fragment is changed, as described -next, it is usually best to build the relevant part of the UI in a separate -method. In the above example, we called an [methodname]#enter()# method, in a -way that is similar to handling view changes with [classname]#Navigator#. - - -[[advanced.urifu.listening]] -== Listening for URI Fragment Changes - -After the UI has been initialized, changes in the URI fragment can be handled -with a [interfacename]#UriFragmentChangeListener#. The listeners are called when -the URI fragment changes, but not when the UI is initialized, where the current -fragment is available from the page object as described earlier. - -For example, we could define the listener as follows in the [methodname]#init()# -method of a UI class: - - -[source, java] ----- -public class MyUI extends UI { - @Override - protected void init(VaadinRequest request) { - getPage().addUriFragmentChangedListener( - new UriFragmentChangedListener() { - public void uriFragmentChanged( - UriFragmentChangedEvent source) { - enter(source.getUriFragment()); - } - }); - - // Read the initial URI fragment - enter(getPage().getUriFragment()); - } - - void enter(String fragment) { - ... initialize the UI ... - } -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.urifragment.basic[on-line example, window="_blank"]. - -<<figure.advanced.urifu>> shows an application that allows specifying the menu -selection with a URI fragment and correspondingly sets the fragment when the -user selects a menu item. - -[[figure.advanced.urifu]] -.Application State Management with URI Fragment Utility -image::img/urifu-1.png[] - - -[[advanced.urifu.crawling]] -== Supporting Web Crawling - -Stateful AJAX applications can not normally be crawled by a search engine, as -they run in a single page and a crawler can not navigate the states even if URI -fragments are enabled. The Google search engine and crawler -link:http://googlewebmastercentral.blogspot.fi/2009/10/proposal-for-making-ajax-crawlable.html[support -a convention] where the fragment identifiers are prefixed with exclamation mark, -such as [literal]#++#!myfragment++#. The servlet needs to have a separate -searchable content page accessible with the same URL, but with a -[literal]#++_escaped_fragment_++# parameter. For example, for -[literal]#++/myapp/myui#!myfragment++# it would be -[literal]#++/myapp/myui?_escaped_fragment_=myfragment++#. - -You can provide the crawl content by overriding the [methodname]#service()# -method in a custom servlet class. For regular requests, you should call the -super implementation in the [classname]#VaadinServlet# class. - - -[source, java] ----- -public class MyCustomServlet extends VaadinServlet - @Override - protected void service(HttpServletRequest request, - HttpServletResponse response) - throws ServletException, IOException { - String fragment = request - .getParameter("_escaped_fragment_"); - if (fragment != null) { - response.setContentType("text/html"); - Writer writer = response.getWriter(); - writer.append("<html><body>"+ - "<p>Here is some crawlable "+ - "content about " + fragment + "</p>"); - - // A list of all crawlable pages - String items[] = {"mercury", "venus", - "earth", "mars"}; - writer.append("<p>Index of all content:</p><ul>"); - for (String item: items) { - String url = request.getContextPath() + - request.getServletPath() + - request.getPathInfo() + "#!" + item; - writer.append("<li><a href='" + url + "'>" + - item + "</a></li>"); - } - writer.append("</ul></body>"); - } else - super.service(request, response); - } -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.urifragment.basic[on-line example, window="_blank"]. - -The crawlable content does not need to be human readable. It can provide an -index of links to other application states, as we did in the example above. The -links should use the " [literal]#++#!++#" notation, but can not be relative to -avoid having the [literal]#++_escaped_fragment_++# parameter. - -You need to use the custom servlet class in the [filename]#web.xml# deployment -descriptor instead of the normal [classname]#VaadinServlet# class, as described -in -<<dummy/../../../framework/application/application-environment#application.environment.web-xml,"Using -a web.xml Deployment Descriptor">>. - - - - diff --git a/documentation/advanced/advanced-windows.asciidoc b/documentation/advanced/advanced-windows.asciidoc deleted file mode 100644 index 741812ffd2..0000000000 --- a/documentation/advanced/advanced-windows.asciidoc +++ /dev/null @@ -1,180 +0,0 @@ ---- -title: Handling Browser Windows -order: 1 -layout: page ---- - -[[advanced.windows]] -= Handling Browser Windows - -The UI of a Vaadin application runs in a web page displayed in a browser window -or tab. An application can be used from multiple UIs in different windows or -tabs, either opened by the user using an URL or by the Vaadin application. - -In addition to native browser windows, Vaadin has a [classname]#Window# -component, which is a floating panel or __sub-window__ inside a page, as -described in -<<dummy/../../../framework/layout/layout-sub-window#layout.sub-window,"Sub-Windows">>. - -* __Native popup windows__. An application can open popup windows for sub-tasks. -* __Page-based browsing__. The application can allow the user to open certain content to different windows. For example, in a messaging application, it can be useful to open different messages to different windows so that the user can browse through them while writing a new message. -* __Bookmarking__. Bookmarks in the web browser can provide an entry-point to some content provided by an application. -* __Embedding UIs__. UIs can be embedded in web pages, thus making it possible to provide different views to an application from different pages or even from the same page, while keeping the same session. See <<dummy/../../../framework/advanced/advanced-embedding#advanced.embedding,"Embedding UIs in Web Pages">>. - -Use of multiple windows in an application may require defining and providing -different UIs for the different windows. The UIs of an application share the -same user session, that is, the [classname]#VaadinSession# object, as described -in -<<dummy/../../../framework/application/application-lifecycle#application.lifecycle.session,"User -Session">>. Each UI is identified by a URL that is used to access it, which -makes it possible to bookmark application UIs. UI instances can even be created -dynamically based on the URLs or other request parameters, such as browser -information, as described in -<<dummy/../../../framework/application/application-lifecycle#application.lifecycle.ui,"Loading -a UI">>. - -Because of the special nature of AJAX applications, use of multiple windows uses -require some -caveats.//// -TODO Re-enable We will go through them later in <xref -linkend="advanced.windows.caveats"/>. -//// - -[[advanced.windows.popup]] -== Opening Popup Windows - -((("popup windows"))) -((("windows", "popup"))) -Popup windows are native browser windows or tabs opened by user interaction with -an existing window. Due to browser security reasons, it is made incovenient for -a web page to open popup windows using JavaScript commands. At the least, the -browser will ask for a permission to open the popup, if it is possible at all. -This limitation can be circumvented by letting the browser open the new window -or tab directly by its URL when the user clicks some target. This is realized in -Vaadin with the [classname]#BrowserWindowOpener# component extension, which -causes the browser to open a window or tab when the component is clicked. - -[[advanced.windows.popup.ui]] -=== The Popup Window UI - -A popup Window displays an [classname]#UI#. The UI of a popup window is defined -just like a main UI in a Vaadin application, and it can have a theme, title, and -so forth. - -For example: - - -[source, java] ----- -@Theme("book-examples") -public static class MyPopupUI extends UI { - @Override - protected void init(VaadinRequest request) { - getPage().setTitle("Popup Window"); - - // Have some content for it - VerticalLayout content = new VerticalLayout(); - Label label = - new Label("I just popped up to say hi!"); - label.setSizeUndefined(); - content.addComponent(label); - content.setComponentAlignment(label, - Alignment.MIDDLE_CENTER); - content.setSizeFull(); - setContent(content); - } -} ----- - - -[[advanced.windows.popup.popping]] -=== Popping It Up - -A popup window is opened using the [classname]#BrowserWindowOpener# extension, -which you can attach to any component. The constructor of the extension takes -the class object of the UI class to be opened as a parameter. - -You can configure the features of the popup window with -[methodname]#setFeatures()#. It takes as its parameter a comma-separated list of -window features, as defined in the HTML specification. - -status=[parameter]#0|1#:: Whether the status bar at the bottom of the window should be enabled. -[parameter]##:: -scrollbars:: Enables scrollbars in the window if the document area is bigger than the view area of the window. -resizable:: Allows the user to resize the browser window (no effect for tabs). -menubar:: Enables the browser menu bar. -location:: Enables the location bar. -toolbar:: Enables the browser toolbar. -height=[parameter]#value#:: Specifies the height of the window in pixels. -width=[parameter]#value#:: Specifies the width of the window in pixels. - - -For example: - - -[source, java] ----- -// Create an opener extension -BrowserWindowOpener opener = - new BrowserWindowOpener(MyPopupUI.class); -opener.setFeatures("height=200,width=300,resizable"); - -// Attach it to a button -Button button = new Button("Pop It Up"); -opener.extend(button); ----- - -The resulting popup window, which appears when the button is clicked, is shown -in <<figure.advanced.windows.popup.popping>>. - -[[figure.advanced.windows.popup.popping]] -.A Popup Window -image::img/windows-popup.png[] - - -[[advanced.windows.popup.target]] -=== Popup Window Name (Target) - -The target name is one of the default HTML target names ( [parameter]#_new#, -[parameter]#_blank#, [parameter]#_top#, etc.) or a custom target name. How the -window is exactly opened depends on the browser. Browsers that support tabbed -browsing can open the window in another tab, depending on the browser settings. - - -[[advanced.windows.popup.url]] -=== URL and Session - -The URL path for a popup window UI is by default determined from the UI class -name, by prefixig it with " [literal]#++popup/++#". For example, for the example -UI giver earlier, the URL would be -[literal]#++/book-examples/book/popup/MyPopupUI++#. - - - -[[advanced.windows.popup-closing]] -== Closing Popup Windows - -Besides closing popup windows from a native window close button, you can close -them programmatically by calling the JavaScript [methodname]#close()# method as -follows. - - -[source, java] ----- -public class MyPopup extends UI { - @Override - protected void init(VaadinRequest request) { - setContent(new Button("Close Window", event -> {// Java 8 - // Close the popup - JavaScript.eval("close()"); - - // Detach the UI from the session - getUI().close(); - })); - } -} ----- - - - - diff --git a/documentation/advanced/chapter-advanced.asciidoc b/documentation/advanced/chapter-advanced.asciidoc deleted file mode 100644 index b14abfdda1..0000000000 --- a/documentation/advanced/chapter-advanced.asciidoc +++ /dev/null @@ -1,41 +0,0 @@ -[[advanced]] -== Advanced Web Application Topics - -This chapter covers various features and topics often needed in applications. - - -include::advanced-windows.asciidoc[leveloffset=+2] - -include::advanced-embedding.asciidoc[leveloffset=+2] - -include::advanced-debug.asciidoc[leveloffset=+2] - -include::advanced-requesthandler.asciidoc[leveloffset=+2] - -include::advanced-shortcuts.asciidoc[leveloffset=+2] - -include::advanced-printing.asciidoc[leveloffset=+2] - -include::advanced-gae.asciidoc[leveloffset=+2] - -include::advanced-security.asciidoc[leveloffset=+2] - -include::advanced-navigator.asciidoc[leveloffset=+2] - -include::advanced-architecture.asciidoc[leveloffset=+2] - -include::advanced-urifu.asciidoc[leveloffset=+2] - -include::advanced-dragndrop.asciidoc[leveloffset=+2] - -include::advanced-logging.asciidoc[leveloffset=+2] - -include::advanced-javascript.asciidoc[leveloffset=+2] - -include::advanced-global.asciidoc[leveloffset=+2] - -include::advanced-push.asciidoc[leveloffset=+2] - -include::advanced-cdi.asciidoc[leveloffset=+2] - -include::advanced-spring.asciidoc[leveloffset=+2] diff --git a/documentation/advanced/img/cdi-events-observing.png b/documentation/advanced/img/cdi-events-observing.png Binary files differdeleted file mode 100644 index c61c6b2ea9..0000000000 --- a/documentation/advanced/img/cdi-events-observing.png +++ /dev/null diff --git a/documentation/advanced/img/debug-hierarchy-tree.png b/documentation/advanced/img/debug-hierarchy-tree.png Binary files differdeleted file mode 100644 index 4ff97b7821..0000000000 --- a/documentation/advanced/img/debug-hierarchy-tree.png +++ /dev/null diff --git a/documentation/advanced/img/debug-info.png b/documentation/advanced/img/debug-info.png Binary files differdeleted file mode 100644 index f607251917..0000000000 --- a/documentation/advanced/img/debug-info.png +++ /dev/null diff --git a/documentation/advanced/img/debug-log-hi.png b/documentation/advanced/img/debug-log-hi.png Binary files differdeleted file mode 100644 index 47b926b0d7..0000000000 --- a/documentation/advanced/img/debug-log-hi.png +++ /dev/null diff --git a/documentation/advanced/img/debug-log-lo.png b/documentation/advanced/img/debug-log-lo.png Binary files differdeleted file mode 100644 index 3fea86822a..0000000000 --- a/documentation/advanced/img/debug-log-lo.png +++ /dev/null diff --git a/documentation/advanced/img/debug-window-analyze-layouts.png b/documentation/advanced/img/debug-window-analyze-layouts.png Binary files differdeleted file mode 100644 index d57078e287..0000000000 --- a/documentation/advanced/img/debug-window-analyze-layouts.png +++ /dev/null diff --git a/documentation/advanced/img/debug-window-annotated-hi.png b/documentation/advanced/img/debug-window-annotated-hi.png Binary files differdeleted file mode 100644 index 2d7db8ee8e..0000000000 --- a/documentation/advanced/img/debug-window-annotated-hi.png +++ /dev/null diff --git a/documentation/advanced/img/debug-window-annotated-lo.png b/documentation/advanced/img/debug-window-annotated-lo.png Binary files differdeleted file mode 100644 index 2079d75785..0000000000 --- a/documentation/advanced/img/debug-window-annotated-lo.png +++ /dev/null diff --git a/documentation/advanced/img/debug-window.png b/documentation/advanced/img/debug-window.png Binary files differdeleted file mode 100644 index 65807bc081..0000000000 --- a/documentation/advanced/img/debug-window.png +++ /dev/null diff --git a/documentation/advanced/img/embedding3.png b/documentation/advanced/img/embedding3.png Binary files differdeleted file mode 100644 index 8ee600a2ec..0000000000 --- a/documentation/advanced/img/embedding3.png +++ /dev/null diff --git a/documentation/advanced/img/mvp-pattern-hi.png b/documentation/advanced/img/mvp-pattern-hi.png Binary files differdeleted file mode 100644 index 550ded7bb8..0000000000 --- a/documentation/advanced/img/mvp-pattern-hi.png +++ /dev/null diff --git a/documentation/advanced/img/mvp-pattern-lo.png b/documentation/advanced/img/mvp-pattern-lo.png Binary files differdeleted file mode 100644 index 07099ac6f1..0000000000 --- a/documentation/advanced/img/mvp-pattern-lo.png +++ /dev/null diff --git a/documentation/advanced/img/navigator-mainview.png b/documentation/advanced/img/navigator-mainview.png Binary files differdeleted file mode 100644 index 485ece46c9..0000000000 --- a/documentation/advanced/img/navigator-mainview.png +++ /dev/null diff --git a/documentation/advanced/img/shortcut-defaultbutton.png b/documentation/advanced/img/shortcut-defaultbutton.png Binary files differdeleted file mode 100644 index 9757c6e120..0000000000 --- a/documentation/advanced/img/shortcut-defaultbutton.png +++ /dev/null diff --git a/documentation/advanced/img/threadlocal-concurrency-hi.png b/documentation/advanced/img/threadlocal-concurrency-hi.png Binary files differdeleted file mode 100644 index 86412d5fe2..0000000000 --- a/documentation/advanced/img/threadlocal-concurrency-hi.png +++ /dev/null diff --git a/documentation/advanced/img/threadlocal-concurrency-lo.png b/documentation/advanced/img/threadlocal-concurrency-lo.png Binary files differdeleted file mode 100644 index a2269b9904..0000000000 --- a/documentation/advanced/img/threadlocal-concurrency-lo.png +++ /dev/null diff --git a/documentation/advanced/img/threadlocal-sequentiality-hi.png b/documentation/advanced/img/threadlocal-sequentiality-hi.png Binary files differdeleted file mode 100644 index 20abd7b889..0000000000 --- a/documentation/advanced/img/threadlocal-sequentiality-hi.png +++ /dev/null diff --git a/documentation/advanced/img/threadlocal-sequentiality-lo.png b/documentation/advanced/img/threadlocal-sequentiality-lo.png Binary files differdeleted file mode 100644 index b45f2e47d5..0000000000 --- a/documentation/advanced/img/threadlocal-sequentiality-lo.png +++ /dev/null diff --git a/documentation/advanced/img/urifu-1.png b/documentation/advanced/img/urifu-1.png Binary files differdeleted file mode 100644 index b2b01f28c9..0000000000 --- a/documentation/advanced/img/urifu-1.png +++ /dev/null diff --git a/documentation/advanced/img/window-polling-example1.png b/documentation/advanced/img/window-polling-example1.png Binary files differdeleted file mode 100644 index 75b2532cd0..0000000000 --- a/documentation/advanced/img/window-polling-example1.png +++ /dev/null diff --git a/documentation/advanced/img/windows-popup.png b/documentation/advanced/img/windows-popup.png Binary files differdeleted file mode 100644 index 0076324eaf..0000000000 --- a/documentation/advanced/img/windows-popup.png +++ /dev/null diff --git a/documentation/advanced/original-drawings/cdi-events-messaging.svg b/documentation/advanced/original-drawings/cdi-events-messaging.svg deleted file mode 100644 index 2c9d56352f..0000000000 --- a/documentation/advanced/original-drawings/cdi-events-messaging.svg +++ /dev/null @@ -1,2926 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.48.4 r9939"
- sodipodi:docname="cdi-events-messaging.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="600.02155"
- inkscape:export-ydpi="600.02155"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10"
- guidetolerance="10"
- objecttolerance="6"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1"
- inkscape:cx="203.09088"
- inkscape:cy="731.33425"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1672"
- inkscape:window-height="1019"
- inkscape:window-x="0"
- inkscape:window-y="0"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="true"
- showguides="true"
- inkscape:guide-bbox="true"
- inkscape:snap-guide="true"
- inkscape:snap-intersection-line-segments="true"
- inkscape:window-maximized="0">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false"
- originx="0mm"
- originy="0mm" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <linearGradient
- inkscape:collect="always"
- id="linearGradient10356">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop10358" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop10360" />
- </linearGradient>
- <pattern
- patternUnits="userSpaceOnUse"
- width="19.488184"
- height="5.3149635"
- patternTransform="translate(442.02756,179.82281)"
- id="pattern31837">
- <path
- id="path31833"
- d="M 0.88582677,4.4291368 L 18.602357,4.4291368"
- style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- id="path31835"
- d="M 0.88582677,0.88582677 L 18.602357,0.88582677"
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </pattern>
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern31837"
- id="pattern31843"
- patternTransform="matrix(0.8219623,-0.5106659,0.5106659,0.8219623,407.01829,190.47423)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern31843"
- id="pattern39357"
- patternTransform="matrix(1.2292733,-0.7637186,0.7637186,1.2292733,703.27252,730.47938)" />
- <marker
- inkscape:stockid="CurvyCross"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="CurvyCross"
- style="overflow:visible">
- <g
- id="g18903"
- transform="scale(0.6)">
- <path
- id="path18905"
- d="M 4.6254930,-5.0456926 C 1.8654930,-5.0456926 -0.37450702,-2.8056926 -0.37450702,-0.045692580 C -0.37450702,2.7143074 1.8654930,4.9543074 4.6254930,4.9543074"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none" />
- <path
- id="path18907"
- d="M -5.4129913,-5.0456926 C -2.6529913,-5.0456926 -0.41299131,-2.8056926 -0.41299131,-0.045692580 C -0.41299131,2.7143074 -2.6529913,4.9543074 -5.4129913,4.9543074"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none" />
- </g>
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4794"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4590"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient841"
- id="linearGradient4390"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9208103,1.086)"
- x1="10.800377"
- y1="-94.637573"
- x2="116.61332"
- y2="-94.637573" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4376"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3095"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1683">
- <stop
- style="stop-color:#db1f0c;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1684" />
- <stop
- style="stop-color:#761006;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1685" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient24714"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient2263">
- <stop
- style="stop-color:#ff9696;stop-opacity:0.61960787;"
- offset="0"
- id="stop2264" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.70103091;"
- offset="1.0000000"
- id="stop2265" />
- </linearGradient>
- <linearGradient
- id="linearGradient2891">
- <stop
- style="stop-color:#ff0000;stop-opacity:0.68041235;"
- offset="0"
- id="stop2892" />
- <stop
- style="stop-color:#ff0000;stop-opacity:0.14432989;"
- offset="1"
- id="stop2893" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient24524"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path3964"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.8,0.8)" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient2870"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient239278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient865">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop866" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop868" />
- </linearGradient>
- <linearGradient
- id="linearGradient1400">
- <stop
- style="stop-color:#000000;stop-opacity:0.67843139;"
- offset="0.0000000"
- id="stop1401" />
- <stop
- style="stop-color:#000000;stop-opacity:0.32941177;"
- offset="0.56999999"
- id="stop1403" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop1402" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient233706"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- y2="383.76529"
- y1="843.20789"
- xlink:href="#linearGradient1507"
- x2="547.80804"
- x1="201.38963"
- id="linearGradient1506"
- gradientTransform="scale(0.9446888,1.0585496)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3450"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1290">
- <stop
- style="stop-color:#b2a269;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1291" />
- <stop
- style="stop-color:#6d5b18;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1292" />
- </linearGradient>
- <linearGradient
- id="linearGradient846">
- <stop
- style="stop-color:#e7e7e7;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop847" />
- <stop
- style="stop-color:#a5a5a5;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop848" />
- </linearGradient>
- <linearGradient
- id="linearGradient841">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop842" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop843" />
- </linearGradient>
- <linearGradient
- id="linearGradient853">
- <stop
- style="stop-color:#000000;stop-opacity:0.29752067;"
- offset="0.00000000"
- id="stop854" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop855" />
- </linearGradient>
- <linearGradient
- y2="287.73825"
- y1="169.4436"
- xlink:href="#linearGradient1492"
- x2="622.33325"
- x1="741.63898"
- id="linearGradient1497"
- gradientTransform="scale(0.9552926,1.0467997)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1501">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1502" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1504" />
- </linearGradient>
- <linearGradient
- y2="418.53635"
- y1="236.12772"
- xlink:href="#linearGradient1501"
- x2="330.88034"
- x1="687.96375"
- id="linearGradient1499"
- gradientTransform="scale(0.9890091,1.011113)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1492">
- <stop
- style="stop-color:#dadada;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1493" />
- <stop
- style="stop-color:#f1f1f1;stop-opacity:1.0000000;"
- offset="0.34923077"
- id="stop1496" />
- <stop
- style="stop-color:#f0f0f0;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1494" />
- </linearGradient>
- <linearGradient
- y2="689.86005"
- y1="230.07422"
- xlink:href="#linearGradient1492"
- x2="351.7063"
- x1="728.96643"
- id="linearGradient1495"
- gradientTransform="scale(0.955425,1.0466546)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1507">
- <stop
- style="stop-color:#000000;stop-opacity:0.095505618;"
- offset="0.0000000"
- id="stop1508" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1510" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3877"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1699">
- <stop
- style="stop-color:#017eff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1700" />
- <stop
- style="stop-color:#ecfaff;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1701" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0"
- refX="0"
- id="DiamondEmpty"
- style="overflow:visible">
- <path
- id="path7"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="translate(-5,0)" />
- </marker>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3268"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,541.12253,30.198804)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3270"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3272"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3274"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3276"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- id="linearGradient7299">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop7301" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop7303" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3280"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- id="linearGradient5596">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop5598" />
- <stop
- style="stop-color:#e7e790;stop-opacity:0.56489879"
- offset="1"
- id="stop5600" />
- </linearGradient>
- <linearGradient
- id="linearGradient19816">
- <stop
- id="stop19818"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop19820"
- offset="1"
- style="stop-color:#e7e790;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient11508">
- <stop
- id="stop11510"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop11512"
- offset="1"
- style="stop-color:#008401;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3286">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3288" />
- <stop
- style="stop-color:#79e291;stop-opacity:1;"
- offset="1"
- id="stop3290" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2Lend"
- style="overflow:visible">
- <path
- id="path16811"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
- </marker>
- <linearGradient
- id="linearGradient7447">
- <stop
- style="stop-color:#ff6161;stop-opacity:1;"
- offset="0"
- id="stop7449" />
- <stop
- style="stop-color:#840929;stop-opacity:1;"
- offset="1"
- id="stop7451" />
- </linearGradient>
- <linearGradient
- id="linearGradient7485">
- <stop
- style="stop-color:#b6bcef;stop-opacity:1;"
- offset="0"
- id="stop7487" />
- <stop
- style="stop-color:#4026b1;stop-opacity:1;"
- offset="1"
- id="stop7489" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0"
- refX="0"
- id="EmptyArrow2"
- style="overflow:visible">
- <path
- id="path13"
- d="M 0,0 L 0,-5 L -10,0 L 0,5 L 0,0 z"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(-1,0,0,-1,-10,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient92445"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112303"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112301"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112299"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.293791,1.3701286e-2,-5.3144349e-3,0.5018339,-46.792176,73.88505)"
- r="95.092682"
- fy="112.14567"
- fx="153.46323"
- cy="112.14567"
- cx="153.46323"
- id="radialGradient112297"
- xlink:href="#linearGradient11508"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112295"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112293"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112291"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112289"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112287"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient1694">
- <stop
- id="stop1695"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:0.0000000;" />
- <stop
- id="stop1696"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient112278">
- <stop
- id="stop112280"
- offset="0.0000000"
- style="stop-color:#0c1fdb;stop-opacity:1.0000000;" />
- <stop
- id="stop112282"
- offset="1.0000000"
- style="stop-color:#062d76;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- gradientTransform="scale(1.475472,0.677749)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1686"
- inkscape:collect="always"
- x1="242.39842"
- x2="242.39842"
- xlink:href="#linearGradient1683"
- y1="1035.3337"
- y2="636.25543" />
- <linearGradient
- gradientTransform="scale(1.475472,0.677749)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1690"
- inkscape:collect="always"
- x1="240.86183"
- x2="240.86183"
- xlink:href="#linearGradient1683"
- y1="635.74658"
- y2="1038.9441" />
- <linearGradient
- gradientTransform="scale(1.479463,0.675921)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1692"
- inkscape:collect="always"
- x1="244.8598"
- x2="244.8598"
- xlink:href="#linearGradient1694"
- y1="827.01349"
- y2="646.06177" />
- <linearGradient
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient112273"
- inkscape:collect="always"
- x1="303.90472"
- x2="-93.992599"
- xlink:href="#linearGradient1683"
- y1="-492.41382"
- y2="-492.41382" />
- <linearGradient
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient112271"
- inkscape:collect="always"
- x1="-92.98716"
- x2="315.00735"
- xlink:href="#linearGradient1683"
- y1="-477.69666"
- y2="-477.69669" />
- <linearGradient
- gradientTransform="matrix(0,1.475473,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1705"
- inkscape:collect="always"
- x1="112.06259"
- x2="-170.00552"
- xlink:href="#linearGradient1694"
- y1="-485.28952"
- y2="-485.28973" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5287"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5285"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5283"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5281"
- xlink:href="#linearGradient11508"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient11602"
- xlink:href="#linearGradient19816"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient15668"
- xlink:href="#linearGradient7299"
- inkscape:collect="always" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- y2="148.38934"
- x2="389.01984"
- y1="148.38934"
- x1="96.085953"
- id="linearGradient5355"
- xlink:href="#linearGradient5349"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4152">
- <stop
- id="stop4154"
- offset="0"
- style="stop-color:#6b6bff;stop-opacity:1;" />
- <stop
- id="stop4156"
- offset="1"
- style="stop-color:#6b6bff;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient5349">
- <stop
- id="stop5351"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop5353"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient112247">
- <stop
- id="stop112249"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop112251"
- offset="1"
- style="stop-color:#a090e7;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient9263">
- <stop
- id="stop9265"
- offset="0"
- style="stop-color:#000000;stop-opacity:0" />
- <stop
- id="stop9267"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112241"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutL">
- <path
- transform="scale(0.8,0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16734" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleInL"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleInL">
- <path
- transform="scale(-0.8,-0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16743" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutM"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutM">
- <path
- transform="scale(0.4,0.4)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16731" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker112234"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend">
- <path
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path16829" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker112230"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Lend">
- <path
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- id="path112232" />
- </marker>
- <linearGradient
- id="linearGradient112224">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop112226" />
- <stop
- style="stop-color:#e7e790;stop-opacity:1;"
- offset="1"
- id="stop112228" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112220"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="matrix(-1,0,0,-1,-10,0)"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 0,-5 L -10,0 L 0,5 L 0,0 z"
- id="path112222" />
- </marker>
- <marker
- style="overflow:visible"
- id="EmptyArrow"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="matrix(-1,0,0,-1,-10,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 0,-5 L -12.5,0 L 0,5 L 0,0 z M -0.5,0 L -0.5,-4.5 L -12,0 L -0.5,4.5 L -0.5,0 z"
- id="path9" />
- </marker>
- <linearGradient
- id="linearGradient112212">
- <stop
- id="stop112214"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop112216"
- offset="1"
- style="stop-color:#79e291;stop-opacity:1;" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112208"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="translate(-5,0)"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z"
- id="path112210" />
- </marker>
- <marker
- style="overflow:visible"
- id="DiamondL"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DiamondL">
- <path
- transform="scale(0.8,0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z"
- id="path4404" />
- </marker>
- <linearGradient
- id="linearGradient112200">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop112202" />
- <stop
- style="stop-color:#e27979;stop-opacity:1"
- offset="1"
- id="stop112204" />
- </linearGradient>
- <linearGradient
- id="linearGradient11516">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop11518" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop11520" />
- </linearGradient>
- <marker
- 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 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- id="path6743" />
- </marker>
- <inkscape:perspective
- id="perspective112192"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9300"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9574"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9882"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective10244"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient10356"
- id="linearGradient10362"
- x1="407.48032"
- y1="968.17322"
- x2="669.66157"
- y2="968.17322"
- gradientUnits="userSpaceOnUse" />
- <inkscape:perspective
- id="perspective5379"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective5446"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective7010"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <marker
- id="marker18095-5"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-2"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-5"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-0"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-2"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-9"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-0"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-07"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-4"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-5"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-3"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-7" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#f39300;stroke-width:1pt;fill:#f39300"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path6738" />
- </marker>
- <marker
- id="marker18095-3"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-8"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-7"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- id="marker18095-31"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-4"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- id="marker18095-56"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-22"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-67"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-5"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-3"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-1"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-8"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-6"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-5"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-52"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-65"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-55"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8I"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8I">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#d9d9cd;stroke-width:1pt;fill:#d9d9cd"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path10009" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-11"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-9" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-551" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-1"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-9" />
- </marker>
- </defs>
- <metadata
- id="metadata2480">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1"
- style="display:inline">
- <g
- transform="translate(459.6407,-46.30366)"
- id="g7540">
- <rect
- ry="5.6651931"
- y="843.54773"
- x="241.1908"
- height="301.18109"
- width="365.70398"
- id="rect29628"
- style="fill:none;stroke:#000000;stroke-width:1.4955349;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.4955348, 2.9910696;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-size:14.95534801px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="245.14299"
- y="921.89264"
- id="text39363"><tspan
- sodipodi:role="line"
- id="tspan39365"
- x="245.14299"
- y="921.89264">Server-Side</tspan><tspan
- id="tspan9618"
- sodipodi:role="line"
- x="245.14299"
- y="940.58685">Integration</tspan></text>
- <flowRoot
- style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
- id="flowRoot9620"
- xml:space="preserve"><flowRegion
- id="flowRegion9622"><rect
- y="542.53821"
- x="326.68332"
- height="317.49094"
- width="320.31937"
- id="rect9624" /></flowRegion><flowPara
- id="flowPara9626" /></flowRoot> </g>
- <rect
- style="fill:none;stroke:#000000;stroke-width:1.4955349;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.4955348, 2.9910696;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39497"
- width="368.50394"
- height="100.68364"
- x="698.03149"
- y="386.22043"
- ry="5.6651931" />
- <text
- id="text4185"
- y="748.74036"
- x="953.08466"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="748.74036"
- x="953.08466"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191">XMLHttpRequest</tspan></text>
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"
- transform="matrix(1.4955348,0,0,1.4955348,92.256602,241.39629)"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="matrix(1.4955348,0,0,1.4955348,86.915392,276.11406)"
- id="g3178" />
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"
- transform="matrix(1.4955348,0,0,1.4955348,92.256602,241.39629)"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <g
- transform="matrix(0.7477674,0,0,0.7477674,246.80962,242.58386)"
- id="g18053" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6905"
- transform="matrix(1.4955348,0,0,1.4955348,-176.81346,-383.25709)"><flowRegion
- id="flowRegion6907"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use6909"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6911">VariableOwner</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6913"
- transform="matrix(1.4955348,0,0,1.4955348,-584.1426,-939.26862)"><flowRegion
- id="flowRegion6915"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use6917"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6919">VariableOwner</flowPara></flowRoot> <g
- style="display:inline"
- id="g39423"
- transform="matrix(1.4955348,0,0,1.4955348,395.22216,639.9301)">
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot39425"
- transform="translate(-5.2378947,106.19782)"><flowRegion
- id="flowRegion39427"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use39429"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara39431">Sizeable</flowPara></flowRoot> <g
- id="g39433"
- transform="translate(-46.062995,-30.433073)">
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot39435"
- transform="translate(-5.2378947,106.19782)"><flowRegion
- id="flowRegion39437"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use39439"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara39441">Sizeable</flowPara></flowRoot> </g>
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot39443"
- transform="translate(75.734798,-715.9695)"><flowRegion
- id="flowRegion39445"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use39447"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara39449">VariableOwner</flowPara></flowRoot> <g
- style="display:inline"
- id="g39451"
- transform="translate(123.00096,-20.40135)">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39453"
- width="138.189"
- height="35.43309"
- x="167.13719"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text39455"
- y="252.89734"
- x="171.76772"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="252.89734"
- x="171.76772"
- id="tspan39457"
- sodipodi:role="line">AbstractComponent</tspan></text>
- <text
- id="text39351-1-0-7"
- y="241.36755"
- x="171.69571"
- style="font-size:6.00000048px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="241.36755"
- x="171.69571"
- sodipodi:role="line"
- id="tspan39353-9-4-4">com.vaadin.ui</tspan></text>
- </g>
- </g>
- <g
- style="display:inline"
- id="g39459"
- transform="matrix(1.4955348,0,0,1.4955348,469.33185,70.83648)">
- <rect
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39461"
- width="94.770302"
- height="35.433075"
- x="160.02942"
- y="229.8378"
- ry="3.7880721" />
- <text
- id="text39463"
- y="250.52808"
- x="164.65993"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="250.52808"
- x="164.65993"
- id="tspan39465"
- sodipodi:role="line">Widget</tspan></text>
- <text
- id="text31857-5-9"
- y="238.99831"
- x="164.58794"
- style="font-size:5.99999952px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="238.99831"
- x="164.58794"
- sodipodi:role="line"
- id="tspan31859-2-9">com.google.gwt.user.client.ui</tspan></text>
- </g>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:6.02362204;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#DotSu);display:inline"
- d="m 946.06298,607.55265 0,-139.84646"
- id="path4600-1"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <g
- style="fill:#49c2f1;fill-opacity:1;display:inline"
- id="g39467"
- transform="matrix(1.4955348,0,0,1.4955348,607.15102,67.29319)">
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39469"
- width="73.446983"
- height="35.43306"
- x="191.07704"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text39471"
- y="248.15881"
- x="226.07834"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="248.15881"
- x="226.07834"
- id="tspan39473"
- sodipodi:role="line"
- style="fill:#49c2f1;fill-opacity:1">MyWidget</tspan></text>
- <text
- id="text10319"
- y="255.48111"
- x="198.09482"
- style="font-size:6.00000048px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="255.48111"
- x="198.09482"
- sodipodi:role="line"
- style="font-size:6.00000048px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan10338">An existing widget</tspan><tspan
- y="262.98111"
- x="198.09482"
- sodipodi:role="line"
- style="font-size:6.00000048px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan3455">or your own</tspan></text>
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#49c2f1;stroke-width:5.82905245;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker18095);display:inline"
- d="m 892.91339,442.91336 -46.063,0"
- id="path39475"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0" />
- <g
- style="display:inline"
- id="g17430"
- transform="matrix(1.4955348,0,0,1.4955348,-88.401153,-89.799734)">
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect17432"
- width="93.270302"
- height="34.038864"
- x="179.07294"
- y="232.13176"
- ry="3.7880721" />
- <text
- id="text17434"
- y="251.32205"
- x="188.54323"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#49c2f1;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="251.32205"
- x="188.54323"
- id="tspan17436"
- sodipodi:role="line">MyCDIUI</tspan></text>
- </g>
- <g
- style="display:inline"
- id="g17467"
- transform="matrix(1.4955348,0,0,1.4955348,-9.6780096,107.32889)">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect17469"
- width="152.3622"
- height="35.433071"
- x="160.69756"
- y="232.13174"
- ry="3.7880721" />
- <text
- id="text17471"
- y="252.82204"
- x="231.55074"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="252.82204"
- x="231.55074"
- sodipodi:role="line"
- id="tspan17475">ApplicationConnection</tspan></text>
- <text
- id="text39409"
- y="241.29225"
- x="165.25607"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="241.29225"
- x="165.25607"
- sodipodi:role="line"
- id="tspan39411">com.vaadin.client</tspan></text>
- </g>
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot80522"
- transform="matrix(1.4955348,0,0,1.4955348,602.15588,338.14138)"><flowRegion
- id="flowRegion80524"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use80526"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara80528">1</flowPara></flowRoot> <text
- id="text18090"
- y="404.32913"
- x="704.32544"
- style="font-size:14.95534801px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="404.32913"
- x="704.32544"
- id="tspan18092"
- sodipodi:role="line">Client-Side Framework</tspan></text>
- <g
- id="g7535"
- transform="translate(450,290.55118)">
- <rect
- ry="5.6651931"
- y="209.0551"
- x="248.03149"
- height="255.1181"
- width="368.50391"
- id="rect18094"
- style="fill:none;stroke:#000000;stroke-width:1.4955349;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.4955348, 2.9910696;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-size:14.95534801px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="254.82117"
- y="231.69943"
- id="text18096"><tspan
- sodipodi:role="line"
- id="tspan18098"
- x="254.82117"
- y="231.69943">Client-Side Integration</tspan></text>
- </g>
- <g
- style="display:inline"
- id="g18100"
- transform="matrix(1.4955348,0,0,1.4955348,588.80507,467.7995)">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect18102"
- width="152.3622"
- height="35.433071"
- x="160.69756"
- y="232.13174"
- ry="3.7880721" />
- <text
- id="text18104"
- y="252.82204"
- x="237.1282"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="252.82204"
- x="237.1282"
- sodipodi:role="line"
- id="tspan18106">CommunicationManager</tspan></text>
- <text
- id="text31853"
- y="241.29227"
- x="165.25607"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="241.29227"
- x="165.25607"
- sodipodi:role="line"
- id="tspan31855">com.vaadin.server</tspan></text>
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#49c2f1;stroke-width:5.82905245;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:url(#CurvyCross);marker-end:none;display:inline"
- d="m 946.06299,814.96061 0,-92.12599"
- id="path20937"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0" />
- <g
- style="display:inline"
- id="g29630"
- transform="matrix(1.4955348,0,0,1.4955348,579.17437,538.55303)">
- <rect
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect29632"
- width="137.41693"
- height="35.43306"
- x="167.13719"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text29634"
- y="252.89734"
- x="171.2397"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="252.89734"
- x="171.2397"
- id="tspan29636"
- sodipodi:role="line">ClientConnector</tspan></text>
- <text
- id="text31857"
- y="241.36755"
- x="171.69571"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="241.36755"
- x="171.69571"
- sodipodi:role="line"
- id="tspan31859">com.vaadin.server</tspan></text>
- </g>
- <path
- sodipodi:open="true"
- transform="matrix(1.4955348,0,0,1.4955348,252.86446,547.57561)"
- sodipodi:end="6.2827149"
- sodipodi:start="0"
- d="m 491.94323,228.54329 a 4.7385135,4.7385135 0 1 1 -1e-5,-0.002"
- sodipodi:ry="4.7385135"
- sodipodi:rx="4.7385135"
- sodipodi:cy="228.54329"
- sodipodi:cx="487.20471"
- id="path29638"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- sodipodi:type="arc" />
- <text
- id="text29642"
- y="881.27277"
- x="969.97064"
- style="font-size:17.94641876px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="881.27277"
- x="969.97064"
- id="tspan29644"
- sodipodi:role="line">n</tspan></text>
- <g
- style="display:inline"
- id="g29646"
- transform="matrix(1.4955348,0,0,1.4955348,562.93645,683.94123)">
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect29648"
- width="137.41693"
- height="35.433044"
- x="177.9948"
- y="232.13174"
- ry="3.7880721" />
- <text
- id="text29650"
- y="248.08353"
- x="224.30263"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="248.08353"
- x="224.30263"
- id="tspan29652"
- sodipodi:role="line">MyComponent</tspan></text>
- </g>
- <rect
- style="fill:url(#pattern39357);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.83464575;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect29654"
- width="105.98283"
- height="37.093971"
- x="910.62988"
- y="758.2677"
- ry="3.9656363" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#49c2f1;stroke-width:4.23931122;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:url(#DotSu);display:inline"
- d="m 945.81616,662.17128 0,23.21146"
- id="path39383"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0" />
- <text
- id="text4185-8"
- y="598.65137"
- x="866.72382"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="598.65137"
- x="866.72382"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191-0">«extends...»</tspan></text>
- <g
- id="g6138"
- transform="translate(695.24491,303.58448)">
- <rect
- ry="5.6651931"
- y="387.36038"
- x="-131.85909"
- height="167.3125"
- width="240.19713"
- id="rect18094-6"
- style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.4955349;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.4955348, 2.9910696;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-size:14.95534801px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="-124.77247"
- y="405.07693"
- id="text18096-2"><tspan
- sodipodi:role="line"
- id="tspan18098-9"
- x="-124.77247"
- y="405.07693">Shared</tspan></text>
- <g
- style="display:inline"
- id="g17430-7"
- transform="matrix(1.4955348,0,0,1.4955348,-359.25086,135.86855)">
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect17432-9"
- width="129.86864"
- height="35.433243"
- x="166.26268"
- y="232.13176"
- ry="3.7880721" />
- <text
- id="text17434-3"
- y="248.08353"
- x="170.1252"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#49c2f1;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="248.08353"
- x="170.1252"
- id="tspan17436-2"
- sodipodi:role="line">MyComponentState</tspan></text>
- </g>
- <g
- style="display:inline"
- id="g39423-1-2"
- transform="matrix(1.4955348,0,0,1.4955348,-544.29666,101.95228)">
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot39425-7-5"
- transform="translate(-5.2378947,106.19782)"><flowRegion
- id="flowRegion39427-5-7"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use39429-4-5"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara39431-8-2">Sizeable</flowPara></flowRoot> <g
- id="g39433-4-3"
- transform="translate(-46.062995,-30.433073)">
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot39435-3-3"
- transform="translate(-5.2378947,106.19782)"><flowRegion
- id="flowRegion39437-1-5"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use39439-1-0"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara39441-0-4">Sizeable</flowPara></flowRoot> </g>
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot39443-9-0"
- transform="translate(75.734798,-715.9695)"><flowRegion
- id="flowRegion39445-0-4"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use39447-0-4"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara39449-6-9">VariableOwner</flowPara></flowRoot> <g
- style="display:inline"
- id="g39451-9-7"
- transform="translate(123.00096,-20.40135)">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39453-6-1"
- width="130.30916"
- height="33.169598"
- x="166.99391"
- y="232.56483"
- ry="3.7880721" />
- <text
- id="text39455-6-5"
- y="252.29591"
- x="171.16541"
- style="font-size:10.69851398px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="252.29591"
- x="171.16541"
- id="tspan39457-4-0"
- sodipodi:role="line">ComponentState</tspan></text>
- </g>
- <text
- id="text39351-1"
- y="221.32399"
- x="294.55338"
- style="font-size:6.00000048px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="221.32399"
- x="294.55338"
- sodipodi:role="line"
- id="tspan39353-9">com.vaadin.shared</tspan></text>
- </g>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:6.02362204;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095);display:inline"
- d="m 38.219653,483.02968 0,-21.25985"
- id="path4600-4"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#f39300;stroke-width:6.02362204;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#DotSu8);display:inline"
- d="m -121.22916,454.68322 10.62992,0"
- id="path4600-1-5-6"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- </g>
- <path
- sodipodi:open="true"
- transform="matrix(1.8694191,0,0,1.8694191,-163.13036,295.59143)"
- sodipodi:end="6.2827149"
- sodipodi:start="0"
- d="m 491.94323,228.54329 a 4.7385135,4.7385135 0 1 1 -1e-5,-0.002"
- sodipodi:ry="4.7385135"
- sodipodi:rx="4.7385135"
- sodipodi:cy="228.54329"
- sodipodi:cx="487.20471"
- id="path29638-1"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- sodipodi:type="arc" />
- <text
- id="text4185-8-9"
- y="596.80322"
- x="753.37244"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="596.80322"
- x="753.37244"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191-0-1">«has»</tspan></text>
- <path
- style="fill:none;stroke:#f39300;stroke-width:6.02362204;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016);display:inline"
- d="m 981.49606,960.23621 0,-28.34647"
- id="path4600-4-1"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:6.02362204;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095);display:inline"
- d="m 981.49606,1031.1024 0,-21.2599"
- id="path4600-4-3"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <text
- id="text31847"
- y="770.02686"
- x="813.61792"
- style="font-size:14.95534801px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="770.02686"
- x="813.61792"
- id="tspan31849"
- sodipodi:role="line">Server connection:</tspan><tspan
- y="788.72107"
- x="813.61792"
- sodipodi:role="line"
- id="tspan31851">HTTP(S) / JSON</tspan></text>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4.96062994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#DotSu);display:inline"
- d="m 981.49606,864.5669 0,24.80315"
- id="path4600-1-6"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <text
- id="text4185-8-9-4"
- y="977.90942"
- x="783.1142"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="977.90942"
- x="783.1142"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191-0-1-4">«has»</tspan></text>
- <path
- style="fill:none;stroke:#f39300;stroke-width:6.02362204;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none;display:inline"
- d="m 574.01575,758.26769 0,226.77166 258.66142,0"
- id="path4600-1-5-6-1"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
- <g
- style="display:inline"
- id="g29630-7"
- transform="matrix(1.4955348,0,0,1.4955348,458.70193,184.22232)">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect29632-3"
- width="150.45576"
- height="35.43306"
- x="167.13719"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text29634-0"
- y="251.95493"
- x="169.84711"
- style="font-size:9.36119938px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="251.95493"
- x="169.84711"
- id="tspan29636-4"
- sodipodi:role="line">AbstractComponentConnector</tspan></text>
- <text
- id="text31857-5"
- y="240.42516"
- x="170.30312"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="240.42516"
- x="170.30312"
- sodipodi:role="line"
- id="tspan31859-2">com.vaadin.client.ui</tspan></text>
- </g>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:6.02362204;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095)"
- d="m 857.48031,609.4488 0,-28.34646"
- id="path4600"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- sodipodi:open="true"
- transform="matrix(1.8694191,0,0,1.8694191,-95.829158,157.1308)"
- sodipodi:end="6.2827149"
- sodipodi:start="0"
- d="m 491.94323,228.54329 a 4.7385135,4.7385135 0 1 1 -1e-5,-0.002"
- sodipodi:ry="4.7385135"
- sodipodi:rx="4.7385135"
- sodipodi:cy="228.54329"
- sodipodi:cx="487.20471"
- id="path29638-1-4"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- sodipodi:type="arc" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4.96062994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#DotSu);display:inline"
- d="m 829.13386,712.2047 -14.17323,0 0,-127.55905"
- id="path4600-1-9"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
- <text
- id="text39405-7"
- y="602.12891"
- x="824.49982"
- style="font-size:17.94641876px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="602.12891"
- x="824.49982"
- id="tspan39407-9"
- sodipodi:role="line">n</tspan></text>
- <text
- id="text4185-8-9-5"
- y="678.29932"
- x="817.15198"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="678.29932"
- x="817.15198"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191-0-1-2">«has»</tspan></text>
- <text
- id="text4185-8-9-5-5"
- y="678.29932"
- x="951.79761"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="678.29932"
- x="951.79761"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191-0-1-2-7">«knows»</tspan></text>
- <path
- style="fill:none;stroke:#f39300;stroke-width:4.96062994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#DotSu8);display:inline"
- d="m 747.6378,584.64565 0,138.18897"
- id="path4600-1-5-6-3"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <text
- id="text4185-8-2"
- y="435.65924"
- x="859.00732"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="435.65924"
- x="859.00732"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191-0-5">«...»</tspan></text>
- </g>
-</svg>
diff --git a/documentation/advanced/original-drawings/debug-log.svg b/documentation/advanced/original-drawings/debug-log.svg deleted file mode 100644 index f57f1e2ae6..0000000000 --- a/documentation/advanced/original-drawings/debug-log.svg +++ /dev/null @@ -1,424 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.48.3.1 r9886"
- sodipodi:docname="debug-log.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- enable-background="new"
- version="1.1">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.979899"
- inkscape:cx="461.10259"
- inkscape:cy="887.71455"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1680"
- inkscape:window-height="1026"
- inkscape:window-x="236"
- inkscape:window-y="0"
- showgrid="true"
- inkscape:window-maximized="0"
- inkscape:snap-bbox="true"
- showguides="true"
- inkscape:guide-bbox="true">
- <inkscape:grid
- type="xygrid"
- id="grid3942"
- empspacing="5"
- visible="true"
- enabled="true"
- snapvisiblegridlinesonly="true"
- spacingx="5px"
- spacingy="5px" />
- <sodipodi:guide
- orientation="1,0"
- position="330,1000"
- id="guide4118" />
- </sodipodi:namedview>
- <defs
- id="defs1903">
- <linearGradient
- id="linearGradient4123">
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="0"
- id="stop4125" />
- <stop
- id="stop4131"
- offset="0.25"
- style="stop-color:#ffffff;stop-opacity:0.70161289;" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.87903225;"
- offset="0.75"
- id="stop4133" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="1"
- id="stop4127" />
- </linearGradient>
- <linearGradient
- id="linearGradient3944"
- inkscape:collect="always">
- <stop
- id="stop3946"
- offset="0"
- style="stop-color:#ff1515;stop-opacity:1;" />
- <stop
- id="stop3948"
- offset="1"
- style="stop-color:#ff1515;stop-opacity:0;" />
- </linearGradient>
- <marker
- style="overflow:visible;"
- id="Arrow2Mend"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow2Mend">
- <path
- transform="scale(0.6) rotate(180) translate(0,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
- id="path3196" />
- </marker>
- <inkscape:perspective
- id="perspective7"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective2464" />
- <filter
- inkscape:label="filter1"
- id="filter2470">
- <feGaussianBlur
- id="feGaussianBlur2472"
- stdDeviation="3.6554687499999998"
- result="result0" />
- <feFlood
- id="feFlood3438"
- in="SourceGraphic"
- flood-opacity="0.49289099526066349"
- flood-color="rgb(139,139,139)"
- result="result1" />
- <feBlend
- blend="normal"
- id="feBlend3440"
- in="result0"
- mode="normal"
- in2="result1" />
- </filter>
- <linearGradient
- gradientUnits="userSpaceOnUse"
- y2="66.994687"
- x2="345.28571"
- y1="66.994687"
- x1="228.07906"
- id="linearGradient3950"
- xlink:href="#linearGradient3944"
- inkscape:collect="always" />
- <marker
- style="overflow:visible;"
- id="Arrow2MendL"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow2MendL">
- <path
- transform="scale(0.6) rotate(180) translate(0,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- style="stroke-linejoin:round;font-size:12.0;fill-rule:evenodd;stroke:url(#linearGradient3950);stroke-width:0.62500000;fill:url(#linearGradient3950)"
- id="path3967" />
- </marker>
- <clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath3442">
- <rect
- y="105.21935"
- x="162.85715"
- height="82.142815"
- width="175.71426"
- id="rect3444"
- style="opacity:1;fill:#545454;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.29999998;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- </clipPath>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-3"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-5"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-4"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-5"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-1"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-3"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-2"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-0"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-4"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-9"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-03"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-17"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-8"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-9"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-1"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-2"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-0"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-8"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-038"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-49"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-9"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-47"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-7"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- </defs>
- <metadata
- id="metadata1906">
- <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
- style="opacity:1"
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Taso 1">
- <image
- y="177.36218"
- x="75"
- id="image3126"
- xlink:href="file:///home/magi/itmill/book-7/manual/img/debug/debug-window.png"
- height="186.25829"
- width="375" />
- <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016)"
- d="m 165,127.36218 -67.272842,0 0,64.74746"
- id="path4833-3-7-55"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
- <text
- sodipodi:linespacing="125%"
- id="text2421-3"
- y="132.63379"
- x="174.136"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="132.63379"
- x="174.136"
- id="tspan2423-6"
- sodipodi:role="line">Clear Log</tspan></text>
- <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016)"
- d="m 165,152.36218 -43.28302,0 0,40"
- id="path4833-3-7-55-6"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
- <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016)"
- d="m 165,177.36218 -20,0 0,15"
- id="path4833-3-7-55-6-2"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
- <text
- sodipodi:linespacing="125%"
- id="text2421-3-3"
- y="158.80699"
- x="173.56"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="158.80699"
- x="173.56"
- id="tspan2423-6-9"
- sodipodi:role="line">Reset Timer</tspan></text>
- <text
- sodipodi:linespacing="125%"
- id="text2421-3-3-2"
- y="183.89645"
- x="174.226"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="183.89645"
- x="174.226"
- id="tspan2423-6-9-6"
- sodipodi:role="line">Scroll Lock</tspan></text>
- </g>
-</svg>
diff --git a/documentation/advanced/original-drawings/debug-window-annotated.svg b/documentation/advanced/original-drawings/debug-window-annotated.svg deleted file mode 100644 index 6c1fb5d1b5..0000000000 --- a/documentation/advanced/original-drawings/debug-window-annotated.svg +++ /dev/null @@ -1,608 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.48.3.1 r9886"
- sodipodi:docname="debug-window-annotated.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- enable-background="new"
- version="1.1">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.4"
- inkscape:cx="219.4901"
- inkscape:cy="836.30592"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1680"
- inkscape:window-height="1026"
- inkscape:window-x="236"
- inkscape:window-y="0"
- showgrid="true"
- inkscape:window-maximized="0"
- inkscape:snap-bbox="true"
- showguides="true"
- inkscape:guide-bbox="true">
- <inkscape:grid
- type="xygrid"
- id="grid3942"
- empspacing="5"
- visible="true"
- enabled="true"
- snapvisiblegridlinesonly="true"
- spacingx="5px"
- spacingy="5px" />
- <sodipodi:guide
- orientation="1,0"
- position="330,1000"
- id="guide4118" />
- </sodipodi:namedview>
- <defs
- id="defs1903">
- <linearGradient
- id="linearGradient5902">
- <stop
- style="stop-color:#2d2d2d;stop-opacity:1;"
- offset="0"
- id="stop5904" />
- <stop
- style="stop-color:#2d2d2d;stop-opacity:0;"
- offset="1"
- id="stop5906" />
- </linearGradient>
- <linearGradient
- id="linearGradient4123">
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="0"
- id="stop4125" />
- <stop
- id="stop4131"
- offset="0.25"
- style="stop-color:#ffffff;stop-opacity:0.70161289;" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.87903225;"
- offset="0.75"
- id="stop4133" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="1"
- id="stop4127" />
- </linearGradient>
- <linearGradient
- id="linearGradient3944"
- inkscape:collect="always">
- <stop
- id="stop3946"
- offset="0"
- style="stop-color:#ff1515;stop-opacity:1;" />
- <stop
- id="stop3948"
- offset="1"
- style="stop-color:#ff1515;stop-opacity:0;" />
- </linearGradient>
- <marker
- style="overflow:visible;"
- id="Arrow2Mend"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow2Mend">
- <path
- transform="scale(0.6) rotate(180) translate(0,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
- id="path3196" />
- </marker>
- <inkscape:perspective
- id="perspective7"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective2464" />
- <filter
- inkscape:label="filter1"
- id="filter2470">
- <feGaussianBlur
- id="feGaussianBlur2472"
- stdDeviation="3.6554687499999998"
- result="result0" />
- <feFlood
- id="feFlood3438"
- in="SourceGraphic"
- flood-opacity="0.49289099526066349"
- flood-color="rgb(139,139,139)"
- result="result1" />
- <feBlend
- blend="normal"
- id="feBlend3440"
- in="result0"
- mode="normal"
- in2="result1" />
- </filter>
- <linearGradient
- gradientUnits="userSpaceOnUse"
- y2="66.994687"
- x2="345.28571"
- y1="66.994687"
- x1="228.07906"
- id="linearGradient3950"
- xlink:href="#linearGradient3944"
- inkscape:collect="always" />
- <marker
- style="overflow:visible;"
- id="Arrow2MendL"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow2MendL">
- <path
- transform="scale(0.6) rotate(180) translate(0,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- style="stroke-linejoin:round;font-size:12.0;fill-rule:evenodd;stroke:url(#linearGradient3950);stroke-width:0.62500000;fill:url(#linearGradient3950)"
- id="path3967" />
- </marker>
- <clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath3442">
- <rect
- y="105.21935"
- x="162.85715"
- height="82.142815"
- width="175.71426"
- id="rect3444"
- style="opacity:1;fill:#545454;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.29999998;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- </clipPath>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-3"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-5"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-4"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-5"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-1"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-3"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-2"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-0"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-4"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-9"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-03"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-17"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-8"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-9"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-1"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-2"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-0"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-8"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-038"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-49"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-9"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-47"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-7"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5902"
- id="linearGradient5908"
- x1="260"
- y1="362.36218"
- x2="260"
- y2="202.36218"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5902"
- id="linearGradient5950"
- gradientUnits="userSpaceOnUse"
- x1="260"
- y1="362.36218"
- x2="260"
- y2="202.36218"
- gradientTransform="translate(130,0)" />
- <filter
- id="filter5952"
- inkscape:menu-tooltip="Make the lightest parts of the object progressively transparent"
- inkscape:menu="Transparency utilities"
- inkscape:label="Light eraser"
- height="1"
- width="1"
- y="0"
- x="0"
- color-interpolation-filters="sRGB">
- <feColorMatrix
- id="feColorMatrix5954"
- result="result14"
- type="luminanceToAlpha"
- in="SourceGraphic" />
- <feComposite
- id="feComposite5956"
- in2="result14"
- in="SourceGraphic"
- result="fbSourceGraphic"
- operator="out" />
- <feBlend
- id="feBlend5958"
- in2="fbSourceGraphic"
- mode="normal"
- result="result15" />
- </filter>
- <marker
- id="marker52016-35"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-7"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-20"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-76"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-7"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-6"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-4"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-48"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- </defs>
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- style="opacity:1"
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Taso 1">
- <image
- y="177.36218"
- x="75"
- id="image3126"
- xlink:href="file:///home/magi/itmill/book-7/manual/img/debug/debug-window.png"
- height="186.25829"
- width="375" />
- <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016)"
- d="m 310,2.3621826 -15.71428,0 0,169.9999974"
- id="path4833-3-7-55-7"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
- <text
- sodipodi:linespacing="125%"
- id="text2421-3-8"
- y="7.633739"
- x="313.54199"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="7.633739"
- x="313.54199"
- id="tspan2423-6-2"
- sodipodi:role="line">Debug message log</tspan></text>
- <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016)"
- d="m 335,27.362183 -17.23225,0 0,144.999997"
- id="path4833-3-7-55-7-3"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
- <text
- sodipodi:linespacing="125%"
- id="text2421-3-8-9"
- y="33.57235"
- x="339.04599"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="33.57235"
- x="339.04599"
- id="tspan2423-6-2-5"
- sodipodi:role="line">General info</tspan></text>
- <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016)"
- d="m 355,52.36218 -14.36865,0 0,120"
- id="path4833-3-7-55-7-3-6"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
- <text
- sodipodi:linespacing="125%"
- id="text2421-3-8-9-8"
- y="57.392303"
- x="359.13599"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="57.392303"
- x="359.13599"
- id="tspan2423-6-2-5-5"
- sodipodi:role="line">Component hierarchy</tspan></text>
- <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016)"
- d="m 380,77.36218 -16.76778,0 0,95"
- id="path4833-3-7-55-7-3-6-5"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
- <text
- sodipodi:linespacing="125%"
- id="text2421-3-8-9-4"
- y="83.878448"
- x="384.04599"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="83.878448"
- x="384.04599"
- id="tspan2423-6-2-5-2"
- sodipodi:role="line">Communication</tspan></text>
- <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016)"
- d="m 403.91437,102.36218 -16.76778,0 0,70"
- id="path4833-3-7-55-7-3-6-5-8"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
- <text
- sodipodi:linespacing="125%"
- id="text2421-3-8-9-4-1"
- y="109.05702"
- x="409.13599"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="109.05702"
- x="409.13599"
- id="tspan2423-6-2-5-2-6"
- sodipodi:role="line">Menu</tspan></text>
- <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016)"
- d="m 425,127.36218 -14.49492,0 0,45"
- id="path4833-3-7-55-7-3-6-5-8-9"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
- <text
- sodipodi:linespacing="125%"
- id="text2421-3-8-9-4-1-2"
- y="133.71503"
- x="428.59601"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="133.71503"
- x="428.59601"
- id="tspan2423-6-2-5-2-6-6"
- sodipodi:role="line">Minimize</tspan></text>
- <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016)"
- d="m 445,152.36218 -11.60713,0 0,20"
- id="path4833-3-7-55-7-3-6-5-8-9-6"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
- <text
- sodipodi:linespacing="125%"
- id="text2421-3-8-9-4-1-2-9"
- y="159.07217"
- x="448.59601"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="159.07217"
- x="448.59601"
- id="tspan2423-6-2-5-2-6-6-0"
- sodipodi:role="line">Close</tspan></text>
- <rect
- style="fill:#ffffff;fill-opacity:0.63793105;stroke:none"
- id="rect6062"
- width="345"
- height="120"
- x="85"
- y="222.36218"
- ry="3.7880721" />
- <rect
- style="fill:#ffffff;fill-opacity:0.67672414;stroke:none"
- id="rect6062-9"
- width="125"
- height="15"
- x="85"
- y="202.36218"
- ry="3.7880721" />
- </g>
-</svg>
diff --git a/documentation/advanced/original-drawings/mvp-pattern.svg b/documentation/advanced/original-drawings/mvp-pattern.svg deleted file mode 100644 index fe55ac874d..0000000000 --- a/documentation/advanced/original-drawings/mvp-pattern.svg +++ /dev/null @@ -1,832 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<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"
- version="1.1"
- sodipodi:modified="true"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- sodipodi:docname="mvp-pattern.svg"
- inkscape:version="0.48.2 r9819"
- sodipodi:version="0.32"
- id="svg1901"
- height="297mm"
- width="210mm">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="2"
- inkscape:cx="296.58974"
- inkscape:cy="799.23501"
- inkscape:document-units="px"
- inkscape:current-layer="g6951-6"
- gridtolerance="10000"
- inkscape:window-width="1680"
- inkscape:window-height="1027"
- inkscape:window-x="-4"
- inkscape:window-y="-4"
- showgrid="true"
- showguides="true"
- inkscape:connector-spacing="10"
- inkscape:guide-bbox="true"
- inkscape:window-maximized="1">
- <inkscape:grid
- spacingy="5px"
- spacingx="5px"
- snapvisiblegridlinesonly="true"
- enabled="true"
- visible="true"
- empspacing="5"
- id="grid3123"
- type="xygrid" />
- </sodipodi:namedview>
- <defs
- id="defs1903">
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="scale(0.2) translate(7.4, 1)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none"
- d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
- id="path4833" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotM"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="DotM">
- <path
- transform="scale(0.4) translate(7.4, 1)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none"
- d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
- id="path4830" />
- </marker>
- <marker
- markerWidth="4.6297355"
- markerHeight="5.7450781"
- orient="auto"
- id="marker44971">
- <g
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)"
- id="g18059">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- id="path18061"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc" />
- <path
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- id="path18063"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </marker>
- <marker
- markerWidth="4.6297302"
- markerHeight="5.7450776"
- orient="auto"
- id="marker18095">
- <g
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)"
- id="g11064">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- id="path11050"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc" />
- <path
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- id="path11035"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </marker>
- <inkscape:perspective
- id="perspective7604"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient11516">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop11518" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop11520" />
- </linearGradient>
- <linearGradient
- id="linearGradient11508">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop11510" />
- <stop
- style="stop-color:#e27979;stop-opacity:1"
- offset="1"
- id="stop11512" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="DiamondL"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="DiamondL">
- <path
- transform="scale(0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
- id="path4404" />
- </marker>
- <marker
- style="overflow:visible"
- id="DiamondEmpty"
- refX="0.0"
- refY="0.0"
- orient="auto">
- <path
- transform="scale(1.0) translate(-5,0)"
- style="fill-rule:evenodd;fill:#ffffff;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z "
- id="path7" />
- </marker>
- <linearGradient
- id="linearGradient3286">
- <stop
- id="stop3288"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop3290"
- offset="1"
- style="stop-color:#79e291;stop-opacity:1;" />
- </linearGradient>
- <marker
- style="overflow:visible;"
- id="EmptyArrow"
- refX="0.0"
- refY="0.0"
- orient="auto">
- <path
- transform="scale(1.0) rotate(180) translate(10,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- d="M 0.0,0.0 L 0.0,-5.0 L -12.5,0.0 L 0.0,5.0 L 0.0,0.0 z M -0.5,0.0 L -0.5,-4.5 L -12.0,0.0 L -0.5,4.5 L -0.5,0.0 z"
- id="path9" />
- </marker>
- <marker
- style="overflow:visible;"
- id="EmptyArrow2"
- refX="0.0"
- refY="0.0"
- orient="auto">
- <path
- transform="scale(1.0) rotate(180) translate(10,0)"
- style="fill-rule:evenodd;fill:#ffffff;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- d="M 0.0,0.0 L 0.0,-5.0 L -10.0,0.0 L 0.0,5.0 L 0.0,0.0 z"
- id="path13" />
- </marker>
- <linearGradient
- id="linearGradient19816">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop19818" />
- <stop
- style="stop-color:#e7e790;stop-opacity:1;"
- offset="1"
- id="stop19820" />
- </linearGradient>
- <marker
- style="overflow:visible;"
- id="Arrow2Lend"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow2Lend">
- <path
- transform="scale(1.1) rotate(180) translate(1,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
- id="path16811" />
- </marker>
- <marker
- style="overflow:visible;"
- id="Arrow1Lend"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Lend">
- <path
- transform="scale(0.8) rotate(180) translate(12.5,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
- id="path16829" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutM"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="TriangleOutM">
- <path
- transform="scale(0.4)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- id="path16731" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleInL"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="TriangleInL">
- <path
- transform="scale(-0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- id="path16743" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutL"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="TriangleOutL">
- <path
- transform="scale(0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- id="path16734" />
- </marker>
- <linearGradient
- id="linearGradient9263">
- <stop
- id="stop9265"
- offset="0"
- style="stop-color:#000000;stop-opacity:0" />
- <stop
- id="stop9267"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient7299">
- <stop
- id="stop7301"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop7303"
- offset="1"
- style="stop-color:#a090e7;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient5349">
- <stop
- id="stop5351"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop5353"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient4152">
- <stop
- id="stop4154"
- offset="0"
- style="stop-color:#6b6bff;stop-opacity:1;" />
- <stop
- id="stop4156"
- offset="1"
- style="stop-color:#6b6bff;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- gradientUnits="userSpaceOnUse"
- y2="148.38934"
- x2="389.01985"
- y1="148.38934"
- x1="96.085953"
- id="linearGradient5355"
- xlink:href="#linearGradient5349"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient11602"
- xlink:href="#linearGradient19816"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,541.12253,30.198804)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3268"
- xlink:href="#linearGradient19816"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3270"
- xlink:href="#linearGradient7299"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3272"
- xlink:href="#linearGradient19816"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3274"
- xlink:href="#linearGradient7299"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3276"
- xlink:href="#linearGradient7299"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3278"
- xlink:href="#linearGradient7299"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3280"
- xlink:href="#linearGradient7299"
- inkscape:collect="always" />
- <marker
- markerWidth="4.6297355"
- markerHeight="5.7450781"
- orient="auto"
- id="marker44971-5">
- <g
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)"
- id="g18059-9">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- id="path18061-1"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path18063-4"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- markerWidth="4.6297302"
- markerHeight="5.7450776"
- orient="auto"
- id="marker18095-3">
- <g
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)"
- id="g11064-5">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- id="path11050-8"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path11035-2"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- style="overflow:visible"
- id="DotSC"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="DotSC">
- <path
- transform="scale(0.2) translate(7.4, 1)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1.0pt;fill:#49c2f1"
- d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
- id="path5535" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSC-1"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSC">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path5535-8" />
- </marker>
- <marker
- markerWidth="4.6297302"
- markerHeight="5.7450776"
- orient="auto"
- id="marker18095-34">
- <g
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)"
- id="g11064-1">
- <path
- inkscape:connector-curvature="0"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- id="path11050-84"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc" />
- <path
- inkscape:connector-curvature="0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path11035-25"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </marker>
- </defs>
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- style="opacity:1"
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Taso 1">
- <g
- transform="matrix(1.4062095,0,0,1.4062095,-160.27559,-197.72935)"
- id="g6925"
- style="display:inline">
- <rect
- ry="3.7880721"
- y="231.36011"
- x="167.87294"
- height="53.157619"
- width="123.88699"
- id="rect2549"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="174.42322"
- y="248.96115"
- id="text6921"><tspan
- sodipodi:role="line"
- id="tspan6923"
- x="174.42322"
- y="248.96115">CalculatorView</tspan></text>
- <text
- sodipodi:linespacing="125%"
- id="text3155-5"
- y="262.29724"
- x="173.71204"
- style="font-size:9.95584228px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Italic"
- xml:space="preserve"><tspan
- id="tspan4492"
- y="262.29724"
- x="173.71204"
- sodipodi:role="line">setDisplay()</tspan><tspan
- y="274.74203"
- x="173.71204"
- sodipodi:role="line"
- id="tspan5929">addListener()</tspan></text>
- </g>
- <path
- sodipodi:type="arc"
- style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="path5742"
- sodipodi:cx="225"
- sodipodi:cy="172.36218"
- sodipodi:rx="10"
- sodipodi:ry="10"
- d="m 235,172.36218 a 10,10 0 1 1 0,-0.005"
- sodipodi:start="0"
- sodipodi:end="6.2827149"
- sodipodi:open="true"
- transform="translate(25,2.6171874e-6)" />
- <g
- transform="matrix(1.4062095,0,0,1.4062095,52.743842,-199.95949)"
- id="g6951"
- style="display:inline">
- <rect
- ry="3.7880721"
- y="232.76878"
- x="168.72035"
- height="71.113159"
- width="131.55934"
- id="rect6953"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="175.83167"
- y="250.54707"
- id="text6955"><tspan
- sodipodi:role="line"
- id="tspan6957"
- x="175.83167"
- y="250.54707">CalculatorPresenter</tspan></text>
- <text
- sodipodi:linespacing="125%"
- id="text3155-5-4"
- y="263.88318"
- x="177.25385"
- style="font-size:9.95584202px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- id="tspan4492-0"
- y="263.88318"
- x="177.25385"
- sodipodi:role="line">buttonClick()</tspan></text>
- </g>
- <g
- transform="matrix(1.4062095,0,0,1.4062095,-160.02993,-59.169572)"
- id="g6951-6"
- style="display:inline">
- <rect
- ry="3.7880721"
- y="232.20705"
- x="167.13719"
- height="71.113159"
- width="124.44804"
- id="rect6953-7"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="172.96414"
- y="250.54707"
- id="text6955-8"><tspan
- sodipodi:role="line"
- id="tspan6957-7"
- x="172.96414"
- y="250.54707">CalculatorViewImpl</tspan></text>
- <text
- sodipodi:linespacing="125%"
- id="text3155-5-6"
- y="264.20798"
- x="174.24852"
- style="font-size:9.95584202px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- id="tspan4492-3"
- y="264.20798"
- x="174.24852"
- sodipodi:role="line">setDisplay()</tspan><tspan
- y="276.65277"
- x="174.24852"
- sodipodi:role="line"
- id="tspan5931">addListener()</tspan></text>
- </g>
- <text
- sodipodi:linespacing="125%"
- id="text3155"
- y="237.36218"
- x="160"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="237.36218"
- x="160"
- id="tspan3157"
- sodipodi:role="line">«implements»</tspan></text>
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path3204"
- d="m 150,267.36218 0,-65"
- style="fill:none;stroke:#49c2f1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095)" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path3204-2"
- d="m 290,172.36218 -40,0"
- style="fill:none;stroke:#49c2f1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#DotSC)" />
- <g
- transform="matrix(1.4062095,0,0,1.4062095,54.970076,-59.169585)"
- id="g6951-6-1"
- style="display:inline">
- <rect
- ry="3.7880721"
- y="232.20705"
- x="167.13719"
- height="88.891457"
- width="131.55936"
- id="rect6953-7-4"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="172.96414"
- y="250.54707"
- id="text6955-8-8"><tspan
- sodipodi:role="line"
- id="tspan6957-7-3"
- x="172.96414"
- y="250.54707">Calculator</tspan></text>
- <text
- sodipodi:linespacing="125%"
- id="text3155-5-6-8"
- y="264.20798"
- x="174.24852"
- style="font-size:9.95584202px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="264.20798"
- x="174.24852"
- id="tspan3157-2-8-1"
- sodipodi:role="line">set/getValue()</tspan><tspan
- id="tspan4492-3-8"
- y="276.65277"
- x="174.24852"
- sodipodi:role="line">add()</tspan><tspan
- y="289.0976"
- x="174.24852"
- sodipodi:role="line"
- id="tspan5919">multiply()</tspan><tspan
- y="301.54239"
- x="174.24852"
- sodipodi:role="line"
- id="tspan5921">divide()</tspan><tspan
- y="313.98718"
- x="174.24852"
- sodipodi:role="line"
- id="tspan5923">clear()</tspan></text>
- </g>
- <path
- transform="translate(140,95)"
- sodipodi:type="arc"
- style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="path5742-1"
- sodipodi:cx="225"
- sodipodi:cy="172.36218"
- sodipodi:rx="10"
- sodipodi:ry="10"
- d="m 235,172.36218 a 10,10 0 1 1 0,-0.005"
- sodipodi:start="0"
- sodipodi:end="6.2827149"
- sodipodi:open="true" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path3204-2-7"
- d="m 365,227.36218 0,40"
- style="fill:none;stroke:#49c2f1;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#DotSC)" />
- <text
- sodipodi:linespacing="125%"
- id="text3155-50"
- y="162.36218"
- x="251"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="162.36218"
- x="251"
- id="tspan3157-1"
- sodipodi:role="line">1</tspan></text>
- <text
- sodipodi:linespacing="125%"
- id="text3155-50-0"
- y="262.36218"
- x="373.69604"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="262.36218"
- x="373.69604"
- id="tspan3157-1-5"
- sodipodi:role="line">1</tspan></text>
- <g
- transform="matrix(1.4062095,0,0,1.4062095,-130.27557,-232.9786)"
- id="g6925-1"
- style="display:inline">
- <rect
- ry="3.7880721"
- y="231.36011"
- x="167.31189"
- height="32.000923"
- width="110.2254"
- id="rect2549-7"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.42226315;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-size:8.53357887px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="174.42322"
- y="244.69438"
- id="text6921-9"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan6923-7"
- x="174.42322"
- y="244.69438">CalculatorViewListener</tspan></text>
- <text
- sodipodi:linespacing="125%"
- id="text3155-5-63"
- y="255.1859"
- x="175.13429"
- style="font-size:7.11131592px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Italic"
- xml:space="preserve"><tspan
- id="tspan4492-7"
- y="255.1859"
- x="175.13429"
- sodipodi:role="line">buttonClick()</tspan></text>
- </g>
- <path
- sodipodi:nodetypes="ccc"
- inkscape:connector-curvature="0"
- id="path3204-6"
- d="m 365,127.36218 0,-10 -105,0"
- style="fill:none;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095)" />
- <text
- sodipodi:linespacing="125%"
- id="text3155-9"
- y="112.36218"
- x="280"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="112.36218"
- x="280"
- id="tspan3157-7"
- sodipodi:role="line">«implements»</tspan></text>
- </g>
- <g
- inkscape:label="Varjot"
- id="layer2"
- inkscape:groupmode="layer" />
-</svg>
diff --git a/documentation/advanced/original-drawings/threadlocal-concurrency.svg b/documentation/advanced/original-drawings/threadlocal-concurrency.svg deleted file mode 100644 index 5c88b92486..0000000000 --- a/documentation/advanced/original-drawings/threadlocal-concurrency.svg +++ /dev/null @@ -1,1142 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<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"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.48.1 r9760"
- sodipodi:docname="threadlocal-concurrency.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="300.01001"
- inkscape:export-ydpi="300.01001"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.6970563"
- inkscape:cx="416.73703"
- inkscape:cy="658.67086"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1680"
- inkscape:window-height="1026"
- inkscape:window-x="232"
- inkscape:window-y="0"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="false"
- showguides="true"
- inkscape:guide-bbox="true"
- inkscape:window-maximized="0">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSqO"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSqO">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#f39300;stroke-width:1pt;fill:#f39300"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path13615" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSqOt"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSqOt">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1pt;fill:#49c2f1"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path13992" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSqOth"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSqOth">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#d9d9cd;stroke-width:1pt;fill:#d9d9cd"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path14421" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSqOtY"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSqOtY">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#f39300;stroke-width:1pt;fill:#f39300"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path12260" />
- </marker>
- </defs>
- <metadata
- id="metadata2480">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1">
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="translate(-3.5714286,23.214286)"
- id="g3178" />
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <g
- transform="matrix(0.5,0,0,0.5,103.34299,0.7940752)"
- id="g18053" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#000000;stroke-width:3.54330707;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- d="m 577.33419,443.27065 -417.68723,0"
- id="path2544"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#000000;stroke-width:3.54330707;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- d="m 578.16752,344.99696 -418.93723,0"
- id="path7078"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0" />
- <g
- transform="translate(215.28678,114.29679)"
- id="g7090">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect7092"
- width="72.269569"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- transform="translate(19.422623,251.0954)"
- id="flowRoot14290"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion14292" /><flowPara
- id="flowPara14294">User B</flowPara><flowPara
- id="flowPara14296">Request</flowPara></flowRoot> </g>
- <g
- transform="translate(160.20793,143.48504)"
- id="g7100">
- <rect
- ry="3.7880721"
- y="208.55002"
- x="172.42705"
- height="35.93816"
- width="87.798714"
- id="rect7102"
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(178.96771,222.54606)"
- id="flowRoot7104"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion7106" /><flowPara
- id="flowPara14282">User A</flowPara><flowPara
- id="flowPara14286">Request</flowPara></flowRoot> </g>
- <g
- transform="translate(160.8144,273.6179)"
- id="g12724">
- <rect
- style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect12726"
- width="74.409447"
- height="35.43306"
- x="234.86888"
- y="181.8969"
- ry="3.7880721" />
- <flowRoot
- transform="translate(272.73415,204.25271)"
- id="flowRoot12728"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion12730" /><flowPara
- id="flowPara12732">Data B</flowPara></flowRoot> </g>
- <path
- inkscape:connector-type="polyline"
- id="path8430"
- d="m 164.52619,374.82623 24.11062,-0.6048"
- style="fill:none;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker44971);display:inline"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- inkscape:connector-type="polyline"
- id="path13507"
- d="m 547.05718,374.82623 24.11062,-0.6048"
- style="fill:none;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker44971);display:inline"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <g
- transform="translate(98.710324,220.60224)"
- id="g13489">
- <flowRoot
- transform="translate(168.53473,197.13766)"
- id="flowRoot13493"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion13495" /><flowPara
- id="flowPara13502">ThreadLocal</flowPara><flowPara
- id="flowPara12568">Reference</flowPara></flowRoot> <rect
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#d9d9cd;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect13491"
- width="74.409447"
- height="35.43306"
- x="234.86888"
- y="181.8969"
- ry="3.7880721" />
- </g>
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path13881"
- d="m 356.13661,437.61897 -9.65403,15.6042"
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#DotSqO);display:inline"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path6576"
- d="m 373.0034,409.38453 -0.004,-10.08184"
- style="fill:none;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#DotSqOth);display:inline"
- inkscape:connector-curvature="0" />
- <g
- transform="translate(38.81777,272.95927)"
- id="g3696">
- <rect
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#f39300;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3698"
- width="74.409447"
- height="35.43306"
- x="234.86888"
- y="181.8969"
- ry="3.7880721" />
- <flowRoot
- transform="translate(272.73415,204.25271)"
- id="flowRoot3700"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion3702" /><flowPara
- id="flowPara3704">Data A</flowPara></flowRoot> </g>
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path13883"
- d="m 388.14963,437.57598 8.51687,14.46247"
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#DotSqOt);display:inline"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path14262"
- d="m 515.13539,381.83876 -0.64979,14.46247"
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#DotSqOt);display:inline"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path14264"
- d="m 299.76931,384.93236 0.16044,12.62321"
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#DotSqOt);display:inline"
- inkscape:connector-curvature="0" />
- <g
- transform="translate(431.12012,114.29679)"
- id="g14298">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect14300"
- width="72.269569"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- transform="translate(19.422623,251.0954)"
- id="flowRoot14302"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion14304" /><flowPara
- id="flowPara14306">User B</flowPara><flowPara
- id="flowPara14308">Request</flowPara></flowRoot> </g>
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path14310"
- d="m 372.90447,387.62702 0.0947,10.18752"
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#DotSqO);display:inline"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path2540"
- d="M 357.28507,435.52453 372.9481,409.86787"
- style="fill:none;stroke:#d9d9cd;stroke-width:4.00039387;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path7961"
- d="m 418.39227,384.45566 0.0947,8.20888"
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path8736"
- d="m 334.74425,384.69509 0.0947,8.20888"
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path8738"
- d="m 231.54764,384.9544 0.16044,8.04347"
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path9513"
- d="m 447.2753,384.39663 0.16044,8.04347"
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#000000;stroke-width:3.54330707;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- d="m 577.33419,242.02064 -417.68723,0"
- id="path9733"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0" />
- <g
- transform="translate(37.233967,94.297449)"
- id="g9747">
- <rect
- ry="3.7880721"
- y="208.55002"
- x="172.42705"
- height="35.93816"
- width="87.798714"
- id="rect9749"
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(178.96771,222.54606)"
- id="flowRoot9751"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion9753" /><flowPara
- id="flowPara9755">User A</flowPara><flowPara
- id="flowPara9757">Request</flowPara></flowRoot> </g>
- <g
- transform="translate(338.14616,65.1092)"
- id="g9763">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect9765"
- width="72.269569"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- transform="translate(19.422623,251.0954)"
- id="flowRoot9767"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion9769" /><flowPara
- id="flowPara9771">User B</flowPara><flowPara
- id="flowPara9773">Request</flowPara></flowRoot> </g>
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path9775"
- d="m 295.18052,304.43942 0.0947,-12.914"
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#DotSqO);display:inline"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path9779"
- d="m 211.77029,297.50749 0.0947,8.20888"
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path9783"
- d="m 354.30134,297.20903 0.16044,8.04347"
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- inkscape:connector-curvature="0" />
- <g
- transform="translate(276.98029,92.788348)"
- id="g9785">
- <rect
- ry="3.7880721"
- y="208.55002"
- x="172.42705"
- height="35.93816"
- width="87.798714"
- id="rect9787"
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(178.96771,222.54606)"
- id="flowRoot9789"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion9791" /><flowPara
- id="flowPara9793">User A</flowPara><flowPara
- id="flowPara9795">Request</flowPara></flowRoot> </g>
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path9797"
- d="m 534.84349,302.4303 0.0947,-10.97365"
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#DotSqO);display:inline"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path9801"
- d="m 451.51661,295.99839 0.0947,8.20888"
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path9805"
- d="m 422.38468,297.20903 0.16044,8.04347"
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- inkscape:connector-curvature="0" />
- <g
- transform="translate(132.26747,69.915423)"
- id="g9807">
- <flowRoot
- transform="translate(166.53473,195.13766)"
- id="flowRoot9809"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion9811" /><flowPara
- id="flowPara9813">ThreadLocal</flowPara><flowPara
- id="flowPara9815">Reference</flowPara></flowRoot> <rect
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#d9d9cd;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect9817"
- width="74.409447"
- height="35.43306"
- x="234.86888"
- y="181.8969"
- ry="3.7880721" />
- </g>
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path9819"
- d="m 401.62682,286.48218 20.66303,-32.73999"
- style="fill:none;stroke:#d9d9cd;stroke-width:4.00039387;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path9759"
- d="m 401.57217,306.56781 -0.0605,-15.49058"
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#DotSqOt);display:inline"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path10598"
- d="M 423.75,251.5462 L 435.69904,234.44552 L 589.16667,234.44551 L 589.16667,472.36218 L 470.83334,472.36218"
- style="fill:none;fill-rule:evenodd;stroke:#49c2f1;stroke-width:3.54330709;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;opacity:1;color:#000000;fill-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="cccccs"
- id="path10601"
- d="M 386.87501,250.92119 L 404.16922,228.82052 L 595.625,227.98718 L 594.79167,499.65384 L 356.87501,499.23718 L 347.70834,490.48718"
- style="opacity:1;stroke-linejoin:round;enable-background:accumulate;marker-end:url(#DotSqOtY);stroke-opacity:1;fill-rule:evenodd;marker-start:none;fill-opacity:1;stroke-dashoffset:0;visibility:visible;display:inline;stroke:#f39300;stroke-linecap:round;stroke-miterlimit:4;marker:none;stroke-dasharray:none;overflow:visible;stroke-width:3.54330709;marker-mid:none;fill:none" />
- <path
- inkscape:connector-type="polyline"
- id="path12570"
- d="m 164.44286,320.4929 24.11062,-0.6048"
- style="fill:none;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker44971);display:inline"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- inkscape:connector-type="polyline"
- id="path12572"
- d="m 547.05718,320.82623 24.11062,-0.6048"
- style="fill:none;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker44971);display:inline"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <flowRoot
- transform="translate(158.5545,257.37226)"
- id="flowRoot12574"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion12576" /><flowPara
- id="flowPara12578">Thread 1</flowPara></flowRoot> <flowRoot
- transform="translate(158.32228,359.37226)"
- id="flowRoot12580"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion12582" /><flowPara
- id="flowPara12584">Thread 2</flowPara></flowRoot> </g>
-</svg>
diff --git a/documentation/advanced/original-drawings/threadlocal-sequentiality.svg b/documentation/advanced/original-drawings/threadlocal-sequentiality.svg deleted file mode 100644 index 86475d262e..0000000000 --- a/documentation/advanced/original-drawings/threadlocal-sequentiality.svg +++ /dev/null @@ -1,980 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<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"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.48.1 r9760"
- sodipodi:docname="threadlocal-sequentiality.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="300.01001"
- inkscape:export-ydpi="300.01001"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="2.4"
- inkscape:cx="374.31245"
- inkscape:cy="621.17988"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1680"
- inkscape:window-height="1026"
- inkscape:window-x="232"
- inkscape:window-y="0"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="false"
- showguides="true"
- inkscape:guide-bbox="true"
- inkscape:window-maximized="0">
- <inkscape:grid
- dotted="false"
- type="xygrid"
- id="grid4674"
- visible="true"
- enabled="true"
- units="mm"
- empspacing="5"
- spacingx="1mm"
- spacingy="1mm" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path5210" />
- </marker>
- <marker
- inkscape:stockid="DotS"
- orient="auto"
- refY="0"
- refX="0"
- id="DotS"
- style="overflow:visible">
- <path
- id="path3636"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS">
- <path
- transform="scale(0.2,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path3717" />
- </marker>
- <inkscape:path-effect
- effect="skeletal"
- id="path-effect2503"
- prop_scale="1"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- copytype="single_stretched" />
- <inkscape:path-effect
- effect="skeletal"
- id="path-effect2499"
- prop_scale="1" />
- <inkscape:path-effect
- effect="skeletal"
- id="path-effect2497"
- prop_scale="1"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- pattern-nodetypes="cc" />
- <marker
- inkscape:stockid="Arrow1Send"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Send"
- style="overflow:visible">
- <path
- id="path3641"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lend"
- style="overflow:visible">
- <path
- id="path3629"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(-0.8,0,0,-0.8,-10,0)" />
- </marker>
- <inkscape:perspective
- id="perspective3487"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <marker
- inkscape:stockid="Arrow2Sendp"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2Sendp"
- style="overflow:visible">
- <path
- id="path28139"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- transform="matrix(-0.3,0,0,-0.3,0.69,0)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSK"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSK"
- style="overflow:visible">
- <path
- id="path36611"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSH"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSH"
- style="overflow:visible">
- <path
- id="path36614"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSA"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSA"
- style="overflow:visible">
- <path
- id="path36617"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSKF"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSKF"
- style="overflow:visible">
- <path
- id="path36620"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9"
- style="overflow:visible">
- <path
- id="path36623"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="Arrow2SendpA"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2SendpA"
- style="overflow:visible">
- <path
- id="path3396"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- transform="matrix(-0.3,0,0,-0.3,0.69,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow2Sendpg"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2Sendpg"
- style="overflow:visible">
- <path
- id="path3360"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- transform="matrix(-0.3,0,0,-0.3,0.69,0)" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="White Halo"
- id="filter2780">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology2782" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(255,255,255)"
- id="feFlood2786" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite2623" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- in="result4"
- id="feMergeNode2631"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode2633"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- style="overflow:visible"
- id="TriangleOutSn"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSn">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path4441" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9F"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9F">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path4444" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSI"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSI">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path4447" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSO"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSO">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path4450" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSW"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSW">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path4453" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSB"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSB">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path4456" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSZ"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSZ">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path4459" />
- </marker>
- <marker
- inkscape:stockid="DotSq"
- orient="auto"
- refY="0"
- refX="0"
- id="DotSq"
- style="overflow:visible">
- <path
- id="path5853"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSBO"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSBO">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path7501" />
- </marker>
- <marker
- inkscape:stockid="DotSu"
- orient="auto"
- refY="0"
- refX="0"
- id="DotSu"
- style="overflow:visible">
- <path
- id="path9463"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)" />
- </marker>
- <filter
- id="filter10694"
- inkscape:label="Black Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology10696"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood10698"
- flood-color="rgb(0,0,0)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite10700"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode10704"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode10706"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- style="overflow:visible"
- id="TriangleOutSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSu">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path8127" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSI8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSI8">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path8130" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSr"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSr">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path8133" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSM"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSM">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path8136" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSb"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSb">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path8139" />
- </marker>
- <marker
- markerWidth="4.6297302"
- markerHeight="5.7450776"
- orient="auto"
- id="marker18095">
- <g
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)"
- id="g11064">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- id="path11050"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc" />
- <path
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- id="path11035"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </marker>
- <marker
- markerWidth="4.6297355"
- markerHeight="5.7450781"
- orient="auto"
- id="marker44971">
- <g
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)"
- id="g18059">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- id="path18061"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc" />
- <path
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- id="path18063"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </marker>
- <marker
- markerWidth="4.6297302"
- markerHeight="5.7450786"
- orient="auto"
- id="marker52016">
- <g
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)"
- id="g52010">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- id="path52012"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc" />
- <path
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- id="path52014"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </marker>
- <marker
- markerWidth="4.6297255"
- markerHeight="5.745079"
- orient="auto"
- id="marker64887">
- <g
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)"
- id="g64855">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- id="path64857"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- id="path64859"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </marker>
- <marker
- markerWidth="4.6297302"
- markerHeight="5.745079"
- orient="auto"
- id="marker4057">
- <g
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)"
- id="g51986">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- id="path51988"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc" />
- <path
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- id="path51990"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </marker>
- <marker
- markerWidth="4.0334239"
- markerHeight="4.5568175"
- orient="auto"
- id="marker72805">
- <path
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- id="path18057"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </marker>
- <marker
- markerWidth="4.0334177"
- markerHeight="4.5568123"
- orient="auto"
- id="marker72808">
- <path
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- id="path72801"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </marker>
- <marker
- inkscape:stockid="DotSuN"
- orient="auto"
- refY="0"
- refX="0"
- id="DotSuN"
- style="overflow:visible">
- <path
- id="path81580"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)" />
- </marker>
- <marker
- inkscape:stockid="DotSqO"
- orient="auto"
- refY="0"
- refX="0"
- id="DotSqO"
- style="overflow:visible">
- <path
- id="path13615"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#f39300;stroke-width:1pt;fill:#f39300"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)" />
- </marker>
- <marker
- inkscape:stockid="DotSqOt"
- orient="auto"
- refY="0"
- refX="0"
- id="DotSqOt"
- style="overflow:visible">
- <path
- id="path13992"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1pt;fill:#49c2f1"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)" />
- </marker>
- <marker
- inkscape:stockid="DotSqOth"
- orient="auto"
- refY="0"
- refX="0"
- id="DotSqOth"
- style="overflow:visible">
- <path
- id="path14421"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#d9d9cd;stroke-width:1pt;fill:#d9d9cd"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)" />
- </marker>
- </defs>
- <metadata
- id="metadata2480">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1">
- <flowRoot
- xml:space="preserve"
- id="flowRoot2485"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"><flowRegion
- id="flowRegion2487"><rect
- id="rect2489"
- width="184.28572"
- height="120"
- x="262.85715"
- y="238.07646"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- id="g3178"
- transform="translate(-3.5714286,23.214286)" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot8724"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"><flowRegion
- id="flowRegion8726"><rect
- id="rect8728"
- width="29.904507"
- height="22.868153"
- x="39.286312"
- y="752.14441"
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <g
- id="g18053"
- transform="matrix(0.5,0,0,0.5,103.34299,0.7940752)" />
- <path
- inkscape:connector-type="polyline"
- id="path2544"
- d="m 577.33419,399.27065 -417.68723,0"
- style="fill:none;stroke:#000000;stroke-width:3.54330707;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- inkscape:connector-type="polyline"
- id="path7078"
- d="m 578.16752,344.99696 -418.93723,0"
- style="fill:none;stroke:#000000;stroke-width:3.54330707;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <g
- id="g7090"
- transform="translate(205.28678,114.29679)">
- <rect
- ry="3.7880721"
- y="237.40155"
- x="14.173247"
- height="35.433075"
- width="72.269569"
- id="rect7092"
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot14290"
- transform="translate(19.422623,251.0954)"><flowRegion
- id="flowRegion14292" /><flowPara
- id="flowPara14294">User B</flowPara><flowPara
- id="flowPara14296">Request</flowPara></flowRoot> </g>
- <g
- id="g7100"
- transform="translate(160.20793,143.48504)">
- <rect
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect7102"
- width="87.798714"
- height="35.93816"
- x="172.42705"
- y="208.55002"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot7104"
- transform="translate(178.96771,222.54606)"><flowRegion
- id="flowRegion7106" /><flowPara
- id="flowPara14282">User A</flowPara><flowPara
- id="flowPara14286">Request</flowPara></flowRoot> </g>
- <g
- id="g12724"
- transform="translate(160.8144,287.6179)">
- <rect
- ry="3.7880721"
- y="181.8969"
- x="234.86888"
- height="35.43306"
- width="74.409447"
- id="rect12726"
- style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot12728"
- transform="translate(272.73415,204.25271)"><flowRegion
- id="flowRegion12730" /><flowPara
- id="flowPara12732">Data B</flowPara></flowRoot> </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker44971);display:inline"
- d="m 164.52619,370.82623 24.11062,-0.6048"
- id="path8430"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker44971);display:inline"
- d="m 547.05718,370.82623 24.11062,-0.6048"
- id="path13507"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0" />
- <g
- id="g13489"
- transform="translate(98.710324,234.60224)">
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot13493"
- transform="translate(162.53473,193.13766)"><flowRegion
- id="flowRegion13495" /><flowPara
- id="flowPara13497">Switchable</flowPara><flowPara
- id="flowPara13502">Reference</flowPara></flowRoot> <rect
- ry="3.7880721"
- y="181.8969"
- x="234.86888"
- height="35.43306"
- width="74.409447"
- id="rect13491"
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#d9d9cd;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- </g>
- <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#DotSqO);display:inline"
- d="m 356.13661,451.61897 -9.65403,15.6042"
- id="path13881"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#DotSqOth);display:inline"
- d="m 373.0034,423.38453 -0.004,-10.08184"
- id="path6576"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <g
- id="g3696"
- transform="translate(38.81777,286.95927)">
- <rect
- ry="3.7880721"
- y="181.8969"
- x="234.86888"
- height="35.43306"
- width="74.409447"
- id="rect3698"
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#f39300;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3700"
- transform="translate(272.73415,204.25271)"><flowRegion
- id="flowRegion3702" /><flowPara
- id="flowPara3704">Data A</flowPara></flowRoot> </g>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#DotSqOt);display:inline"
- d="m 388.14963,451.57598 8.51687,14.46247"
- id="path13883"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#DotSqOt);display:inline"
- d="m 515.13539,381.83876 -0.64979,22.7958"
- id="path14262"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#DotSqOt);display:inline"
- d="m 289.76931,384.93236 0.16044,20.12321"
- id="path14264"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <g
- id="g14298"
- transform="translate(431.12012,114.29679)">
- <rect
- ry="3.7880721"
- y="237.40155"
- x="14.173247"
- height="35.433075"
- width="72.269569"
- id="rect14300"
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot14302"
- transform="translate(19.422623,251.0954)"><flowRegion
- id="flowRegion14304" /><flowPara
- id="flowPara14306">User B</flowPara><flowPara
- id="flowPara14308">Request</flowPara></flowRoot> </g>
- <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#DotSqO);display:inline"
- d="m 372.90447,387.62702 0.0947,18.52085"
- id="path14310"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#d9d9cd;stroke-width:4.00039387;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- d="M 356.03507,451.60786 372.9481,423.86787"
- id="path2540"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <flowRoot
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot7955"
- transform="translate(444.56871,337.39513)"><flowRegion
- id="flowRegion7957" /><flowPara
- id="flowPara7959">transactionStart()</flowPara></flowRoot> <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- d="m 418.39227,384.45566 0.0947,8.20888"
- id="path7961"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- d="m 334.74425,384.69509 0.0947,8.20888"
- id="path8736"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- d="m 221.54764,384.9544 0.16044,8.04347"
- id="path8738"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- d="m 447.2753,384.39663 0.16044,8.04347"
- id="path9513"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- d="m 421.96015,389.14884 25.24637,-48.15665"
- id="path9515"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <flowRoot
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot9517"
- transform="translate(304.44491,338.82052)"><flowRegion
- id="flowRegion9519" /><flowPara
- id="flowPara9521">transactionEnd()</flowPara></flowRoot> <path
- style="fill:none;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- d="M 329.87681,389.77384 311.37319,340.78385"
- id="path9523"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- </g>
-</svg>
diff --git a/documentation/application/application-architecture.asciidoc b/documentation/application/application-architecture.asciidoc deleted file mode 100644 index 77c1756594..0000000000 --- a/documentation/application/application-architecture.asciidoc +++ /dev/null @@ -1,258 +0,0 @@ ---- -title: Building the UI -order: 2 -layout: page ---- - -[[application.architecture]] -= Building the UI - -Vaadin user interfaces are built hierarchically from components, so that the -leaf components are contained within layout components and other component -containers. Building the hierarchy starts from the top (or bottom - whichever -way you like to think about it), from the [classname]#UI# class of the -application. You normally set a layout component as the content of the UI and -fill it with other components. - - -[source, java] ----- -public class MyHierarchicalUI extends UI { - @Override - protected void init(VaadinRequest request) { - // The root of the component hierarchy - VerticalLayout content = new VerticalLayout(); - content.setSizeFull(); // Use entire window - setContent(content); // Attach to the UI - - // Add some component - content.addComponent(new Label("Hello!")); - - // Layout inside layout - HorizontalLayout hor = new HorizontalLayout(); - hor.setSizeFull(); // Use all available space - - // Couple of horizontally laid out components - Tree tree = new Tree("My Tree", - TreeExample.createTreeContent()); - hor.addComponent(tree); - - Table table = new Table("My Table", - TableExample.generateContent()); - table.setSizeFull(); - hor.addComponent(table); - hor.setExpandRatio(table, 1); // Expand to fill - - content.addComponent(hor); - content.setExpandRatio(hor, 1); // Expand to fill - } -} ----- - -The component hierarchy could be illustrated with a tree as follows: - - ----- -UI - `-- VerticalLayout - |-- Label - `-- HorizontalLayout - |-- Tree - `-- Table ----- - -The result is shown in <<figure.application.architecture.example>>. - -[[figure.application.architecture.example]] -.Simple Hierarchical UI -image::img/ui-architecture-hierarchical.png[] - -Instead of building the layout in Java, you can also use a declarative design, -as described later in -<<dummy/../../../framework/application/application-declarative#application.declarative,"Designing -UIs Declaratively">>. The examples given for the declarative layouts give -exactly the same UI layout as built from the components above. - -The built-in components are described in -<<dummy/../../../framework/components/components-overview.asciidoc#components.overview,"User -Interface Components">> and the layout components in -<<dummy/../../../framework/layout/layout-overview.asciidoc#layout.overview,"Managing -Layout">>. - -The example application described above just is, it does not do anything. User -interaction is handled with event listeners, as described a bit later in -<<dummy/../../../framework/application/application-events#application.events,"Handling -Events with Listeners">>. - -[[application.architecture.architecture]] -== Application Architecture - -Once your application grows beyond a dozen or so lines, which is usually quite -soon, you need to start considering the application architecture more closely. -You are free to use any object-oriented techniques available in Java to organize -your code in methods, classes, packages, and libraries. An architecture defines -how these modules communicate together and what sort of dependencies they have -between them. It also defines the scope of the application. The scope of this -book, however, only gives a possibility to mention some of the most common -architectural patterns in Vaadin applications. - -The subsequent sections describe some basic application patterns. For more -information about common architectures, see -<<dummy/../../../framework/advanced/advanced-architecture#advanced.architecture,"Advanced -Application Architectures">>, which discusses layered architectures, the -Model-View-Presenter (MVP) pattern, and so forth. - -ifdef::web[] -The -<<dummy/../../../framework/advanced/advanced-global#advanced.global,"Accessing -Session-Global Data">> discusses the problem of passing essentially global -references around, a common problem which is also visited in -<<application.architecture.accessing>>. -endif::web[] - - -[[application.architecture.composition]] -== Compositing Components - -User interfaces typically contain many user interface components in a layout -hierarchy. Vaadin provides many layout components for laying contained -components vertically, horizontally, in a grid, and in many other ways. You can -extend layout components to create composite components. - - -[source, java] ----- -class MyView extends VerticalLayout { - TextField entry = new TextField("Enter this"); - Label display = new Label("See this"); - Button click = new Button("Click This"); - - public MyView() { - addComponent(entry); - addComponent(display); - addComponent(click); - - // Configure it a bit - setSizeFull(); - addStyleName("myview"); - } -} - -// Use it -Layout myview = new MyView(); ----- - -This composition pattern is especially supported for creating forms, as -described in -<<dummy/../../../framework/datamodel/datamodel-itembinding#datamodel.itembinding.formclass,"Binding -Member Fields">>. - -While extending layouts is an easy way to make component composition, it is a -good practice to encapsulate implementation details, such as the exact layout -component used. Otherwise, the users of such a composite could begin to rely on -such implementation details, which would make changes harder. For this purpose, -Vaadin has a special [classname]#CustomComponent# wrapper, which hides the -content representation. - - -[source, java] ----- -class MyView extends CustomComponent { - TextField entry = new TextField("Enter this"); - Label display = new Label("See this"); - Button click = new Button("Click This"); - - public MyView() { - Layout layout = new VerticalLayout(); - - layout.addComponent(entry); - layout.addComponent(display); - layout.addComponent(click); - - setCompositionRoot(layout); - - setSizeFull(); - } -} - -// Use it -MyView myview = new MyView(); ----- - -For a more detailed description of the [classname]#CustomComponent#, see -<<dummy/../../../framework/components/components-customcomponent#components.customcomponent,"Composition -with CustomComponent">>. - - -[[application.architecture.navigation]] -== View Navigation - -While the most simple applications have just a single __view__ (or __screen__), -perhaps most have many. Even in a single view, you often want to have sub-views, -for example to display different content. -<<figure.application.architecture.navigation>> illustrates a typical navigation -between different top-level views of an application, and a main view with -sub-views. - -[[figure.application.architecture.navigation]] -.Navigation Between Views -image::img/view-navigation-hi.png[] - -The [classname]#Navigator# described in -<<dummy/../../../framework/advanced/advanced-navigator#advanced.navigator,"Navigating -in an Application">> is a view manager that provides a flexible way to navigate -between views and sub-views, while managing the URI fragment in the page URL to -allow bookmarking, linking, and going back in browser history. - -Often Vaadin application views are part of something bigger. In such cases, you -may need to integrate the Vaadin applications with the other website. You can -use the embedding techniques described in -<<dummy/../../../framework/advanced/advanced-embedding#advanced.embedding,"Embedding -UIs in Web Pages">>. - - -[[application.architecture.accessing]] -== Accessing UI, Page, Session, and Service - -You can get the UI and the page to which a component is attached to with -[methodname]#getUI()# and [methodname]#getPage()#. - -However, the values are [literal]#++null++# until the component is attached to -the UI, and typically, when you need it in constructors, it is not. It is -therefore preferable to access the current UI, page, session, and service -objects from anywhere in the application using the static -[methodname]#getCurrent()# methods in the respective [classname]#UI#, -[classname]#Page#, [classname]#VaadinSession#, and [classname]#VaadinService# -classes. - - -[source, java] ----- -// Set the default locale of the UI -UI.getCurrent().setLocale(new Locale("en")); - -// Set the page title (window or tab caption) -Page.getCurrent().setTitle("My Page"); - -// Set a session attribute -VaadinSession.getCurrent().setAttribute("myattrib", "hello"); - -// Access the HTTP service parameters -File baseDir = VaadinService.getCurrent().getBaseDirectory(); ----- - -You can get the page and the session also from a [classname]#UI# with -[methodname]#getPage()# and [methodname]#getSession()# and the service from -[classname]#VaadinSession# with [methodname]#getService()#. - -The static methods use the built-in ThreadLocal support in the classes. - -ifdef::web[] - The pattern is described in -<<dummy/../../../framework/advanced/advanced-global#advanced.global.threadlocal,"ThreadLocal -Pattern">>. -endif::web[] - - - - diff --git a/documentation/application/application-declarative.asciidoc b/documentation/application/application-declarative.asciidoc deleted file mode 100644 index 316d6d7633..0000000000 --- a/documentation/application/application-declarative.asciidoc +++ /dev/null @@ -1,398 +0,0 @@ ---- -title: Designing UIs Declaratively -order: 3 -layout: page ---- - -[[application.declarative]] -= Designing UIs Declaratively - -Declarative definition of composites and even entire UIs makes it easy for -developers and especially graphical designers to work on visual designs without -any coding. Designs can be modified even while the application is running, as -can be the associated themes. A design is a representation of a component -hierarcy, which can be accessed from Java code to implement dynamic UI logic, as -well as data binding. - -For example, considering the following layout in Java: - - -[source, java] ----- -VerticalLayout vertical = new VerticalLayout (); -vertical.addComponent(new TextField("Name")); -vertical.addComponent(new TextField("Street address")); -vertical.addComponent(new TextField("Postal code")); -layout.addComponent(vertical); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#layout.orderedlayout.basic[on-line example, window="_blank"]. - -You could define it declaractively with the following equivalent design: - - -[source, html] ----- -<v-vertical-layout> - <v-text-field caption="Name"/> - <v-text-field caption="Street address"/> - <v-text-field caption="Postal code"/> -</v-vertical-layout> ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#layout.orderedlayout.basic[on-line example, window="_blank"]. - -Declarative designs can be crafted by hand, but are most conveniently created -with the Vaadin Designer. - -In the following, we first go through the syntax of the declarative design -files, and then see how to use them in applications by binding them to data and -handling user interaction events. - -[[application.declarative.syntax]] -== Declarative Syntax - -A design is an HTML document with custom elements for representing components -and their configuration. A design has a single root component inside the HTML -body element. Enclosing [literal]#++<html>++#, [literal]#++<head>++#, -[literal]#++<body>++# are optional, but necessary if you need to make namespace -definitions for custom components. Other regular HTML elements may not be used -in the file, except inside components that specifically accept HTML content. - -In a design, each nested element corresponds to a Vaadin component in a -component tree. Components can have explicitly given IDs to enable binding them -to variables in the Java code, as well as optional attributes. - - -[source, html] ----- -<!DOCTYPE html> -<html> - <body> - <v-vertical-layout size-full> - <!-- Label with HTML content --> - <v-label><b>Hello!</b> - How are you?</v-label> - - <v-horizontal-layout size-full :expand> - <v-tree _id="mytree" caption="My Tree" - width-auto height-full/> - <v-table _id="mytable" caption="My Table" - size-full :expand/> - </v-horizontal-layout> - </v-vertical-layout> - </body> -</html> ----- - -The DOCTYPE is not required, neither is the [literal]#++<html>++#, or -[literal]#++<body>++# elements. Nevertheless, there may only be one design root -element. - -The above design defines the same UI layout as done earlier with Java code, and -illustrated in -<<dummy/../../../framework/application/application-architecture#figure.application.architecture.example,"Simple -Hierarchical UI">>. - - -[[application.declarative.elements]] -== Component Elements - -HTML elements of the declarative syntax are directly mapped to Vaadin components -according to their Java class names. The tag of a component element has a -namespace prefix separated by a dash. Vaadin core components, which are defined -in the [package]#com.vaadin.ui# package, have [literal]#++v-++# prefix. The rest -of an element tag is determined from the Java class name of the component, by -making it lower-case, while adding a dash ( [literal]#++-++#) before every -previously upper-case letter as a word separator. For example, -[classname]#ComboBox# component has declarative element tag -[literal]#++<v-combo-box>++#. - -[[application.declarative.elements.prefix]] -=== Component Prefix to Package Mapping - -You can use any components in a design: components extending Vaadin components, -composite components, and add-on components. To do so, you need to define a -mapping from an element prefix to the Java package of the component. The prefix -is used as a sort of a namespace. - -The mappings are defined in [literal]#++<meta name="package-mapping" ...>++# -elements in the HTML head. A [parameter]#content# attribute defines a mapping, -in notation with a prefix separated from the corresponding Java package name -with a colon, such as " [literal]#++my:com.example.myapp++#". - -For example, consider that you have the following composite class -[classname]#com.example.myapp.ExampleComponent#: - - -[source, java] ----- -package com.example.myapp; - -public class ExampleComponent extends CustomComponent { - public ExampleComponent() { - setCompositionRoot(new Label("I am an example.")); - } -} ----- - -You would make the package prefix mapping and then use the component as follows: - -[subs="normal"] ----- -<!DOCTYPE html> -<html> - <head> - **<meta name="package-mapping" content="my:com.example.myapp" />** - </head> - - <body> - <v-vertical-layout> - <v-label><b>Hello!</b> - How are you?</v-label> - - <!-- Use it here --> - **<my-example-component/>** - </v-vertical-layout> - </body> -</html> ----- - -[[application.declarative.elements.inline]] -=== Inline Content and Data - -The element content can be used for certain default attributes, such as a button -caption. For example: - - -[source, html] ----- -<v-button><b>OK</b></v-button> ----- - -Some components, such as selection components, allow defining inline data within -the element. For example: - - -[source, html] ----- -<v-native-select> - <option>Mercury</option> - <option>Venus</option> - <option selected>Earth</option> -</v-native-select> ----- - -The declarative syntax of each component type is described in the JavaDoc API -documentation of Vaadin. - - - -[[application.declarative.attributes]] -== Component Attributes - -[[application.declarative.attributes.mapping]] -=== Attribute-to-Property Mapping - -Component properties are directly mapped to the attributes of the HTML elements -according to the names of the properties. Attributes are written in lower-case -letters and dash is used for word separation instead of upper-case letters in -the Java methods, so that [literal]#++input-prompt++# attribute is equivalent to -[methodname]#setInputPrompt()#. - -For example, the __caption__ property, which you can set with -[methodname]#setCaption()#, is represented as [literal]#++caption++# attribute. -You can find the component properties by the setter methods in the -link:https://vaadin.com/api/[JavaDoc API documentation] of the component -classes. - - -[source, html] ----- -<v-text-field caption="Name" input-prompt="Enter Name"/> ----- - - -[[application.declarative.attributes.parameters]] -=== Attribute Values - -Attribute parameters must be enclosed in quotes and the value given as a string -must be convertible to the type of the property (string, integer, boolean, or -enumeration). Object types are not supported. - -Some attribute names are given by a shorthand. For example, -[parameter]#alternateText# property of the [classname]#Image# component, which -you would set with [methodname]#setAlternateText()#, is given as the -[literal]#++alt++# attribute. - -Boolean values must be either " [literal]#++true++#" or " [literal]#++false++#". -The value can be omitted, in which case [literal]#++true++# is assumed. For -example, the [literal]#++enabled++# attribute is boolean and has default value " -[literal]#++true++#", so [literal]#++enabled="true"++# and -[literal]#++enabled++# and equivalent. - - -[source, html] ----- -<v-button enabled="false">OK</v-button> ----- - - -[[application.declarative.attributes.parent]] -=== Parent Component Settings - -Certain settings, such as a component's alignment in a layout, are not done in -the component itself, but in the layout. Attributes prefixed with colon ( -[literal]#++:++#) are passed to the containing component, with the component as -a target parameter. For example, [literal]#++:expand="1"++# given for a -component [parameter]#c# is equivalent to calling [methodname]#setExpandRatio(c, -1)# for the containing layout. - -[subs="normal"] ----- -<v-vertical-layout size-full> - <!-- Align right in the containing layout --> - <v-label width-auto **:right**>Hello!</v-label> - - <!-- Expands to take up all remaining vertical space --> - <v-horizontal-layout size-full **:expand**> - <!-- Automatic width - shrinks horizontally --> - <v-tree width-auto height-full/> - - <!-- Expands horizontally to take remaining space --> - <v-table size-full **:expand**/> - </v-horizontal-layout> -</v-vertical-layout> ----- -Again, compare the above declaration to the Java code given in -<<dummy/../../../framework/application/application-architecture#application.architecture,"Building -the UI">>. - - - -[[application.declarative.identifiers]] -== Component Identifiers - -Components can be identified by either an identifier or a caption. There are two -types of identifiers: page-global and local. This allows accessing them from -Java code and binding them to components, as described later in -<<application.declarative.composite>>. - -The [literal]#++id++# attribute can be used to define a page-global identifier, -which must be unique within the page. Another design or UI shown simultaneously -in the same page may not have components sharing the same ID. Using global -identifiers is therefore not recommended, except in special cases where -uniqueness is ensured. - -The [literal]#++_id++# attribute defines a local identifier used only within the -design. This is the recommended way to identifying components. - - -[source, html] ----- -<v-tree _id="mytree" caption="My Tree"/> ----- - - -[[application.declarative.composite]] -== Using Designs in Code - -The main use of declarative designs is in building application views, sub-views, -dialogs, and forms through composition. The two main tasks are filling the -designs with application data and handling user interaction events. - -[[application.declarative.composite.designroot]] -=== Binding to a Design Root - -You can bind any component container as the root component of a design with the -[classname]#@DesignRoot# annotation. The class must match or extend the class of -the root element in the design. - -The member variables are automatically initialized from the design according to -the component identifiers (see <<application.declarative.identifiers>>), which -must match the variable names. - -For example, the following class could be used to bind the design given earlier. - - -[source, java] ----- -@DesignRoot -public class MyViewDesign extends VerticalLayout { - Tree mytree; - Table mytable; - - public MyViewDesign() { - Design.read("MyDeclarativeUI.html", this); - - // Show some (example) data - mytree.setContainerDataSource( - TreeExample.createTreeContent()); - mytable.setContainerDataSource( - TableExample.generateContent()); - - // Some interaction - mytree.addItemClickListener(event -> // Java 8 - Notification.show("Selected " + - event.getItemId())); - } -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#application.declarative.designroot[on-line example, window="_blank"]. - -The design root class must match or extend the root element class of the design. -For example, earlier we had [literal]#++<v-vertical-layout>++# element in the -HTML file, which can be bound to a class extending [classname]#VerticalLayout#. - - -[[application.declarative.composite.using]] -=== Using a Design - -The fact that a component is defined declaratively is not visible in its API, so -you can create and use such it just like any other component. - -For example, to use the previously defined design root component as the content -of the entire UI: - - -[source, java] ----- -public class DeclarativeViewUI extends UI { - @Override - protected void init(VaadinRequest request) { - setContent(new MyViewDesign()); - } -} ----- - - -[[application.declarative.composite.viewnavigation]] -=== Designs in View Navigation - -To use a design in view navigation, as described in -<<dummy/../../../framework/advanced/advanced-navigator#advanced.navigator,"Navigating -in an Application">>, you just need to implement the [interfacename]#View# -interface. - - -[source, java] ----- -@DesignRoot -public class MainView extends VerticalLayout - implements View { - public MainView() { - Design.read(this); - ... - } - ... -} - -... -// Use the view by precreating it -navigator.addView(MAINVIEW, new MainView()); ----- - -See -<<dummy/../../../framework/advanced/advanced-navigator#advanced.navigator.urifragment,"Handling -URI Fragment Path">> for a complete example. - - - - - diff --git a/documentation/application/application-environment.asciidoc b/documentation/application/application-environment.asciidoc deleted file mode 100644 index 5a2bf7ecbf..0000000000 --- a/documentation/application/application-environment.asciidoc +++ /dev/null @@ -1,502 +0,0 @@ ---- -title: Deploying an Application -order: 9 -layout: page ---- - -[[application.environment]] -= Deploying an Application - -Vaadin applications are deployed as __Java web applications__, which can contain -a number of servlets, each of which can be a Vaadin application or some other -servlet, and static resources such as HTML files. Such a web application is -normally packaged as a WAR (Web application ARchive) file, which can be deployed -to a Java application server (or a servlet container to be exact). A WAR file, -which has the [filename]#.war# extension, is a subtype of JAR (Java ARchive), -and like a regular JAR, is a ZIP-compressed file with a special content -structure. - -For a detailed tutorial on how web applications are packaged, please refer to -any Java book that discusses Java Servlets. - -In the Java Servlet parlance, a "web application" means a collection of Java -servlets or portlets, JSP and static HTML pages, and various other resources -that form an application. Such a Java web application is typically packaged as a -WAR package for deployment. Server-side Vaadin UIs run as servlets within such a -Java web application. There exists also other kinds of web applications. To -avoid confusion with the general meaning of "web application", we often refer to -Java web applications with the slight misnomer "WAR" in this book.//TODO Vaadin -7: What is the relationship between servlet and -application? - -[[application.environment.war-eclipse]] -== Creating Deployable WAR in Eclipse - -To deploy an application to a web server, you need to create a WAR package. Here -we give the instructions for Eclipse. - -. Select "File > Export" and then "Web > WAR File". Or, right-click the project in -the Project Explorer and select "Web > WAR File". - -. Select the [guilabel]#Web project# to export. Enter [guilabel]#Destination# file -name ( [filename]#.war#). - -. Make any other settings in the dialog, and click [guibutton]#Finish#. - - - -[[application.environment.war]] -== Web Application Contents - -The following files are required in a web application in order to run it. - -[filename]#WEB-INF/web.xml# (optional with Servlet 3.0):: This is the web application descriptor that defines how the application is -organized, that is, what servlets and such it has. You can refer to any Java -book about the contents of this file. It is not needed if you define the Vaadin -servlet with the [literal]#++@WebServlet++# annotation in Servlet API 3.0. - -[filename]#WEB-INF/lib/*.jar# :: These are the Vaadin libraries and their dependencies. They can be found in the -installation package or as loaded by a dependency management system such as -Maven or Ivy. - -Your UI classes:: You must include your UI classes either in a JAR file in [filename]#WEB-INF/lib# -or as classes in [filename]#WEB-INF/classes# - -Your own theme files (OPTIONAL):: If your application uses a special theme (look and feel), you must include it in -[filename]#VAADIN/themes/themename# directory. - -Widget sets (OPTIONAL):: If your application uses a project-specific widget set, it must be compiled in -the [filename]#VAADIN/widgetset/# directory. - - - - -[[application.environment.webservlet]] -== Web Servlet Class - -When using the Servlet 3.0 API, you normally declare the Vaadin servlet classes -with the [literal]#++@WebServlet++# annotation. The Vaadin UI associated with -the servlet and other Vaadin-specific parameters are declared with a separate -[literal]#++@VaadinServletConfiguration++# annotation. - -[subs="normal"] ----- -@WebServlet(value = "**/++*++**", - asyncSupported = true) -@VaadinServletConfiguration( - productionMode = **false**, - ui = **MyProjectUI**.class) -public class **MyProjectServlet** extends VaadinServlet { -} ----- -The Vaadin Plugin for Eclipse creates the servlet class as a static inner class -of the UI class. Normally, you may want to have it as a separate regular class. - -The [parameter]#value# parameter is the URL pattern for mapping request URLs to -the servlet, as described in <<application.environment.servlet-mapping>>. The -[parameter]#ui# parameter is the UI class. Production mode is disabled by -default, which enabled on-the-fly theme compilation, debug window, and other -such development features. See the subsequent sections for details on the -different servlet and Vaadin configuration parameters. - -You can also use a [filename]#web.xml# deployment descriptor in Servlet 3.0 -projects. - - -[[application.environment.web-xml]] -== Using a [filename]#web.xml# Deployment Descriptor - -A deployment descriptor is an XML file with the name [filename]#web.xml# in the -[filename]#WEB-INF# sub-directory of a web application. It is a standard -component in Java EE describing how a web application should be deployed. The -descriptor is not required with Servlet API 3.0, where you can also define -servlets with the [classname]#@WebServlet# annotation as decribed earlier, as -web fragments, or programmatically. You can use both a [filename]#web.xml# and -WebServlet in the same application. Settings in the [filename]#web.xml# override -the ones given in annotations. - -The following example shows the basic contents of a deployment descriptor for a -Servlet 2.4 application. You simply specify the UI class with the -[parameter]#UI# parameter for the [classname]#com.vaadin.server.VaadinServlet#. -The servlet is then mapped to a URL path in a standard way for Java Servlets. - -[subs="normal"] ----- -<?xml version="1.0" encoding="UTF-8"?> -<web-app - id="WebApp_ID" version="2.4" - xmlns="http://java.sun.com/xml/ns/j2ee" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee - http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> - - <servlet> - <servlet-name>**myservlet**</servlet-name> - <servlet-class> - com.vaadin.server.VaadinServlet - </servlet-class> - - <init-param> - <param-name>UI</param-name> - <param-value>**com.ex.myprj.MyUI**</param-value> - </init-param> - - <!-- If not using the default widget set--> - <init-param> - <param-name>widgetset</param-name> - <param-value>**com.ex.myprj.MyWidgetSet**</param-value> - </init-param> - </servlet> - - <servlet-mapping> - <servlet-name>**myservlet**</servlet-name> - <url-pattern>/*</url-pattern> - </servlet-mapping> -</web-app> ----- -The descriptor defines a servlet with the name [filename]#myservlet#. The -servlet class, [classname]#com.vaadin.server.VaadinServlet#, is provided by -Vaadin framework and is normally the same for all Vaadin projects. For some -purposes, you may need to use a custom servlet class that extends the -[classname]#VaadinServlet#. The class name must include the full package path. - -[[application.environment.web-xml.servlet]] -=== Servlet API Version - -The descriptor example given above was for Servlet 2.4. For a later version, -such as Servlet 3.0, you should use: - -[subs="normal"] ----- -<web-app - id="WebApp_ID" version="**3.0**" - xmlns="http://java.sun.com/xml/ns/j2ee" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="**http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd**"> ----- -Servlet 3.0 support is useful for at least server push. - - -[[application.environment.web-xml.widgetset]] -=== Widget Set - -If the UI uses add-on components or custom widgets, it needs a custom widget -set, which can be specified with the [parameter]#widgetset# parameter for the -servlet. Alternatively, you can defined it with the [classname]#@WidgetSet# -annotation for the UI class. The parameter is a class name with the same path -but without the [filename]#.gwt.xml# extension as the widget set definition -file. If the parameter is not given, the -[classname]#com.vaadin.DefaultWidgetSet# is used, which contains all the widgets -for the built-in Vaadin components. - -Unless using the default widget set (which is included in the -[filename]#vaadin-client-compiled# JAR), the widget set must be compiled, as -described in -<<dummy/../../../framework/addons/addons-overview.asciidoc#addons.overview,"Using -Vaadin Add-ons">> or -<<dummy/../../../framework/clientside/clientside-compiling#clientside.compiling,"Compiling -a Client-Side Module">>, and properly deployed with the application. - - - -[[application.environment.servlet-mapping]] -== Servlet Mapping with URL Patterns - -The servlet needs to be mapped to an URL path, which requests it is to handle. - -With [classname]#@WebServlet# annotation for the servlet class: - -[subs="normal"] ----- -@WebServlet(value = "**/++*++**", asyncSupported = true) ----- -In a [filename]#web.xml#: - -[subs="normal"] ----- - <servlet-mapping> - <servlet-name>**myservlet**</servlet-name> - <url-pattern>/*</url-pattern> - </servlet-mapping> ----- -The URL pattern is defined in the above examples as [literal]#++/*++#. This -matches any URL under the project context. We defined above the project context -as [literal]#++myproject++# so the URL for the page of the UI will be -http://localhost:8080/myproject/. - -[[application.environment.servlet-mapping.sub-paths]] -=== Mapping Sub-Paths - -If an application has multiple UIs or servlets, they have to be given different -paths in the URL, matched by a different URL pattern. Also, you may need to have -statically served content under some path. Having an URL pattern -[literal]#++/myui/*++# would match a URL such as -http://localhost:8080/myproject/myui/. Notice that the slash and the asterisk -__must__ be included at the end of the pattern. In such case, you also need to -map URLs with [literal]#++/VAADIN/*++# to a servlet (unless you are serving it -statically as noted below). - -With a [classname]#@WebServlet# annotation for a servlet class, you can define -multiple mappings as a list enclosed in curly braces as follows: - -[subs="normal"] ----- -@WebServlet(value = {"**/myui/++*++**", "/VAADIN/*"}, - asyncSupported = true) ----- -In a [filename]#web.xml#: - -[subs="normal"] ----- - ... - <servlet-mapping> - <servlet-name>**myservlet**</servlet-name> - <url-pattern>**/myui/++*++**</url-pattern> - </servlet-mapping> - - <servlet-mapping> - <servlet-name>**myservlet**</servlet-name> - <url-pattern>/VAADIN/*</url-pattern> - </servlet-mapping> ----- -If you have multiple servlets, you should specify only one -[literal]#++/VAADIN/*++# mapping.It does not matter which servlet you map the -pattern to, as long as it is a Vaadin servlet. - -You do not have to provide the above [literal]#++/VAADIN/*++# mapping if you -serve both the widget sets and (custom and default) themes statically in the -[filename]#/VAADIN# directory in the web application. The mapping simply allows -serving them dynamically from the Vaadin JAR. Serving them statically is -recommended for production environments as it is faster. If you serve the -content from within the same web application, you may not have the root pattern -[literal]#++/*++# for the Vaadin servlet, as then all the requests would be -mapped to the servlet. - - - -[[application.environment.parameters]] -== Other Servlet Configuration Parameters - -The servlet class or deployment descriptor can have many parameters and options -that control the execution of a servlet. You can find complete documentation of -the basic servlet parameters in the appropriate -link:http://wiki.apache.org/tomcat/Specifications[Java Servlet Specification]. -//// -JCP or Oracle don't seem to have a proper index -URL. -//// -[classname]#@VaadinServletConfiguration# accepts a number of special parameters, -as described below. - -In a [filename]#web.xml#, you can set most parameters either as a -[literal]#++<context-param>++# for the entire web application, in which case -they apply to all Vaadin servlets, or as an [literal]#++<init-param>++# for an -individual servlet. If both are defined, servlet parameters override context -parameters. - -[[application.environment.parameters.production-mode]] -=== Production Mode - -By default, Vaadin applications run in __debug mode__ (or __development mode__), -which should be used during development. This enables various debugging -features. For production use, you should have the -[literal]#++productionMode=true++# setting in the -[classname]#@VaadinServletConfiguration#, or in [filename]#web.xml#: - - ----- -<context-param> - <param-name>productionMode</param-name> - <param-value>true</param-value> - <description>Vaadin production mode</description> -</context-param> ----- - -The parameter and the debug and production modes are described in more detail in -<<dummy/../../../framework/advanced/advanced-debug#advanced.debug,"Debug Mode -and Window">>. - - -[[application.environment.parameters.uiprovider]] -=== Custom UI Provider - -Vaadin normally uses the [classname]#DefaultUIProvider# for creating -[classname]#UI# class instances. If you need to use a custom UI provider, you -can define its class with the [parameter]#UIProvider# parameter. The provider is -registered in the [classname]#VaadinSession#. - -In a [filename]#web.xml#: - -[subs="normal"] ----- - <servlet> - ... - <init-param> - <param-name>UIProvider</param-name> - <param-value>**com.ex.my.MyUIProvider**</param-value> - </init-param> ----- -The parameter is logically associated with a particular servlet, but can be -defined in the context as well. - - -[[application.environment.parameters.heartbeat]] -=== UI Heartbeat - -Vaadin monitors UIs by using a heartbeat, as explained in -<<dummy/../../../framework/application/application-lifecycle#application.lifecycle.ui-expiration,"UI -Expiration">>. If the user closes the browser window of a Vaadin application or -navigates to another page, the Client-Side Engine running in the page stops -sending heartbeat to the server, and the server eventually cleans up the -[classname]#UI# instance. - -The interval of the heartbeat requests can be specified in seconds with the -[parameter]#heartbeatInterval# parameter either as a context parameter for the -entire web application or an init parameter for the individual servlet. The -default value is 300 seconds (5 minutes). - -In a [filename]#web.xml#: - - ----- -<context-param> - <param-name>heartbeatInterval</param-name> - <param-value>300</param-value> -</context-param> ----- - - -[[application.environment.parameters.session-timeout]] -=== Session Timeout After User Inactivity - -In normal servlet operation, the session timeout defines the allowed time of -inactivity after which the server should clean up the session. The inactivity is -measured from the last server request. Different servlet containers use varying -defaults for timeouts, such as 30 minutes for Apache Tomcat. You can set the -timeout under [literal]#++<web-app>++# with: - -In a [filename]#web.xml#: - -((("session-timeout"))) - ----- -<session-config> - <session-timeout>30</session-timeout> -</session-config> ----- - -((("Out of -Sync"))) -The session timeout should be longer than the heartbeat interval or otherwise -sessions are closed before the heartbeat can keep them alive. As the session -expiration leaves the UIs in a state where they assume that the session still -exists, this would cause an Out Of Sync error notification in the browser. - -((("closeIdleSessions"))) -However, having a shorter heartbeat interval than the session timeout, which is -the normal case, prevents the sessions from expiring. If the -[parameter]#closeIdleSessions# parameter for the servlet is enabled (disabled by -default), Vaadin closes the UIs and the session after the time specified in the -[parameter]#session-timeout# parameter expires after the last non-heartbeat -request. - -In a [filename]#web.xml#: - - ----- - <servlet> - ... - <init-param> - <param-name>closeIdleSessions</param-name> - <param-value>true</param-value> - </init-param> ----- - - -[[application.environment.parameters.push]] -=== Push Mode - -You can enable server push, as described in -<<dummy/../../../framework/advanced/advanced-push#advanced.push,"Server Push">>, -for a UI either with a [classname]#@Push# annotation for the UI or in the -descriptor. The push mode is defined with a [parameter]#pushmode# parameter. The -[literal]#++automatic++# mode pushes changes to the browser automatically after -__access()__ finishes. With [literal]#++manual++# mode, you need to do the push -explicitly with [methodname]#push()#. If you use a Servlet 3.0 compatible -server, you also want to enable asynchronous processing with the -[literal]#++async-supported++# parameter. - -In a [filename]#web.xml#: - -[subs="normal"] ----- -<servlet> - ... - <init-param> - <param-name>pushmode</param-name> - <param-value>**automatic**</param-value> - </init-param> - <async-supported>**true**</async-supported> ----- - -[[application.environment.parameters.xsrf]] -=== Cross-Site Request Forgery Prevention - -Vaadin uses a protection mechanism to prevent malicious cross-site request -forgery (XSRF or CSRF), also called one-click attacks or session riding, which -is a security exploit for executing unauthorized commands in a web server. This -protection is normally enabled. However, it prevents some forms of testing of -Vaadin applications, such as with JMeter. In such cases, you can disable the -protection by setting the [parameter]#disable-xsrf-protection# parameter to -[literal]#++true++#. - -In a [filename]#web.xml#: - - ----- -<context-param> - <param-name>disable-xsrf-protection</param-name> - <param-value>true</param-value> -</context-param> ----- - - - -[[application.environment.configuration]] -== Deployment Configuration - -The Vaadin-specific parameters defined in the deployment configuration are -available from the [classname]#DeploymentConfiguration# object managed by the -[classname]#VaadinSession#. - - -[source, java] ----- -DeploymentConfiguration conf = - getSession().getConfiguration(); - -// Heartbeat interval in seconds -int heartbeatInterval = conf.getHeartbeatInterval(); ----- - -Parameters defined in the Java Servlet definition, such as the session timeout, -are available from the low-level [classname]#HttpSession# or -[classname]#PortletSession# object, which are wrapped in a -[classname]#WrappedSession# in Vaadin. You can access the low-level session -wrapper with [methodname]#getSession()# of the [classname]#VaadinSession#. - - -[source, java] ----- -WrappedSession session = getSession().getSession(); -int sessionTimeout = session.getMaxInactiveInterval(); ----- - -You can also access other [classname]#HttpSession# and -[classname]#PortletSession# session properties through the interface, such as -set and read session attributes that are shared by all servlets belonging to a -particular servlet or portlet session. - - - - diff --git a/documentation/application/application-errors.asciidoc b/documentation/application/application-errors.asciidoc deleted file mode 100644 index a6d873e8cf..0000000000 --- a/documentation/application/application-errors.asciidoc +++ /dev/null @@ -1,189 +0,0 @@ ---- -title: Handling Errors -order: 6 -layout: page ---- - -[[application.errors]] -= Handling Errors - -[[application.errors.error-indicator]] -== Error Indicator and Message - -All components have a built-in error indicator that is turned on if validating -the component fails, and can be set explicitly with -[methodname]#setComponentError()#. Usually, the error indicator is placed right -of the component caption. The error indicator is part of the component caption, -so its placement is usually managed by the layout in which the component is -contained, but some components handle it themselves. Hovering the mouse pointer -over the field displays the error message. - - -[source, java] ----- -textfield.setComponentError(new UserError("Bad value")); -button.setComponentError(new UserError("Bad click")); ----- - -The result is shown in <<figure.application.errors.error-indicator>>. - -[[figure.application.errors.error-indicator]] -.Error Indicator Active -image::img/errorindicator-example2.png[] - - -ifdef::web[] -[[application.errors.systemmessages]] -== Customizing System Messages - -System messages are notifications that indicate a major invalid state that -usually requires restarting the application. Session timeout is perhaps the most -typical such state. - -System messages are strings managed in the [classname]#SystemMessages# class. - -sessionExpired:: ((("session", -"expiration"))) -((("session", -"timeout"))) -The Vaadin session expired. A session expires if no server requests are made -during the session timeout period. The session timeout can be configured with -the [parameter]#session-timeout# parameter in [filename]#web.xml#, as described -in -<<dummy/../../../framework/application/application-environment#application.environment.web-xml,"Using -a web.xml Deployment Descriptor">>. - -communicationError:: An unspecified communication problem between the Vaadin Client-Side Engine and -the application server. The server may be unavailable or there is some other -problem. - -authenticationError:: This error occurs if 401 (Unauthorized) response to a request is received from -the server. - -internalError:: A serious internal problem, possibly indicating a bug in Vaadin Client-Side -Engine or in some custom client-side code. - -outOfSync:: The client-side state is invalid with respect to server-side state. - -cookiesDisabled:: Informs the user that cookies are disabled in the browser and the application -does not work without them. - - - -Each message has four properties: a short caption, the actual message, a URL to -which to redirect after displaying the message, and property indicating whether -the notification is enabled. - -Additional details may be written (in English) to the debug console window -described in -<<dummy/../../../framework/advanced/advanced-debug#advanced.debug,"Debug Mode -and Window">>. - -You can override the default system messages by setting the -[interfacename]#SystemMessagesProvider# in the [classname]#VaadinService#. You -need to implement the [methodname]#getSystemMessages()# method, which should -return a [classname]#SystemMessages# object. The easiest way to customize the -messages is to use a [classname]#CustomizedSystemMessages# object. - -You can set the system message provider in the -[methodname]#servletInitialized()# method of a custom servlet class, for example -as follows: - - -[source, java] ----- -getService().setSystemMessagesProvider( - new SystemMessagesProvider() { - @Override - public SystemMessages getSystemMessages( - SystemMessagesInfo systemMessagesInfo) { - CustomizedSystemMessages messages = - new CustomizedSystemMessages(); - messages.setCommunicationErrorCaption("Comm Err"); - messages.setCommunicationErrorMessage("This is bad."); - messages.setCommunicationErrorNotificationEnabled(true); - messages.setCommunicationErrorURL("http://vaadin.com/"); - return messages; - } -}); ----- - -See -<<dummy/../../../framework/application/application-lifecycle#application.lifecycle.servlet-service,"Vaadin -Servlet, Portlet, and Service">> for information about customizing Vaadin -servlets. - -endif::web[] - -ifdef::web[] -[[application.errors.unchecked-exceptions]] -== Handling Uncaught Exceptions - -Handling events can result in exceptions either in the application logic or in -the framework itself, but some of them may not be caught properly by the -application. Any such exceptions are eventually caught by the framework. It -delegates the exceptions to the [classname]#DefaultErrorHandler#, which displays -the error as a component error, that is, with a small red "!" -sign (depending -on the theme). If the user hovers the mouse pointer over it, the entire -backtrace of the exception is shown in a large tooltip box, as illustrated in -<<figure.application.errors.unchecked-exceptions>>. - -[[figure.application.errors.unchecked-exceptions]] -.Uncaught Exception in Component Error Indicator -image::img/errorindicator-exception.png[] - -You can customize the default error handling by implementing a custom -[interfacename]#ErrorHandler# and enabling it with -[methodname]#setErrorHandler()# in any of the components in the component -hierarchy, including the [classname]#UI#, or in the [classname]#VaadinSession# -object. You can either implement the [interfacename]#ErrorHandler# or extend the -[classname]#DefaultErrorHandler#. In the following example, we modify the -behavior of the default handler. - - -[source, java] ----- -// Here's some code that produces an uncaught exception -final VerticalLayout layout = new VerticalLayout(); -final Button button = new Button("Click Me!", - new Button.ClickListener() { - public void buttonClick(ClickEvent event) { - ((String)null).length(); // Null-pointer exception - } -}); -layout.addComponent(button); - -// Configure the error handler for the UI -UI.getCurrent().setErrorHandler(new DefaultErrorHandler() { - @Override - public void error(com.vaadin.server.ErrorEvent event) { - // Find the final cause - String cause = "<b>The click failed because:</b><br/>"; - for (Throwable t = event.getThrowable(); t != null; - t = t.getCause()) - if (t.getCause() == null) // We're at final cause - cause += t.getClass().getName() + "<br/>"; - - // Display the error message in a custom fashion - layout.addComponent(new Label(cause, ContentMode.HTML)); - - // Do the default error handling (optional) - doDefault(event); - } -}); ----- - -The above example also demonstrates how to dig up the final cause from the cause -stack. - -When extending [classname]#DefaultErrorHandler#, you can call -[methodname]#doDefault()# as was done above to run the default error handling, -such as set the component error for the component where the exception was -thrown. See the source code of the implementation for more details. You can call -[methodname]#findAbstractComponent(event)# to find the component that caused the -error. If the error is not associated with a component, it returns null. - -endif::web[] - - - diff --git a/documentation/application/application-events.asciidoc b/documentation/application/application-events.asciidoc deleted file mode 100644 index 94175d88e7..0000000000 --- a/documentation/application/application-events.asciidoc +++ /dev/null @@ -1,195 +0,0 @@ ---- -title: Handling Events with Listeners -order: 4 -layout: page ---- - -[[application.events]] -= Handling Events with Listeners - -Let us put into practice what we learned of event handling in -<<dummy/../../../framework/architecture/architecture-events#architecture.events,"Events -and Listeners">>. You can implement listener interfaces in a regular class, but -it brings the problem with differentiating between different event sources. -Using anonymous class for listeners is recommended in most cases. - -[[application.events.anonymous]] -== Using Anonymous Classes - -By far the easiest and the most common way to handle events in Java 6 and 7 is -to use anonymous local classes. It encapsulates the handling of events to where -the component is defined and does not require cumbering the managing class with -interface implementations. The following example defines an anonymous class that -inherits the [classname]#Button.ClickListener# interface. - - -[source, java] ----- -// Have a component that fires click events -final Button button = new Button("Click Me!"); - -// Handle the events with an anonymous class -button.addClickListener(new Button.ClickListener() { - public void buttonClick(ClickEvent event) { - button.setCaption("You made me click!"); - } -}); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#application.eventlistener.anonymous[on-line example, window="_blank"]. - -Local objects referenced from within an anonymous class, such as the -[classname]#Button# object in the above example, must be declared -[literal]#++final++#. - -Most components allow passing a listener to the constructor, thereby losing a -line or two. However, notice that if accessing the component that is constructed -from an anonymous class, you must use a reference that is declared before the -constructor is executed, for example as a member variable in the outer class. If -it is declared in the same expression where the constructor is called, it -doesn't yet exist. In such cases, you need to get a reference to the component -from the event object. - - -[source, java] ----- -final Button button = new Button("Click It!", - new Button.ClickListener() { - @Override - public void buttonClick(ClickEvent event) { - event.getButton().setCaption("Done!"); - } - }); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#application.eventlistener.constructor[on-line example, window="_blank"]. - - -[[application.events.java8]] -== Handling Events in Java 8 - -Java 8 introduced lambda expressions, which offer a replacement for listeners. -You can directly use lambda expressions in place of listeners that have only one -method to implement. - -For example, in the following, we use a lambda expression to handle button click -events in the constructor: - - -[source, java] ----- -layout.addComponent(new Button("Click Me!", - event -> event.getButton().setCaption("You made click!"))); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#application.eventlistener.java8[on-line example, window="_blank"]. - -Java 8 is the future that is already here, and as Vaadin API uses event -listeners extensively, using lambda expressions makes UI code much more -readable. - -Directing events to handler methods is easy with method references: - - -[source, java] ----- -public class Java8Buttons extends CustomComponent { - public Java8Buttons() { - setCompositionRoot(new HorizontalLayout( - new Button("OK", this::ok), - new Button("Cancel", this::cancel))); - } - - public void ok(ClickEvent event) { - event.getButton().setCaption ("OK!"); - } - - public void cancel(ClickEvent event) { - event.getButton().setCaption ("Not OK!"); - } -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#application.eventlistener.java8differentiation[on-line example, window="_blank"]. - - -[[application.events.classlistener]] -== Implementing a Listener in a Regular Class - -The following example follows a typical pattern where you have a -[classname]#Button# component and a listener that handles user interaction -(clicks) communicated to the application as events. Here we define a class that -listens to click events. - - -[source, java] ----- -public class MyComposite extends CustomComponent - implements Button.ClickListener { - Button button; // Defined here for access - - public MyComposite() { - Layout layout = new HorizontalLayout(); - - // Just a single component in this composition - button = new Button("Do not push this"); - button.addClickListener(this); - layout.addComponent(button); - - setCompositionRoot(layout); - } - - // The listener method implementation - public void buttonClick(ClickEvent event) { - button.setCaption("Do not push this again"); - } -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#application.eventlistener.classlistener[on-line example, window="_blank"]. - - -[[application.events.differentiation]] -== Differentiating Between Event Sources - -If an application receives events of the same type from multiple sources, such -as multiple buttons, it has to be able to distinguish between the sources. If -using a regular class listener, distinguishing between the components can be -done by comparing the source of the event with each of the components. The -method for identifying the source depends on the event type. - - -[source, java] ----- -public class TheButtons extends CustomComponent - implements Button.ClickListener { - Button onebutton; - Button toobutton; - - public TheButtons() { - onebutton = new Button("Button One", this); - toobutton = new Button("A Button Too", this); - - // Put them in some layout - Layout root = new HorizontalLayout(); - root.addComponent(onebutton); - root.addComponent(toobutton); - setCompositionRoot(root); - } - - @Override - public void buttonClick(ClickEvent event) { - // Differentiate targets by event source - if (event.getButton() == onebutton) - onebutton.setCaption ("Pushed one"); - else if (event.getButton() == toobutton) - toobutton.setCaption ("Pushed too"); - } -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#application.eventlistener.differentiation[on-line example, window="_blank"]. - -Other techniques exist for separating between event sources, such as using -object properties, names, or captions to separate between them. Using captions -or any other visible text is generally discouraged, as it may create problems -for internationalization. Using other symbolic strings can also be dangerous, -because the syntax of such strings is checked only at runtime. - - - - diff --git a/documentation/application/application-lifecycle.asciidoc b/documentation/application/application-lifecycle.asciidoc deleted file mode 100644 index 269f3d75b5..0000000000 --- a/documentation/application/application-lifecycle.asciidoc +++ /dev/null @@ -1,502 +0,0 @@ ---- -title: Application Lifecycle -order: 8 -layout: page ---- - -[[application.lifecycle]] -= Application Lifecycle - -In this section, we look into more technical details of application deployment, -user sessions, and UI instance lifecycle. These details are not generally needed -for writing Vaadin applications, but may be useful for understanding how they -actually work and, especially, in what circumstances their execution ends. - -[[application.lifecycle.deployment]] -== Deployment - -Before a Vaadin application can be used, it has to be deployed to a Java web -server, as described in -<<dummy/../../../framework/application/application-environment#application.environment,"Deploying -an Application">>. Deploying reads the servlet classes annotated with the -[literal]#++@WebServlet++# annotation (Servlet 3.0) or the [filename]#web.xml# -deployment descriptor (Servlet 2.4) in the application to register servlets for -specific URL paths and loads the classes. Deployment does not yet normally run -any code in the application, although static blocks in classes are executed when -they are loaded. - -[[application.lifecycle.deployment.redeployment]] -=== Undeploying and Redeploying - -Applications are undeployed when the server shuts down, during redeployment, and -when they are explicitly undeployed. Undeploying a server-side Vaadin -application ends its execution, all application classes are unloaded, and the -heap space allocated by the application is freed for garbage-collection. - -If any user sessions are open at this point, the client-side state of the UIs is -left hanging and an Out of Sync error is displayed on the next server request. - - -[[application.lifecycle.deployment.serialization]] -=== Redeployment and Serialization - -Some servers, such as Tomcat, support __hot deployment__, where the classes are -reloaded while preserving the memory state of the application. This is done by -serializing the application state and then deserializing it after the classes -are reloaded. This is, in fact, done with the basic Eclipse setup with Tomcat -and if a UI is marked as [classname]#@PreserveOnRefresh#, you may actually need -to give the [literal]#++?restartApplication++# URL parameter to force it to -restart when you reload the page. Tools such as JRebel go even further by -reloading the code in place without need for serialization. The server can also -serialize the application state when shutting down and restarting, thereby -preserving sessions over restarts. - -Serialization requires that the applications are __serializable__, that is, all -classes implement the [interfacename]#Serializable# interface. All Vaadin -classes do. If you extend them or implement interfaces, you can provide an -optional serialization key, which is automatically generated by Eclipse if you -use it. Serialization is also used for clustering and cloud computing, such as -with Google App Engine. - -ifdef::web[] -For more about that topic, see -<<dummy/../../../framework/advanced/advanced-gae#advanced.gae,"Google App Engine -Integration">>. -endif::web[] - - - -[[application.lifecycle.servlet-service]] -== Vaadin Servlet, Portlet, and Service - -The [classname]#VaadinServlet#, or [classname]#VaadinPortlet# in a portal, -receives all server requests mapped to it by its URL, as defined in the -deployment configuration, and associates them with sessions. The sessions -further associate the requests with particular UIs. - -When servicing requests, the Vaadin servlet or portlet handles all tasks common -to both servlets and portlets in a [classname]#VaadinService#. It manages -sessions, gives access to the deployment configuration information, handles -system messages, and does various other tasks. Any further servlet or portlet -specific tasks are handled in the corresponding -[classname]#VaadinServletService# or [classname]#VaadinPortletService#. The -service acts as the primary low-level customization layer for processing -requests. - -[[application.lifecycle.servlet-service.servletcustomization]] -=== Customizing Vaadin Servlet - -Many common configuration tasks need to be done in the servlet class, which you -already have if you are using the [literal]#++@WebServlet++# annotation for -Servlet 3.0 to deploy the application. You can handle most customization by -overriding the [methodname]#servletInitialized()# method, where the -[classname]#VaadinService# object is available with [methodname]#getService()# -(it would not be available in a constructor). You should always call -[methodname]#super.servletInitialized()# in the beginning. - - -[source, java] ----- -public class MyServlet extends VaadinServlet { - @Override - protected void servletInitialized() - throws ServletException { - super.servletInitialized(); - - ... - } -} ----- - -To add custom functionality around request handling, you can override the -[methodname]#service()# method. - -To use the custom servlet class in a Servlet 2.4 project, you need to define it -in the [filename]#web.xml# deployment descriptor instead of the regular -[classname]#VaadinServlet# class, as described in -<<dummy/../../../framework/application/application-environment#application.environment.web-xml,"Using -a web.xml Deployment Descriptor">>. - - -ifdef::web[] -[[application.lifecycle.servlet-service.portletcustomization]] -=== Customizing Vaadin Portlet - -__To Be Done__ - -endif::web[] - -ifdef::web[] -[[application.lifecycle.servlet-service.servicecustomization]] -=== Customizing Vaadin Service - -To customize [classname]#VaadinService#, you first need to extend the -[classname]#VaadinServlet# or - [classname]#Portlet# class and override the -[methodname]#createServletService()# to create a custom service object. - -endif::web[] - - -[[application.lifecycle.session]] -== User Session - -((("session"))) -A user session begins when a user first makes a request to a Vaadin servlet or -portlet by opening the URL for a particular [classname]#UI#. All server requests -belonging to a particular UI class are processed by the -[classname]#VaadinServlet# or [classname]#VaadinPortlet# class. When a new -client connects, it creates a new user session, represented by an instance of -[classname]#VaadinSession#. Sessions are tracked using cookies stored in the -browser. - -You can obtain the [classname]#VaadinSession# of a [classname]#UI# with -[methodname]#getSession()# or globally with -[methodname]#VaadinSession.getCurrent()#. It also provides access to the -lower-level session objects, [interfacename]#HttpSession# and -[interfacename]#PortletSession#, through a [classname]#WrappedSession#. You can -also access the deployment configuration through [classname]#VaadinSession#, as -described in -<<dummy/../../../framework/application/application-environment#application.environment.configuration,"Deployment -Configuration">>. - -A session ends after the last [classname]#UI# instance expires or is closed, as -described later. - -[[application.lifecycle.session.init]] -=== Handling Session Initialization and Destruction - -((("[classname]#SessionInitListener#"))) -((("[classname]#SessionDestroyListener#"))) -((("[classname]#VaadinService#"))) -You can handle session initialization and destruction by implementing a -[interfacename]#SessionInitListener# or [interfacename]#SessionDestroyListener#, -respectively, to the [classname]#VaadinService#. -((("[methodname]#servletInitialized()#"))) -((("[classname]#VaadinServlet#"))) -You can do that best by extending [classname]#VaadinServlet# and overriding the -[methodname]#servletInitialized()# method, as outlined in -<<application.lifecycle.servlet-service>>. - - -[source, java] ----- -public class MyServlet extends VaadinServlet - implements SessionInitListener, SessionDestroyListener { - - @Override - protected void servletInitialized() throws ServletException { - super.servletInitialized(); - getService().addSessionInitListener(this); - getService().addSessionDestroyListener(this); - } - - @Override - public void sessionInit(SessionInitEvent event) - throws ServiceException { - // Do session start stuff here - } - - @Override - public void sessionDestroy(SessionDestroyEvent event) { - // Do session end stuff here - } -} ----- - -If using Servlet 2.4, you need to configure the custom servlet class in the -[parameter]#servlet-class# parameter in the [filename]#web.xml# descriptor -instead of the [classname]#VaadinServlet#, as described in -<<dummy/../../../framework/application/application-environment#application.environment.web-xml,"Using -a web.xml Deployment Descriptor">>. - - - -[[application.lifecycle.ui]] -== Loading a UI - -((("UI", "loading"))) -When a browser first accesses a URL mapped to the servlet of a particular UI -class, the Vaadin servlet generates a loader page. The page loads the -client-side engine (widget set), which in turn loads the UI in a separate -request to the Vaadin servlet. - -((("[classname]#UIProvider#"))) -((("[classname]#DefaultUIProvider#"))) -((("[classname]#BrowserWindowOpener#"))) -A [classname]#UI# instance is created when the client-side engine makes its -first request. The servlet creates the UIs using a [classname]#UIProvider# -registered in the [classname]#VaadinSession# instance. A session has at least a -[classname]#DefaultUIProvider# for managing UIs opened by the user. If the -application lets the user open popup windows with a -[classname]#BrowserWindowOpener#, each of them has a dedicated special UI -provider. - -((("[classname]#VaadinRequest#"))) -((("[methodname]#init()#"))) -Once a new UI is created, its [methodname]#init()# method is called. The method -gets the request as a [classname]#VaadinRequest#. - -[[application.lifecycle.ui.loaderpage]] -=== Customizing the Loader Page - -The HTML content of the loader page is generated as an HTML DOM object, which -can be customized by implementing a [interfacename]#BootstrapListener# that -modifies the DOM object. To do so, you need to extend the -[classname]#VaadinServlet# and add a [interfacename]#SessionInitListener# to the -service object, as outlined in <<application.lifecycle.session>>. You can then -add the bootstrap listener to a session with -[methodname]#addBootstrapListener()# when the session is initialized. - -Loading the widget set is handled in the loader page with functions defined in a -separate [filename]#vaadinBootstrap.js# script. - -You can also use entirely custom loader code, such as in a static HTML page, as -described in -<<dummy/../../../framework/advanced/advanced-embedding#advanced.embedding,"Embedding -UIs in Web Pages">>. - - -[[application.lifecycle.ui.uiprovider]] -=== Custom UI Providers - -((("[interfacename]#UIProvider#", "custom"))) -You can create UI objects dynamically according to their request parameters, -such as the URL path, by defining a custom [interfacename]#UIProvider#. You need -to add custom UI providers to the session object which calls them. The providers -are chained so that they are requested starting from the one added last, until -one returns a UI (otherwise they return null). You can add a UI provider to a -session most conveniently by implementing a custom servlet and adding the UI -provider to sessions in a [interfacename]#SessionInitListener#. - -You can find an example of custom UI providers in -<<dummy/../../../mobile/mobile-features#mobile.features.fallback,"Providing a -Fallback UI">>. - - -[[application.lifecycle.ui.preserving]] -=== Preserving UI on Refresh - -((("UI", "preserving on refresh"))) -((("[classname]#@PreserveOnRefresh#"))) -Reloading a page in the browser normally spawns a new [classname]#UI# instance -and the old UI is left hanging, until cleaned up after a while. This can be -undesired as it resets the UI state for the user. To preserve the UI, you can -use the [classname]#@PreserveOnRefresh# annotation for the UI class. You can -also use a [classname]#UIProvider# with a custom implementation of -[methodname]#isUiPreserved()#. - - -[source, java] ----- -@PreserveOnRefresh -public class MyUI extends UI { ----- - -Adding the ?restartApplication parameter in the URL tells the Vaadin servlet to -create a new [classname]#UI# instance when loading the page, thereby overriding -the [classname]#@PreserveOnRefresh#. This is often necessary when developing -such a UI in Eclipse, when you need to restart it after redeploying, because -Eclipse likes to persist the application state between redeployments. If you -also include a URI fragment, the parameter should be given before the fragment. - - - -[[application.lifecycle.ui-expiration]] -== UI Expiration - -((("UI", "expiration"))) -[classname]#UI# instances are cleaned up if no communication is received from -them after some time. If no other server requests are made, the client-side -sends keep-alive heartbeat requests. A UI is kept alive for as long as requests -or heartbeats are received from it. It expires if three consecutive heartbeats -are missed. - -The heartbeats occur at an interval of 5 minutes, which can be changed with the -[parameter]#heartbeatInterval# parameter of the servlet. You can configure the -parameter in [classname]#@VaadinServletConfiguration# or in [filename]#web.xml# -as described in -<<dummy/../../../framework/application/application-environment#application.environment.parameters,"Other -Servlet Configuration Parameters">>. - -When the UI cleanup happens, a [classname]#DetachEvent# is sent to all -[classname]#DetachListener#s added to the UI. When the [classname]#UI# is -detached from the session, [methodname]#detach()# is called for it. - - -[[application.lifecycle.ui-closing]] -== Closing UIs Explicitly - -((("UI", "closing"))) -((("[methodname]#close()#", -"UI"))) -You can explicitly close a UI with [methodname]#close()#. The method marks the -UI to be detached from the session after processing the current request. -Therefore, the method does not invalidate the UI instance immediately and the -response is sent as usual. - -Detaching a UI does not close the page or browser window in which the UI is -running and further server request will cause error. Typically, you either want -to close the window, reload it, or redirect it to another URL. If the page is a -regular browser window or tab, browsers generally do not allow closing them -programmatically, but redirection is possible. You can redirect the window to -another URL with [methodname]#setLocation()#, as is done in the examples in -<<application.lifecycle.session-closing>>. You can close popup windows by making -JavaScript [methodname]#close()# call for them, as described in -<<dummy/../../../framework/advanced/advanced-windows#advanced.windows.popup-closing,"Closing -Popup Windows">>. - -If you close other UI than the one associated with the current request, they -will not be detached at the end of the current request, but after next request -from the particular UI. You can make that occur quicker by making the UI -heartbeat faster or immediately by using server push. - - -[[application.lifecycle.session-expiration]] -== Session Expiration - -((("session", "expiration"))) -A session is kept alive by server requests caused by user interaction with the -application as well as the heartbeat monitoring of the UIs. Once all UIs have -expired, the session still remains. It is cleaned up from the server when the -session timeout configured in the web application expires. - -((("closeIdleSessions"))) -If there are active UIs in an application, their heartbeat keeps the session -alive indefinitely. You may want to have the sessions timeout if the user is -inactive long enough, which is the original purpose of the session timeout -setting. ((("session", -"timeout"))) -((("closeIdleSessions"))) -If the [parameter]#closeIdleSessions# parameter of the servlet is set to -[literal]#++true++# in the [filename]#web.xml#, as described in -<<dummy/../../../framework/application/application-environment#application.environment.web-xml,"Using -a web.xml Deployment Descriptor">>, the session and all of its UIs are closed -when the timeout specified by the [parameter]#session-timeout# parameter of the -servlet expires after the last non-heartbeat request. Once the session is gone, -the browser will show an Out Of Sync error on the next server request. -((("redirection"))) -To avoid the ugly message, you may want to set a redirect URL for the UIs - -ifdef::web[] -, as described in -<<dummy/../../../framework/application/application-errors#application.errors.systemmessages,"Customizing -System -Messages">> -endif::web[] -. - -The related configuration parameters are described in -<<dummy/../../../framework/application/application-environment#application.environment.parameters,"Other -Servlet Configuration Parameters">>. - -((("[interfacename]#SessionDestroyListener#"))) -You can handle session expiration on the server-side with a -[interfacename]#SessionDestroyListener#, as described in -<<application.lifecycle.session>>. - - -[[application.lifecycle.session-closing]] -== Closing a Session - -((("session", "closing"))) -((("[methodname]#close()#"))) -You can close a session by calling [methodname]#close()# on the -[classname]#VaadinSession#. It is typically used when logging a user out and the -session and all the UIs belonging to the session should be closed. The session -is closed immediately and any objects related to it are not available after -calling the method. - -When closing the session from a UI, you typically want to redirect the user to -another URL. -((("redirection"))) -((("[methodname]#setLocation()#"))) -((("Page", -"[methodname]#setLocation()#"))) -You can do the redirect using the [methodname]#setLocation()# method in -[classname]#Page#. This needs to be done before closing the session, as the UI -or page are not available after that. In the following example, we display a -logout button, which closes the user session. - -((("logout"))) - -[source, java] ----- -public class MyUI extends UI { - @Override - protected void init(VaadinRequest request) { - setContent(new Button("Logout", event -> {// Java 8 - // Redirect this page immediately - getPage().setLocation("/myapp/logout.html"); - - // Close the session - getSession().close(); - })); - - // Notice quickly if other UIs are closed - setPollInterval(3000); - } -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#application.lifecycle.closing[on-line example, window="_blank"]. - -This is not enough. When a session is closed from one UI, any other UIs attached -to it are left hanging. When the client-side engine notices that a UI and the -session are gone on the server-side, it displays a "Session Expired" message -and, by default, reloads the UI when the message is clicked. ((("session", -"expiration"))) -((("redirection"))) -((("system -messages"))) -You can customize the message and the redirect URL in the system messages - -ifdef::web[] -, as described in -<<dummy/../../../framework/application/application-errors#application.errors.systemmessages,"Customizing -System -Messages">> -endif::web[] -. - -((("heartbeat"))) -((("UI", -"heartbeat"))) -((("push"))) -((("server -push"))) -The client-side engine notices the expiration when user interaction causes a -server request to be made or when the keep-alive heartbeat occurs. To make the -UIs detect the situation faster, you need to make the heart beat faster, as was -done in the example above. You can also use server push to close the other UIs -immediately, as is done in the following example. Access to the UIs must be -synchronized as described in -<<dummy/../../../framework/advanced/advanced-push#advanced.push,"Server Push">>. - - -[source, java] ----- -@Push -public class MyPushyUI extends UI { - @Override - protected void init(VaadinRequest request) { - setContent(new Button("Logout", event -> {// Java 8 - for (UI ui: VaadinSession.getCurrent().getUIs()) - ui.access(() -> { - // Redirect from the page - ui.getPage().setLocation("/logout.html"); - }); - - getSession().close(); - })); - } -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#application.lifecycle.closingall[on-line example, window="_blank"]. - -In the above example, we assume that all UIs in the session have push enabled -and that they should be redirected; popups you might want to close instead of -redirecting. It is not necessary to call [methodname]#close()# for them -individually, as we close the entire session afterwards. - - - - diff --git a/documentation/application/application-notifications.asciidoc b/documentation/application/application-notifications.asciidoc deleted file mode 100644 index d58bf7b59a..0000000000 --- a/documentation/application/application-notifications.asciidoc +++ /dev/null @@ -1,177 +0,0 @@ ---- -title: Notifications -order: 7 -layout: page ---- - -[[application.notifications]] -= Notifications - -Notifications are error or information boxes that appear briefly, typically at -the center of the screen. A notification box has a caption and an optional -description and icon. The box stays on the screen either for a preset time or -until the user clicks it. The notification type defines the default appearance -and behaviour of a notification. - -There are two ways to create a notification. The easiest is to use a static -shorthand [methodname]#Notification.show()# method, which takes the caption of -the notification as a parameter, and an optional description and notification -type, and displays it in the current page. - - -[source, java] ----- -Notification.show("This is the caption", - "This is the description", - Notification.Type.WARNING_MESSAGE); ----- - -[[figure.notification.example1]] -.Notification -image::img/notification-example2.png[] - -For more control, you can create a [classname]#Notification# object. Different -constructors exist for taking just the caption, and optionally the description, -notification type, and whether HTML is allowed or not. Notifications are shown -in a [classname]#Page#, typically the current page. - - -[source, java] ----- -new Notification("This is a warning", - "<br/>This is the <i>last</i> warning", - Notification.TYPE_WARNING_MESSAGE, true) - .show(Page.getCurrent()); ----- - -The caption and description are by default written on the same line. If you want -to have a line break between them, use the HTML line break markup " -[literal]#++<br/>++#" if HTML is enabled, or " [literal]#++\n++#" if not. HTML -is disabled by default, but can be enabled with -[methodname]#setHtmlContentAllowed(true)#. When enabled, you can use any HTML -markup in the caption and description of a notification. If it is in any way -possible to get the notification content from user input, you should either -disallow HTML or sanitize the content carefully, as noted in -<<dummy/../../../framework/advanced/advanced-security#advanced.security.sanitizing,"Sanitizing -User Input to Prevent Cross-Site Scripting">>. - -[[figure.notification.example2]] -.Notification with HTML Formatting -image::img/notification-example3.png[] - -[[application.notifications.type]] -== Notification Type - -The notification type defines the overall default style and behaviour of a -notification. If no notification type is given, the "humanized" type is used as -the default. The notification types, listed below, are defined in the -[classname]#Notification.Type# class. - -[parameter]#TYPE_HUMANIZED_MESSAGE# image:[]:: A user-friendly message that does not annoy too much: it does not require -confirmation by clicking and disappears quickly. It is centered and has a -neutral gray color. - -[parameter]#TYPE_WARNING_MESSAGE# image:[]:: Warnings are messages of medium importance. They are displayed with colors that -are neither neutral nor too distractive. A warning is displayed for 1.5 seconds, -but the user can click the message box to dismiss it. The user can continue to -interact with the application while the warning is displayed. - -[parameter]#TYPE_ERROR_MESSAGE# image:[]:: Error messages are notifications that require the highest user attention, with -alert colors, and they require the user to click the message to dismiss it. The -error message box does not itself include an instruction to click the message, -although the close box in the upper right corner indicates it visually. Unlike -with other notifications, the user can not interact with the application while -the error message is displayed. - -[parameter]#TYPE_TRAY_NOTIFICATION# image:[]:: Tray notifications are displayed in the "system tray" area, that is, in the -lower-right corner of the browser view. As they do not usually obscure any user -interface, they are displayed longer than humanized or warning messages, 3 -seconds by default. The user can continue to interact with the application -normally while the tray notification is displayed. - - - - -ifdef::web[] -[[application.notifications.customization]] -== Customizing Notifications - -All of the features of specific notification types can be controlled with the -[classname]#Notification# properties. Once configured, you need to show it in -the current page. - - -[source, java] ----- -// Notification with default settings for a warning -Notification notif = new Notification( - "Warning", - "<br/>Area of reindeer husbandry", - Notification.TYPE_WARNING_MESSAGE); - -// Customize it -notif.setDelayMsec(20000); -notif.setPosition(Position.BOTTOM_RIGHT); -notif.setStyleName("mystyle"); -notif.setIcon(new ThemeResource("img/reindeer.png")); - -// Show it in the page -notif.show(Page.getCurrent()); ----- - -The [methodname]#setPosition()# method allows setting the positioning of the -notification. The position can be specified by any of the constants defined in -the [classname]#Position# enum. - -The [methodname]#setDelayMSec()# allows setting the time for how long the -notification is displayed in milliseconds. Parameter value [literal]#++-1++# -means that the message is displayed until the user clicks the message box. It -also prevents interaction with other parts of the application window, which is -the default behaviour for error notifications. It does not, however, add a close -box that the error notification has. - -endif::web[] - -[[application.notifications.css]] -== Styling with CSS - - -[source, css] ----- -.v-Notification {} - .popupContent {} - .gwt-HTML {} - h1 {} - p {} ----- - -The notification box is a floating [literal]#++div++# element under the -[literal]#++body++# element of the page. It has an overall -[literal]#++v-Notification++# style. The content is wrapped inside an element -with [literal]#++popupContent++# style. The caption is enclosed within an -[literal]#++h1++# element and the description in a [literal]#++p++# element. - -To customize it, add a style for the [classname]#Notification# object with -[methodname]#setStyleName("mystyle")#, and make the settings in the theme, for -example as follows: - - -[source, css] ----- -.v-Notification.mystyle { - background: #FFFF00; - border: 10px solid #C00000; - color: black; -} ----- - -The result is shown, with the icon set earlier in the customization example, in -<<figure.application.errors.notifications.css>>. - -[[figure.application.errors.notifications.css]] -.A Styled Notification -image::img/notification-customization.png[] - - - - diff --git a/documentation/application/application-overview.asciidoc b/documentation/application/application-overview.asciidoc deleted file mode 100644 index b70df520f9..0000000000 --- a/documentation/application/application-overview.asciidoc +++ /dev/null @@ -1,158 +0,0 @@ ---- -title: Overview -order: 1 -layout: page ---- - -[[application.overview]] -= Overview - -A server-side Vaadin application runs as a Java Servlet in a servlet container. -The Java Servlet API is, however, hidden behind the framework. The user -interface of the application is implemented as a __UI__ class, which needs to -create and manage the user interface components that make up the user interface. -User input is handled with event listeners, although it is also possible to bind -the user interface components directly to data. The visual style of the -application is defined in themes as CSS or Sass. Icons, other images, and -downloadable files are handled as __resources__, which can be external or served -by the application server or the application itself. - -[[figure.application.architecture]] -.Server-Side Application Architecture -image::img/application-architecture-hi.png[] - -<<figure.application.architecture>> illustrates the basic architecture of an -application made with the Vaadin Framework, with all the major elements, which -are introduced below and discussed in detail in this chapter. - -First of all, a Vaadin application must have one or more UI classes that extend -the abstract [classname]#com.vaadin.ui.UI# class and implement the -[methodname]#init()# method. A custom theme can be defined as an annotation for -the UI. - - -[source, java] ----- -@Theme("hellotheme") -public class HelloWorld extends UI { - protected void init(VaadinRequest request) { - ... initialization code goes here ... - } -} ----- - -A UI is a viewport to a Vaadin application running in a web page. A web page can -actually have multiple such UIs within it. Such situation is typical especially -with portlets in a portal. An application can run in multiple browser windows, -each having a distinct [classname]#UI# instance. The UIs of an application can -be the same UI class or different. - -Vaadin framework handles servlet requests internally and associates the requests -with user sessions and a UI state. Because of this, you can develop Vaadin -applications much like you would develop desktop applications. - -The most important task in the initialization is the creation of the initial -user interface. This, and the deployment of a UI as a Java Servlet in the -Servlet container, as described in -<<dummy/../../../framework/application/application-environment#application.environment,"Deploying -an Application">>, are the minimal requirements for an application. - -Below is a short overview of the other basic elements of an application besides -UI: - -UI:: A __UI__ represents an HTML fragment in which a Vaadin application runs in a web -page. It typically fills the entire page, but can also be just a part of a page. -You normally develop a Vaadin application by extending the [classname]#UI# class -and adding content to it. A UI is essentially a viewport connected to a user -session of an application, and you can have many such views, especially in a -multi-window application. Normally, when the user opens a new page with the URL -of the Vaadin UI, a new [classname]#UI# (and the associated [classname]#Page# -object) is automatically created for it. All of them share the same user -session. - -+ -The current UI object can be accessed globally with -[methodname]#UI.getCurrent()#. The static method returns the thread-local UI -instance for the currently processed request -ifdef::web[] - (see -<<dummy/../../../framework/advanced/advanced-global#advanced.global.threadlocal,"ThreadLocal -Pattern">>) -endif::web[] -. - -Page:: A [classname]#UI# is associated with a [classname]#Page# object that represents -the web page as well as the browser window in which the UI runs. - -+ -The [classname]#Page# object for the currently processed request can be accessed -globally from a Vaadin application with [methodname]#Page.getCurrent()#. This is -equivalent to calling [methodname]#UI.getCurrent().getPage()#. - -Vaadin Session:: A [classname]#VaadinSession# object represents a user session with one or more -UIs open in the application. A session starts when a user first opens a UI of a -Vaadin application, and closes when the session expires in the server or when it -is closed explicitly. - -User Interface Components:: The user interface consists of components that are created by the application. -They are laid out hierarchically using special __layout components__, with a -content root layout at the top of the hierarchy. User interaction with the -components causes __events__ related to the component, which the application can -handle. __Field components__ are intended for inputting values and can be -directly bound to data using the Vaadin Data Model. You can make your own user -interface components through either inheritance or composition. For a thorough -reference of user interface components, see -<<dummy/../../../framework/components/components-overview.asciidoc#components.overview,"User -Interface Components">>, for layout components, see -<<dummy/../../../framework/layout/layout-overview.asciidoc#layout.overview,"Managing -Layout">>, and for compositing components, see -<<dummy/../../../framework/components/components-customcomponent#components.customcomponent,"Composition -with CustomComponent">>. - -Events and Listeners:: Vaadin follows an event-driven programming paradigm, in which events, and -listeners that handle the events, are the basis of handling user interaction in -an application (although also server push is possible as described in -<<dummy/../../../framework/advanced/advanced-push#advanced.push,"Server -Push">>). -<<dummy/../../../framework/architecture/architecture-events#architecture.events,"Events -and Listeners">> gave an introduction to events and listeners from an -architectural point-of-view, while -<<dummy/../../../framework/application/application-events#application.events,"Handling -Events with Listeners">> later in this chapter takes a more practical view. - -Resources:: A user interface can display images or have links to web pages or downloadable -documents. These are handled as __resources__, which can be external or provided -by the web server or the application itself. -<<dummy/../../../framework/application/application-resources#application.resources,"Images -and Other Resources">> gives a practical overview of the different types of -resources. - -Themes:: The presentation and logic of the user interface are separated. While the UI -logic is handled as Java code, the presentation is defined in __themes__ as CSS -or SCSS. Vaadin includes some built-in themes. User-defined themes can, in -addition to style sheets, include HTML templates that define custom layouts and -other theme resources, such as images. Themes are discussed in detail in -<<dummy/../../../framework/themes/themes-overview.asciidoc#themes.overview,"Themes">>, -custom layouts in -<<dummy/../../../framework/layout/layout-customlayout#layout.customlayout,"Custom -Layouts">>, and theme resources in -<<dummy/../../../framework/application/application-resources#application.resources.theme,"Theme -Resources">>. - -Data Binding:: Field components are essentially views to data, represented in the __Vaadin Data -Model__. Using the data model, the components can get their values from and -update user input to the data model directly, without the need for any control -code. A field component is always bound to a __property__ and a group of fields -to an __item__ that holds the properties. Items can be collected in a -__container__, which can act as a data source for some components such as tables -or lists. While all the components have a default data model, they can be bound -to a user-defined data source. For example, you can bind a [classname]#Table# -component to an SQL query response. For a complete overview of data binding in -Vaadin, please refer to -<<dummy/../../../framework/datamodel/datamodel-overview.asciidoc#datamodel.overview,"Binding -Components to Data">>. - - - - - diff --git a/documentation/application/application-resources.asciidoc b/documentation/application/application-resources.asciidoc deleted file mode 100644 index b5f5db91f2..0000000000 --- a/documentation/application/application-resources.asciidoc +++ /dev/null @@ -1,245 +0,0 @@ ---- -title: Images and Other Resources -order: 5 -layout: page ---- - -[[application.resources]] -= Images and Other Resources - -Web applications can display various __resources__, such as images, other -embedded content, or downloadable files, that the browser has to load from the -server. Image resources are typically displayed with the [classname]#Image# -component or as component icons. Flash animations can be displayed with -[classname]#Flash#, embedded browser frames with [classname]#BrowserFrame#, and -other content with the [classname]#Embedded# component, as described in -<<dummy/../../../framework/components/components-embedded#components.embedded,"Embedded -Resources">>. Downloadable files are usually provided by clicking a -[classname]#Link#. - -There are several ways to how such resources can be provided by the web server. -Static resources can be provided without having to ask for them from the -application. For dynamic resources, the user application must be able to create -them dynamically. The resource request interfaces in Vaadin allow applications -to both refer to static resources as well as dynamically create them. The -dynamic creation includes the [classname]#StreamResource# class and the -[interfacename]#RequestHandler# described in -<<dummy/../../../framework/advanced/advanced-requesthandler#advanced.requesthandler,"Request -Handlers">>. - -Vaadin also provides low-level facilities for retrieving the URI and other -parameters of a HTTP request. We will first look into how applications can -provide various kinds of resources and then look into low-level interfaces for -handling URIs and parameters to provide resources and functionalities. - -Notice that using request handlers to create "pages" is not normally meaningful -in Vaadin or in AJAX applications generally. Please see -<<dummy/../../../framework/architecture/architecture-technology#architecture.technology.ajax,"AJAX">> -for a detailed explanation. - -[[application.resources.api]] -== Resource Interfaces and Classes - -The resource classes in Vaadin are grouped under two interfaces: a generic -[classname]#Resource# interface and a more specific -[classname]#ConnectorResource# interface for resources provided by the servlet. - -[[figure.resource.classdiagram]] -.Resource Interface and Class Diagram -image::img/resource_classdiagram-hi.png[] - - -[[application.resources.file]] -== File Resources - -File resources are files stored anywhere in the file system. As such, they can -not be retrieved by a regular URL from the server, but need to be requested -through the Vaadin servlet. The use of file resources is typically necessary for -persistent user data that is not packaged in the web application, which would -not be persistent over redeployments. - -A file object that can be accessed as a file resource is defined with the -standard [classname]#java.io.File# class. You can create the file either with an -absolute or relative path, but the base path of the relative path depends on the -installation of the web server. For example, with Apache Tomcat, the default -current directory would be the installation path of Tomcat. - -In the following example, we provide an image resource from a file stored in the -web application. Notice that the image is stored under the [filename]#WEB-INF# -folder, which is a special folder that is never accessible using an URL, unlike -the other folders of a web application. This is a security solution - another -would be to store the resource elsewhere in the file system. - - -[source, java] ----- -// Find the application directory -String basepath = VaadinService.getCurrent() - .getBaseDirectory().getAbsolutePath(); - -// Image as a file resource -FileResource resource = new FileResource(new File(basepath + - "/WEB-INF/images/image.png")); - -// Show the image in the application -Image image = new Image("Image from file", resource); - -// Let the user view the file in browser or download it -Link link = new Link("Link to the image file", resource); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#application.resources.fileresource[on-line example, window="_blank"]. - -The result, as well as the folder structure where the file is stored under a -regular Eclipse Vaadin project, is shown in -<<figure.application.resources.file>>. - -[[figure.application.resources.file]] -.File Resource -image::img/resource-fileresource.png[] - - -[[application.resources.class]] -== Class Loader Resources - -The [classname]#ClassResource# allows resources to be loaded from the class path -using Java Class Loader. Normally, the relevant class path entry is the -[filename]#WEB-INF/classes# folder under the web application, where the Java -compilation should compile the Java classes and copy other files from the source -tree. - -The one-line example below loads an image resource from the application package -and displays it in an [classname]#Image# component. - - -[source, java] ----- -layout.addComponent(new Image(null, - new ClassResource("smiley.jpg"))); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#application.resources.classresource[on-line example, window="_blank"]. - - -[[application.resources.theme]] -== Theme Resources - -Theme resources of [classname]#ThemeResource# class are files, typically images, -included in a theme. A theme is located with the path -[filename]#VAADIN/themes/themename# in a web application. The name of a theme -resource is given as the parameter for the constructor, with a path relative to -the theme folder. - - -[source, java] ----- -// A theme resource in the current theme ("mytheme") -// Located in: VAADIN/themes/mytheme/img/themeimage.png -ThemeResource resource = new ThemeResource("img/themeimage.png"); - -// Use the resource -Image image = new Image("My Theme Image", resource); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#application.resources.themeresource[on-line example, window="_blank"]. - -The result is shown in <<figure.application.resources.theme>>, also illustrating -the folder structure for the theme resource file in an Eclipse project. - -[[figure.application.resources.theme]] -.Theme Resources -image::img/resource-themeimage.png[] - -To use theme resources, you must set the theme for the UI. See -<<dummy/../../../framework/themes/themes-overview.asciidoc#themes.overview,"Themes">> -for more information regarding themes. - - -[[application.resources.stream]] -== Stream Resources - -Stream resources allow creating dynamic resource content. Charts are typical -examples of dynamic images. To define a stream resource, you need to implement -the [classname]#StreamResource.StreamSource# interface and its -[methodname]#getStream()# method. The method needs to return an -[classname]#InputStream# from which the stream can be read. - -The following example demonstrates the creation of a simple image in PNG image -format. - - -[source, java] ----- -import java.awt.image.*; - -public class MyImageSource - implements StreamResource.StreamSource { - ByteArrayOutputStream imagebuffer = null; - int reloads = 0; - - /* We need to implement this method that returns - * the resource as a stream. */ - public InputStream getStream () { - /* Create an image and draw something on it. */ - BufferedImage image = new BufferedImage (200, 200, - BufferedImage.TYPE_INT_RGB); - Graphics drawable = image.getGraphics(); - drawable.setColor(Color.lightGray); - drawable.fillRect(0,0,200,200); - drawable.setColor(Color.yellow); - drawable.fillOval(25,25,150,150); - drawable.setColor(Color.blue); - drawable.drawRect(0,0,199,199); - drawable.setColor(Color.black); - drawable.drawString("Reloads="+reloads, 75, 100); - reloads++; - - try { - /* Write the image to a buffer. */ - imagebuffer = new ByteArrayOutputStream(); - ImageIO.write(image, "png", imagebuffer); - - /* Return a stream from the buffer. */ - return new ByteArrayInputStream( - imagebuffer.toByteArray()); - } catch (IOException e) { - return null; - } - } -} ----- - -The content of the generated image is dynamic, as it updates the reloads counter -with every call. The [classname]#ImageIO#. [methodname]#write()# method writes -the image to an output stream, while we had to return an input stream, so we -stored the image contents to a temporary buffer. - -Below we display the image with the [classname]#Image# component. - - -[source, java] ----- -// Create an instance of our stream source. -StreamResource.StreamSource imagesource = new MyImageSource (); - -// Create a resource that uses the stream source and give it a name. -// The constructor will automatically register the resource in -// the application. -StreamResource resource = - new StreamResource(imagesource, "myimage.png"); - -// Create an image component that gets its contents -// from the resource. -layout.addComponent(new Image("Image title", resource)); ----- - -The resulting image is shown in <<figure.application.resource.stream>>. - -[[figure.application.resource.stream]] -.A Stream Resource -image::img/application_streamresource.png[] - -Another way to create dynamic content is a request handler, described in -<<dummy/../../../framework/advanced/advanced-requesthandler#advanced.requesthandler,"Request -Handlers">>. - - - - diff --git a/documentation/application/chapter-application.asciidoc b/documentation/application/chapter-application.asciidoc deleted file mode 100644 index 06bfb06c88..0000000000 --- a/documentation/application/chapter-application.asciidoc +++ /dev/null @@ -1,25 +0,0 @@ -[[application]] -== Writing a Server-Side Web Application - -This chapter provides the fundamentals of server-side web application -development with Vaadin, concentrating on the basic elements of an application -from a practical point-of-view. - - -include::application-overview.asciidoc[leveloffset=+2] - -include::application-architecture.asciidoc[leveloffset=+2] - -include::application-declarative.asciidoc[leveloffset=+2] - -include::application-events.asciidoc[leveloffset=+2] - -include::application-resources.asciidoc[leveloffset=+2] - -include::application-errors.asciidoc[leveloffset=+2] - -include::application-notifications.asciidoc[leveloffset=+2] - -include::application-lifecycle.asciidoc[leveloffset=+2] - -include::application-environment.asciidoc[leveloffset=+2] diff --git a/documentation/application/img/application-architecture-hi.png b/documentation/application/img/application-architecture-hi.png Binary files differdeleted file mode 100644 index 12c41648c6..0000000000 --- a/documentation/application/img/application-architecture-hi.png +++ /dev/null diff --git a/documentation/application/img/application-architecture-lo.png b/documentation/application/img/application-architecture-lo.png Binary files differdeleted file mode 100644 index 907dae33e0..0000000000 --- a/documentation/application/img/application-architecture-lo.png +++ /dev/null diff --git a/documentation/application/img/application_streamresource.png b/documentation/application/img/application_streamresource.png Binary files differdeleted file mode 100644 index e79932f667..0000000000 --- a/documentation/application/img/application_streamresource.png +++ /dev/null diff --git a/documentation/application/img/errorindicator-example2.png b/documentation/application/img/errorindicator-example2.png Binary files differdeleted file mode 100644 index 90521c7f7d..0000000000 --- a/documentation/application/img/errorindicator-example2.png +++ /dev/null diff --git a/documentation/application/img/errorindicator-exception.png b/documentation/application/img/errorindicator-exception.png Binary files differdeleted file mode 100644 index 3a99ec9439..0000000000 --- a/documentation/application/img/errorindicator-exception.png +++ /dev/null diff --git a/documentation/application/img/notification-customization.png b/documentation/application/img/notification-customization.png Binary files differdeleted file mode 100644 index 32c4b807f7..0000000000 --- a/documentation/application/img/notification-customization.png +++ /dev/null diff --git a/documentation/application/img/notification-error.png b/documentation/application/img/notification-error.png Binary files differdeleted file mode 100644 index 8759712672..0000000000 --- a/documentation/application/img/notification-error.png +++ /dev/null diff --git a/documentation/application/img/notification-example2.png b/documentation/application/img/notification-example2.png Binary files differdeleted file mode 100644 index 25adf1be78..0000000000 --- a/documentation/application/img/notification-example2.png +++ /dev/null diff --git a/documentation/application/img/notification-example3.png b/documentation/application/img/notification-example3.png Binary files differdeleted file mode 100644 index 84d17b4387..0000000000 --- a/documentation/application/img/notification-example3.png +++ /dev/null diff --git a/documentation/application/img/notification-humanized.png b/documentation/application/img/notification-humanized.png Binary files differdeleted file mode 100644 index 602a46aa48..0000000000 --- a/documentation/application/img/notification-humanized.png +++ /dev/null diff --git a/documentation/application/img/notification-tray.png b/documentation/application/img/notification-tray.png Binary files differdeleted file mode 100644 index f970f04adb..0000000000 --- a/documentation/application/img/notification-tray.png +++ /dev/null diff --git a/documentation/application/img/notification-warning.png b/documentation/application/img/notification-warning.png Binary files differdeleted file mode 100644 index 69a4d43dc1..0000000000 --- a/documentation/application/img/notification-warning.png +++ /dev/null diff --git a/documentation/application/img/resource-fileresource.png b/documentation/application/img/resource-fileresource.png Binary files differdeleted file mode 100644 index 4bff40b3ab..0000000000 --- a/documentation/application/img/resource-fileresource.png +++ /dev/null diff --git a/documentation/application/img/resource-themeimage.png b/documentation/application/img/resource-themeimage.png Binary files differdeleted file mode 100644 index 4a1416dc03..0000000000 --- a/documentation/application/img/resource-themeimage.png +++ /dev/null diff --git a/documentation/application/img/resource_classdiagram-hi.png b/documentation/application/img/resource_classdiagram-hi.png Binary files differdeleted file mode 100644 index 09057e2c90..0000000000 --- a/documentation/application/img/resource_classdiagram-hi.png +++ /dev/null diff --git a/documentation/application/img/resource_classdiagram-lo.png b/documentation/application/img/resource_classdiagram-lo.png Binary files differdeleted file mode 100644 index fd073ff804..0000000000 --- a/documentation/application/img/resource_classdiagram-lo.png +++ /dev/null diff --git a/documentation/application/img/ui-architecture-hierarchical.png b/documentation/application/img/ui-architecture-hierarchical.png Binary files differdeleted file mode 100644 index 337a744d46..0000000000 --- a/documentation/application/img/ui-architecture-hierarchical.png +++ /dev/null diff --git a/documentation/application/img/view-navigation-hi.png b/documentation/application/img/view-navigation-hi.png Binary files differdeleted file mode 100644 index 7c0775d983..0000000000 --- a/documentation/application/img/view-navigation-hi.png +++ /dev/null diff --git a/documentation/application/img/view-navigation-lo.png b/documentation/application/img/view-navigation-lo.png Binary files differdeleted file mode 100644 index 94347f83af..0000000000 --- a/documentation/application/img/view-navigation-lo.png +++ /dev/null diff --git a/documentation/application/original-drawings/application-architecture.svg b/documentation/application/original-drawings/application-architecture.svg deleted file mode 100644 index eabd1c8d86..0000000000 --- a/documentation/application/original-drawings/application-architecture.svg +++ /dev/null @@ -1,1809 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="application-architecture.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- version="1.1">
- <defs
- id="defs1903">
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective206" />
- <linearGradient
- id="linearGradient11516">
- <stop
- id="stop11518"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop11520"
- offset="1"
- style="stop-color:#a090e7;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient11508">
- <stop
- id="stop11510"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop11512"
- offset="1"
- style="stop-color:#e27979;stop-opacity:1" />
- </linearGradient>
- <marker
- inkscape:stockid="DiamondL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="DiamondL"
- style="overflow:visible">
- <path
- id="path4404"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.8)" />
- </marker>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="DiamondEmpty"
- style="overflow:visible">
- <path
- id="path7"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z "
- style="fill-rule:evenodd;fill:#ffffff;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(1.0) translate(-5,0)" />
- </marker>
- <linearGradient
- id="linearGradient3286">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3288" />
- <stop
- style="stop-color:#79e291;stop-opacity:1;"
- offset="1"
- id="stop3290" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="EmptyArrow"
- style="overflow:visible;">
- <path
- id="path9"
- d="M 0.0,0.0 L 0.0,-5.0 L -12.5,0.0 L 0.0,5.0 L 0.0,0.0 z M -0.5,0.0 L -0.5,-4.5 L -12.0,0.0 L -0.5,4.5 L -0.5,0.0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(1.0) rotate(180) translate(10,0)" />
- </marker>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="EmptyArrow2"
- style="overflow:visible;">
- <path
- id="path13"
- d="M 0.0,0.0 L 0.0,-5.0 L -10.0,0.0 L 0.0,5.0 L 0.0,0.0 z"
- style="fill-rule:evenodd;fill:#ffffff;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(1.0) rotate(180) translate(10,0)" />
- </marker>
- <linearGradient
- id="linearGradient19816">
- <stop
- id="stop19818"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop19820"
- offset="1"
- style="stop-color:#e7e790;stop-opacity:1;" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow2Lend"
- style="overflow:visible;">
- <path
- id="path16811"
- style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- transform="scale(1.1) rotate(180) translate(1,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow1Lend"
- style="overflow:visible;">
- <path
- id="path16829"
- d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(0.8) rotate(180) translate(12.5,0)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutM"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleOutM"
- style="overflow:visible">
- <path
- id="path16731"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.4)" />
- </marker>
- <marker
- inkscape:stockid="TriangleInL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleInL"
- style="overflow:visible">
- <path
- id="path16743"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(-0.8)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path16734"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.8)" />
- </marker>
- <linearGradient
- id="linearGradient9263">
- <stop
- style="stop-color:#000000;stop-opacity:0"
- offset="0"
- id="stop9265" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop9267" />
- </linearGradient>
- <linearGradient
- id="linearGradient7299">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop7301" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop7303" />
- </linearGradient>
- <linearGradient
- id="linearGradient5349">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop5351" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop5353" />
- </linearGradient>
- <linearGradient
- id="linearGradient4152">
- <stop
- style="stop-color:#6b6bff;stop-opacity:1;"
- offset="0"
- id="stop4154" />
- <stop
- style="stop-color:#6b6bff;stop-opacity:0;"
- offset="1"
- id="stop4156" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5349"
- id="linearGradient5355"
- x1="96.085953"
- y1="148.38934"
- x2="389.01985"
- y2="148.38934"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient12637"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,265.61411,78.560061)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient15668"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient17873"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,541.12253,30.198804)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient17875"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient20832"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22790"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22806"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22822"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22838"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient2303"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3306"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2251403,2.385383e-3,-2.8806072e-3,0.5966421,625.8055,-4.9637231)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3307"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.634924,2.3804409e-3,-3.8441097e-3,0.5954059,670.96002,-4.81581)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3327"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient8322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient8338"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient8354"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient11393"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2251403,2.385383e-3,-2.8806072e-3,0.5966421,625.8055,-4.9637231)"
- cx="-145.65326"
- cy="87.697487"
- fx="-145.65326"
- fy="87.697487"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient11490"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11508"
- id="radialGradient11506"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11516"
- id="linearGradient11514"
- x1="402.58597"
- y1="24.440832"
- x2="535.59796"
- y2="190.61652"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient11602"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11508"
- id="radialGradient11604"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11516"
- id="linearGradient13616"
- x1="174.35712"
- y1="96.654701"
- x2="220.02124"
- y2="192.93446"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient14623"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9722636,1.8198108e-3,-2.2860317e-3,0.4551788,579.72294,2.0165387)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="linearGradient16644"
- x1="160.84073"
- y1="73.780838"
- x2="239.77594"
- y2="207.50426"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11516"
- id="linearGradient18644"
- x1="1036.6514"
- y1="1185.2882"
- x2="1076.5066"
- y2="1351.074"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient19653"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-3"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-8"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-5"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-0"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-8"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-1"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-2"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-6"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-9"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-10"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-7"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-3"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-12"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-8"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-9"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-88"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-0"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-22"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-1"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-62"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-02"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-4"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-6"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-9"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-5"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-1"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-5"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-55"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-60"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-6"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-1"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-5"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-9"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-2"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-3"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-0"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-7"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-1"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-68"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-60"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-4"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-77"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-14"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-3"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-2"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-6"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-93"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-74"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-7"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-9"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-4"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-20"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-81"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-34"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-9"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-99"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-2"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-70"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-37"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-94"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-46"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-5"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-23"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="3.8342545"
- inkscape:cx="310.20814"
- inkscape:cy="337.41176"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1592"
- inkscape:window-height="938"
- inkscape:window-x="0"
- inkscape:window-y="0"
- showgrid="true"
- showguides="true"
- inkscape:connector-spacing="10"
- inkscape:guide-bbox="true"
- inkscape:window-maximized="0"
- inkscape:snap-bbox="true">
- <sodipodi:guide
- orientation="0,1"
- position="31.938869,788.55965"
- id="guide17449" />
- <sodipodi:guide
- orientation="0,1"
- position="285.41744,976.57155"
- id="guide23390" />
- <sodipodi:guide
- orientation="0,1"
- position="285.79781,806.73177"
- id="guide23439" />
- <inkscape:grid
- type="xygrid"
- id="grid4114"
- empspacing="5"
- visible="true"
- enabled="true"
- snapvisiblegridlinesonly="true"
- spacingx="5px"
- spacingy="5px" />
- <sodipodi:guide
- orientation="1,0"
- position="150,625"
- id="guide3394" />
- <sodipodi:guide
- orientation="0,1"
- position="95,510"
- id="guide3396" />
- </sodipodi:namedview>
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <g
- id="g4116"
- transform="translate(-351.90973,-70.502319)"
- style="fill:#e6e6e6;fill-opacity:1">
- <rect
- ry="3.7880721"
- y="522.8645"
- x="476.90973"
- height="390"
- width="599.99994"
- id="rect6642-49"
- style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:1.77165353;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- </g>
- <g
- id="g12796"
- transform="translate(25,60)">
- <rect
- ry="3.7880721"
- y="292.36218"
- x="100"
- height="75"
- width="600"
- id="rect6642-4"
- style="fill:#656565;fill-opacity:1;stroke:none;stroke-width:1.77165353;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-703.875,-765.33782)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361"
- xml:space="preserve"><flowRegion
- id="flowRegion11363"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="74.215607"
- width="241.14043"
- id="rect11365" /></flowRegion><flowPara
- id="flowPara11367"
- style="font-size:24px">Web Browser</flowPara><flowPara
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold"
- id="flowPara6898">Client-Side Engine</flowPara></flowRoot> </g>
- <g
- transform="translate(128.18949,291.92964)"
- id="g28403-3">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7"
- width="125"
- height="60.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110%;writing-mode:lr;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-782.22649,-874.42021)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0"><rect
- id="rect11365-5-4"
- width="144.99512"
- height="55.68153"
- x="813.87988"
- y="1064.3831"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110%;writing-mode:lr;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara12504">Vaadin</flowPara><flowPara
- id="flowPara6043">Service</flowPara></flowRoot> </g>
- <g
- transform="translate(128.18949,376.92964)"
- id="g28403-3-5">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10"
- width="125"
- height="60.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110%;writing-mode:lr;text-anchor:start;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-782.22649,-874.42021)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7"><rect
- id="rect11365-5-4-6"
- width="144.15208"
- height="72.387939"
- x="813.87988"
- y="1064.3831"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110%;writing-mode:lr;text-anchor:start;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara3258"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110%;writing-mode:lr;text-anchor:start;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold">Vaadin</flowPara><flowPara
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110%;writing-mode:lr;text-anchor:start;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowPara3370">Session</flowPara></flowRoot> </g>
- <g
- transform="translate(128.74016,547.48032)"
- id="g28403-3-9-1">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-1-2"
- width="125"
- height="59.999996"
- x="21.259842"
- y="179.88187"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-2-2"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110%;writing-mode:lr;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-782.77716,-874.97089)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-6-9"><rect
- id="rect11365-5-4-9-5"
- width="142.10995"
- height="56.224495"
- x="813.87988"
- y="1064.3831"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110%;writing-mode:lr;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara6608"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold;text-anchor:start;text-align:start;writing-mode:lr;line-height:110%">Application</flowPara><flowPara
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold;text-anchor:start;text-align:start;writing-mode:lr;line-height:110%"
- id="flowPara4870">UI</flowPara></flowRoot> </g>
- <g
- transform="translate(151.08788,684.30069)"
- id="g28403-2-9">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-4-0"
- width="410"
- height="64.50946"
- x="-1.08788"
- y="128.06149"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-1-2-7"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-806.33088,-926.86326)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-64-3-63"><rect
- id="rect11365-5-4-5-1-7"
- width="136.60326"
- height="42.457775"
- x="813.87988"
- y="1064.3831"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara17609-3-7-6">Back-End</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-5-0-7"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold"
- transform="translate(-806.09688,-901.70434)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-5-7-5"><rect
- id="rect11365-5-4-3-80-8"
- width="359.99512"
- height="35.462776"
- x="813.87988"
- y="1064.3831"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold" /></flowRegion><flowPara
- id="flowPara12504-6-3-4">Business Logic, persistence, database, ...</flowPara></flowRoot> </g>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 250,517.36218 0,45"
- id="path4833-3-2-9"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-371.37876,-507.52109)"
- style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-17-9-3"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-06-3-4"><rect
- style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="93.316948"
- width="274.99512"
- id="rect11365-5-0-9-3" /></flowRegion><flowPara
- id="flowPara12598-7">Application Server</flowPara><flowPara
- id="flowPara6900"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold">Java Web Application</flowPara></flowRoot> <g
- transform="translate(278.18949,376.92964)"
- id="g28403-3-5-7">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-7"
- width="125"
- height="60.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-7"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-782.22649,-874.49221)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-4"><rect
- id="rect11365-5-4-6-6"
- width="144.15208"
- height="72.387939"
- x="813.87988"
- y="1064.3831"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara3239-3">Web Page</flowPara><flowPara
- id="flowPara3258-5"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRoot> </g>
- <g
- transform="translate(128.18949,461.92964)"
- id="g28403-3-5-7-4">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-7-2"
- width="125"
- height="60.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-7-1"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-783.43249,-874.49221)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-4-0"><rect
- id="rect11365-5-4-6-6-1"
- width="144.15208"
- height="72.387939"
- x="813.87988"
- y="1064.3831"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara3258-5-7"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold">UI</flowPara></flowRoot> </g>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 305,612.36218 -35,35"
- id="path4833-3-2-9-42"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 250,611.36218 0,45"
- id="path4833-3-2-9-8"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <g
- transform="translate(278.18949,461.92964)"
- id="g28403-3-5-7-4-7">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-7-2-1"
- width="120.84303"
- height="60.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-7-1-2"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-783.01849,-871.74346)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-4-0-4"><rect
- id="rect11365-5-4-6-6-1-9"
- width="144.15208"
- height="72.387939"
- x="813.87988"
- y="1064.3831"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowPara6892">UI</flowPara><flowPara
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowPara6896">Component</flowPara></flowRoot> </g>
- <g
- transform="translate(278.74016,547.48032)"
- id="g28403-3-9-1-1">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-1-2-6"
- width="120"
- height="59.999996"
- x="21.259842"
- y="179.88187"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-2-2-7"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110%;writing-mode:lr;text-anchor:start;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-783.98316,-875.27689)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-6-9-2"><rect
- id="rect11365-5-4-9-5-3"
- width="142.10995"
- height="56.224495"
- x="813.87988"
- y="1064.3831"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110%;writing-mode:lr;text-anchor:start;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara6608-2"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110%;writing-mode:lr;text-anchor:start;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold">Event</flowPara><flowPara
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110%;writing-mode:lr;text-anchor:start;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowPara5888">Listener</flowPara></flowRoot> </g>
- <g
- id="g5920"
- transform="translate(14.83185,-64.999994)">
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path4833-3"
- d="m 360,782.36218 0,-22.78327"
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker52016)" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path4833-3-7"
- d="m 360,780.12315 0,20"
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker52016)" />
- </g>
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-5-7-1"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold"
- transform="translate(-434.04314,-355.2303)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-5-8-0"><rect
- id="rect11365-5-4-3-8-3"
- width="84.995117"
- height="17.471106"
- x="813.87988"
- y="1064.3831"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold" /></flowRegion><flowPara
- id="flowPara12504-6-9-6">UI Changes</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-5-0"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold"
- transform="translate(-509.04314,-355.2303)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-5-7"><rect
- id="rect11365-5-4-3-80"
- width="59.995113"
- height="15.68153"
- x="813.87988"
- y="1064.3831"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold" /></flowRegion><flowPara
- id="flowPara12504-6-3">UI Events</flowPara></flowRoot> <g
- transform="translate(423.74016,547.48032)"
- id="g28403-3-9-1-1-8">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-1-2-6-5"
- width="115"
- height="59.999996"
- x="21.259842"
- y="179.88187"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-2-2-7-3"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-783.92916,-875.27689)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-6-9-2-7"><rect
- id="rect11365-5-4-9-5-3-6"
- width="142.10995"
- height="56.224495"
- x="813.87988"
- y="1064.3831"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara6608-2-5"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold">Data</flowPara><flowPara
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowPara5888-0">Model</flowPara></flowRoot> </g>
- <g
- transform="translate(563.74016,547.48032)"
- id="g28403-3-9-1-1-8-1">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-1-2-6-5-6"
- width="115"
- height="59.999996"
- x="21.259842"
- y="179.88187"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-2-2-7-3-7"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.61516,-875.18272)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-6-9-2-7-5"><rect
- id="rect11365-5-4-9-5-3-6-0"
- width="142.10995"
- height="56.224495"
- x="813.87988"
- y="1064.3831"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowPara5888-0-7">Application</flowPara><flowPara
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowPara6083">Theme</flowPara></flowRoot> </g>
- <g
- transform="translate(563.18949,461.92964)"
- id="g28403-3-5-7-4-7-1">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-7-2-1-0"
- width="115"
- height="60"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-7-1-2-2"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-786.22146,-876.33845)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-4-0-4-6"><rect
- id="rect11365-5-4-6-6-1-9-4"
- width="144.15208"
- height="72.387939"
- x="813.87988"
- y="1064.3831"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara6121">Default</flowPara><flowPara
- id="flowPara6130">Theme</flowPara><flowPara
- id="flowPara3258-5-7-2-8"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRoot> </g>
- <g
- id="g12499-1"
- transform="matrix(0,3.9435832,-3.9435832,0,2315.8008,-125.90035)">
- <g
- transform="matrix(0.5,0,0,0.5,11.485194,158.86138)"
- id="g18065-7">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- id="path18067-1"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path18069-8"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- inkscape:connector-curvature="0" />
- </g>
- </g>
- <path
- style="fill:none;stroke:#656565;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 675,397.36218 0,245"
- id="path4833-2-1-6-0"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-558.875,-519.61047)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-17-9-4"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-06-3-1"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="34.154446"
- width="49.995117"
- id="rect11365-5-0-9-9" /></flowRegion><flowPara
- id="flowPara12598-77">n</flowPara></flowRoot> <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-523.875,-458.04562)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-17-9-4-3"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-06-3-1-4"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="34.154446"
- width="49.995117"
- id="rect11365-5-0-9-9-8" /></flowRegion><flowPara
- id="flowPara12598-77-8">1</flowPara></flowRoot> <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-558.875,-435.23641)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-17-9-4-4"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-06-3-1-6"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="34.154446"
- width="49.995117"
- id="rect11365-5-0-9-9-1" /></flowRegion><flowPara
- id="flowPara12598-77-1">n</flowPara></flowRoot> <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path4833-3-9"
- d="m 255,732.36218 0.16814,-38.04274"
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker52016)" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-5-0-0"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold"
- transform="translate(-631.90785,-355.30125)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-5-7-0"><rect
- id="rect11365-5-4-3-80-6"
- width="124.99512"
- height="20.462776"
- x="813.87988"
- y="1064.3831"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold" /></flowRegion><flowPara
- id="flowPara12504-6-3-7">«extends»</flowPara></flowRoot> <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path4833-3-9-2"
- d="m 500,782.36218 0,37.92034"
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker52016)" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095)"
- d="m 505,672.36218 0,62.79728"
- id="path4833-3-2-9-8-7"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 415,672.36218 90,0"
- id="path4833-3-2-9-8-2"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-5-7-1-7"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-300.091,-387.70948)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-5-8-0-1"><rect
- id="rect11365-5-4-3-8-3-0"
- width="64.995117"
- height="37.471107"
- x="813.87988"
- y="1064.3831"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara12504-6-9-6-2">Data</flowPara><flowPara
- id="flowPara6888">Binding</flowPara></flowRoot> <path
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 305,672.36218 -35,0"
- id="path4833-3-2-9-8-9"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-523.875,-406.17532)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-17-9-4-4-7"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-06-3-1-6-2"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="34.154446"
- width="49.995117"
- id="rect11365-5-0-9-9-1-3" /></flowRegion><flowPara
- id="flowPara12598-77-1-9">n</flowPara></flowRoot> <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path4833-3-9-9"
- d="m 675,730.22048 0,-37.8583"
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker52016)" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path4833-3-9-2-4"
- d="m 255,781.25598 0,38.83185"
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker52016)" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path4833-3-9-2-4-3"
- d="m 375,781.25598 0,39.02654"
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker52016)" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-5-7-17-8"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold"
- transform="translate(-133.875,-629.90381)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-5-8-5-2"><rect
- id="rect11365-5-4-3-8-5-7"
- width="128.02386"
- height="24.543726"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold" /></flowRegion><flowPara
- id="flowPara12504-6-9-9-5"
- style="font-size:16px">HTTP</flowPara></flowRoot> <g
- transform="translate(278.18949,291.92964)"
- id="g28403-3-7">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-3"
- width="149.53987"
- height="60.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-5"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110%;writing-mode:lr;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-782.22649,-874.42021)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-5"><rect
- id="rect11365-5-4-9"
- width="144.99512"
- height="55.68153"
- x="813.87988"
- y="1064.3831"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110%;writing-mode:lr;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara12504-0">Vaadin</flowPara><flowPara
- id="flowPara6043-8">Servlet/Portlet</flowPara></flowRoot> </g>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 305,502.36218 -35,0"
- id="path4833-3-2-9-3"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-535.92714,-578.24513)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-17-9-4-3-1"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-06-3-1-4-0"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="34.154446"
- width="49.995117"
- id="rect11365-5-0-9-9-8-8" /></flowRegion><flowPara
- id="flowPara12598-77-8-4">1</flowPara></flowRoot> <g
- id="g12499"
- transform="matrix(0,3.9435832,-3.9435832,0,2040.8262,-285.87395)">
- <g
- transform="matrix(0.5,0,0,0.5,8.55451,158.9407)"
- id="g18065">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- id="path18067"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path18069"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- inkscape:connector-curvature="0" />
- </g>
- </g>
- <path
- style="fill:none;stroke:#656565;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 399.72382,392.36218 0,80"
- id="path4833-2-1-6"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-5-7-17"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold"
- transform="translate(-405.88124,-631.0373)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-5-8-5"><rect
- id="rect11365-5-4-3-8-5"
- width="128.02386"
- height="24.543726"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold" /></flowRegion><flowPara
- id="flowPara12504-6-9-9"
- style="font-size:16px">AJAX Requests</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-5-7-17-8-2"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold"
- transform="translate(-464.4866,-630.80515)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-5-8-5-2-3"><rect
- id="rect11365-5-4-3-8-5-7-3"
- width="128.02386"
- height="24.543726"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold" /></flowRegion><flowPara
- id="flowPara12504-6-9-9-5-6"
- style="font-size:16px">HTTP</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-5-0-0-9"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold"
- transform="translate(-208.875,-355.55568)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-5-7-0-0"><rect
- id="rect11365-5-4-3-80-6-9"
- width="124.99512"
- height="20.462776"
- x="813.87988"
- y="1064.3831"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold" /></flowRegion><flowPara
- id="flowPara12504-6-3-7-0">«extends»</flowPara></flowRoot> </g>
- <g
- inkscape:groupmode="layer"
- id="layer2"
- inkscape:label="Varjot" />
-</svg>
diff --git a/documentation/application/original-drawings/resource_classdiagram.svg b/documentation/application/original-drawings/resource_classdiagram.svg deleted file mode 100644 index c279bd6140..0000000000 --- a/documentation/application/original-drawings/resource_classdiagram.svg +++ /dev/null @@ -1,799 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="resource_classdiagram.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- sodipodi:modified="true"
- version="1.1">
- <defs
- id="defs1903">
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective7604" />
- <linearGradient
- id="linearGradient11516">
- <stop
- id="stop11518"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop11520"
- offset="1"
- style="stop-color:#a090e7;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient11508">
- <stop
- id="stop11510"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop11512"
- offset="1"
- style="stop-color:#e27979;stop-opacity:1" />
- </linearGradient>
- <marker
- inkscape:stockid="DiamondL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="DiamondL"
- style="overflow:visible">
- <path
- id="path4404"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.8)" />
- </marker>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="DiamondEmpty"
- style="overflow:visible">
- <path
- id="path7"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z "
- style="fill-rule:evenodd;fill:#ffffff;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(1.0) translate(-5,0)" />
- </marker>
- <linearGradient
- id="linearGradient3286">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3288" />
- <stop
- style="stop-color:#79e291;stop-opacity:1;"
- offset="1"
- id="stop3290" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="EmptyArrow"
- style="overflow:visible;">
- <path
- id="path9"
- d="M 0.0,0.0 L 0.0,-5.0 L -12.5,0.0 L 0.0,5.0 L 0.0,0.0 z M -0.5,0.0 L -0.5,-4.5 L -12.0,0.0 L -0.5,4.5 L -0.5,0.0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(1.0) rotate(180) translate(10,0)" />
- </marker>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="EmptyArrow2"
- style="overflow:visible;">
- <path
- id="path13"
- d="M 0.0,0.0 L 0.0,-5.0 L -10.0,0.0 L 0.0,5.0 L 0.0,0.0 z"
- style="fill-rule:evenodd;fill:#ffffff;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(1.0) rotate(180) translate(10,0)" />
- </marker>
- <linearGradient
- id="linearGradient19816">
- <stop
- id="stop19818"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop19820"
- offset="1"
- style="stop-color:#e7e790;stop-opacity:1;" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow2Lend"
- style="overflow:visible;">
- <path
- id="path16811"
- style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- transform="scale(1.1) rotate(180) translate(1,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow1Lend"
- style="overflow:visible;">
- <path
- id="path16829"
- d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(0.8) rotate(180) translate(12.5,0)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutM"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleOutM"
- style="overflow:visible">
- <path
- id="path16731"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.4)" />
- </marker>
- <marker
- inkscape:stockid="TriangleInL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleInL"
- style="overflow:visible">
- <path
- id="path16743"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(-0.8)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path16734"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.8)" />
- </marker>
- <linearGradient
- id="linearGradient9263">
- <stop
- style="stop-color:#000000;stop-opacity:0"
- offset="0"
- id="stop9265" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop9267" />
- </linearGradient>
- <linearGradient
- id="linearGradient7299">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop7301" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop7303" />
- </linearGradient>
- <linearGradient
- id="linearGradient5349">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop5351" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop5353" />
- </linearGradient>
- <linearGradient
- id="linearGradient4152">
- <stop
- style="stop-color:#6b6bff;stop-opacity:1;"
- offset="0"
- id="stop4154" />
- <stop
- style="stop-color:#6b6bff;stop-opacity:0;"
- offset="1"
- id="stop4156" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5349"
- id="linearGradient5355"
- x1="96.085953"
- y1="148.38934"
- x2="389.01985"
- y2="148.38934"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient11602"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3268"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,541.12253,30.198804)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3270"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3272"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3274"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3276"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3280"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <marker
- id="marker18095-4"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-6"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-1"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker44971-5"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059-0"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061-4"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063-9"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-0"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-0"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-0"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-16"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-6"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-7"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-20"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-4"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-2"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-2"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-23"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-9"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.8159691"
- inkscape:cx="336.32892"
- inkscape:cy="885.30635"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1458"
- inkscape:window-height="1019"
- inkscape:window-x="194"
- inkscape:window-y="0"
- showgrid="true"
- showguides="true"
- inkscape:connector-spacing="10"
- inkscape:guide-bbox="true"
- inkscape:window-maximized="0">
- <sodipodi:guide
- orientation="horizontal"
- position="940.71429"
- id="guide22848" />
- <inkscape:grid
- type="xygrid"
- id="grid6196"
- empspacing="5"
- visible="true"
- enabled="true"
- snapvisiblegridlinesonly="true"
- spacingx="5px"
- spacingy="5px" />
- </sodipodi:namedview>
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <g
- style="display:inline"
- id="g2547"
- transform="matrix(1.4062095,0,0,1.4062095,-221.12715,-215.60428)">
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2551"
- transform="translate(-5.2378947,106.19782)"><flowRegion
- id="flowRegion2553"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use2555"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara2557">Sizeable</flowPara></flowRoot> <g
- id="g6863"
- transform="translate(-46.062995,-30.433073)">
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6866"
- transform="translate(-5.2378947,106.19782)"><flowRegion
- id="flowRegion6868"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use6870"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6872">Sizeable</flowPara></flowRoot> </g>
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2539"
- transform="translate(75.734798,-715.9695)"><flowRegion
- id="flowRegion2541"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use2543"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara2545">VariableOwner</flowPara></flowRoot> <g
- style="display:inline"
- id="g6931"
- transform="translate(132.33963,-23.86934)">
- <rect
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6933"
- width="138.189"
- height="35.43309"
- x="167.13719"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text6935"
- y="253.39159"
- x="175.51506"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.39159"
- x="175.51506"
- id="tspan6937"
- sodipodi:role="line">ConnectorResource</tspan></text>
- </g>
- </g>
- <g
- style="display:inline"
- id="g6925"
- transform="matrix(1.4062095,0,0,1.4062095,-185.02991,-249.16957)">
- <rect
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect2549"
- width="85.039375"
- height="35.433075"
- x="167.13719"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text6921"
- y="253.39159"
- x="180.51506"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.39159"
- x="180.51506"
- id="tspan6923"
- sodipodi:role="line">Resource</tspan></text>
- </g>
- <g
- style="display:inline"
- id="g6951"
- transform="matrix(1.4062095,0,0,1.4062095,-35.029907,-184.16957)">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6953"
- width="124.01576"
- height="35.43309"
- x="167.13719"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text6955"
- y="253.39159"
- x="227.90504"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.39159"
- x="227.90504"
- id="tspan6957"
- sodipodi:role="line">ExternalResource</tspan></text>
- </g>
- <g
- style="display:inline"
- id="g6960"
- transform="matrix(1.4062095,0,0,1.4062095,-35.029907,-119.16957)">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6962"
- width="124.01576"
- height="35.43309"
- x="167.13719"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text6964"
- y="253.39159"
- x="228.18105"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.39159"
- x="228.18105"
- id="tspan6966"
- sodipodi:role="line">ThemeResource</tspan></text>
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#49c2f1;stroke-width:5.48089504;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- d="m 199.47896,231.82376 -89.68737,0"
- id="path6976"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#49c2f1;stroke-width:5.48089504;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- d="m 199.47896,167.04954 -89.68737,0"
- id="path8919"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0" />
- <g
- style="display:inline"
- id="g8921"
- transform="matrix(1.4062095,0,0,1.4062095,199.97009,-249.16957)">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect8923"
- width="124.01576"
- height="35.43309"
- x="167.13719"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text8925"
- y="253.39159"
- x="227.90504"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.39159"
- x="227.90504"
- id="tspan8927"
- sodipodi:role="line">FileResource</tspan></text>
- </g>
- <g
- style="display:inline"
- id="g8929"
- transform="matrix(1.4062095,0,0,1.4062095,199.97009,-184.16957)">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect8931"
- width="124.01576"
- height="35.43309"
- x="167.13719"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text8933"
- y="253.39159"
- x="228.18105"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.39159"
- x="228.18105"
- id="tspan8935"
- sodipodi:role="line">ClassResource</tspan></text>
- </g>
- <g
- style="display:inline"
- id="g8939"
- transform="matrix(1.4062095,0,0,1.4062095,199.97009,-119.16957)">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect8941"
- width="124.01576"
- height="35.43309"
- x="167.13719"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text8943"
- y="253.39159"
- x="228.18105"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.39159"
- x="228.18105"
- id="tspan8945"
- sodipodi:role="line">StreamResource</tspan></text>
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#49c2f1;stroke-width:5.48089504;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- d="m 438.64529,231.82376 -24.91315,0"
- id="path8947"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#49c2f1;stroke-width:5.48089504;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- d="m 413.73214,102.27533 0,129.54843"
- id="path8949"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#49c2f1;stroke-width:5.48089504;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:none;display:inline"
- d="m 438.64529,167.04954 -24.91315,0"
- id="path8951"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095)"
- d="m 110,232.36218 c 0,-110 0,-110 0,-110"
- id="path6258"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095)"
- d="m 440,102.36218 -50,0"
- id="path6258-6"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#d9d9cd;stroke-width:5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker44971)"
- d="m 205,102.36218 -40,0"
- id="path6258-6-3"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- </g>
- <g
- inkscape:groupmode="layer"
- id="layer2"
- inkscape:label="Varjot" />
-</svg>
diff --git a/documentation/application/original-drawings/view-navigation.svg b/documentation/application/original-drawings/view-navigation.svg deleted file mode 100644 index 9e8ee92c03..0000000000 --- a/documentation/application/original-drawings/view-navigation.svg +++ /dev/null @@ -1,1694 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="view-navigation.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- version="1.1">
- <defs
- id="defs1903">
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="323.51425 : 866.9944 : 1"
- inkscape:vp_y="0 : 296.04677 : 0"
- inkscape:vp_z="520.12219 : 855.43032 : 1"
- inkscape:persp3d-origin="411.35549 : 763.58199 : 1"
- id="perspective206" />
- <linearGradient
- id="linearGradient11516">
- <stop
- id="stop11518"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop11520"
- offset="1"
- style="stop-color:#a090e7;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient11508">
- <stop
- id="stop11510"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop11512"
- offset="1"
- style="stop-color:#e27979;stop-opacity:1" />
- </linearGradient>
- <marker
- inkscape:stockid="DiamondL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="DiamondL"
- style="overflow:visible">
- <path
- id="path4404"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.8)" />
- </marker>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="DiamondEmpty"
- style="overflow:visible">
- <path
- id="path7"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z "
- style="fill-rule:evenodd;fill:#ffffff;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(1.0) translate(-5,0)" />
- </marker>
- <linearGradient
- id="linearGradient3286">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3288" />
- <stop
- style="stop-color:#79e291;stop-opacity:1;"
- offset="1"
- id="stop3290" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="EmptyArrow"
- style="overflow:visible;">
- <path
- id="path9"
- d="M 0.0,0.0 L 0.0,-5.0 L -12.5,0.0 L 0.0,5.0 L 0.0,0.0 z M -0.5,0.0 L -0.5,-4.5 L -12.0,0.0 L -0.5,4.5 L -0.5,0.0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(1.0) rotate(180) translate(10,0)" />
- </marker>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="EmptyArrow2"
- style="overflow:visible;">
- <path
- id="path13"
- d="M 0.0,0.0 L 0.0,-5.0 L -10.0,0.0 L 0.0,5.0 L 0.0,0.0 z"
- style="fill-rule:evenodd;fill:#ffffff;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(1.0) rotate(180) translate(10,0)" />
- </marker>
- <linearGradient
- id="linearGradient19816">
- <stop
- id="stop19818"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop19820"
- offset="1"
- style="stop-color:#e7e790;stop-opacity:1;" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow2Lend"
- style="overflow:visible;">
- <path
- id="path16811"
- style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- transform="scale(1.1) rotate(180) translate(1,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow1Lend"
- style="overflow:visible;">
- <path
- id="path16829"
- d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(0.8) rotate(180) translate(12.5,0)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutM"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleOutM"
- style="overflow:visible">
- <path
- id="path16731"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.4)" />
- </marker>
- <marker
- inkscape:stockid="TriangleInL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleInL"
- style="overflow:visible">
- <path
- id="path16743"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(-0.8)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path16734"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.8)" />
- </marker>
- <linearGradient
- id="linearGradient9263">
- <stop
- style="stop-color:#000000;stop-opacity:0"
- offset="0"
- id="stop9265" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop9267" />
- </linearGradient>
- <linearGradient
- id="linearGradient7299">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop7301" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop7303" />
- </linearGradient>
- <linearGradient
- id="linearGradient5349">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop5351" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop5353" />
- </linearGradient>
- <linearGradient
- id="linearGradient4152">
- <stop
- style="stop-color:#6b6bff;stop-opacity:1;"
- offset="0"
- id="stop4154" />
- <stop
- style="stop-color:#6b6bff;stop-opacity:0;"
- offset="1"
- id="stop4156" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5349"
- id="linearGradient5355"
- x1="96.085953"
- y1="148.38934"
- x2="389.01985"
- y2="148.38934"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient12637"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,265.61411,78.560061)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient15668"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient17873"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,541.12253,30.198804)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient17875"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient20832"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22790"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22806"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22822"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22838"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient2303"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3306"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2251403,2.385383e-3,-2.8806072e-3,0.5966421,625.8055,-4.9637231)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3307"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.634924,2.3804409e-3,-3.8441097e-3,0.5954059,670.96002,-4.81581)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3327"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient8322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient8338"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient8354"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient11393"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2251403,2.385383e-3,-2.8806072e-3,0.5966421,625.8055,-4.9637231)"
- cx="-145.65326"
- cy="87.697487"
- fx="-145.65326"
- fy="87.697487"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient11490"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11508"
- id="radialGradient11506"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11516"
- id="linearGradient11514"
- x1="402.58597"
- y1="24.440832"
- x2="535.59796"
- y2="190.61652"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient11602"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11508"
- id="radialGradient11604"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11516"
- id="linearGradient13616"
- x1="174.35712"
- y1="96.654701"
- x2="220.02124"
- y2="192.93446"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient14623"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9722636,1.8198108e-3,-2.2860317e-3,0.4551788,579.72294,2.0165387)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="linearGradient16644"
- x1="160.84073"
- y1="73.780838"
- x2="239.77594"
- y2="207.50426"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11516"
- id="linearGradient18644"
- x1="1036.6514"
- y1="1185.2882"
- x2="1076.5066"
- y2="1351.074"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient19653"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-3"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-8"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-5"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-0"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-8"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-1"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-2"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-6"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-9"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-10"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-7"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-3"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-12"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-8"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-9"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-88"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-0"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-22"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-1"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-62"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-02"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-4"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-6"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-9"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-5"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-1"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-5"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-55"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-60"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-6"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-1"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-5"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-9"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-2"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-3"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-0"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-7"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-1"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-68"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-60"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-4"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-77"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-14"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-3"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-2"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-6"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-93"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-74"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-7"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-9"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-4"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-53"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-60"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-0"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-09"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.8159691"
- inkscape:cx="310.55157"
- inkscape:cy="849.98308"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1672"
- inkscape:window-height="1019"
- inkscape:window-x="0"
- inkscape:window-y="0"
- showgrid="true"
- showguides="false"
- inkscape:connector-spacing="10"
- inkscape:guide-bbox="true"
- inkscape:window-maximized="0">
- <sodipodi:guide
- orientation="0,1"
- position="31.938869,788.55965"
- id="guide17449" />
- <sodipodi:guide
- orientation="1,0"
- position="224.67342,882.17358"
- id="guide17453" />
- <sodipodi:guide
- orientation="0,1"
- position="285.41744,976.57155"
- id="guide23390" />
- <sodipodi:guide
- orientation="0,1"
- position="285.79781,806.73177"
- id="guide23439" />
- <sodipodi:guide
- orientation="1,0"
- position="561.68355,823.80254"
- id="guide23441" />
- <sodipodi:guide
- orientation="1,0"
- position="415.75596,833.7146"
- id="guide23443" />
- <sodipodi:guide
- orientation="1,0"
- position="61.675057,822.15053"
- id="guide23607" />
- <inkscape:grid
- type="xygrid"
- id="grid4114"
- empspacing="5"
- visible="true"
- enabled="true"
- snapvisiblegridlinesonly="true"
- spacingx="5px"
- spacingy="5px" />
- </sodipodi:namedview>
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <g
- id="g12796"
- transform="translate(-9.5708008,-230)">
- <rect
- ry="3.7880721"
- y="282.36218"
- x="100"
- height="125"
- width="209.5708"
- id="rect6642-4"
- style="fill:#656565;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-698.16357,-775.22948)"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361"
- xml:space="preserve"><flowRegion
- id="flowRegion11363"><rect
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="39.215607"
- width="175.71123"
- id="rect11365" /></flowRegion><flowPara
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowPara6898">Login View</flowPara></flowRoot> <rect
- ry="0"
- y="307.36218"
- x="99.570801"
- height="95"
- width="210"
- id="rect6642-4-7"
- style="fill:#ddd4ff;fill-opacity:1;stroke:#000000;stroke-width:1.77165353000000003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="color:#000000;fill:#f9ffd4;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4347"
- width="125"
- height="70"
- x="142.0708"
- y="322.36218" />
- <rect
- style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4347-8"
- width="56"
- height="11"
- x="204.5708"
- y="337.75156" />
- <text
- xml:space="preserve"
- style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
- x="144.5708"
- y="347.36218"
- id="text4367"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan4369"
- x="144.5708"
- y="347.36218"
- style="font-size:10px">Username</tspan></text>
- <rect
- style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4347-8-8"
- width="56"
- height="11"
- x="204.5708"
- y="356.36218" />
- <text
- xml:space="preserve"
- style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
- x="144.5708"
- y="365.97281"
- id="text4367-5"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan4369-3"
- x="144.5708"
- y="365.97281"
- style="font-size:10px">Password</tspan></text>
- <rect
- style="color:#000000;fill:#bababa;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4347-8-9"
- width="36"
- height="11.389374"
- x="224.5708"
- y="377.36218" />
- <text
- xml:space="preserve"
- style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
- x="230.5708"
- y="386.36218"
- id="text4367-5-3"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan4369-3-1"
- x="230.5708"
- y="386.36218"
- style="font-size:10px">Login</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#2200f9;fill-opacity:1;stroke:none;font-family:Sans"
- x="149.5708"
- y="385.36218"
- id="text4367-5-3-7"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan4369-3-1-9"
- x="149.5708"
- y="385.36218"
- style="font-size:10px;fill:#2200f9;fill-opacity:1">Register</tspan></text>
- </g>
- <g
- id="g12796-8"
- transform="translate(-8.570805,-84.000004)">
- <rect
- ry="3.7880721"
- y="296.36218"
- x="99"
- height="125"
- width="209.5708"
- id="rect6642-4-6"
- style="fill:#656565;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-699.16357,-761.22948)"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-2"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-4"><rect
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="39.215607"
- width="175.71123"
- id="rect11365-5" /></flowRegion><flowPara
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowPara6898-7">Registration View</flowPara></flowRoot> <rect
- ry="0"
- y="321.36218"
- x="98.570801"
- height="95"
- width="210"
- id="rect6642-4-7-6"
- style="fill:#ddd4ff;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="color:#000000;fill:#f9ffd4;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4347-0"
- width="130"
- height="90.000008"
- x="138.5708"
- y="326.36218" />
- <rect
- style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4347-8-81"
- width="56"
- height="11"
- x="201.0708"
- y="341.75156" />
- <text
- xml:space="preserve"
- style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
- x="141.0708"
- y="351.36218"
- id="text4367-59"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan4369-4"
- x="141.0708"
- y="351.36218"
- style="font-size:10px">Name</tspan></text>
- <rect
- style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4347-8-8-2"
- width="56"
- height="11"
- x="201.0708"
- y="374.36218" />
- <text
- xml:space="preserve"
- style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
- x="141.0708"
- y="383.97281"
- id="text4367-5-5"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan4369-3-9"
- x="141.0708"
- y="383.97281"
- style="font-size:10px">Email</tspan></text>
- <rect
- style="color:#000000;fill:#bababa;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4347-8-9-9-4"
- width="4.9999957"
- height="94.999992"
- x="303.5708"
- y="321.36218" />
- <rect
- style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4347-8-81-1"
- width="56"
- height="11"
- x="201.12836"
- y="358.30905" />
- <text
- xml:space="preserve"
- style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
- x="141.12836"
- y="367.91968"
- id="text4367-59-1"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan4369-4-6"
- x="141.12836"
- y="367.91968"
- style="font-size:10px">Username</tspan></text>
- <rect
- style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4347-8-8-2-3"
- width="56"
- height="11"
- x="201.23897"
- y="390.36218" />
- <text
- xml:space="preserve"
- style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
- x="141.0708"
- y="398.97281"
- id="text4367-5-5-0"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan4369-3-9-2"
- x="141.0708"
- y="398.97281"
- style="font-size:10px">...</tspan></text>
- </g>
- <g
- id="g5028">
- <g
- transform="matrix(0,3.9435832,-3.9435832,0,1793.0696,-558.46249)"
- id="g12499-6">
- <g
- id="g18065-9"
- transform="matrix(0.5,0,0,0.5,8.55451,158.9407)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18067-13"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18069-0"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path4833-2-1-6-1"
- d="m 151.87049,157.36218 0,45"
- style="fill:none;stroke:#656565;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none" />
- </g>
- <g
- id="g12796-5"
- transform="translate(251.42919,-229)">
- <rect
- ry="3.7880721"
- y="282.36218"
- x="97.070801"
- height="125"
- width="209.5708"
- id="rect6642-4-3"
- style="fill:#656565;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-698.16357,-775.22948)"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-20"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-0"><rect
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="39.215607"
- width="175.71123"
- id="rect11365-1" /></flowRegion><flowPara
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowPara6898-1">Main View</flowPara></flowRoot> <rect
- ry="0"
- y="307.36218"
- x="97.070801"
- height="95"
- width="210"
- id="rect6642-4-7-8"
- style="fill:#ddd4ff;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4347-2"
- width="175"
- height="80"
- x="132.0708"
- y="322.36218" />
- <rect
- style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4347-2-1"
- width="35"
- height="80"
- x="97.070801"
- y="322.36218" />
- <text
- xml:space="preserve"
- style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
- x="100.69411"
- y="318.18817"
- id="text4367-9"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan4369-2"
- x="100.69411"
- y="318.18817"
- style="font-size:10px">My Application</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
- x="98.998161"
- y="330.98553"
- id="text4367-9-1"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- x="98.998161"
- y="330.98553"
- style="font-size:6px"
- id="tspan4784">One</tspan><tspan
- sodipodi:role="line"
- x="98.998161"
- y="338.48553"
- style="font-size:6px"
- id="tspan4807"> Four</tspan><tspan
- sodipodi:role="line"
- x="98.998161"
- y="345.98553"
- style="font-size:6px"
- id="tspan4809"> Five</tspan><tspan
- sodipodi:role="line"
- x="98.998161"
- y="353.48553"
- style="font-size:6px"
- id="tspan4811"> Six</tspan><tspan
- sodipodi:role="line"
- x="98.998161"
- y="360.98553"
- style="font-size:6px"
- id="tspan4792">Two</tspan><tspan
- sodipodi:role="line"
- x="98.998161"
- y="368.48553"
- style="font-size:6px"
- id="tspan4813"> Seven</tspan><tspan
- sodipodi:role="line"
- x="98.998161"
- y="375.98553"
- style="font-size:6px"
- id="tspan4821"> Eight</tspan><tspan
- sodipodi:role="line"
- x="98.998161"
- y="383.48553"
- style="font-size:6px"
- id="tspan4805">Three</tspan><tspan
- sodipodi:role="line"
- x="98.998161"
- y="390.98553"
- style="font-size:6px"
- id="tspan4823"> Nine</tspan><tspan
- sodipodi:role="line"
- x="98.998161"
- y="398.48553"
- style="font-size:6px"
- id="tspan4817" /></text>
- <g
- sodipodi:type="inkscape:box3d"
- style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="g4867"
- inkscape:perspectiveID="#perspective206"
- inkscape:corner0="0.14898278 : 0.54712709 : 0 : 1"
- inkscape:corner7="-0.22057167 : 0.47685296 : 0.2442114 : 1">
- <path
- sodipodi:type="inkscape:box3dside"
- id="path4879"
- style="fill:#e9e9ff;fill-rule:evenodd;stroke:none"
- inkscape:box3dsidetype="11"
- d="m 169.59848,374.35993 35.2043,-14.44364 0,20.32397 -35.2043,9.05257 z" />
- <path
- sodipodi:type="inkscape:box3dside"
- id="path4869"
- style="fill:#353564;fill-rule:evenodd;stroke:none"
- inkscape:box3dsidetype="6"
- d="m 148.53637,363.39853 0,18.10682 21.06211,7.78748 0,-14.9329 z" />
- <path
- sodipodi:type="inkscape:box3dside"
- id="path4871"
- style="fill:#4d4d9f;fill-rule:evenodd;stroke:none"
- inkscape:box3dsidetype="5"
- d="m 148.53637,363.39853 36.24826,-24.16632 20.01815,20.68408 -35.2043,14.44364 z" />
- <path
- sodipodi:type="inkscape:box3dside"
- id="path4877"
- style="fill:#afafde;fill-rule:evenodd;stroke:none"
- inkscape:box3dsidetype="13"
- d="m 148.53637,381.50535 36.24826,-15.58123 20.01815,14.31614 -35.2043,9.05257 z" />
- <path
- sodipodi:type="inkscape:box3dside"
- id="path4875"
- style="fill:#d7d7ff;fill-rule:evenodd;stroke:none"
- inkscape:box3dsidetype="14"
- d="m 184.78463,339.23221 0,26.69191 20.01815,14.31614 0,-20.32397 z" />
- <path
- sodipodi:type="inkscape:box3dside"
- id="path4873"
- style="fill:#8686bf;fill-rule:evenodd;stroke:none"
- inkscape:box3dsidetype="3"
- d="m 148.53637,363.39853 36.24826,-24.16632 0,26.69191 -36.24826,15.58123 z" />
- </g>
- <g
- sodipodi:type="inkscape:box3d"
- style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="g4881"
- inkscape:perspectiveID="#perspective206"
- inkscape:corner0="-0.49358535 : 0.47063658 : 0 : 1"
- inkscape:corner7="-0.57910016 : 0.39976884 : 0.25 : 1">
- <path
- sodipodi:type="inkscape:box3dside"
- id="path4893"
- style="fill:#e9e9ff;fill-rule:evenodd;stroke:none"
- inkscape:box3dsidetype="11"
- d="m 253.19369,370.70521 23.08462,-5.56535 0,31.27168 -23.08462,2.03 z" />
- <path
- sodipodi:type="inkscape:box3dside"
- id="path4889"
- style="fill:#d7d7ff;fill-rule:evenodd;stroke:none"
- inkscape:box3dsidetype="14"
- d="m 280.78373,329.0315 0,49.84598 -4.50542,17.53406 0,-31.27168 z" />
- <path
- sodipodi:type="inkscape:box3dside"
- id="path4885"
- style="fill:#4d4d9f;fill-rule:evenodd;stroke:none"
- inkscape:box3dsidetype="5"
- d="m 245.5422,343.44166 35.24153,-14.41016 -4.50542,36.10836 -23.08462,5.56535 z" />
- <path
- sodipodi:type="inkscape:box3dside"
- id="path4883"
- style="fill:#353564;fill-rule:evenodd;stroke:none"
- inkscape:box3dsidetype="6"
- d="m 245.5422,343.44166 0,41.42883 7.65149,13.57105 0,-27.73633 z" />
- <path
- sodipodi:type="inkscape:box3dside"
- id="path4891"
- style="fill:#afafde;fill-rule:evenodd;stroke:none"
- inkscape:box3dsidetype="13"
- d="m 245.5422,384.87049 35.24153,-5.99301 -4.50542,17.53406 -23.08462,2.03 z" />
- <path
- sodipodi:type="inkscape:box3dside"
- id="path4887"
- style="fill:#8686bf;fill-rule:evenodd;stroke:none"
- inkscape:box3dsidetype="3"
- d="m 245.5422,343.44166 35.24153,-14.41016 0,49.84598 -35.24153,5.99301 z" />
- </g>
- <text
- xml:space="preserve"
- style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#2400cd;fill-opacity:1;stroke:none;font-family:Sans"
- x="267.74481"
- y="318.01416"
- id="text4367-5-3-70"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan4369-3-1-0"
- x="267.74481"
- y="318.01416"
- style="font-size:10px;fill:#2400cd;fill-opacity:1">Logout</tspan></text>
- </g>
- <g
- id="g12796-8-4"
- transform="translate(247.42919,-83.000004)">
- <rect
- ry="3.7880721"
- y="296.36218"
- x="99"
- height="125"
- width="209.5708"
- id="rect6642-4-6-4"
- style="fill:#656565;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-699.16357,-761.22948)"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-2-9"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-4-9"><rect
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="39.215607"
- width="175.71123"
- id="rect11365-5-5" /></flowRegion><flowPara
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowPara6898-7-1">Help View</flowPara></flowRoot> <rect
- ry="0"
- y="321.36218"
- x="98.570801"
- height="95"
- width="210"
- id="rect6642-4-7-6-4"
- style="fill:#ddd4ff;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <rect
- style="color:#000000;fill:#f9ffd4;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4347-0-5"
- width="130"
- height="90.000008"
- x="138.5708"
- y="326.36218" />
- <text
- xml:space="preserve"
- style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
- x="141.0708"
- y="339.36218"
- id="text4367-59-3"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan4369-4-8"
- x="141.0708"
- y="339.36218"
- style="font-size:10px;font-weight:bold">Help on Boxes</tspan><tspan
- sodipodi:role="line"
- x="141.0708"
- y="351.86218"
- style="font-size:10px"
- id="tspan5076" /><tspan
- sodipodi:role="line"
- x="141.0708"
- y="364.36218"
- style="font-size:10px"
- id="tspan5068">Boxes are things that</tspan><tspan
- sodipodi:role="line"
- x="141.0708"
- y="376.86218"
- style="font-size:10px"
- id="tspan5070">can be somewhere</tspan><tspan
- sodipodi:role="line"
- x="141.0708"
- y="389.36218"
- style="font-size:10px"
- id="tspan5072">while not being in some</tspan><tspan
- sodipodi:role="line"
- x="141.0708"
- y="401.86218"
- style="font-size:10px"
- id="tspan5074">other place.</tspan></text>
- <rect
- style="color:#000000;fill:#bababa;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4347-8-9-9-4-6"
- width="4.9999957"
- height="94.999992"
- x="303.5708"
- y="321.36218" />
- </g>
- <g
- id="g5021"
- transform="matrix(0,-1,1,0,146.59921,420.54687)">
- <g
- transform="matrix(0,3.9435832,-3.9435832,0,1908.0696,-573.46249)"
- id="g12499-6-7">
- <g
- id="g18065-9-2"
- transform="matrix(0.5,0,0,0.5,8.55451,158.9407)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18067-13-4"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18069-0-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path4833-2-1-6-1-0"
- d="m 266.87047,103.40079 0,83.96139"
- style="fill:none;stroke:#656565;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none" />
- </g>
- <g
- transform="translate(233.12951,2.6171874e-6)"
- id="g5028-9">
- <g
- transform="matrix(0,3.9435832,-3.9435832,0,1793.0696,-558.46249)"
- id="g12499-6-9">
- <g
- id="g18065-9-1"
- transform="matrix(0.5,0,0,0.5,8.55451,158.9407)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18067-13-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18069-0-62"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path4833-2-1-6-1-6"
- d="m 151.87049,177.36218 0,25"
- style="fill:none;stroke:#656565;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none" />
- </g>
- <path
- style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 562.2466,93.463523 c 20,0 -5,38.898657 10,38.898657 -15,0 10,40 -10,40"
- id="path5078"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
- <text
- xml:space="preserve"
- style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
- x="575.84796"
- y="129.91284"
- id="text4367-9-3"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan4369-2-1"
- x="575.84796"
- y="129.91284"
- style="font-size:10px">Content</tspan><tspan
- sodipodi:role="line"
- x="575.84796"
- y="142.41284"
- style="font-size:10px"
- id="tspan5101">Sub-View</tspan></text>
- <g
- id="g5021-7"
- transform="matrix(0,-1,1,0,156.59921,315.54687)">
- <g
- transform="matrix(-3.9435832,0,0,-3.9435832,1025.3662,1764.5243)"
- id="g12499-6-7-9">
- <g
- id="g18065-9-2-0"
- transform="matrix(0.5,0,0,0.5,8.55451,158.9407)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18067-13-4-3"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18069-0-6-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </g>
- <path
- sodipodi:nodetypes="ccccc"
- inkscape:connector-curvature="0"
- id="path4833-2-1-6-1-0-3"
- d="m 228.18469,398.40079 0,15 45,0 0,-290 -10,0"
- style="fill:none;stroke:#656565;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none" />
- </g>
- </g>
- <g
- inkscape:groupmode="layer"
- id="layer2"
- inkscape:label="Varjot" />
-</svg>
diff --git a/documentation/architecture/architecture-client-side.asciidoc b/documentation/architecture/architecture-client-side.asciidoc deleted file mode 100644 index e16b003687..0000000000 --- a/documentation/architecture/architecture-client-side.asciidoc +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Client-Side Engine -order: 3 -layout: page ---- - -[[architecture.client-side]] -= Client-Side Engine - -((("Client-Side -Engine"))) -The user interface of a server-side Vaadin application is rendered in the -browser by the Vaadin Client-Side Engine. It is loaded in the browser when the -page with the Vaadin UI is opened. The server-side UI components are rendered -using __widgets__ (as they are called in Google Web Toolkit) on the client-side. -The client-side engine is illustrated in <<figure.architecture.client-side>>. - -[[figure.architecture.client-side]] -.Vaadin Client-Side Engine -image::img/clientside-arch-hi.png[] - -The client-side framework includes two kinds of built-in widgets: GWT widgets -and Vaadin-specific widgets. The two widget collections have significant -overlap, where the Vaadin widgets provide a bit different features than the GWT -widgets. In addition, many add-on widgets and their server-side counterparts -exist, and you can easily download and install them, as described in -<<dummy/../../../framework/addons/addons-overview.asciidoc#addons.overview,"Using -Vaadin Add-ons">>. You can also develop your own widgets, as described in -<<dummy/../../../framework/clientside/clientside-overview.asciidoc#clientside.overview,"Client-Side -Vaadin Development">>. - -The rendering with widgets, as well as the communication to the server-side, is -handled in the [classname]#ApplicationConnection#. Connecting the widgets with -their server-side counterparts is done in __connectors__, and there is one for -each widget that has a server-side counterpart. The framework handles -serialization of component state transparently, and includes an RPC mechanism -between the two sides. Integration of widgets with their server-side counterpart -components is described in -<<dummy/../../../framework/gwt/gwt-overview.asciidoc#gwt.overview,"Integrating -with the Server-Side">>. - - - diff --git a/documentation/architecture/architecture-events.asciidoc b/documentation/architecture/architecture-events.asciidoc deleted file mode 100644 index e832c581fe..0000000000 --- a/documentation/architecture/architecture-events.asciidoc +++ /dev/null @@ -1,74 +0,0 @@ ---- -title: Events and Listeners -order: 4 -layout: page ---- - -[[architecture.events]] -= Events and Listeners - -Vaadin offers an event-driven programming model for handling user interaction. -When a user does something in the user interface, such as clicks a button or -selects an item, the application needs to know about it. Many Java-based user -interface frameworks follow the __Event-Listener pattern__ (also known as the -Observer design pattern) to communicate user input to the application logic. So -does Vaadin. The design pattern involves two kinds of elements: an object that -generates ("fires" or "emits") events and a number of listeners that listen for -the events. When such an event occurs, the object sends a notification about it -to all the listeners. In a typical case, there is only one listener. - -Events can serve many kinds of purposes. In Vaadin, the usual purpose of events -is handling user interaction in a user interface. Session management can require -special events, such as time-out, in which case the event would actually be the -lack of user interaction. Time-out is a special case of timed or scheduled -events, where an event occurs at a specific date and time or when a set time has -passed. - -To receive events of a particular type, an application must register a listener -object with the event source. The listeners are registered in the components -with an [methodname]#add*Listener()# method (with a method name specific to the -listener). - -Most components that have related events define their own event class and the -corresponding listener class. For example, the [classname]#Button# has -[classname]#Button.ClickEvent# events, which can be listened to through the -[classname]#Button.ClickListener# interface. - -In the following, we handle button clicks with a listener implemented as an -anonymous class: - - -[source, java] ----- -final Button button = new Button("Push it!"); - -button.addClickListener(new Button.ClickListener() { - public void buttonClick(ClickEvent event) { - button.setCaption("You pushed it!"); - } -}); ----- - -<<figure.eventlistenerdiagram>> illustrates the case where an -application-specific class inherits the [classname]#Button.ClickListener# -interface to be able to listen for button click events. The application must -instantiate the listener class and register it with -[methodname]#addClickListener()#. It can be an anonymous class, such as the one -above. When an event occurs, an event object is instantiated, in this case a -[classname]#Button.ClickEvent#. The event object knows the related UI component, -in this case the [classname]#Button#. - -[[figure.eventlistenerdiagram]] -.Class Diagram of a Button Click Listener -image::img/events-classdiagram-hi.png[] - -In the ancient times of C programming, __callback functions__ filled largely the -same need as listeners do now. In object-oriented languages, we usually only -have classes and methods, not functions, so the application has to give a class -interface instead of a callback function pointer to the framework. - -<<dummy/../../../framework/application/application-events#application.events,"Handling -Events with Listeners">> goes into details of handling events in practice. - - - diff --git a/documentation/architecture/architecture-overview.asciidoc b/documentation/architecture/architecture-overview.asciidoc deleted file mode 100644 index 4ff34c453c..0000000000 --- a/documentation/architecture/architecture-overview.asciidoc +++ /dev/null @@ -1,162 +0,0 @@ ---- -title: Overview -order: 1 -layout: page ---- - -[[architecture.overview]] -= Overview - -Vaadin provides two development models for web applications: for the client-side -(the browser) and for the server-side. The server-driven development model is -the more powerful one, allowing application development solely on the -server-side, by utilizing an AJAX-based Vaadin Client-Side Engine that renders -the user interface in the browser. The client-side model allows developing -widgets and applications in Java, which are compiled to JavaScript and executed -in the browser. The two models can share their UI widgets, themes, and back-end -code and services, and can be mixed together easily. - -[[figure.architecture.detailed]] -.Vaadin Runtime Architecture -image::img/architecture-detailed-hi.png[] - -<<figure.architecture.detailed>> gives a basic illustration of the client-side -and server-side communications, in a running situation where the page with the -client-side code (engine or application) has been initially loaded in the -browser. - -Vaadin Framework consists of a __server-side API__, a __client-side API__, a -horde of __user interface components/widgets__ on the both sides, __themes__ for -controlling the appearance, and a __data model__ that allows binding the -server-side components directly to data. For client-side development, it -includes the Vaadin Compiler, which allows compiling Java to JavaScript. - -A server-side Vaadin application runs as a servlet in a Java web server, serving -HTTP requests. The [classname]#VaadinServlet# is normally used as the servlet -class. The servlet receives client requests and inteprets them as events for a -particular user session. Events are associated with user interface components -and delivered to the event listeners defined in the application. If the UI logic -makes changes to the server-side user interface components, the servlet renders -them in the web browser by generating a response. The client-side engine running -in the browser receives the responses and uses them to make any necessary -changes to the page in the browser. - -The major parts of the server-driven development architecture and their function -are as follows: - -User Interface:: Vaadin applications provide a user interface for the user to interface with the -business logic and data of the application. At technical level, the UI is -realized as a __UI__ class that extends [classname]#com.vaadin.ui.UI#. Its main -task is to create the initial user interface out of UI components and set up -event listeners to handle user input. The UI can then be loaded in the browser -using an URL, or can be embedded to any HTML page. For detailed information -about implementing a [classname]#UI#, see -<<dummy/../../../framework/application/application-overview.asciidoc#application.overview,"Writing -a Server-Side Web Application">>. - -+ -Please note that the term "UI" is used throughout this book to refer both to the -general UI concept as well as the technical UI class concept. - -User Interface Components/Widgets:: ((("component"))) -((("widget"))) -((("field"))) -The user interface of a Vaadin application consists of components that are -created and laid out by the application. Each server-side component has a -client-side counterpart, a " __widget__", by which it is rendered in the browser -and with which the user interacts. The client-side widgets can also be used by -client-side applications. The server-side components relay these events to the -application logic. Field components that have a value, which the user can view -or edit, can be bound to a data source (see below). For a more detailed -description of the UI component architecture, see -<<dummy/../../../framework/components/components-overview.asciidoc#components.overview,"User -Interface Components">>. - -Client-Side Engine:: ((("Client-Side -Engine"))) -((("Google Web -Toolkit"))) -((("HTTP"))) -The Client-Side Engine of Vaadin manages the rendering of the UI in the web -browser by employing various client-side __widgets__, counterparts of the -server-side components. It communicates user interaction to the server-side, and -then again renders the changes in the UI. The communications are made using -asynchronous HTTP or HTTPS requests. See -<<dummy/../../../framework/architecture/architecture-client-side#architecture.client-side,"Client-Side -Engine">>. - -Vaadin Servlet:: ((("VaadinServlet"))) -Server-side Vaadin applications work on top of the Java Servlet API (see -<<dummy/../../../framework/architecture/architecture-technology#architecture.technology.servlet,"Java -Servlets">>). The Vaadin servlet, or more exactly the [classname]#VaadinServlet# -class, receives requests from different clients, determines which user session -they belong to by tracking the sessions with cookies, and delegates the requests -to their corresponding sessions. You can customize the Vaadin servlet by -extending it. - -Themes:: ((("theme"))) -((("CSS"))) -((("Sass"))) -((("HTML -templates"))) -Vaadin makes a separation between the appearance and component structure of the -user interface. While the UI logic is handled as Java code, the presentation is -defined in __themes__ as CSS or Sass. Vaadin provides a number of default -themes. User themes can, in addition to style sheets, include HTML templates -that define custom layouts and other resources, such as images and fonts. Themes -are discussed in detail in -<<dummy/../../../framework/themes/themes-overview.asciidoc#themes.overview,"Themes">>. - -Events:: ((("events"))) -Interaction with user interface components creates events, which are first -processed on the client-side by the widgets, then passed all the way through the -HTTP server, Vaadin servlet, and the user interface components to the event -listeners defined in the application. See -<<dummy/../../../framework/architecture/architecture-events#architecture.events,"Events -and Listeners">>. - -Server Push:: ((("server -push"))) -In addition to the event-driven programming model, Vaadin supports server push, -where the UI changes are pushed directly from the server to the client without a -client request or an event. This makes it possible to update UIs immediately -from other threads and other UIs, without having to wait for a request. See -<<dummy/../../../framework/advanced/advanced-push#advanced.push,"Server Push">>. - -Data Binding:: ((("Data -Model"))) -((("Data -Binding"))) -In addition to the user interface model, Vaadin provides a __data model__ for -binding data presented in field components, such as text fields, check boxes and -selection components, to a data source. Using the data model, the user interface -components can update the application data directly, often without the need for -any control code. All the field components in Vaadin use this data model -internally, but any of them can be bound to a separate data source as well. -((("SQL"))) -For example, you can bind a table component to an SQL query response. For a -complete overview of the Vaadin Data Model, please refer to -<<dummy/../../../framework/datamodel/datamodel-overview.asciidoc#datamodel.overview,"Binding -Components to Data">>. - -Client-Side Applications:: In addition to server-side web applications, Vaadin supports client-side -application modules, which run in the browser. Client-side modules can use the -same widgets, themes, and back-end services as server-side Vaadin applications. -They are useful when you have a need for highly responsive UI logic, such as for -games or for serving a large number of clients with possibly stateless -server-side code, and for various other purposes, such as offering an off-line -mode for server-side applications. Please see -<<dummy/../../../framework/clientsideapp/clientsideapp-overview.asciidoc#clientsideapp.overview,"Client-Side -Applications">> for further details. - -Back-end:: Vaadin is meant for building user interfaces, and it is recommended that other -application layers should be kept separate from the UI. The business logic can -run in the same servlet as the UI code, usually separated at least by a Java -API, possibly as EJBs, or distributed to a remote back-end service. The data -storage is usually distributed to a database management system, and is typically -accessed through a persistence solution, such as JPA. - - - - - diff --git a/documentation/architecture/architecture-technology.asciidoc b/documentation/architecture/architecture-technology.asciidoc deleted file mode 100644 index 39df9c3651..0000000000 --- a/documentation/architecture/architecture-technology.asciidoc +++ /dev/null @@ -1,208 +0,0 @@ ---- -title: Technological Background -order: 2 -layout: page ---- - -[[architecture.technology]] -= Technological Background - -((("Google Web -Toolkit"))) -((("Google Web -Toolkit"))) -This section provides an introduction to the various technologies and designs, -which Vaadin is based on. This knowledge is not necessary for using Vaadin, but -provides some background if you need to make low-level extensions to Vaadin. - -[[architecture.technology.html]] -== HTML and JavaScript - -((("HTML"))) -((("JavaScript"))) -The World Wide Web, with all its websites and most of the web applications, is -based on the use of the Hypertext Markup Language (HTML). HTML defines the -structure and formatting of web pages, and allows inclusion of graphics and -other resources. It is based on a hierarchy of elements marked with start and -end tags, such as [literal]#++<div> ... </div>++#. Vaadin uses HTML version 5, -although conservatively, to the extent supported by the major browsers, and -their currently most widely used versions. - -((("DOM"))) -JavaScript, on the other hand, is a programming language for embedding programs -in HTML pages. JavaScript programs can manipulate a HTML page through the -Document Object Model (DOM) of the page. They can also handle user interaction -events. The Client-Side Engine of Vaadin and its client-side widgets do exactly -this, although it is actually programmed in Java, which is compiled to -JavaScript with the Vaadin Client Compiler. - -Vaadin largely hides the use of HTML, allowing you to concentrate on the UI -component structure and logic. In server-side development, the UI is developed -in Java using UI components and rendered by the client-side engine as HTML, but -it is possible to use HTML templates for defining the layout, as well as HTML -formatting in many text elements. Also when developing client-side widgets and -UIs, the built-in widgets in the framework hide most of HTML DOM manipulation. - - -[[architecture.technology.styling]] -== Styling with CSS and Sass - -((("CSS"))) -((("Sass"))) -While HTML defines the content and structure of a web page, __Cascading Style -Sheet__ (CSS) is a language for defining the visual style, such as colors, text -sizes, and margins. CSS is based on a set of rules that are matched with the -HTML structure by the browser. The properties defined in the rules determine the -visual appearance of the matching HTML elements. - - -[source, css] ----- -/* Define the color of labels in my view */ -.myview .v-label { - color: blue; -} ----- - -((("SCSS"))) -((("CSS3"))) -__Sass__, or __Syntactically Awesome Stylesheets__, is an extension of the CSS -language, which allows the use of variables, nesting, and many other syntactic -features that make the use of CSS easier and clearer. Sass has two alternative -formats, SCSS, which is a superset of the syntax of CSS3, and an older indented -syntax, which is more concise. The Vaadin Sass compiler supports the SCSS -syntax. - -((("themes"))) -Vaadin handles styling with __themes__ defined with CSS or Sass, and associated -images, fonts, and other resources. Vaadin themes are specifically written in -Sass. In development mode, Sass files are compiled automatically to CSS. For -production use, you compile the Sass files to CSS with the included compiler. -The use of themes is documented in detail in -<<dummy/../../../framework/themes/themes-overview.asciidoc#themes.overview,"Themes">>, -which also gives an introduction to CSS and Sass. - - -[[architecture.technology.ajax]] -== AJAX - -((("AJAX"))) -((("XML"))) -((("JavaScript"))) -((("HTML -5"))) -((("CSS"))) -((("DOM"))) -((("XMLHttpRequest"))) -AJAX, short for Asynchronous JavaScript and XML, is a technique for developing -web applications with responsive user interaction, similar to traditional -desktop applications. Conventional web applications, be they JavaScript-enabled -or not, can get new page content from the server only by loading an entire new -page. AJAX-enabled pages, on the other hand, handle the user interaction in -JavaScript, send a request to the server asynchronously (without reloading the -page), receive updated content in the response, and modify the page accordingly. -This way, only small parts of the page data need to be loaded. This goal is -archieved by the use of a certain set of technologies: HTML, CSS, DOM, -JavaScript, and the XMLHttpRequest API in JavaScript. XML is just one way to -serialize data between the client and the server, and in Vaadin it is serialized -with the more efficient JSON. - -The asynchronous requests used in AJAX are made possible by the -[methodname]#XMLHttpRequest# class in JavaScript. The API feature is available -in all major browsers and is under way to become a W3C standard. - -The communication of complex data between the browser and the server requires -some sort of __serialization__ (or __marshalling__) of data objects. The Vaadin -servlet and the client-side engine handle the serialization of shared state -objects from the server-side components to the client-side widgets, as well as -serialization of RPC calls between the widgets and the server-side components. - - -[[architecture.technology.gwt]] -== Google Web Toolkit - -((("Google Web -Toolkit"))) -The client-side framework of Vaadin is based on the Google Web Toolkit (GWT). -Its purpose is to make it possible to develop web user interfaces that run in -the browser easily with Java instead of JavaScript. Client-side modules are -developed with Java and compiled into JavaScript with the Vaadin Compiler, which -is an extension of the GWT Compiler. The client-side framework also hides much -of the HTML DOM manipulation and enables handling browser events in Java. - -GWT is essentially a client-side technology, normally used to develop user -interface logic in the web browser. Pure client-side modules still need to -communicate with a server using RPC calls and by serializing any data. The -server-driven development mode in Vaadin effectively hides all the client-server -communications and allows handling user interaction logic in a server-side -application. This makes the architecture of an AJAX-based web application much -simpler. Nevertheless, Vaadin also allows developing pure client-side -applications, as described in -<<dummy/../../../framework/clientsideapp/clientsideapp-overview.asciidoc#clientsideapp.overview,"Client-Side -Applications">>. - -See -<<dummy/../../../framework/architecture/architecture-client-side#architecture.client-side,"Client-Side -Engine">> for a description of how the client-side framework based on GWT is -used in the Client-Side Engine of Vaadin. -<<dummy/../../../framework/clientside/clientside-overview.asciidoc#clientside.overview,"Client-Side -Vaadin Development">> provides information about the client-side development, -and -<<dummy/../../../framework/gwt/gwt-overview.asciidoc#gwt.overview,"Integrating -with the Server-Side">> about the integration of client-side widgets with the -server-side components. - - -[[architecture.technology.servlet]] -== Java Servlets - -A Java Servlet is a class that is executed in a Java web server (a __Servlet -container__) to extend the capabilities of the server. In practice, it is -normally a part of a __web application__, which can contain HTML pages to -provide static content, and JavaServer Pages (JSP) and Java Servlets to provide -dynamic content. This is illustrated in -<<figure.architecture.technology.servlet>>. - -[[figure.architecture.technology.servlet]] -.Java Web Applications and Servlets -image::img/java-servlet-hi.png[] - -Web applications are usually packaged and deployed to a server as __WAR__ ( -__Web application ARchive__) files, which are Java JAR packages, which in turn -are ZIP compressed packages. The web application is defined in a -[filename]#WEB-INF/web.xml# deployment descriptor, which defines the servlet -classes and also the mappings from request URL paths to the servlets. This is -described in more detail in -<<dummy/../../../framework/application/application-environment#application.environment.web-xml,"Using -a web.xml Deployment Descriptor">>. The class path for the servlets and their -dependencies includes the [filename]#WEB-INF/classes# and -[filename]#WEB-INF/lib# folders. The [filename]#WEB-INF# is a special hidden -folder that can not be accessed by its URL path. - -The servlets are Java classes that handle HTTP requests passed to them by the -server through the __Java Servlet API__. They can generate HTML or other content -as a response. JSP pages, on the other hand, are HTML pages, which allow -including Java source code embedded in the pages. They are actually translated -to Java source files by the container and then compiled to servlets. - -The UIs of server-side Vaadin applications run as servlets. They are wrapped -inside a [classname]#VaadinServlet# servlet class, which handles session -tracking and other tasks. On the initial request, it returns an HTML loader page -and then mostly JSON responses to synchronize the widgets and their server-side -counterparts. It also serves various resources, such as themes. The server-side -UIs are implemented as classes extending the [classname]#UI# class, as described -in -<<dummy/../../../framework/application/application-overview.asciidoc#application.overview,"Writing -a Server-Side Web Application">>. The class is given as a parameter to the -Vaadin Servlet in the [filename]#web.xml# deployment descriptor. - -The Vaadin Client-Side Engine as well as client-side Vaadin applications are -loaded to the browser as static JavaScript files. The client-side engine, or -widget set in technical terms, needs to be located under the -[filename]#VAADIN/widgetsets# path in the web application. The precompiled -default widget set is served from the [filename]#vaadin-client-compiled# JAR by -the Vaadin Servlet. - - - - diff --git a/documentation/architecture/chapter-architecture.asciidoc b/documentation/architecture/chapter-architecture.asciidoc deleted file mode 100644 index 60e0c57b09..0000000000 --- a/documentation/architecture/chapter-architecture.asciidoc +++ /dev/null @@ -1,16 +0,0 @@ -[[architecture]] -== Architecture - -In -<<dummy/../../../framework/introduction/introduction-overview.asciidoc#intro.overview,"Introduction">>, -we gave a short introduction to the general architecture of Vaadin. This chapter -looks deeper into the architecture at a more technical level. - - -include::architecture-overview.asciidoc[leveloffset=+2] - -include::architecture-technology.asciidoc[leveloffset=+2] - -include::architecture-client-side.asciidoc[leveloffset=+2] - -include::architecture-events.asciidoc[leveloffset=+2] diff --git a/documentation/architecture/img/architecture-detailed-hi.png b/documentation/architecture/img/architecture-detailed-hi.png Binary files differdeleted file mode 100644 index 190e4adac0..0000000000 --- a/documentation/architecture/img/architecture-detailed-hi.png +++ /dev/null diff --git a/documentation/architecture/img/architecture-detailed-lo.png b/documentation/architecture/img/architecture-detailed-lo.png Binary files differdeleted file mode 100644 index 4edc56f85c..0000000000 --- a/documentation/architecture/img/architecture-detailed-lo.png +++ /dev/null diff --git a/documentation/architecture/img/clientside-arch-hi.png b/documentation/architecture/img/clientside-arch-hi.png Binary files differdeleted file mode 100644 index f00d9db29c..0000000000 --- a/documentation/architecture/img/clientside-arch-hi.png +++ /dev/null diff --git a/documentation/architecture/img/clientside-arch-lo.png b/documentation/architecture/img/clientside-arch-lo.png Binary files differdeleted file mode 100644 index 28fb6db3ef..0000000000 --- a/documentation/architecture/img/clientside-arch-lo.png +++ /dev/null diff --git a/documentation/architecture/img/datamodel-sml.png b/documentation/architecture/img/datamodel-sml.png Binary files differdeleted file mode 100644 index 8087ffa7d8..0000000000 --- a/documentation/architecture/img/datamodel-sml.png +++ /dev/null diff --git a/documentation/architecture/img/datamodel.png b/documentation/architecture/img/datamodel.png Binary files differdeleted file mode 100644 index a639fa4a32..0000000000 --- a/documentation/architecture/img/datamodel.png +++ /dev/null diff --git a/documentation/architecture/img/events-classdiagram-hi.png b/documentation/architecture/img/events-classdiagram-hi.png Binary files differdeleted file mode 100644 index a9df53c3c5..0000000000 --- a/documentation/architecture/img/events-classdiagram-hi.png +++ /dev/null diff --git a/documentation/architecture/img/events-classdiagram-lo.png b/documentation/architecture/img/events-classdiagram-lo.png Binary files differdeleted file mode 100644 index 91859d1353..0000000000 --- a/documentation/architecture/img/events-classdiagram-lo.png +++ /dev/null diff --git a/documentation/architecture/img/java-servlet-hi.png b/documentation/architecture/img/java-servlet-hi.png Binary files differdeleted file mode 100644 index 7d2f26928a..0000000000 --- a/documentation/architecture/img/java-servlet-hi.png +++ /dev/null diff --git a/documentation/architecture/img/java-servlet-lo.png b/documentation/architecture/img/java-servlet-lo.png Binary files differdeleted file mode 100644 index 5985bb5492..0000000000 --- a/documentation/architecture/img/java-servlet-lo.png +++ /dev/null diff --git a/documentation/architecture/original-drawings/architecture-detailed.svg b/documentation/architecture/original-drawings/architecture-detailed.svg deleted file mode 100644 index 504ba28ac4..0000000000 --- a/documentation/architecture/original-drawings/architecture-detailed.svg +++ /dev/null @@ -1,1999 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="architecture-detailed.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- version="1.1">
- <defs
- id="defs1903">
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective206" />
- <linearGradient
- id="linearGradient11516">
- <stop
- id="stop11518"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop11520"
- offset="1"
- style="stop-color:#a090e7;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient11508">
- <stop
- id="stop11510"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop11512"
- offset="1"
- style="stop-color:#e27979;stop-opacity:1" />
- </linearGradient>
- <marker
- inkscape:stockid="DiamondL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="DiamondL"
- style="overflow:visible">
- <path
- id="path4404"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.8)" />
- </marker>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="DiamondEmpty"
- style="overflow:visible">
- <path
- id="path7"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z "
- style="fill-rule:evenodd;fill:#ffffff;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(1.0) translate(-5,0)" />
- </marker>
- <linearGradient
- id="linearGradient3286">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3288" />
- <stop
- style="stop-color:#79e291;stop-opacity:1;"
- offset="1"
- id="stop3290" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="EmptyArrow"
- style="overflow:visible;">
- <path
- id="path9"
- d="M 0.0,0.0 L 0.0,-5.0 L -12.5,0.0 L 0.0,5.0 L 0.0,0.0 z M -0.5,0.0 L -0.5,-4.5 L -12.0,0.0 L -0.5,4.5 L -0.5,0.0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(1.0) rotate(180) translate(10,0)" />
- </marker>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="EmptyArrow2"
- style="overflow:visible;">
- <path
- id="path13"
- d="M 0.0,0.0 L 0.0,-5.0 L -10.0,0.0 L 0.0,5.0 L 0.0,0.0 z"
- style="fill-rule:evenodd;fill:#ffffff;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(1.0) rotate(180) translate(10,0)" />
- </marker>
- <linearGradient
- id="linearGradient19816">
- <stop
- id="stop19818"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop19820"
- offset="1"
- style="stop-color:#e7e790;stop-opacity:1;" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow2Lend"
- style="overflow:visible;">
- <path
- id="path16811"
- style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- transform="scale(1.1) rotate(180) translate(1,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow1Lend"
- style="overflow:visible;">
- <path
- id="path16829"
- d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(0.8) rotate(180) translate(12.5,0)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutM"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleOutM"
- style="overflow:visible">
- <path
- id="path16731"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.4)" />
- </marker>
- <marker
- inkscape:stockid="TriangleInL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleInL"
- style="overflow:visible">
- <path
- id="path16743"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(-0.8)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path16734"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.8)" />
- </marker>
- <linearGradient
- id="linearGradient9263">
- <stop
- style="stop-color:#000000;stop-opacity:0"
- offset="0"
- id="stop9265" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop9267" />
- </linearGradient>
- <linearGradient
- id="linearGradient7299">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop7301" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop7303" />
- </linearGradient>
- <linearGradient
- id="linearGradient5349">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop5351" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop5353" />
- </linearGradient>
- <linearGradient
- id="linearGradient4152">
- <stop
- style="stop-color:#6b6bff;stop-opacity:1;"
- offset="0"
- id="stop4154" />
- <stop
- style="stop-color:#6b6bff;stop-opacity:0;"
- offset="1"
- id="stop4156" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5349"
- id="linearGradient5355"
- x1="96.085953"
- y1="148.38934"
- x2="389.01985"
- y2="148.38934"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient12637"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,265.61411,78.560061)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient15668"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient17873"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,541.12253,30.198804)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient17875"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient20832"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22790"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22806"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22822"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22838"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient2303"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3306"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2251403,2.385383e-3,-2.8806072e-3,0.5966421,625.8055,-4.9637231)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3307"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.634924,2.3804409e-3,-3.8441097e-3,0.5954059,670.96002,-4.81581)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3327"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient8322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient8338"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient8354"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient11393"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2251403,2.385383e-3,-2.8806072e-3,0.5966421,625.8055,-4.9637231)"
- cx="-145.65326"
- cy="87.697487"
- fx="-145.65326"
- fy="87.697487"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient11490"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11508"
- id="radialGradient11506"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11516"
- id="linearGradient11514"
- x1="402.58597"
- y1="24.440832"
- x2="535.59796"
- y2="190.61652"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient11602"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11508"
- id="radialGradient11604"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11516"
- id="linearGradient13616"
- x1="174.35712"
- y1="96.654701"
- x2="220.02124"
- y2="192.93446"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient14623"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9722636,1.8198108e-3,-2.2860317e-3,0.4551788,579.72294,2.0165387)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="linearGradient16644"
- x1="160.84073"
- y1="73.780838"
- x2="239.77594"
- y2="207.50426"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11516"
- id="linearGradient18644"
- x1="1036.6514"
- y1="1185.2882"
- x2="1076.5066"
- y2="1351.074"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient19653"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-3"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-8"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-5"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-0"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-8"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-1"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-2"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-6"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-9"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-10"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-7"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-3"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-12"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-8"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-9"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-88"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-0"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-22"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-1"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-62"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-02"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-4"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-6"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-9"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-5"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-1"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-5"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-55"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-60"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-6"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-1"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-5"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-9"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-29"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-62"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-5"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-2"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-89"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-02"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-888"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-9"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-73"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-86"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-83"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-93"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-54"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-62"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-6"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-94"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-92"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-37"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-2"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-2"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-39"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-76"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-2"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-927"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-5"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.2610898"
- inkscape:cx="364.50845"
- inkscape:cy="546.47053"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1680"
- inkscape:window-height="1027"
- inkscape:window-x="-4"
- inkscape:window-y="-4"
- showgrid="true"
- showguides="false"
- inkscape:connector-spacing="10"
- inkscape:guide-bbox="true"
- inkscape:window-maximized="1">
- <sodipodi:guide
- orientation="0,1"
- position="31.938869,788.55965"
- id="guide17449" />
- <sodipodi:guide
- orientation="1,0"
- position="224.67342,882.17358"
- id="guide17453" />
- <sodipodi:guide
- orientation="0,1"
- position="285.41744,976.57155"
- id="guide23390" />
- <sodipodi:guide
- orientation="0,1"
- position="285.79781,806.73177"
- id="guide23439" />
- <sodipodi:guide
- orientation="1,0"
- position="561.68355,823.80254"
- id="guide23441" />
- <sodipodi:guide
- orientation="1,0"
- position="415.75596,833.7146"
- id="guide23443" />
- <sodipodi:guide
- orientation="1,0"
- position="61.675057,822.15053"
- id="guide23607" />
- <inkscape:grid
- type="xygrid"
- id="grid4114"
- empspacing="5"
- visible="true"
- enabled="true"
- snapvisiblegridlinesonly="true"
- spacingx="5px"
- spacingy="5px" />
- </sodipodi:namedview>
- <metadata
- id="metadata1906">
- <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
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <g
- id="g4123"
- transform="translate(-347.06357,-147.85583)">
- <rect
- ry="3.7880721"
- y="605.21802"
- x="457.06357"
- height="230"
- width="420.00003"
- id="rect6642-4-3"
- style="fill:#e6e6e6;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-350.52446,-452.47406)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="20.981634"
- width="159.7314"
- id="rect11365-5" /></flowRegion><flowPara
- id="flowPara11367-2">Web Application</flowPara></flowRoot> </g>
- <g
- id="g4116"
- transform="translate(-351.90973,-70.502319)">
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-358.45417,-561.53842)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11369-9"
- xml:space="preserve"><flowRegion
- id="flowRegion11371-3"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="17.979126"
- width="116.12012"
- id="rect11373-3" /></flowRegion><flowPara
- id="flowPara11375-6">Server</flowPara></flowRoot> <rect
- ry="3.7880721"
- y="497.8645"
- x="451.90973"
- height="270"
- width="440"
- id="rect6642-49"
- style="fill:none;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- </g>
- <g
- id="g12796"
- transform="translate(0,10)">
- <rect
- ry="3.7880721"
- y="262.36218"
- x="100"
- height="140"
- width="440"
- id="rect6642-4"
- style="fill:#8c8c8c;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-708.875,-796.17532)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361"
- xml:space="preserve"><flowRegion
- id="flowRegion11363"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="17.67767"
- width="94.752312"
- id="rect11365" /></flowRegion><flowPara
- id="flowPara11367">Web Browser</flowPara></flowRoot> <g
- id="g28403-2-5-2"
- transform="translate(102.64053,167.50336)">
- <rect
- ry="3.7880721"
- y="119.85882"
- x="7.3594728"
- height="50.000008"
- width="215"
- id="rect4680-4-4-7"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-799.7579,-939.67189)"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-1-1-2-1-2"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-0-64-3-6-2"><rect
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="60.147655"
- width="188.23749"
- id="rect11365-5-4-5-1-8-6" /></flowRegion><flowPara
- id="flowPara17609-3-7-0-1">Vaadin Client-Side Engine</flowPara><flowPara
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold"
- id="flowPara4340">(Widget Set)</flowPara></flowRoot> </g>
- <g
- id="g28403-2-5-2-4"
- transform="translate(335.8829,166.96949)">
- <rect
- ry="3.7880721"
- y="119.85882"
- x="7.3594728"
- height="50.000008"
- width="186.75763"
- id="rect4680-4-4-7-8"
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3, 3;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-799.7579,-939.67189)"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-1-1-2-1-2-3"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-0-64-3-6-2-8"><rect
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="60.147655"
- width="188.23749"
- id="rect11365-5-4-5-1-8-6-7" /></flowRegion><flowPara
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowPara4340-2">Client-Side UI</flowPara></flowRoot> </g>
- <path
- style="fill:none;stroke:#656565;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 400,338.18819 0,9.17399"
- id="path4833-2-1-1-5"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <g
- id="g28403-2-5-2-40"
- transform="translate(200.42278,225.12597)">
- <rect
- ry="3.7880721"
- y="119.85882"
- x="7.3594728"
- height="50.000008"
- width="236.75763"
- id="rect4680-4-4-7-0"
- style="fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <g
- transform="translate(-7.233293,-53.196324)"
- id="g28403-3-5-6">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5"
- width="69.539879"
- height="35.488552"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7"><rect
- id="rect11365-5-4-6-4"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9">Built-in</flowPara><flowPara
- id="flowPara4300">Widgets</flowPara></flowRoot> </g>
- <g
- transform="translate(67.766707,-53.196324)"
- id="g28403-3-5-6-6">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5"
- width="69.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5"><rect
- id="rect11365-5-4-6-4-5"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-9">Add-on</flowPara><flowPara
- id="flowPara4338">Widgets</flowPara></flowRoot> </g>
- <g
- transform="translate(142.76671,-53.196324)"
- id="g28403-3-5-6-2">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2,2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;stroke-dashoffset:0"
- id="rect4680-7-10-5-8"
- width="69.539879"
- height="35.488552"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-6"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-50"><rect
- id="rect11365-5-4-6-4-0"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-1">Custom</flowPara><flowPara
- id="flowPara4300-7">Widgets</flowPara></flowRoot> </g>
- </g>
- </g>
- <g
- id="g4123-4"
- transform="translate(-337.06357,-122.85583)">
- <rect
- ry="3.7880721"
- y="605.21802"
- x="457.06357"
- height="195"
- width="246.28696"
- id="rect6642-4-3-9"
- style="fill:#d2d2d2;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-350.52446,-452.47406)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-17"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-06"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="19.154446"
- width="164.99512"
- id="rect11365-5-0" /></flowRegion><flowPara
- id="flowPara11367-2-8">Vaadin Servlet</flowPara></flowRoot> <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-179.52446,-452.47406)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-17-2"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-06-1"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="19.154446"
- width="164.99512"
- id="rect11365-5-0-1" /></flowRegion><flowPara
- id="flowPara11367-2-8-8">(or Portlet)</flowPara></flowRoot> </g>
- <g
- transform="translate(108.18948,362.1611)"
- id="g28403-3-5">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10"
- width="115"
- height="60.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-786.22146,-876.33845)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7"><rect
- id="rect11365-5-4-6"
- width="144.15208"
- height="72.387939"
- x="813.87988"
- y="1064.3831"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198">User</flowPara><flowPara
- id="flowPara9659">Interface</flowPara></flowRoot> </g>
- <g
- transform="translate(128.74016,497.48032)"
- id="g28403-3-9-1" />
- <g
- transform="translate(99.94147,585.79123)"
- id="g28403-2-9">
- <rect
- style="fill:#abdca7;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-4-0"
- width="440"
- height="70"
- x="0.058529999"
- y="121.57095"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-1-2-7"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-805.37399,-936.80336)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-64-3-63"><rect
- id="rect11365-5-4-5-1-7"
- width="136.60326"
- height="42.457775"
- x="813.87988"
- y="1064.3831"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara17609-3-7-6">Back-end</flowPara></flowRoot> <g
- transform="translate(78.248017,-33.861588)"
- id="g28403-3-5-6-6-3-3">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5-4-6"
- width="74.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1-8-0"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.76939)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5-1-8"><rect
- id="rect11365-5-4-6-4-5-6-9"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4338-1-9">Web Service</flowPara></flowRoot> </g>
- <g
- transform="translate(163.24802,-33.861588)"
- id="g28403-3-5-6-6-3-3-7">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5-4-6-4"
- width="74.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1-8-0-8"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.76939)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5-1-8-3"><rect
- id="rect11365-5-4-6-4-5-6-9-2"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4338-1-9-4">EJB</flowPara></flowRoot> </g>
- <g
- transform="translate(248.24802,-33.861588)"
- id="g28403-3-5-6-6-3-3-7-7">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5-4-6-4-1"
- width="74.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1-8-0-8-7"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.76939)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5-1-8-3-0"><rect
- id="rect11365-5-4-6-4-5-6-9-2-4"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4338-1-9-4-3">Persistence</flowPara></flowRoot> </g>
- <g
- transform="translate(-6.7519825,-33.861588)"
- id="g28403-3-5-6-6-3-3-76">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5-4-6-40"
- width="74.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1-8-0-4"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.76939)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5-1-8-4"><rect
- id="rect11365-5-4-6-4-5-6-9-1"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4338-1-9-9">Business</flowPara><flowPara
- id="flowPara5826">Logic</flowPara></flowRoot> </g>
- <g
- transform="translate(333.24802,-33.861588)"
- id="g28403-3-5-6-6-3-3-7-7-4">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5-4-6-4-1-9"
- width="74.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1-8-0-8-7-6"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.76939)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5-1-8-3-0-4"><rect
- id="rect11365-5-4-6-4-5-6-9-2-4-4"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4338-1-9-4-3-8">Database</flowPara></flowRoot> </g>
- </g>
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-524.45907,-650.20187)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11369-9-9"
- xml:space="preserve"><flowRegion
- id="flowRegion11371-3-1"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="29.154446"
- width="109.99512"
- id="rect11373-3-1" /></flowRegion><flowPara
- id="flowPara5380">HTTP(S)</flowPara></flowRoot> <path
- style="fill:none;stroke:#656565;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 220,447.36218 0,95"
- id="path4833-2-1-6"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#656565;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 165,347.36218 0,100"
- id="path4833-2-1"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#656565;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 452.0173,447.36218 -0.0569,40"
- id="path4833-2-1-6-8"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#656565;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 451.84957,447.36218 -286.84957,0"
- id="path4833-2-1-6-8-6"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <g
- transform="translate(218.64961,365.77317)"
- id="g28403-3-5-6-4">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-0"
- width="74.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-68"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-880.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-6"><rect
- id="rect11365-5-4-6-4-2"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-7">Built-in</flowPara><flowPara
- id="flowPara4300-9">Components</flowPara></flowRoot> </g>
- <g
- transform="translate(243.64961,395.77317)"
- id="g28403-3-5-6-6-3">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5-4"
- width="74.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1-8"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-880.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5-1"><rect
- id="rect11365-5-4-6-4-5-6"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-9-6">Add-on</flowPara><flowPara
- id="flowPara4338-1">Components</flowPara></flowRoot> </g>
- <g
- transform="translate(263.64961,425.77317)"
- id="g28403-3-5-6-2-1">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2, 2;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-8-4"
- width="74.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-6-6"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-880.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-50-7"><rect
- id="rect11365-5-4-6-4-0-2"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-1-1">Custom</flowPara><flowPara
- id="flowPara4300-7-9">Components</flowPara></flowRoot> </g>
- <path
- style="fill:none;stroke:#656565;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 265,347.36218 0,10"
- id="path4833-2-1-1"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-5-7"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold"
- transform="translate(-576.83069,-542.48285)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-5-8"><rect
- id="rect11365-5-4-3-8"
- width="73.023857"
- height="14.543726"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold" /></flowRegion><flowPara
- id="flowPara12504-6-9">UI Changes</flowPara></flowRoot> <path
- style="fill:none;stroke:#656565;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 472.1417,348.27367 0,134.08851"
- id="path4833-2-1-1-4"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <g
- id="g4123-4-4"
- transform="translate(-72.063568,-122.85583)">
- <rect
- ry="3.7880721"
- y="605.21802"
- x="457.06357"
- height="115.84543"
- width="101.28697"
- id="rect6642-4-3-9-8"
- style="fill:#d2d2d2;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-350.52446,-452.47406)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-17-7"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-06-5"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="19.154446"
- width="164.99512"
- id="rect11365-5-0-92" /></flowRegion><flowPara
- id="flowPara11367-2-8-9">Themes</flowPara></flowRoot> <g
- transform="translate(445.71318,448.629)"
- id="g28403-3-5-6-4-0">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-0-6"
- width="74.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-68-6"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-880.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-6-7"><rect
- id="rect11365-5-4-6-4-2-3"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-7-6">Built-in</flowPara><flowPara
- id="flowPara4300-9-8">Themes</flowPara></flowRoot> </g>
- <g
- transform="translate(445.71318,493.629)"
- id="g28403-3-5-6-2-1-8">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2, 2;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-8-4-6"
- width="74.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-6-6-7"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-880.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-50-7-2"><rect
- id="rect11365-5-4-6-4-0-2-0"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4300-7-9-2">User</flowPara><flowPara
- id="flowPara4753">Theme</flowPara></flowRoot> </g>
- </g>
- <g
- id="g12499-4"
- transform="matrix(0,3.9435832,-3.9435832,0,2093.0696,-275.40939)">
- <g
- transform="matrix(0.5,0,0,0.5,8.55451,158.9407)"
- id="g18065-3">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- id="path18067-0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path18069-7"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- inkscape:connector-curvature="0" />
- </g>
- </g>
- <g
- id="g4123-4-4-2"
- transform="translate(-73.321869,-6.6272583)">
- <rect
- ry="3.7880721"
- y="613.98944"
- x="458.32187"
- height="70.000008"
- width="135.00003"
- id="rect6642-4-3-9-8-9"
- style="fill:#d2d2d2;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.77165353, 3.54330707;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-350.55312,-444.54805)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-17-7-2"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-06-5-8"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="19.154446"
- width="164.99512"
- id="rect11365-5-0-92-6" /></flowRegion><flowPara
- id="flowPara11367-2-8-9-6">Custom Servlet</flowPara></flowRoot> <g
- transform="translate(446.97149,457.40043)"
- id="g28403-3-5-6-2-1-8-9"
- inkscape:transform-center-x="32.26994"
- inkscape:transform-center-y="-23.412188">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-8-4-6-7"
- width="74.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-6-6-7-5"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-880.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-50-7-2-1"><rect
- id="rect11365-5-4-6-4-0-2-0-0"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4753-7">Service</flowPara></flowRoot> </g>
- </g>
- <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016)"
- d="m 430,661.58341 0,50.77877"
- id="path4833-3-7"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#656565;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 495,348.23829 -0.0974,264.12389"
- id="path4833-2-1-6-8-2"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <g
- id="g12499-4-9"
- transform="matrix(0,3.9435832,-3.9435832,0,2135.9887,-150.45553)">
- <g
- transform="matrix(0.5,0,0,0.5,8.55451,158.9407)"
- id="g18065-3-8">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- id="path18067-0-0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path18069-7-7"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- inkscape:connector-curvature="0" />
- </g>
- </g>
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-5"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold"
- transform="translate(-643.83065,-542.64196)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-5"><rect
- id="rect11365-5-4-3"
- width="59.995113"
- height="15.68153"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold" /></flowRegion><flowPara
- id="flowPara12504-6">UI Events</flowPara></flowRoot> <g
- id="g4421"
- transform="translate(-10.168104,-1.0526651)">
- <g
- transform="matrix(0,-2,2,0,-843.7862,1084.9341)"
- id="g4427">
- <path
- style="fill:#8c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- id="path4429"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path4431"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- inkscape:connector-curvature="0" />
- </g>
- </g>
- <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016)"
- d="m 215,597.36218 0,115"
- id="path4833-3-7-55"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-554.52976,-418.06024)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-17-9-5"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-06-3-7"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="34.154446"
- width="94.995117"
- id="rect11365-5-0-9-0" /></flowRegion><flowPara
- id="flowPara12598-8">Data</flowPara><flowPara
- id="flowPara5791-6">Binding</flowPara></flowRoot> <path
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095)"
- d="m 255,577.36218 0,135"
- id="path4833-3-2-9-7"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 175,347.36218 0,90"
- id="path4833-3-7-55-2"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 175,437.36218 55,0"
- id="path4833-3-7-55-2-6"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 230,437.36218 0,110"
- id="path4833-3-7-55-2-6-2"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-5-7-8"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold"
- transform="translate(-692.57414,-648.82826)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-5-8-1"><rect
- id="rect11365-5-4-3-8-1"
- width="73.023857"
- height="14.543726"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold" /></flowRegion><flowPara
- id="flowPara12504-6-9-4">Request</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-5-7-8-4"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold"
- transform="translate(-628.74228,-649.0495)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-5-8-1-4"><rect
- id="rect11365-5-4-3-8-1-6"
- width="73.023857"
- height="14.543726"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold" /></flowRegion><flowPara
- id="flowPara12504-6-9-4-1">Response</flowPara></flowRoot> <g
- id="g12499"
- transform="matrix(0,3.9435832,-3.9435832,0,1861.0809,-215.02096)">
- <g
- transform="matrix(0.5,0,0,0.5,8.55451,158.9407)"
- id="g18065">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- id="path18067"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path18069"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- inkscape:connector-curvature="0" />
- </g>
- </g>
- <g
- id="g12499-4-4"
- transform="matrix(0,3.9435832,-3.9435832,0,2113.3201,-275.33998)">
- <g
- transform="matrix(0.5,0,0,0.5,8.55451,158.9407)"
- id="g18065-3-7">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- id="path18067-0-7"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path18069-7-6"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- inkscape:connector-curvature="0" />
- </g>
- </g>
- </g>
- <g
- inkscape:groupmode="layer"
- id="layer2"
- inkscape:label="Varjot" />
-</svg>
diff --git a/documentation/architecture/original-drawings/clientside-arch.svg b/documentation/architecture/original-drawings/clientside-arch.svg deleted file mode 100644 index 791fc794b2..0000000000 --- a/documentation/architecture/original-drawings/clientside-arch.svg +++ /dev/null @@ -1,2740 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="clientside-arch.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="600.02155"
- inkscape:export-ydpi="600.02155"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10"
- guidetolerance="10"
- objecttolerance="6"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.4142136"
- inkscape:cx="386.68044"
- inkscape:cy="701.30341"
- inkscape:document-units="mm"
- inkscape:current-layer="g6138-8"
- showgrid="true"
- inkscape:window-width="1672"
- inkscape:window-height="1019"
- inkscape:window-x="0"
- inkscape:window-y="0"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="true"
- showguides="true"
- inkscape:guide-bbox="true"
- inkscape:snap-guide="true"
- inkscape:snap-intersection-line-segments="true"
- inkscape:window-maximized="0">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false"
- originx="0mm"
- originy="0mm" />
- <sodipodi:guide
- orientation="1,0"
- position="106.29921,946.81598"
- id="guide3041" />
- <sodipodi:guide
- id="guide9173"
- position="464.17323,715.74803"
- orientation="1,0" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <linearGradient
- inkscape:collect="always"
- id="linearGradient10356">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop10358" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop10360" />
- </linearGradient>
- <pattern
- patternUnits="userSpaceOnUse"
- width="19.488184"
- height="5.3149635"
- patternTransform="translate(442.02756,179.82281)"
- id="pattern31837">
- <path
- id="path31833"
- d="M 0.88582677,4.4291368 L 18.602357,4.4291368"
- style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- id="path31835"
- d="M 0.88582677,0.88582677 L 18.602357,0.88582677"
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </pattern>
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern31837"
- id="pattern31843"
- patternTransform="matrix(0.8219623,-0.5106659,0.5106659,0.8219623,407.01829,190.47423)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern31843"
- id="pattern39357"
- patternTransform="matrix(1.2292733,-0.7637186,0.7637186,1.2292733,253.27252,439.9282)" />
- <marker
- inkscape:stockid="CurvyCross"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="CurvyCross"
- style="overflow:visible">
- <g
- id="g18903"
- transform="scale(0.6)">
- <path
- id="path18905"
- d="M 4.6254930,-5.0456926 C 1.8654930,-5.0456926 -0.37450702,-2.8056926 -0.37450702,-0.045692580 C -0.37450702,2.7143074 1.8654930,4.9543074 4.6254930,4.9543074"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none" />
- <path
- id="path18907"
- d="M -5.4129913,-5.0456926 C -2.6529913,-5.0456926 -0.41299131,-2.8056926 -0.41299131,-0.045692580 C -0.41299131,2.7143074 -2.6529913,4.9543074 -5.4129913,4.9543074"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none" />
- </g>
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4794"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4590"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient841"
- id="linearGradient4390"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9208103,1.086)"
- x1="10.800377"
- y1="-94.637573"
- x2="116.61332"
- y2="-94.637573" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4376"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3095"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1683">
- <stop
- style="stop-color:#db1f0c;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1684" />
- <stop
- style="stop-color:#761006;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1685" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient24714"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient2263">
- <stop
- style="stop-color:#ff9696;stop-opacity:0.61960787;"
- offset="0"
- id="stop2264" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.70103091;"
- offset="1.0000000"
- id="stop2265" />
- </linearGradient>
- <linearGradient
- id="linearGradient2891">
- <stop
- style="stop-color:#ff0000;stop-opacity:0.68041235;"
- offset="0"
- id="stop2892" />
- <stop
- style="stop-color:#ff0000;stop-opacity:0.14432989;"
- offset="1"
- id="stop2893" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient24524"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path3964"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.8,0.8)" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient2870"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient239278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient865">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop866" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop868" />
- </linearGradient>
- <linearGradient
- id="linearGradient1400">
- <stop
- style="stop-color:#000000;stop-opacity:0.67843139;"
- offset="0.0000000"
- id="stop1401" />
- <stop
- style="stop-color:#000000;stop-opacity:0.32941177;"
- offset="0.56999999"
- id="stop1403" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop1402" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient233706"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- y2="383.76529"
- y1="843.20789"
- xlink:href="#linearGradient1507"
- x2="547.80804"
- x1="201.38963"
- id="linearGradient1506"
- gradientTransform="scale(0.9446888,1.0585496)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3450"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1290">
- <stop
- style="stop-color:#b2a269;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1291" />
- <stop
- style="stop-color:#6d5b18;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1292" />
- </linearGradient>
- <linearGradient
- id="linearGradient846">
- <stop
- style="stop-color:#e7e7e7;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop847" />
- <stop
- style="stop-color:#a5a5a5;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop848" />
- </linearGradient>
- <linearGradient
- id="linearGradient841">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop842" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop843" />
- </linearGradient>
- <linearGradient
- id="linearGradient853">
- <stop
- style="stop-color:#000000;stop-opacity:0.29752067;"
- offset="0.00000000"
- id="stop854" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop855" />
- </linearGradient>
- <linearGradient
- y2="287.73825"
- y1="169.4436"
- xlink:href="#linearGradient1492"
- x2="622.33325"
- x1="741.63898"
- id="linearGradient1497"
- gradientTransform="scale(0.9552926,1.0467997)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1501">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1502" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1504" />
- </linearGradient>
- <linearGradient
- y2="418.53635"
- y1="236.12772"
- xlink:href="#linearGradient1501"
- x2="330.88034"
- x1="687.96375"
- id="linearGradient1499"
- gradientTransform="scale(0.9890091,1.011113)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1492">
- <stop
- style="stop-color:#dadada;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1493" />
- <stop
- style="stop-color:#f1f1f1;stop-opacity:1.0000000;"
- offset="0.34923077"
- id="stop1496" />
- <stop
- style="stop-color:#f0f0f0;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1494" />
- </linearGradient>
- <linearGradient
- y2="689.86005"
- y1="230.07422"
- xlink:href="#linearGradient1492"
- x2="351.7063"
- x1="728.96643"
- id="linearGradient1495"
- gradientTransform="scale(0.955425,1.0466546)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1507">
- <stop
- style="stop-color:#000000;stop-opacity:0.095505618;"
- offset="0.0000000"
- id="stop1508" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1510" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3877"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1699">
- <stop
- style="stop-color:#017eff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1700" />
- <stop
- style="stop-color:#ecfaff;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1701" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0"
- refX="0"
- id="DiamondEmpty"
- style="overflow:visible">
- <path
- id="path7"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="translate(-5,0)" />
- </marker>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3268"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,541.12253,30.198804)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3270"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3272"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3274"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3276"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- id="linearGradient7299">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop7301" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop7303" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3280"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- id="linearGradient5596">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop5598" />
- <stop
- style="stop-color:#e7e790;stop-opacity:0.56489879"
- offset="1"
- id="stop5600" />
- </linearGradient>
- <linearGradient
- id="linearGradient19816">
- <stop
- id="stop19818"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop19820"
- offset="1"
- style="stop-color:#e7e790;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient11508">
- <stop
- id="stop11510"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop11512"
- offset="1"
- style="stop-color:#008401;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3286">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3288" />
- <stop
- style="stop-color:#79e291;stop-opacity:1;"
- offset="1"
- id="stop3290" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2Lend"
- style="overflow:visible">
- <path
- id="path16811"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
- </marker>
- <linearGradient
- id="linearGradient7447">
- <stop
- style="stop-color:#ff6161;stop-opacity:1;"
- offset="0"
- id="stop7449" />
- <stop
- style="stop-color:#840929;stop-opacity:1;"
- offset="1"
- id="stop7451" />
- </linearGradient>
- <linearGradient
- id="linearGradient7485">
- <stop
- style="stop-color:#b6bcef;stop-opacity:1;"
- offset="0"
- id="stop7487" />
- <stop
- style="stop-color:#4026b1;stop-opacity:1;"
- offset="1"
- id="stop7489" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0"
- refX="0"
- id="EmptyArrow2"
- style="overflow:visible">
- <path
- id="path13"
- d="M 0,0 L 0,-5 L -10,0 L 0,5 L 0,0 z"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(-1,0,0,-1,-10,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient92445"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112303"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112301"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112299"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.293791,1.3701286e-2,-5.3144349e-3,0.5018339,-46.792176,73.88505)"
- r="95.092682"
- fy="112.14567"
- fx="153.46323"
- cy="112.14567"
- cx="153.46323"
- id="radialGradient112297"
- xlink:href="#linearGradient11508"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112295"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112293"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112291"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112289"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112287"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient1694">
- <stop
- id="stop1695"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:0.0000000;" />
- <stop
- id="stop1696"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient112278">
- <stop
- id="stop112280"
- offset="0.0000000"
- style="stop-color:#0c1fdb;stop-opacity:1.0000000;" />
- <stop
- id="stop112282"
- offset="1.0000000"
- style="stop-color:#062d76;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- gradientTransform="scale(1.475472,0.677749)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1686"
- inkscape:collect="always"
- x1="242.39842"
- x2="242.39842"
- xlink:href="#linearGradient1683"
- y1="1035.3337"
- y2="636.25543" />
- <linearGradient
- gradientTransform="scale(1.475472,0.677749)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1690"
- inkscape:collect="always"
- x1="240.86183"
- x2="240.86183"
- xlink:href="#linearGradient1683"
- y1="635.74658"
- y2="1038.9441" />
- <linearGradient
- gradientTransform="scale(1.479463,0.675921)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1692"
- inkscape:collect="always"
- x1="244.8598"
- x2="244.8598"
- xlink:href="#linearGradient1694"
- y1="827.01349"
- y2="646.06177" />
- <linearGradient
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient112273"
- inkscape:collect="always"
- x1="303.90472"
- x2="-93.992599"
- xlink:href="#linearGradient1683"
- y1="-492.41382"
- y2="-492.41382" />
- <linearGradient
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient112271"
- inkscape:collect="always"
- x1="-92.98716"
- x2="315.00735"
- xlink:href="#linearGradient1683"
- y1="-477.69666"
- y2="-477.69669" />
- <linearGradient
- gradientTransform="matrix(0,1.475473,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1705"
- inkscape:collect="always"
- x1="112.06259"
- x2="-170.00552"
- xlink:href="#linearGradient1694"
- y1="-485.28952"
- y2="-485.28973" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5287"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5285"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5283"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5281"
- xlink:href="#linearGradient11508"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient11602"
- xlink:href="#linearGradient19816"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient15668"
- xlink:href="#linearGradient7299"
- inkscape:collect="always" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- y2="148.38934"
- x2="389.01984"
- y1="148.38934"
- x1="96.085953"
- id="linearGradient5355"
- xlink:href="#linearGradient5349"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4152">
- <stop
- id="stop4154"
- offset="0"
- style="stop-color:#6b6bff;stop-opacity:1;" />
- <stop
- id="stop4156"
- offset="1"
- style="stop-color:#6b6bff;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient5349">
- <stop
- id="stop5351"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop5353"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient112247">
- <stop
- id="stop112249"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop112251"
- offset="1"
- style="stop-color:#a090e7;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient9263">
- <stop
- id="stop9265"
- offset="0"
- style="stop-color:#000000;stop-opacity:0" />
- <stop
- id="stop9267"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112241"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutL">
- <path
- transform="scale(0.8,0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16734" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleInL"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleInL">
- <path
- transform="scale(-0.8,-0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16743" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutM"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutM">
- <path
- transform="scale(0.4,0.4)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16731" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker112234"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend">
- <path
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path16829" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker112230"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Lend">
- <path
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- id="path112232" />
- </marker>
- <linearGradient
- id="linearGradient112224">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop112226" />
- <stop
- style="stop-color:#e7e790;stop-opacity:1;"
- offset="1"
- id="stop112228" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112220"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="matrix(-1,0,0,-1,-10,0)"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 0,-5 L -10,0 L 0,5 L 0,0 z"
- id="path112222" />
- </marker>
- <marker
- style="overflow:visible"
- id="EmptyArrow"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="matrix(-1,0,0,-1,-10,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 0,-5 L -12.5,0 L 0,5 L 0,0 z M -0.5,0 L -0.5,-4.5 L -12,0 L -0.5,4.5 L -0.5,0 z"
- id="path9" />
- </marker>
- <linearGradient
- id="linearGradient112212">
- <stop
- id="stop112214"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop112216"
- offset="1"
- style="stop-color:#79e291;stop-opacity:1;" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112208"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="translate(-5,0)"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z"
- id="path112210" />
- </marker>
- <marker
- style="overflow:visible"
- id="DiamondL"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DiamondL">
- <path
- transform="scale(0.8,0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z"
- id="path4404" />
- </marker>
- <linearGradient
- id="linearGradient112200">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop112202" />
- <stop
- style="stop-color:#e27979;stop-opacity:1"
- offset="1"
- id="stop112204" />
- </linearGradient>
- <linearGradient
- id="linearGradient11516">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop11518" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop11520" />
- </linearGradient>
- <marker
- 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 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- id="path6743" />
- </marker>
- <inkscape:perspective
- id="perspective112192"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9300"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9574"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9882"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective10244"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient10356"
- id="linearGradient10362"
- x1="407.48032"
- y1="968.17322"
- x2="669.66157"
- y2="968.17322"
- gradientUnits="userSpaceOnUse" />
- <inkscape:perspective
- id="perspective5379"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective5446"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective7010"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <marker
- id="marker18095-5"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-2"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-5"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-0"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-2"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-9"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-0"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-07"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-4"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-5"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-3"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-7" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#f39300;stroke-width:1pt;fill:#f39300"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path6738" />
- </marker>
- <marker
- id="marker18095-3"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-8"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-7"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- id="marker18095-31"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-4"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- id="marker18095-56"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-22"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-67"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-5"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-3"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-1"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-8"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-6"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-5"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-52"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-65"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-55"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8I"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8I">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#d9d9cd;stroke-width:1pt;fill:#d9d9cd"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path10009" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-11"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-9" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-551" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-1"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-9" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-4"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-97" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-32"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-4" />
- </marker>
- </defs>
- <metadata
- id="metadata2480">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1"
- style="display:inline">
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"
- transform="matrix(1.4955348,0,0,1.4955348,-57.448129,56.258489)"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="matrix(1.4955348,0,0,1.4955348,-62.789338,90.976267)"
- id="g3178" />
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"
- transform="matrix(1.4955348,0,0,1.4955348,-57.448129,56.258489)"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <g
- transform="matrix(0.7477674,0,0,0.7477674,97.104891,57.446056)"
- id="g18053" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6905"
- transform="matrix(1.4955348,0,0,1.4955348,-326.51819,-568.39489)"><flowRegion
- id="flowRegion6907"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use6909"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6911">VariableOwner</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6913"
- transform="matrix(1.4955348,0,0,1.4955348,-733.84733,-1124.4065)"><flowRegion
- id="flowRegion6915"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use6917"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6919">VariableOwner</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot80522"
- transform="matrix(1.4955348,0,0,1.4955348,452.45115,153.00358)"><flowRegion
- id="flowRegion80524"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use80526"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara80528">1</flowPara></flowRoot> <g
- id="g6138"
- transform="translate(545.54017,99.844317)">
- <g
- id="g12796"
- transform="translate(-538.35514,-231.10416)">
- <rect
- ry="3.7880721"
- y="255.27557"
- x="99.114182"
- height="201.08267"
- width="368.50394"
- id="rect6642-4"
- style="fill:#8c8c8c;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-707.8182,-802.43748)"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361"
- xml:space="preserve"><flowRegion
- id="flowRegion11363"><rect
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="30.059965"
- width="284.75891"
- id="rect11365" /></flowRegion><flowPara
- id="flowPara11367">Vaadin Client-Side Engine</flowPara></flowRoot> <path
- style="fill:none;stroke:#ffffff;stroke-width:2.12598419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
- d="m 144.29135,322.5984 c 0,56.69292 0,59.3504 0,59.3504"
- id="path15239"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <g
- style="display:inline"
- id="g17467-2"
- transform="matrix(1.4955348,0,0,1.4955348,-130.58469,34.78769)">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.42155457;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect17469-8"
- width="232.18724"
- height="35.538849"
- x="160.69756"
- y="232.13174"
- ry="3.7880721" />
- <text
- id="text17471-2"
- y="250.87724"
- x="165.35182"
- style="font-size:9.36119938px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="250.87724"
- x="165.35182"
- sodipodi:role="line"
- id="tspan17475-4">ApplicationConnection</tspan></text>
- <text
- id="text39409-6"
- y="241.29225"
- x="165.25607"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="241.29225"
- x="165.25607"
- sodipodi:role="line"
- id="tspan39411-8">com.vaadin.client</tspan></text>
- </g>
- <g
- style="display:inline"
- transform="translate(87.933591,152.79578)"
- id="g28403-3-5-6-60">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-1"
- width="81.381897"
- height="38.862209"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-7"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-52"><rect
- id="rect11365-5-4-6-4-57"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4300-8">...Connector</flowPara></flowRoot> </g>
- <path
- style="fill:none;stroke:#ffffff;stroke-width:2.12598419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
- d="m 240.84647,322.5984 c 0,56.69292 0,59.3504 0,59.3504"
- id="path15239-7"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <g
- style="display:inline"
- transform="translate(176.51627,152.79578)"
- id="g28403-3-5-6-6-3">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5-6"
- width="81.381889"
- height="38.862209"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1-4"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5-3"><rect
- id="rect11365-5-4-6-4-5-6"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4338-3">...Connector</flowPara></flowRoot> </g>
- <path
- style="fill:none;stroke:#ffffff;stroke-width:2.12598419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
- d="m 328.36615,322.5984 c 0,56.69292 0,59.3504 0,59.3504"
- id="path15239-2"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <g
- style="display:inline"
- transform="translate(265.09895,152.79578)"
- id="g28403-3-5-6-2-4">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2, 2;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-8-5"
- width="81.381889"
- height="38.862209"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-6-8"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-50-4"><rect
- id="rect11365-5-4-6-4-0-2"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4300-7-2">...Connector</flowPara></flowRoot> </g>
- <g
- style="display:inline"
- transform="translate(87.933591,103.18948)"
- id="g28403-3-5-6">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5"
- width="81.381897"
- height="38.862206"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7"><rect
- id="rect11365-5-4-6-4"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9">Built-in</flowPara><flowPara
- id="flowPara4300">Widget</flowPara></flowRoot> </g>
- <g
- style="display:inline"
- transform="translate(176.51627,103.18948)"
- id="g28403-3-5-6-6">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5"
- width="81.381889"
- height="38.862206"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5"><rect
- id="rect11365-5-4-6-4-5"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-9">Add-on</flowPara><flowPara
- id="flowPara4338">Widget</flowPara></flowRoot> </g>
- <g
- style="display:inline"
- transform="translate(265.09895,103.18948)"
- id="g28403-3-5-6-2">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2, 2;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-8"
- width="81.381889"
- height="38.862206"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-6"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-50"><rect
- id="rect11365-5-4-6-4-0"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-1">Custom</flowPara><flowPara
- id="flowPara4300-7">Widget</flowPara></flowRoot> </g>
- <path
- style="fill:none;stroke:#ffffff;stroke-width:2.12598419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
- d="m 418.01969,322.5984 c 0,56.69292 0,59.3504 0,59.3504"
- id="path15239-76"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <g
- style="display:inline"
- transform="translate(354.68163,153.79578)"
- id="g28403-3-5-6-1-7">
- <rect
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-14-8"
- width="81.381897"
- height="38.862209"
- x="20.810509"
- y="179.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-0-8"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-8-7"><rect
- id="rect11365-5-4-6-4-52-4"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4300-9-6">JavaScript</flowPara><flowPara
- id="flowPara15163-0">Connector</flowPara></flowRoot> </g>
- <g
- style="display:inline"
- transform="translate(354.68163,104.18948)"
- id="g28403-3-5-6-1">
- <rect
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-14"
- width="81.381897"
- height="38.862206"
- x="20.810509"
- y="179.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-0"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-8"><rect
- id="rect11365-5-4-6-4-52"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4300-9">JavaScript</flowPara><flowPara
- id="flowPara15163">Library</flowPara></flowRoot> </g>
- </g>
- <text
- id="text4185-3"
- y="219.69513"
- x="-245.35001"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="219.69513"
- x="-245.35001"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191-1">XMLHttpRequest</tspan></text>
- </g>
- <text
- id="text31847-9"
- y="342.82858"
- x="189.81973"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="342.82858"
- x="189.81973"
- sodipodi:role="line"
- id="tspan31851-9">Server connection</tspan></text>
- <text
- id="text31847-9-0"
- y="343.11273"
- x="300.37466"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="343.11273"
- x="300.37466"
- sodipodi:role="line"
- id="tspan31851-9-1">HTTP(S) / JSON</tspan></text>
- <g
- style="display:inline"
- id="g6138-8"
- transform="translate(548.96931,319.41518)">
- <g
- id="g12796-4"
- transform="translate(-538.35514,-231.10416)">
- <rect
- ry="3.7880721"
- y="262.47635"
- x="95.685043"
- height="142.22653"
- width="368.50394"
- id="rect6642-4-3"
- style="fill:#8c8c8c;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- style="fill:none;stroke:#ffffff;stroke-width:2.12598419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
- d="m 237.41733,297.90942 c 0,56.69292 0,56.69292 0,56.69292"
- id="path15239-7-1"
- inkscape:connector-curvature="0" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-708.875,-796.17532)"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-3"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-1"><rect
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="30.059965"
- width="284.75891"
- id="rect11365-7" /></flowRegion><flowPara
- id="flowPara11367-8">Server-Side</flowPara></flowRoot> <path
- style="fill:none;stroke:#ffffff;stroke-width:2.12598419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
- d="m 148.83465,297.90942 c 0,28.98892 0,13.47884 0,56.69292"
- id="path15239-4"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#ffffff;stroke-width:2.12598419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
- d="m 324.2322,297.90942 c 0,56.69292 0,56.69292 0,56.69292"
- id="path15239-2-0"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#ffffff;stroke-width:2.12598419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
- d="m 409.97638,300.38974 c 0,56.69292 0,56.69292 0,56.69292"
- id="path15239-76-6"
- inkscape:connector-curvature="0" />
- <g
- style="display:inline"
- id="g17467-2-6"
- transform="matrix(1.4955348,0,0,1.4955348,-134.01382,-56.338291)">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.42155457;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect17469-8-3"
- width="232.18724"
- height="35.538849"
- x="160.69756"
- y="232.13174"
- ry="3.7880721" />
- <text
- id="text17471-2-6"
- y="250.87724"
- x="165.35182"
- style="font-size:9.36119938px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="250.87724"
- x="165.35182"
- sodipodi:role="line"
- id="tspan17475-4-4">CommunicationManager</tspan></text>
- <text
- id="text39409-6-4"
- y="241.29225"
- x="165.25607"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="241.29225"
- x="165.25607"
- sodipodi:role="line"
- id="tspan39411-8-5">com.vaadin.server</tspan></text>
- </g>
- <g
- style="display:inline"
- transform="translate(85.504452,175.1698)"
- id="g28403-3-5-6-62">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-4"
- width="80.496063"
- height="37.976379"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-68"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110%;writing-mode:lr;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-3"><rect
- id="rect11365-5-4-6-4-1"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110%;writing-mode:lr;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-5">Built-in</flowPara><flowPara
- id="flowPara4300-76">Component</flowPara></flowRoot> </g>
- <g
- style="display:inline"
- transform="translate(174.08713,175.1698)"
- id="g28403-3-5-6-6-2">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5-0"
- width="80.496063"
- height="37.976379"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1-6"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5-4"><rect
- id="rect11365-5-4-6-4-5-3"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-9-1">Add-on</flowPara><flowPara
- id="flowPara4338-1">Component</flowPara></flowRoot> </g>
- <g
- style="display:inline"
- transform="translate(261.66981,174.1698)"
- id="g28403-3-5-6-2-46">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2, 2;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-8-7"
- width="80.496063"
- height="37.976379"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-6-7"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-50-8"><rect
- id="rect11365-5-4-6-4-0-4"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-1-7">Custom</flowPara><flowPara
- id="flowPara4300-7-8">Component</flowPara></flowRoot> </g>
- <g
- style="display:inline"
- transform="translate(351.25249,175.1698)"
- id="g28403-3-5-6-1-9">
- <rect
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-14-3"
- width="80.496063"
- height="37.976379"
- x="20.810509"
- y="179.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-0-2"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.64961,-878.83223)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-8-2"><rect
- id="rect11365-5-4-6-4-52-40"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara15163-9">Java</flowPara><flowPara
- id="flowPara3465">Component</flowPara></flowRoot> </g>
- </g>
- </g>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:6.02362204;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#DotSu);display:inline"
- d="m 293.31889,382.67714 0,-89.46851"
- id="path4600-1-1"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- </g>
-</svg>
diff --git a/documentation/architecture/original-drawings/clientside-arch.svg.2012_10_09_18_20_24.0.svg b/documentation/architecture/original-drawings/clientside-arch.svg.2012_10_09_18_20_24.0.svg deleted file mode 100644 index f372a405fa..0000000000 --- a/documentation/architecture/original-drawings/clientside-arch.svg.2012_10_09_18_20_24.0.svg +++ /dev/null @@ -1,2879 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="clientside-arch.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="600.02155"
- inkscape:export-ydpi="600.02155"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10"
- guidetolerance="10"
- objecttolerance="6"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="0.70710678"
- inkscape:cx="169.52061"
- inkscape:cy="684.32343"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1672"
- inkscape:window-height="1019"
- inkscape:window-x="0"
- inkscape:window-y="0"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="true"
- showguides="true"
- inkscape:guide-bbox="true"
- inkscape:snap-guide="true"
- inkscape:snap-intersection-line-segments="true"
- inkscape:window-maximized="0">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false"
- originx="0mm"
- originy="0mm" />
- <sodipodi:guide
- orientation="1,0"
- position="248.0315,981.49606"
- id="guide3041" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <linearGradient
- inkscape:collect="always"
- id="linearGradient10356">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop10358" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop10360" />
- </linearGradient>
- <pattern
- patternUnits="userSpaceOnUse"
- width="19.488184"
- height="5.3149635"
- patternTransform="translate(442.02756,179.82281)"
- id="pattern31837">
- <path
- id="path31833"
- d="M 0.88582677,4.4291368 L 18.602357,4.4291368"
- style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- id="path31835"
- d="M 0.88582677,0.88582677 L 18.602357,0.88582677"
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </pattern>
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern31837"
- id="pattern31843"
- patternTransform="matrix(0.8219623,-0.5106659,0.5106659,0.8219623,407.01829,190.47423)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern31843"
- id="pattern39357"
- patternTransform="matrix(1.2292733,-0.7637186,0.7637186,1.2292733,601.6847,681.13551)" />
- <marker
- inkscape:stockid="CurvyCross"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="CurvyCross"
- style="overflow:visible">
- <g
- id="g18903"
- transform="scale(0.6)">
- <path
- id="path18905"
- d="M 4.6254930,-5.0456926 C 1.8654930,-5.0456926 -0.37450702,-2.8056926 -0.37450702,-0.045692580 C -0.37450702,2.7143074 1.8654930,4.9543074 4.6254930,4.9543074"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none" />
- <path
- id="path18907"
- d="M -5.4129913,-5.0456926 C -2.6529913,-5.0456926 -0.41299131,-2.8056926 -0.41299131,-0.045692580 C -0.41299131,2.7143074 -2.6529913,4.9543074 -5.4129913,4.9543074"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none" />
- </g>
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4794"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4590"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient841"
- id="linearGradient4390"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9208103,1.086)"
- x1="10.800377"
- y1="-94.637573"
- x2="116.61332"
- y2="-94.637573" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4376"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3095"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1683">
- <stop
- style="stop-color:#db1f0c;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1684" />
- <stop
- style="stop-color:#761006;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1685" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient24714"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient2263">
- <stop
- style="stop-color:#ff9696;stop-opacity:0.61960787;"
- offset="0"
- id="stop2264" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.70103091;"
- offset="1.0000000"
- id="stop2265" />
- </linearGradient>
- <linearGradient
- id="linearGradient2891">
- <stop
- style="stop-color:#ff0000;stop-opacity:0.68041235;"
- offset="0"
- id="stop2892" />
- <stop
- style="stop-color:#ff0000;stop-opacity:0.14432989;"
- offset="1"
- id="stop2893" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient24524"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path3964"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.8,0.8)" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient2870"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient239278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient865">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop866" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop868" />
- </linearGradient>
- <linearGradient
- id="linearGradient1400">
- <stop
- style="stop-color:#000000;stop-opacity:0.67843139;"
- offset="0.0000000"
- id="stop1401" />
- <stop
- style="stop-color:#000000;stop-opacity:0.32941177;"
- offset="0.56999999"
- id="stop1403" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop1402" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient233706"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- y2="383.76529"
- y1="843.20789"
- xlink:href="#linearGradient1507"
- x2="547.80804"
- x1="201.38963"
- id="linearGradient1506"
- gradientTransform="scale(0.9446888,1.0585496)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3450"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1290">
- <stop
- style="stop-color:#b2a269;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1291" />
- <stop
- style="stop-color:#6d5b18;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1292" />
- </linearGradient>
- <linearGradient
- id="linearGradient846">
- <stop
- style="stop-color:#e7e7e7;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop847" />
- <stop
- style="stop-color:#a5a5a5;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop848" />
- </linearGradient>
- <linearGradient
- id="linearGradient841">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop842" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop843" />
- </linearGradient>
- <linearGradient
- id="linearGradient853">
- <stop
- style="stop-color:#000000;stop-opacity:0.29752067;"
- offset="0.00000000"
- id="stop854" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop855" />
- </linearGradient>
- <linearGradient
- y2="287.73825"
- y1="169.4436"
- xlink:href="#linearGradient1492"
- x2="622.33325"
- x1="741.63898"
- id="linearGradient1497"
- gradientTransform="scale(0.9552926,1.0467997)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1501">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1502" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1504" />
- </linearGradient>
- <linearGradient
- y2="418.53635"
- y1="236.12772"
- xlink:href="#linearGradient1501"
- x2="330.88034"
- x1="687.96375"
- id="linearGradient1499"
- gradientTransform="scale(0.9890091,1.011113)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1492">
- <stop
- style="stop-color:#dadada;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1493" />
- <stop
- style="stop-color:#f1f1f1;stop-opacity:1.0000000;"
- offset="0.34923077"
- id="stop1496" />
- <stop
- style="stop-color:#f0f0f0;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1494" />
- </linearGradient>
- <linearGradient
- y2="689.86005"
- y1="230.07422"
- xlink:href="#linearGradient1492"
- x2="351.7063"
- x1="728.96643"
- id="linearGradient1495"
- gradientTransform="scale(0.955425,1.0466546)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1507">
- <stop
- style="stop-color:#000000;stop-opacity:0.095505618;"
- offset="0.0000000"
- id="stop1508" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1510" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3877"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1699">
- <stop
- style="stop-color:#017eff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1700" />
- <stop
- style="stop-color:#ecfaff;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1701" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0"
- refX="0"
- id="DiamondEmpty"
- style="overflow:visible">
- <path
- id="path7"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="translate(-5,0)" />
- </marker>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3268"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,541.12253,30.198804)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3270"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3272"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3274"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3276"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- id="linearGradient7299">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop7301" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop7303" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3280"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- id="linearGradient5596">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop5598" />
- <stop
- style="stop-color:#e7e790;stop-opacity:0.56489879"
- offset="1"
- id="stop5600" />
- </linearGradient>
- <linearGradient
- id="linearGradient19816">
- <stop
- id="stop19818"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop19820"
- offset="1"
- style="stop-color:#e7e790;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient11508">
- <stop
- id="stop11510"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop11512"
- offset="1"
- style="stop-color:#008401;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3286">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3288" />
- <stop
- style="stop-color:#79e291;stop-opacity:1;"
- offset="1"
- id="stop3290" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2Lend"
- style="overflow:visible">
- <path
- id="path16811"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
- </marker>
- <linearGradient
- id="linearGradient7447">
- <stop
- style="stop-color:#ff6161;stop-opacity:1;"
- offset="0"
- id="stop7449" />
- <stop
- style="stop-color:#840929;stop-opacity:1;"
- offset="1"
- id="stop7451" />
- </linearGradient>
- <linearGradient
- id="linearGradient7485">
- <stop
- style="stop-color:#b6bcef;stop-opacity:1;"
- offset="0"
- id="stop7487" />
- <stop
- style="stop-color:#4026b1;stop-opacity:1;"
- offset="1"
- id="stop7489" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0"
- refX="0"
- id="EmptyArrow2"
- style="overflow:visible">
- <path
- id="path13"
- d="M 0,0 L 0,-5 L -10,0 L 0,5 L 0,0 z"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(-1,0,0,-1,-10,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient92445"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112303"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112301"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112299"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.293791,1.3701286e-2,-5.3144349e-3,0.5018339,-46.792176,73.88505)"
- r="95.092682"
- fy="112.14567"
- fx="153.46323"
- cy="112.14567"
- cx="153.46323"
- id="radialGradient112297"
- xlink:href="#linearGradient11508"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112295"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112293"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112291"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112289"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112287"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient1694">
- <stop
- id="stop1695"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:0.0000000;" />
- <stop
- id="stop1696"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient112278">
- <stop
- id="stop112280"
- offset="0.0000000"
- style="stop-color:#0c1fdb;stop-opacity:1.0000000;" />
- <stop
- id="stop112282"
- offset="1.0000000"
- style="stop-color:#062d76;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- gradientTransform="scale(1.475472,0.677749)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1686"
- inkscape:collect="always"
- x1="242.39842"
- x2="242.39842"
- xlink:href="#linearGradient1683"
- y1="1035.3337"
- y2="636.25543" />
- <linearGradient
- gradientTransform="scale(1.475472,0.677749)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1690"
- inkscape:collect="always"
- x1="240.86183"
- x2="240.86183"
- xlink:href="#linearGradient1683"
- y1="635.74658"
- y2="1038.9441" />
- <linearGradient
- gradientTransform="scale(1.479463,0.675921)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1692"
- inkscape:collect="always"
- x1="244.8598"
- x2="244.8598"
- xlink:href="#linearGradient1694"
- y1="827.01349"
- y2="646.06177" />
- <linearGradient
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient112273"
- inkscape:collect="always"
- x1="303.90472"
- x2="-93.992599"
- xlink:href="#linearGradient1683"
- y1="-492.41382"
- y2="-492.41382" />
- <linearGradient
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient112271"
- inkscape:collect="always"
- x1="-92.98716"
- x2="315.00735"
- xlink:href="#linearGradient1683"
- y1="-477.69666"
- y2="-477.69669" />
- <linearGradient
- gradientTransform="matrix(0,1.475473,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1705"
- inkscape:collect="always"
- x1="112.06259"
- x2="-170.00552"
- xlink:href="#linearGradient1694"
- y1="-485.28952"
- y2="-485.28973" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5287"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5285"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5283"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5281"
- xlink:href="#linearGradient11508"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient11602"
- xlink:href="#linearGradient19816"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient15668"
- xlink:href="#linearGradient7299"
- inkscape:collect="always" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- y2="148.38934"
- x2="389.01984"
- y1="148.38934"
- x1="96.085953"
- id="linearGradient5355"
- xlink:href="#linearGradient5349"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4152">
- <stop
- id="stop4154"
- offset="0"
- style="stop-color:#6b6bff;stop-opacity:1;" />
- <stop
- id="stop4156"
- offset="1"
- style="stop-color:#6b6bff;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient5349">
- <stop
- id="stop5351"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop5353"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient112247">
- <stop
- id="stop112249"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop112251"
- offset="1"
- style="stop-color:#a090e7;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient9263">
- <stop
- id="stop9265"
- offset="0"
- style="stop-color:#000000;stop-opacity:0" />
- <stop
- id="stop9267"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112241"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutL">
- <path
- transform="scale(0.8,0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16734" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleInL"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleInL">
- <path
- transform="scale(-0.8,-0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16743" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutM"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutM">
- <path
- transform="scale(0.4,0.4)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16731" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker112234"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend">
- <path
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path16829" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker112230"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Lend">
- <path
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- id="path112232" />
- </marker>
- <linearGradient
- id="linearGradient112224">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop112226" />
- <stop
- style="stop-color:#e7e790;stop-opacity:1;"
- offset="1"
- id="stop112228" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112220"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="matrix(-1,0,0,-1,-10,0)"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 0,-5 L -10,0 L 0,5 L 0,0 z"
- id="path112222" />
- </marker>
- <marker
- style="overflow:visible"
- id="EmptyArrow"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="matrix(-1,0,0,-1,-10,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 0,-5 L -12.5,0 L 0,5 L 0,0 z M -0.5,0 L -0.5,-4.5 L -12,0 L -0.5,4.5 L -0.5,0 z"
- id="path9" />
- </marker>
- <linearGradient
- id="linearGradient112212">
- <stop
- id="stop112214"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop112216"
- offset="1"
- style="stop-color:#79e291;stop-opacity:1;" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112208"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="translate(-5,0)"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z"
- id="path112210" />
- </marker>
- <marker
- style="overflow:visible"
- id="DiamondL"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DiamondL">
- <path
- transform="scale(0.8,0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z"
- id="path4404" />
- </marker>
- <linearGradient
- id="linearGradient112200">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop112202" />
- <stop
- style="stop-color:#e27979;stop-opacity:1"
- offset="1"
- id="stop112204" />
- </linearGradient>
- <linearGradient
- id="linearGradient11516">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop11518" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop11520" />
- </linearGradient>
- <marker
- 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 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- id="path6743" />
- </marker>
- <inkscape:perspective
- id="perspective112192"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9300"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9574"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9882"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective10244"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient10356"
- id="linearGradient10362"
- x1="407.48032"
- y1="968.17322"
- x2="669.66157"
- y2="968.17322"
- gradientUnits="userSpaceOnUse" />
- <inkscape:perspective
- id="perspective5379"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective5446"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective7010"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <marker
- id="marker18095-5"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-2"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-5"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-0"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- </defs>
- <metadata
- id="metadata2480">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1"
- style="display:inline">
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4.23931122;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:url(#DotSu);display:inline"
- d="m 491.40854,262.0533 -0.11506,-82.78561"
- id="path80518"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <text
- id="text4185"
- y="695.3385"
- x="856.69598"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="695.3385"
- x="856.69598"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191">Makes XMLHttpRequest</tspan></text>
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"
- transform="matrix(1.4955348,0,0,1.4955348,-357.7434,-49.154891)"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="matrix(1.4955348,0,0,1.4955348,-363.08461,-14.437119)"
- id="g3178" />
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"
- transform="matrix(1.4955348,0,0,1.4955348,-357.7434,-49.154891)"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <g
- transform="matrix(0.7477674,0,0,0.7477674,-203.19038,-47.967324)"
- id="g18053" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6905"
- transform="matrix(1.4955348,0,0,1.4955348,-626.81346,-673.80827)"><flowRegion
- id="flowRegion6907"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use6909"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6911">VariableOwner</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6913"
- transform="matrix(1.4955348,0,0,1.4955348,-1034.1426,-1229.8198)"><flowRegion
- id="flowRegion6915"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use6917"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6919">VariableOwner</flowPara></flowRoot> <g
- style="display:inline"
- id="g39423"
- transform="matrix(1.4955348,0,0,1.4955348,-182.12261,764.95181)">
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot39425"
- transform="translate(-5.2378947,106.19782)"><flowRegion
- id="flowRegion39427"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use39429"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara39431">Sizeable</flowPara></flowRoot> <g
- id="g39433"
- transform="translate(-46.062995,-30.433073)">
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot39435"
- transform="translate(-5.2378947,106.19782)"><flowRegion
- id="flowRegion39437"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use39439"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara39441">Sizeable</flowPara></flowRoot> </g>
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot39443"
- transform="translate(75.734798,-715.9695)"><flowRegion
- id="flowRegion39445"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use39447"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara39449">VariableOwner</flowPara></flowRoot> <g
- style="display:inline"
- id="g39451"
- transform="translate(123.00096,-20.40135)">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39453"
- width="138.189"
- height="35.43309"
- x="167.13719"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text39455"
- y="253.39159"
- x="179.05836"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.39159"
- x="179.05836"
- id="tspan39457"
- sodipodi:role="line">AbstractComponent</tspan></text>
- </g>
- </g>
- <g
- style="display:inline"
- id="g39459"
- transform="matrix(1.4955348,0,0,1.4955348,26.418467,-219.71469)">
- <rect
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39461"
- width="70.392639"
- height="35.43309"
- x="160.02942"
- y="229.8378"
- ry="3.7880721" />
- <text
- id="text39463"
- y="243.4203"
- x="164.65993"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="243.4203"
- x="164.65993"
- id="tspan39465"
- sodipodi:role="line">Widget</tspan></text>
- </g>
- <g
- style="fill:#49c2f1;fill-opacity:1;display:inline"
- id="g39467"
- transform="matrix(1.4955348,0,0,1.4955348,146.5211,-223.25799)">
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39469"
- width="78.185501"
- height="35.43306"
- x="191.07704"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text39471"
- y="248.15881"
- x="226.07834"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="248.15881"
- x="226.07834"
- id="tspan39473"
- sodipodi:role="line"
- style="fill:#49c2f1;fill-opacity:1">MyWidget</tspan></text>
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#49c2f1;stroke-width:5.82905245;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker18095);display:inline"
- d="m 429.29008,152.36218 -53.69953,0"
- id="path39475"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot17420"
- style="font-size:10px"
- transform="matrix(1.4955348,0,0,1.4955348,-1833.92,-628.42813)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion17422"><rect
- id="rect17424"
- width="45"
- height="18"
- x="1495"
- y="507.36218"
- style="font-size:10px" /></flowRegion><flowPara
- id="flowPara17426">...</flowPara></flowRoot> <g
- style="display:inline"
- id="g17430"
- transform="matrix(1.4955348,0,0,1.4955348,114.86736,-28.263509)">
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect17432"
- width="101.67927"
- height="35.433243"
- x="179.07294"
- y="232.13176"
- ry="3.7880721" />
- <text
- id="text17434"
- y="253.02838"
- x="229.50607"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.02838"
- x="229.50607"
- id="tspan17436"
- sodipodi:role="line">MyConnector</tspan></text>
- </g>
- <g
- style="display:inline"
- id="g17457"
- transform="matrix(1.4955348,0,0,1.4955348,-195.44344,-176.66389)">
- <rect
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect17459"
- width="77.952766"
- height="35.433086"
- x="164.00203"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text17461"
- y="253.17523"
- x="201.76237"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.17523"
- x="201.76237"
- id="tspan17463"
- sodipodi:role="line">Paintable</tspan></text>
- </g>
- <g
- style="display:inline"
- id="g17467"
- transform="matrix(1.4955348,0,0,1.4955348,446.66825,282.27566)">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect17469"
- width="152.3622"
- height="35.433071"
- x="160.69756"
- y="232.13174"
- ry="3.7880721" />
- <text
- id="text17471"
- y="254.30551"
- x="234.41504"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="254.30551"
- x="234.41504"
- sodipodi:role="line"
- id="tspan17475">ApplicationConnection</tspan></text>
- <text
- id="text39409"
- y="239.02148"
- x="164.24088"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="239.02148"
- x="164.24088"
- sodipodi:role="line"
- id="tspan39411">com.vaadin.terminal.gwt.client.</tspan></text>
- </g>
- <rect
- style="fill:none;stroke:#000000;stroke-width:1.4955349;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.4955348, 2.9910696;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39497"
- width="344.44409"
- height="100.68365"
- x="248.03149"
- y="95.669266"
- ry="5.6651931" />
- <path
- sodipodi:open="true"
- transform="matrix(1.4955348,0,0,1.4955348,68.211166,219.9379)"
- sodipodi:end="6.2827149"
- sodipodi:start="0"
- d="m 491.37734,228.54329 a 4.1726308,4.3281136 0 1 1 0,-0.002"
- sodipodi:ry="4.3281136"
- sodipodi:rx="4.1726308"
- sodipodi:cy="228.54329"
- sodipodi:cx="487.20471"
- id="path80520"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- sodipodi:type="arc" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;opacity:1;fill:#49c2f1;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot80522"
- transform="matrix(1.4955348,0,0,1.4955348,152.15588,47.590195)"><flowRegion
- id="flowRegion80524"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use80526"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara80528">1</flowPara></flowRoot> <text
- id="text18086"
- y="581.72711"
- x="808.14972"
- style="font-size:17.94641876px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="581.72711"
- x="808.14972"
- id="tspan18088"
- sodipodi:role="line">n</tspan></text>
- <text
- id="text18090"
- y="113.77798"
- x="254.32547"
- style="font-size:14.95534801px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="113.77798"
- x="254.32547"
- id="tspan18092"
- sodipodi:role="line">Client-Side Framework</tspan></text>
- <rect
- style="fill:none;stroke:#000000;stroke-width:1.4955349;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.4955348, 2.9910696;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect18094"
- width="345.76636"
- height="181.91768"
- x="248.03149"
- y="209.0551"
- ry="5.6651931" />
- <text
- id="text18096"
- y="231.69943"
- x="254.82117"
- style="font-size:14.95534801px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="231.69943"
- x="254.82117"
- id="tspan18098"
- sodipodi:role="line">Client-Side Integration</tspan></text>
- <g
- style="display:inline"
- id="g18100"
- transform="matrix(1.4955348,0,0,1.4955348,27.357813,522.88238)">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect18102"
- width="152.3622"
- height="35.433071"
- x="160.69756"
- y="232.13174"
- ry="3.7880721" />
- <text
- id="text18104"
- y="253.39159"
- x="236.56898"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.39159"
- x="236.56898"
- sodipodi:role="line"
- id="tspan18106">CommunicationManager</tspan></text>
- <text
- id="text31853"
- y="239.21835"
- x="164.24086"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="239.21835"
- x="164.24086"
- sodipodi:role="line"
- id="tspan31855">com.vaadin.terminal.server.</tspan></text>
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#49c2f1;stroke-width:5.82905245;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:url(#CurvyCross);marker-end:none;display:inline"
- d="m 848.78563,777.81265 0,-95.3845"
- id="path20937"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0" />
- <rect
- style="fill:none;stroke:#000000;stroke-width:1.4955349;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.4955348, 2.9910696;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect29628"
- width="344.44409"
- height="386.54269"
- x="241.1908"
- y="843.54773"
- ry="5.6651931" />
- <g
- style="display:inline"
- id="g29630"
- transform="matrix(1.4955348,0,0,1.4955348,49.521843,596.95767)">
- <rect
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect29632"
- width="74.409454"
- height="35.433071"
- x="167.13719"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text29634"
- y="253.94359"
- x="203.12589"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.94359"
- x="203.12589"
- id="tspan29636"
- sodipodi:role="line">Paintable</tspan></text>
- <text
- id="text31857"
- y="239.29366"
- x="170.6805"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="239.29366"
- x="170.6805"
- sodipodi:role="line"
- id="tspan31859">com.vaadin.terminal.</tspan></text>
- </g>
- <path
- sodipodi:open="true"
- transform="matrix(1.4955348,0,0,1.4955348,-373.54569,602.43694)"
- sodipodi:end="6.2827149"
- sodipodi:start="0"
- d="m 491.37734,228.54329 a 4.1726308,4.3281136 0 1 1 0,-0.002"
- sodipodi:ry="4.3281136"
- sodipodi:rx="4.1726308"
- sodipodi:cy="228.54329"
- sodipodi:cx="487.20471"
- id="path29638"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- sodipodi:type="arc" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4.23931122;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:url(#DotSu);display:inline"
- d="m 355.48969,922.37071 -0.16609,21.86068"
- id="path29640"
- inkscape:connector-type="polyline"
- inkscape:connection-end="#g29630"
- inkscape:connection-end-point="d4"
- inkscape:connector-curvature="0" />
- <text
- id="text29642"
- y="938.26807"
- x="363.82602"
- style="font-size:17.94641876px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="938.26807"
- x="363.82602"
- id="tspan29644"
- sodipodi:role="line">n</tspan></text>
- <g
- style="display:inline"
- id="g29646"
- transform="matrix(1.4955348,0,0,1.4955348,17.386513,819.33971)">
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect29648"
- width="95.669289"
- height="35.433056"
- x="177.9948"
- y="232.13174"
- ry="3.7880721" />
- <text
- id="text29650"
- y="253.39159"
- x="226.45808"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.39159"
- x="226.45808"
- id="tspan29652"
- sodipodi:role="line">MyComponent</tspan></text>
- </g>
- <rect
- style="fill:url(#pattern39357);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.83464575;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect29654"
- width="105.98283"
- height="37.093971"
- x="809.04211"
- y="708.92383"
- ry="3.9656363" />
- <text
- id="text31847"
- y="721.14178"
- x="856.27057"
- style="font-size:14.95534801px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="721.14178"
- x="856.27057"
- id="tspan31849"
- sodipodi:role="line">Server connection:</tspan><tspan
- y="739.836"
- x="856.27057"
- sodipodi:role="line"
- id="tspan31851">UIDL / JSON / HTTP(S)</tspan></text>
- <g
- style="display:inline"
- id="g31861"
- transform="matrix(1.4955348,0,0,1.4955348,44.222743,664.86904)">
- <rect
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect31863"
- width="81.496056"
- height="35.433067"
- x="167.13719"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text31865"
- y="253.46689"
- x="208.33708"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.46689"
- x="208.33708"
- id="tspan31867"
- sodipodi:role="line">Component</tspan></text>
- <text
- id="text31869"
- y="239.29366"
- x="170.6805"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="239.29366"
- x="170.6805"
- sodipodi:role="line"
- id="tspan31871">com.vaadin.ui.</tspan></text>
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:5.82905388;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker44971);display:inline"
- d="m 355.12231,1012.1428 0,-14.92002"
- id="path31873"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g31861"
- inkscape:connection-end="#g29630"
- inkscape:connection-start-point="d4"
- inkscape:connection-end-point="d4"
- inkscape:connector-curvature="0" />
- <text
- id="text35578"
- y="990.21802"
- x="371.9635"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="990.21802"
- x="371.9635"
- sodipodi:role="line"
- id="tspan35582"
- style="font-size:11.96427917px;font-style:oblique;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:FreeSans;-inkscape-font-specification:FreeSans Oblique">paint()</tspan></text>
- <text
- id="text39320"
- y="1128.4106"
- x="377.6459"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="1128.4106"
- x="377.6459"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:oblique;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:FreeSans;-inkscape-font-specification:FreeSans Oblique"
- id="tspan39322">paintContent()</tspan></text>
- <text
- id="text39324"
- y="122.15881"
- x="792.28424"
- style="font-size:8.97320938px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="122.15881"
- x="792.28424"
- sodipodi:role="line"
- style="font-size:8.97320938px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan39330">Must implement</tspan><tspan
- y="133.37532"
- x="792.28424"
- sodipodi:role="line"
- style="font-size:8.97320938px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan39387">updateFromUIDL()</tspan><tspan
- y="144.59184"
- x="792.28424"
- sodipodi:role="line"
- style="font-size:8.97320938px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan41293">to deserialize state</tspan><tspan
- y="155.80835"
- x="792.28424"
- sodipodi:role="line"
- style="font-size:8.97320938px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan41295">from server</tspan></text>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#49c2f1;stroke-width:5.82905388;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker18095);display:inline"
- d="m 355.12231,1166.5008 0,-21.6852"
- id="path39332"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g29646"
- inkscape:connection-end="#g39423"
- inkscape:connection-start-point="d4"
- inkscape:connection-end-point="d4"
- inkscape:connector-curvature="0" />
- <text
- id="text39351"
- y="166.53542"
- x="53.149605"
- style="font-size:8.97320938px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="166.53542"
- x="53.149605"
- sodipodi:role="line"
- id="tspan39353">com.vaadin.terminal.gwt.client.</tspan></text>
- <text
- id="text39363"
- y="861.62439"
- x="247.18454"
- style="font-size:14.95534801px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="861.62439"
- x="247.18454"
- id="tspan39365"
- sodipodi:role="line">Server-Side Integration</tspan></text>
- <text
- id="text39367"
- y="1149.4019"
- x="440.55954"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="1149.4019"
- x="440.55954"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan39373">Must implement </tspan><tspan
- y="1164.3572"
- x="440.55954"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan10255">changeVariables() for</tspan><tspan
- y="1179.3126"
- x="440.55954"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan41267">deserialization and</tspan><tspan
- y="1194.2679"
- x="440.55954"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4143">paintContent() for</tspan><tspan
- y="1209.2233"
- x="440.55954"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan10263">serialization using the</tspan><tspan
- y="1224.1786"
- x="440.55954"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan41283">PaintTarget interface.</tspan></text>
- <text
- id="text39379"
- y="554.23639"
- x="754.11914"
- style="font-size:8.97320938px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="554.23639"
- x="754.11914"
- sodipodi:role="line"
- style="font-size:8.97320938px;font-style:oblique;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:FreeSans;-inkscape-font-specification:FreeSans Oblique"
- id="tspan39381">updateFromUIDL()</tspan></text>
- <path
- sodipodi:open="true"
- transform="matrix(1.4955348,0,0,1.4955348,170.33101,290.46825)"
- sodipodi:end="6.2827149"
- sodipodi:start="0"
- d="m 491.37734,228.54329 a 4.1726308,4.3281136 0 1 1 0,-0.002"
- sodipodi:ry="4.3281136"
- sodipodi:rx="4.1726308"
- sodipodi:cy="228.54329"
- sodipodi:cx="487.20471"
- id="path39385"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- sodipodi:type="arc" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4.23931122;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:url(#DotSu);display:inline"
- d="m 897.57677,601.57453 1.35713,30.87977"
- id="path39383"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0" />
- <text
- id="text39389"
- y="676.83453"
- x="696.84174"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="676.83453"
- x="696.84174"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan39393">updateVariable()</tspan></text>
- <text
- id="text39397"
- y="301.14941"
- x="824.66718"
- style="font-size:8.97320938px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="301.14941"
- x="824.66718"
- sodipodi:role="line"
- style="font-size:8.97320938px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan39401">Needs to call</tspan><tspan
- y="312.36594"
- x="824.66718"
- sodipodi:role="line"
- style="font-size:8.97320938px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan3019">updateVariable() to</tspan><tspan
- y="323.58243"
- x="824.66718"
- sodipodi:role="line"
- style="font-size:8.97320938px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan41291">to serialize state to</tspan><tspan
- y="334.79895"
- x="824.66718"
- sodipodi:role="line"
- style="font-size:8.97320938px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan10346">server</tspan></text>
- <text
- id="text39405"
- y="623.8432"
- x="888.55078"
- style="font-size:17.94641876px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="623.8432"
- x="888.55078"
- id="tspan39407"
- sodipodi:role="line">1</tspan></text>
- <path
- inkscape:connector-type="polyline"
- id="path4676"
- d="m 355.12232,1091.8242 0,-26.6901"
- style="fill:none;stroke:#f39300;stroke-width:5.98214006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker52016);display:inline"
- inkscape:connection-end="#g31861"
- inkscape:connection-start="#g39423"
- inkscape:connection-start-point="d4"
- inkscape:connection-end-point="d4"
- inkscape:connector-curvature="0" />
- <g
- style="display:inline"
- id="g41251"
- transform="matrix(1.4955348,0,0,1.4955348,213.22668,665.53327)">
- <rect
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect41253"
- width="95.669289"
- height="35.889771"
- x="149.80078"
- y="231.76292"
- ry="3.7880721" />
- <text
- id="text41255"
- y="253.02277"
- x="197.12627"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.02277"
- x="197.12627"
- id="tspan41257"
- sodipodi:role="line">PaintTarget</tspan></text>
- <text
- id="text41259"
- y="238.84953"
- x="153.34409"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="238.84953"
- x="153.34409"
- sodipodi:role="line"
- id="tspan41261">com.vaadin.terminal.</tspan></text>
- </g>
- <path
- inkscape:connector-type="polyline"
- id="path41269"
- d="m 454.03237,1087.6541 24.56948,-21.8369"
- style="fill:none;stroke:#f39300;stroke-width:5.98214006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker52016);display:inline"
- inkscape:connection-end="#g41251"
- inkscape:connection-end-point="d4"
- inkscape:connector-curvature="0" />
- <text
- id="text41271"
- y="1076.9321"
- x="504.58359"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="1076.9321"
- x="504.58359"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan41273">addAttribute()</tspan><tspan
- y="1091.8875"
- x="504.58359"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan41275">addVariable()</tspan><tspan
- y="1106.8429"
- x="504.58359"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan41277" /></text>
- <flowRoot
- xml:space="preserve"
- id="flowRoot10241"
- style="font-size:10px;display:inline"
- transform="matrix(1.4955348,0,0,1.4955348,-1873.9651,378.76918)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion10243"><rect
- id="rect10245"
- width="45"
- height="18"
- x="1495"
- y="507.36218"
- style="font-size:10px" /></flowRegion><flowPara
- id="flowPara10247">...</flowPara></flowRoot> <text
- id="text10319"
- y="159.44879"
- x="443.15353"
- style="font-size:8.97320938px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="159.44879"
- x="443.15353"
- sodipodi:role="line"
- style="font-size:8.97320938px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan10338">An existing widget</tspan><tspan
- y="170.6653"
- x="443.15353"
- sodipodi:role="line"
- style="font-size:8.97320938px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan3455">or your own</tspan></text>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:1.32478476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
- d="m 820.69559,290.55116 c 0,26.49571 0,47.69227 0,47.69227 l 79.48708,0"
- id="path3023"
- sodipodi:nodetypes="ccc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:1.32478476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
- d="m 787.96077,161.74047 c 0,0 0,-47.69227 0,-47.69227 l 79.48707,0"
- id="path4137"
- sodipodi:nodetypes="ccc"
- inkscape:connector-curvature="0" />
- <g
- style="display:inline"
- id="g4149"
- transform="matrix(1.4955348,0,0,1.4955348,223.82497,597.32747)">
- <rect
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4151"
- width="95.669289"
- height="35.433067"
- x="142.71416"
- y="231.76292"
- ry="3.7880721" />
- <text
- id="text4153"
- y="253.02277"
- x="191.00067"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.02277"
- x="191.00067"
- id="tspan4155"
- sodipodi:role="line">VariableOwner</tspan></text>
- <text
- id="text4157"
- y="238.84953"
- x="146.25746"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="238.84953"
- x="146.25746"
- sodipodi:role="line"
- id="tspan4159">com.vaadin.terminal.</tspan></text>
- <text
- id="text4161"
- y="262.61942"
- x="170.55461"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="262.61942"
- x="170.55461"
- sodipodi:role="line"
- id="tspan4163"
- style="font-size:8px;font-style:oblique;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:FreeSans;-inkscape-font-specification:FreeSans Oblique">changeVariables()</tspan></text>
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:5.82905245;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker44971);display:inline"
- d="m 411.28477,1020.092 18.38605,-22.0632"
- id="path4165"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:1.32478476;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
- d="m 426.66069,1185.629 c 0,0 0,-47.6923 0,-47.6923 l 153.67503,0"
- id="path4171"
- sodipodi:nodetypes="ccc"
- inkscape:connector-curvature="0" />
- <text
- id="text4173"
- y="1092.8875"
- x="343.65884"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="1092.8875"
- x="343.65884"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4179">(Implements paint())</tspan></text>
- <g
- style="display:inline"
- id="g39423-1"
- transform="matrix(1.4955348,0,0,1.4955348,-167.94939,-62.179786)">
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot39425-7"
- transform="translate(-5.2378947,106.19782)"><flowRegion
- id="flowRegion39427-5"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use39429-4"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara39431-8">Sizeable</flowPara></flowRoot> <g
- id="g39433-4"
- transform="translate(-46.062995,-30.433073)">
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot39435-3"
- transform="translate(-5.2378947,106.19782)"><flowRegion
- id="flowRegion39437-1"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use39439-1"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara39441-0">Sizeable</flowPara></flowRoot> </g>
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot39443-9"
- transform="translate(75.734798,-715.9695)"><flowRegion
- id="flowRegion39445-0"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use39447-0"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara39449-6">VariableOwner</flowPara></flowRoot> <g
- style="display:inline"
- id="g39451-9"
- transform="translate(123.00096,-20.40135)">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39453-6"
- width="135.04765"
- height="30.800348"
- x="166.99391"
- y="232.56483"
- ry="3.7880721" />
- <text
- id="text39455-6"
- y="243.21695"
- x="171.6602"
- style="font-size:8.02388573px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="243.21695"
- x="171.6602"
- id="tspan39457-4"
- sodipodi:role="line">AbstractComponentConnector</tspan></text>
- </g>
- </g>
- <text
- id="text4185-8"
- y="312.98508"
- x="429.17001"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="312.98508"
- x="429.17001"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191-0">«extends»</tspan></text>
- <rect
- style="fill:none;stroke:#000000;stroke-width:1.4955349;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.4955348, 2.9910696;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect18094-6"
- width="345.76636"
- height="181.91768"
- x="-124.01575"
- y="386.22046"
- ry="5.6651931" />
- <text
- id="text18096-2"
- y="408.86478"
- x="-107.09184"
- style="font-size:14.95534801px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="408.86478"
- x="-107.09184"
- id="tspan18098-9"
- sodipodi:role="line">Shared</tspan></text>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#49c2f1;stroke-width:5.82905388;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker18095);display:inline"
- d="m 300.96241,514.15493 0.21869,-81.87149"
- id="path17438"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:3.54330709;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
- d="m 442.91339,520.86612 0,-106.29921"
- id="path3631"
- inkscape:connector-curvature="0" />
- </g>
-</svg>
diff --git a/documentation/architecture/original-drawings/clientside-arch.svg.2012_10_12_17_35_17.0.svg b/documentation/architecture/original-drawings/clientside-arch.svg.2012_10_12_17_35_17.0.svg deleted file mode 100644 index 52f367722e..0000000000 --- a/documentation/architecture/original-drawings/clientside-arch.svg.2012_10_12_17_35_17.0.svg +++ /dev/null @@ -1,2735 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="clientside-arch.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="600.02155"
- inkscape:export-ydpi="600.02155"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10"
- guidetolerance="10"
- objecttolerance="6"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="2"
- inkscape:cx="385.07312"
- inkscape:cy="718.76279"
- inkscape:document-units="mm"
- inkscape:current-layer="g12796-4"
- showgrid="true"
- inkscape:window-width="1672"
- inkscape:window-height="1019"
- inkscape:window-x="0"
- inkscape:window-y="0"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="true"
- showguides="true"
- inkscape:guide-bbox="true"
- inkscape:snap-guide="true"
- inkscape:snap-intersection-line-segments="true"
- inkscape:window-maximized="0">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false"
- originx="0mm"
- originy="0mm" />
- <sodipodi:guide
- orientation="1,0"
- position="106.29921,946.81598"
- id="guide3041" />
- <sodipodi:guide
- id="guide9173"
- position="616.53543,641.33858"
- orientation="1,0" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <linearGradient
- inkscape:collect="always"
- id="linearGradient10356">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop10358" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop10360" />
- </linearGradient>
- <pattern
- patternUnits="userSpaceOnUse"
- width="19.488184"
- height="5.3149635"
- patternTransform="translate(442.02756,179.82281)"
- id="pattern31837">
- <path
- id="path31833"
- d="M 0.88582677,4.4291368 L 18.602357,4.4291368"
- style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- id="path31835"
- d="M 0.88582677,0.88582677 L 18.602357,0.88582677"
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </pattern>
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern31837"
- id="pattern31843"
- patternTransform="matrix(0.8219623,-0.5106659,0.5106659,0.8219623,407.01829,190.47423)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern31843"
- id="pattern39357"
- patternTransform="matrix(1.2292733,-0.7637186,0.7637186,1.2292733,253.27252,439.9282)" />
- <marker
- inkscape:stockid="CurvyCross"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="CurvyCross"
- style="overflow:visible">
- <g
- id="g18903"
- transform="scale(0.6)">
- <path
- id="path18905"
- d="M 4.6254930,-5.0456926 C 1.8654930,-5.0456926 -0.37450702,-2.8056926 -0.37450702,-0.045692580 C -0.37450702,2.7143074 1.8654930,4.9543074 4.6254930,4.9543074"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none" />
- <path
- id="path18907"
- d="M -5.4129913,-5.0456926 C -2.6529913,-5.0456926 -0.41299131,-2.8056926 -0.41299131,-0.045692580 C -0.41299131,2.7143074 -2.6529913,4.9543074 -5.4129913,4.9543074"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none" />
- </g>
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4794"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4590"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient841"
- id="linearGradient4390"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9208103,1.086)"
- x1="10.800377"
- y1="-94.637573"
- x2="116.61332"
- y2="-94.637573" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4376"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3095"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1683">
- <stop
- style="stop-color:#db1f0c;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1684" />
- <stop
- style="stop-color:#761006;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1685" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient24714"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient2263">
- <stop
- style="stop-color:#ff9696;stop-opacity:0.61960787;"
- offset="0"
- id="stop2264" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.70103091;"
- offset="1.0000000"
- id="stop2265" />
- </linearGradient>
- <linearGradient
- id="linearGradient2891">
- <stop
- style="stop-color:#ff0000;stop-opacity:0.68041235;"
- offset="0"
- id="stop2892" />
- <stop
- style="stop-color:#ff0000;stop-opacity:0.14432989;"
- offset="1"
- id="stop2893" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient24524"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path3964"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.8,0.8)" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient2870"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient239278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient865">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop866" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop868" />
- </linearGradient>
- <linearGradient
- id="linearGradient1400">
- <stop
- style="stop-color:#000000;stop-opacity:0.67843139;"
- offset="0.0000000"
- id="stop1401" />
- <stop
- style="stop-color:#000000;stop-opacity:0.32941177;"
- offset="0.56999999"
- id="stop1403" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop1402" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient233706"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- y2="383.76529"
- y1="843.20789"
- xlink:href="#linearGradient1507"
- x2="547.80804"
- x1="201.38963"
- id="linearGradient1506"
- gradientTransform="scale(0.9446888,1.0585496)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3450"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1290">
- <stop
- style="stop-color:#b2a269;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1291" />
- <stop
- style="stop-color:#6d5b18;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1292" />
- </linearGradient>
- <linearGradient
- id="linearGradient846">
- <stop
- style="stop-color:#e7e7e7;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop847" />
- <stop
- style="stop-color:#a5a5a5;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop848" />
- </linearGradient>
- <linearGradient
- id="linearGradient841">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop842" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop843" />
- </linearGradient>
- <linearGradient
- id="linearGradient853">
- <stop
- style="stop-color:#000000;stop-opacity:0.29752067;"
- offset="0.00000000"
- id="stop854" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop855" />
- </linearGradient>
- <linearGradient
- y2="287.73825"
- y1="169.4436"
- xlink:href="#linearGradient1492"
- x2="622.33325"
- x1="741.63898"
- id="linearGradient1497"
- gradientTransform="scale(0.9552926,1.0467997)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1501">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1502" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1504" />
- </linearGradient>
- <linearGradient
- y2="418.53635"
- y1="236.12772"
- xlink:href="#linearGradient1501"
- x2="330.88034"
- x1="687.96375"
- id="linearGradient1499"
- gradientTransform="scale(0.9890091,1.011113)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1492">
- <stop
- style="stop-color:#dadada;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1493" />
- <stop
- style="stop-color:#f1f1f1;stop-opacity:1.0000000;"
- offset="0.34923077"
- id="stop1496" />
- <stop
- style="stop-color:#f0f0f0;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1494" />
- </linearGradient>
- <linearGradient
- y2="689.86005"
- y1="230.07422"
- xlink:href="#linearGradient1492"
- x2="351.7063"
- x1="728.96643"
- id="linearGradient1495"
- gradientTransform="scale(0.955425,1.0466546)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1507">
- <stop
- style="stop-color:#000000;stop-opacity:0.095505618;"
- offset="0.0000000"
- id="stop1508" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1510" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3877"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1699">
- <stop
- style="stop-color:#017eff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1700" />
- <stop
- style="stop-color:#ecfaff;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1701" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0"
- refX="0"
- id="DiamondEmpty"
- style="overflow:visible">
- <path
- id="path7"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="translate(-5,0)" />
- </marker>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3268"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,541.12253,30.198804)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3270"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3272"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3274"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3276"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- id="linearGradient7299">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop7301" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop7303" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3280"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- id="linearGradient5596">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop5598" />
- <stop
- style="stop-color:#e7e790;stop-opacity:0.56489879"
- offset="1"
- id="stop5600" />
- </linearGradient>
- <linearGradient
- id="linearGradient19816">
- <stop
- id="stop19818"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop19820"
- offset="1"
- style="stop-color:#e7e790;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient11508">
- <stop
- id="stop11510"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop11512"
- offset="1"
- style="stop-color:#008401;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3286">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3288" />
- <stop
- style="stop-color:#79e291;stop-opacity:1;"
- offset="1"
- id="stop3290" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2Lend"
- style="overflow:visible">
- <path
- id="path16811"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
- </marker>
- <linearGradient
- id="linearGradient7447">
- <stop
- style="stop-color:#ff6161;stop-opacity:1;"
- offset="0"
- id="stop7449" />
- <stop
- style="stop-color:#840929;stop-opacity:1;"
- offset="1"
- id="stop7451" />
- </linearGradient>
- <linearGradient
- id="linearGradient7485">
- <stop
- style="stop-color:#b6bcef;stop-opacity:1;"
- offset="0"
- id="stop7487" />
- <stop
- style="stop-color:#4026b1;stop-opacity:1;"
- offset="1"
- id="stop7489" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0"
- refX="0"
- id="EmptyArrow2"
- style="overflow:visible">
- <path
- id="path13"
- d="M 0,0 L 0,-5 L -10,0 L 0,5 L 0,0 z"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(-1,0,0,-1,-10,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient92445"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112303"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112301"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112299"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.293791,1.3701286e-2,-5.3144349e-3,0.5018339,-46.792176,73.88505)"
- r="95.092682"
- fy="112.14567"
- fx="153.46323"
- cy="112.14567"
- cx="153.46323"
- id="radialGradient112297"
- xlink:href="#linearGradient11508"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112295"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112293"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112291"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112289"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112287"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient1694">
- <stop
- id="stop1695"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:0.0000000;" />
- <stop
- id="stop1696"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient112278">
- <stop
- id="stop112280"
- offset="0.0000000"
- style="stop-color:#0c1fdb;stop-opacity:1.0000000;" />
- <stop
- id="stop112282"
- offset="1.0000000"
- style="stop-color:#062d76;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- gradientTransform="scale(1.475472,0.677749)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1686"
- inkscape:collect="always"
- x1="242.39842"
- x2="242.39842"
- xlink:href="#linearGradient1683"
- y1="1035.3337"
- y2="636.25543" />
- <linearGradient
- gradientTransform="scale(1.475472,0.677749)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1690"
- inkscape:collect="always"
- x1="240.86183"
- x2="240.86183"
- xlink:href="#linearGradient1683"
- y1="635.74658"
- y2="1038.9441" />
- <linearGradient
- gradientTransform="scale(1.479463,0.675921)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1692"
- inkscape:collect="always"
- x1="244.8598"
- x2="244.8598"
- xlink:href="#linearGradient1694"
- y1="827.01349"
- y2="646.06177" />
- <linearGradient
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient112273"
- inkscape:collect="always"
- x1="303.90472"
- x2="-93.992599"
- xlink:href="#linearGradient1683"
- y1="-492.41382"
- y2="-492.41382" />
- <linearGradient
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient112271"
- inkscape:collect="always"
- x1="-92.98716"
- x2="315.00735"
- xlink:href="#linearGradient1683"
- y1="-477.69666"
- y2="-477.69669" />
- <linearGradient
- gradientTransform="matrix(0,1.475473,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1705"
- inkscape:collect="always"
- x1="112.06259"
- x2="-170.00552"
- xlink:href="#linearGradient1694"
- y1="-485.28952"
- y2="-485.28973" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5287"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5285"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5283"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5281"
- xlink:href="#linearGradient11508"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient11602"
- xlink:href="#linearGradient19816"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient15668"
- xlink:href="#linearGradient7299"
- inkscape:collect="always" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- y2="148.38934"
- x2="389.01984"
- y1="148.38934"
- x1="96.085953"
- id="linearGradient5355"
- xlink:href="#linearGradient5349"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4152">
- <stop
- id="stop4154"
- offset="0"
- style="stop-color:#6b6bff;stop-opacity:1;" />
- <stop
- id="stop4156"
- offset="1"
- style="stop-color:#6b6bff;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient5349">
- <stop
- id="stop5351"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop5353"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient112247">
- <stop
- id="stop112249"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop112251"
- offset="1"
- style="stop-color:#a090e7;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient9263">
- <stop
- id="stop9265"
- offset="0"
- style="stop-color:#000000;stop-opacity:0" />
- <stop
- id="stop9267"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112241"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutL">
- <path
- transform="scale(0.8,0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16734" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleInL"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleInL">
- <path
- transform="scale(-0.8,-0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16743" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutM"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutM">
- <path
- transform="scale(0.4,0.4)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16731" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker112234"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend">
- <path
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path16829" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker112230"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Lend">
- <path
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- id="path112232" />
- </marker>
- <linearGradient
- id="linearGradient112224">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop112226" />
- <stop
- style="stop-color:#e7e790;stop-opacity:1;"
- offset="1"
- id="stop112228" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112220"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="matrix(-1,0,0,-1,-10,0)"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 0,-5 L -10,0 L 0,5 L 0,0 z"
- id="path112222" />
- </marker>
- <marker
- style="overflow:visible"
- id="EmptyArrow"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="matrix(-1,0,0,-1,-10,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 0,-5 L -12.5,0 L 0,5 L 0,0 z M -0.5,0 L -0.5,-4.5 L -12,0 L -0.5,4.5 L -0.5,0 z"
- id="path9" />
- </marker>
- <linearGradient
- id="linearGradient112212">
- <stop
- id="stop112214"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop112216"
- offset="1"
- style="stop-color:#79e291;stop-opacity:1;" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112208"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="translate(-5,0)"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z"
- id="path112210" />
- </marker>
- <marker
- style="overflow:visible"
- id="DiamondL"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DiamondL">
- <path
- transform="scale(0.8,0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z"
- id="path4404" />
- </marker>
- <linearGradient
- id="linearGradient112200">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop112202" />
- <stop
- style="stop-color:#e27979;stop-opacity:1"
- offset="1"
- id="stop112204" />
- </linearGradient>
- <linearGradient
- id="linearGradient11516">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop11518" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop11520" />
- </linearGradient>
- <marker
- 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 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- id="path6743" />
- </marker>
- <inkscape:perspective
- id="perspective112192"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9300"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9574"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9882"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective10244"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient10356"
- id="linearGradient10362"
- x1="407.48032"
- y1="968.17322"
- x2="669.66157"
- y2="968.17322"
- gradientUnits="userSpaceOnUse" />
- <inkscape:perspective
- id="perspective5379"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective5446"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective7010"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <marker
- id="marker18095-5"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-2"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-5"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-0"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-2"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-9"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-0"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-07"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-4"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-5"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-3"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-7" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#f39300;stroke-width:1pt;fill:#f39300"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path6738" />
- </marker>
- <marker
- id="marker18095-3"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-8"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-7"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- id="marker18095-31"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-4"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- id="marker18095-56"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-22"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-67"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-5"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-3"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-1"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-8"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-6"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-5"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-52"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-65"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-55"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8I"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8I">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#d9d9cd;stroke-width:1pt;fill:#d9d9cd"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path10009" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-11"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-9" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-551" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-1"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-9" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-4"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-97" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-32"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-4" />
- </marker>
- </defs>
- <metadata
- id="metadata2480">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1"
- style="display:inline">
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"
- transform="matrix(1.4955348,0,0,1.4955348,-57.448129,56.258489)"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="matrix(1.4955348,0,0,1.4955348,-62.789338,90.976267)"
- id="g3178" />
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"
- transform="matrix(1.4955348,0,0,1.4955348,-57.448129,56.258489)"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <g
- transform="matrix(0.7477674,0,0,0.7477674,97.104891,57.446056)"
- id="g18053" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6905"
- transform="matrix(1.4955348,0,0,1.4955348,-326.51819,-568.39489)"><flowRegion
- id="flowRegion6907"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use6909"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6911">VariableOwner</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6913"
- transform="matrix(1.4955348,0,0,1.4955348,-733.84733,-1124.4065)"><flowRegion
- id="flowRegion6915"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use6917"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6919">VariableOwner</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot80522"
- transform="matrix(1.4955348,0,0,1.4955348,452.45115,153.00358)"><flowRegion
- id="flowRegion80524"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use80526"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara80528">1</flowPara></flowRoot> <g
- id="g6138"
- transform="translate(545.54017,99.844317)">
- <g
- id="g12796"
- transform="translate(-538.35514,-231.10416)">
- <rect
- ry="3.7880721"
- y="262.36218"
- x="99.114182"
- height="193.99606"
- width="314.46851"
- id="rect6642-4"
- style="fill:#8c8c8c;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-708.875,-796.17532)"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361"
- xml:space="preserve"><flowRegion
- id="flowRegion11363"><rect
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="30.059965"
- width="284.75891"
- id="rect11365" /></flowRegion><flowPara
- id="flowPara11367">Vaadin Client-Side Engine</flowPara></flowRoot> <path
- style="fill:none;stroke:#ffffff;stroke-width:2.12598419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
- d="m 144.29135,325.25588 c 0,56.69292 0,56.69292 0,56.69292"
- id="path15239"
- inkscape:connector-curvature="0" />
- <g
- style="display:inline"
- id="g17467-2"
- transform="matrix(1.4955348,0,0,1.4955348,-130.58469,34.78769)">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.42155457;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect17469-8"
- width="196.05606"
- height="35.53886"
- x="160.69756"
- y="232.13174"
- ry="3.7880721" />
- <text
- id="text17471-2"
- y="250.87724"
- x="165.35182"
- style="font-size:9.36119938px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="250.87724"
- x="165.35182"
- sodipodi:role="line"
- id="tspan17475-4">ApplicationConnection</tspan></text>
- <text
- id="text39409-6"
- y="241.29225"
- x="165.25607"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="241.29225"
- x="165.25607"
- sodipodi:role="line"
- id="tspan39411-8">com.vaadin.client</tspan></text>
- </g>
- <g
- style="display:inline"
- transform="translate(88.047759,156.45326)"
- id="g28403-3-5-6-60">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-1"
- width="69.539879"
- height="35.488552"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-7"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-52"><rect
- id="rect11365-5-4-6-4-57"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4300-8">...Connector</flowPara></flowRoot> </g>
- <path
- style="fill:none;stroke:#ffffff;stroke-width:2.12598419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
- d="m 218.7008,325.25588 c 0,56.69292 0,56.69292 0,56.69292"
- id="path15239-7"
- inkscape:connector-curvature="0" />
- <g
- style="display:inline"
- transform="translate(162.45721,156.45326)"
- id="g28403-3-5-6-6-3">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5-6"
- width="69.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1-4"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5-3"><rect
- id="rect11365-5-4-6-4-5-6"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4338-3">...Connector</flowPara></flowRoot> </g>
- <path
- style="fill:none;stroke:#ffffff;stroke-width:2.12598419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
- d="m 293.11024,325.25588 c 0,56.69292 0,56.69292 0,56.69292"
- id="path15239-2"
- inkscape:connector-curvature="0" />
- <g
- style="display:inline"
- transform="translate(236.86666,156.45326)"
- id="g28403-3-5-6-2-4">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2, 2;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-8-5"
- width="69.539879"
- height="35.488552"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-6-8"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-50-4"><rect
- id="rect11365-5-4-6-4-0-2"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4300-7-2">...Connector</flowPara></flowRoot> </g>
- <g
- style="display:inline"
- transform="translate(88.047759,110.39027)"
- id="g28403-3-5-6">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5"
- width="69.539879"
- height="35.488552"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7"><rect
- id="rect11365-5-4-6-4"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9">Built-in</flowPara><flowPara
- id="flowPara4300">Widget</flowPara></flowRoot> </g>
- <g
- style="display:inline"
- transform="translate(162.45721,110.39027)"
- id="g28403-3-5-6-6">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5"
- width="69.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110%;writing-mode:lr;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5"><rect
- id="rect11365-5-4-6-4-5"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110%;writing-mode:lr;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-9">Add-on</flowPara><flowPara
- id="flowPara4338">Widget</flowPara></flowRoot> </g>
- <g
- style="display:inline"
- transform="translate(236.86666,110.39027)"
- id="g28403-3-5-6-2">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2, 2;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-8"
- width="69.539879"
- height="35.488552"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-6"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-50"><rect
- id="rect11365-5-4-6-4-0"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-1">Custom</flowPara><flowPara
- id="flowPara4300-7">Widget</flowPara></flowRoot> </g>
- <g
- style="display:inline"
- transform="translate(312.27611,111.39027)"
- id="g28403-3-5-6-1">
- <rect
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-14"
- width="69.539879"
- height="35.488552"
- x="20.810509"
- y="179.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-0"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-8"><rect
- id="rect11365-5-4-6-4-52"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4300-9">JavaScript</flowPara><flowPara
- id="flowPara15163">Library</flowPara></flowRoot> </g>
- <path
- style="fill:none;stroke:#ffffff;stroke-width:2.12598419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
- d="m 367.51969,325.25588 c 0,56.69292 0,56.69292 0,56.69292"
- id="path15239-76"
- inkscape:connector-curvature="0" />
- <g
- style="display:inline"
- transform="translate(312.27611,157.45326)"
- id="g28403-3-5-6-1-7">
- <rect
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-14-8"
- width="69.539879"
- height="35.488552"
- x="20.810509"
- y="179.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-0-8"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-8-7"><rect
- id="rect11365-5-4-6-4-52-4"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4300-9-6">JavaScript</flowPara><flowPara
- id="flowPara15163-0">Connector</flowPara></flowRoot> </g>
- </g>
- <text
- id="text4185-3"
- y="219.69513"
- x="-277.35001"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="219.69513"
- x="-277.35001"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191-1">XMLHttpRequest</tspan></text>
- </g>
- <text
- id="text31847-9"
- y="342.82858"
- x="157.81973"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="342.82858"
- x="157.81973"
- sodipodi:role="line"
- id="tspan31851-9">Server connection</tspan></text>
- <text
- id="text31847-9-0"
- y="343.11273"
- x="268.37466"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="343.11273"
- x="268.37466"
- sodipodi:role="line"
- id="tspan31851-9-1">HTTP(S) / JSON</tspan></text>
- <g
- style="display:inline"
- id="g6138-8"
- transform="translate(548.96931,319.41518)">
- <g
- id="g12796-4"
- transform="translate(-538.35514,-231.10416)">
- <rect
- ry="3.7880721"
- y="262.47635"
- x="95.685043"
- height="142.22653"
- width="314.46851"
- id="rect6642-4-3"
- style="fill:#8c8c8c;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- style="fill:none;stroke:#ffffff;stroke-width:2.12598419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
- d="m 216.15749,297.90942 c 0,56.69292 0,56.69292 0,56.69292"
- id="path15239-7-1"
- inkscape:connector-curvature="0" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-708.875,-796.17532)"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-3"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-1"><rect
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="30.059965"
- width="284.75891"
- id="rect11365-7" /></flowRegion><flowPara
- id="flowPara11367-8">Server-Side</flowPara></flowRoot> <path
- style="fill:none;stroke:#ffffff;stroke-width:2.12598419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
- d="m 141.74804,297.90942 c 0,28.98892 0,13.47884 0,56.69292"
- id="path15239-4"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#ffffff;stroke-width:2.12598419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
- d="m 290.56693,297.90942 c 0,56.69292 0,56.69292 0,56.69292"
- id="path15239-2-0"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#ffffff;stroke-width:2.12598419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
- d="m 364.97638,297.90942 c 0,56.69292 0,56.69292 0,56.69292"
- id="path15239-76-6"
- inkscape:connector-curvature="0" />
- <g
- style="display:inline"
- id="g17467-2-6"
- transform="matrix(1.4955348,0,0,1.4955348,-134.01382,-56.338291)">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.42155457;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect17469-8-3"
- width="196.05606"
- height="35.53886"
- x="160.69756"
- y="232.13174"
- ry="3.7880721" />
- <text
- id="text17471-2-6"
- y="250.87724"
- x="165.35182"
- style="font-size:9.36119938px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="250.87724"
- x="165.35182"
- sodipodi:role="line"
- id="tspan17475-4-4">CommunicationManager</tspan></text>
- <text
- id="text39409-6-4"
- y="241.29225"
- x="165.25607"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="241.29225"
- x="165.25607"
- sodipodi:role="line"
- id="tspan39411-8-5">com.vaadin.server</tspan></text>
- </g>
- <g
- style="display:inline"
- transform="translate(85.504452,175.1698)"
- id="g28403-3-5-6-62">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-4"
- width="69.539879"
- height="35.488552"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-68"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-3"><rect
- id="rect11365-5-4-6-4-1"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-5">Built-in</flowPara><flowPara
- id="flowPara4300-76">Component</flowPara></flowRoot> </g>
- <g
- style="display:inline"
- transform="translate(159.9139,175.1698)"
- id="g28403-3-5-6-6-2">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5-0"
- width="69.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1-6"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5-4"><rect
- id="rect11365-5-4-6-4-5-3"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-9-1">Add-on</flowPara><flowPara
- id="flowPara4338-1">Component</flowPara></flowRoot> </g>
- <g
- style="display:inline"
- transform="translate(234.32335,175.1698)"
- id="g28403-3-5-6-2-46">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2, 2;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-8-7"
- width="69.539879"
- height="35.488552"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-6-7"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-50-8"><rect
- id="rect11365-5-4-6-4-0-4"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-1-7">Custom</flowPara><flowPara
- id="flowPara4300-7-8">Component</flowPara></flowRoot> </g>
- <g
- style="display:inline"
- transform="translate(309.7328,176.1698)"
- id="g28403-3-5-6-1-9">
- <rect
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-14-3"
- width="69.539879"
- height="35.488552"
- x="20.810509"
- y="179.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-0-2"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-8-2"><rect
- id="rect11365-5-4-6-4-52-40"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara15163-9">Component</flowPara></flowRoot> </g>
- </g>
- </g>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:6.02362204;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#DotSu);display:inline"
- d="m 261.31889,382.67714 0,-89.46851"
- id="path4600-1-1"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- </g>
-</svg>
diff --git a/documentation/architecture/original-drawings/events-classdiagram.svg b/documentation/architecture/original-drawings/events-classdiagram.svg deleted file mode 100644 index f849d269f3..0000000000 --- a/documentation/architecture/original-drawings/events-classdiagram.svg +++ /dev/null @@ -1,2565 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="events-classdiagram.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="600.02155"
- inkscape:export-ydpi="600.02155"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10"
- guidetolerance="10"
- objecttolerance="6"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="2"
- inkscape:cx="244.07831"
- inkscape:cy="662.50347"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1672"
- inkscape:window-height="1019"
- inkscape:window-x="0"
- inkscape:window-y="0"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="true"
- showguides="true"
- inkscape:guide-bbox="true"
- inkscape:snap-guide="true"
- inkscape:snap-intersection-line-segments="true"
- inkscape:window-maximized="0">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false"
- originx="0mm"
- originy="0mm" />
- <sodipodi:guide
- orientation="1,0"
- position="248.0315,981.49606"
- id="guide3041" />
- <sodipodi:guide
- id="guide9173"
- position="616.53543,641.33858"
- orientation="1,0" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <linearGradient
- inkscape:collect="always"
- id="linearGradient10356">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop10358" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop10360" />
- </linearGradient>
- <pattern
- patternUnits="userSpaceOnUse"
- width="19.488184"
- height="5.3149635"
- patternTransform="translate(442.02756,179.82281)"
- id="pattern31837">
- <path
- id="path31833"
- d="M 0.88582677,4.4291368 L 18.602357,4.4291368"
- style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- id="path31835"
- d="M 0.88582677,0.88582677 L 18.602357,0.88582677"
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </pattern>
- <marker
- inkscape:stockid="CurvyCross"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="CurvyCross"
- style="overflow:visible">
- <g
- id="g18903"
- transform="scale(0.6)">
- <path
- id="path18905"
- d="M 4.6254930,-5.0456926 C 1.8654930,-5.0456926 -0.37450702,-2.8056926 -0.37450702,-0.045692580 C -0.37450702,2.7143074 1.8654930,4.9543074 4.6254930,4.9543074"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none" />
- <path
- id="path18907"
- d="M -5.4129913,-5.0456926 C -2.6529913,-5.0456926 -0.41299131,-2.8056926 -0.41299131,-0.045692580 C -0.41299131,2.7143074 -2.6529913,4.9543074 -5.4129913,4.9543074"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none" />
- </g>
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4794"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4590"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient841"
- id="linearGradient4390"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9208103,1.086)"
- x1="10.800377"
- y1="-94.637573"
- x2="116.61332"
- y2="-94.637573" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4376"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3095"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1683">
- <stop
- style="stop-color:#db1f0c;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1684" />
- <stop
- style="stop-color:#761006;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1685" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient24714"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient2263">
- <stop
- style="stop-color:#ff9696;stop-opacity:0.61960787;"
- offset="0"
- id="stop2264" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.70103091;"
- offset="1.0000000"
- id="stop2265" />
- </linearGradient>
- <linearGradient
- id="linearGradient2891">
- <stop
- style="stop-color:#ff0000;stop-opacity:0.68041235;"
- offset="0"
- id="stop2892" />
- <stop
- style="stop-color:#ff0000;stop-opacity:0.14432989;"
- offset="1"
- id="stop2893" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient24524"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path3964"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.8,0.8)" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient2870"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient239278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient865">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop866" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop868" />
- </linearGradient>
- <linearGradient
- id="linearGradient1400">
- <stop
- style="stop-color:#000000;stop-opacity:0.67843139;"
- offset="0.0000000"
- id="stop1401" />
- <stop
- style="stop-color:#000000;stop-opacity:0.32941177;"
- offset="0.56999999"
- id="stop1403" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop1402" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient233706"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- y2="383.76529"
- y1="843.20789"
- xlink:href="#linearGradient1507"
- x2="547.80804"
- x1="201.38963"
- id="linearGradient1506"
- gradientTransform="scale(0.9446888,1.0585496)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3450"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1290">
- <stop
- style="stop-color:#b2a269;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1291" />
- <stop
- style="stop-color:#6d5b18;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1292" />
- </linearGradient>
- <linearGradient
- id="linearGradient846">
- <stop
- style="stop-color:#e7e7e7;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop847" />
- <stop
- style="stop-color:#a5a5a5;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop848" />
- </linearGradient>
- <linearGradient
- id="linearGradient841">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop842" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop843" />
- </linearGradient>
- <linearGradient
- id="linearGradient853">
- <stop
- style="stop-color:#000000;stop-opacity:0.29752067;"
- offset="0.00000000"
- id="stop854" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop855" />
- </linearGradient>
- <linearGradient
- y2="287.73825"
- y1="169.4436"
- xlink:href="#linearGradient1492"
- x2="622.33325"
- x1="741.63898"
- id="linearGradient1497"
- gradientTransform="scale(0.9552926,1.0467997)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1501">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1502" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1504" />
- </linearGradient>
- <linearGradient
- y2="418.53635"
- y1="236.12772"
- xlink:href="#linearGradient1501"
- x2="330.88034"
- x1="687.96375"
- id="linearGradient1499"
- gradientTransform="scale(0.9890091,1.011113)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1492">
- <stop
- style="stop-color:#dadada;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1493" />
- <stop
- style="stop-color:#f1f1f1;stop-opacity:1.0000000;"
- offset="0.34923077"
- id="stop1496" />
- <stop
- style="stop-color:#f0f0f0;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1494" />
- </linearGradient>
- <linearGradient
- y2="689.86005"
- y1="230.07422"
- xlink:href="#linearGradient1492"
- x2="351.7063"
- x1="728.96643"
- id="linearGradient1495"
- gradientTransform="scale(0.955425,1.0466546)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1507">
- <stop
- style="stop-color:#000000;stop-opacity:0.095505618;"
- offset="0.0000000"
- id="stop1508" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1510" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3877"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1699">
- <stop
- style="stop-color:#017eff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1700" />
- <stop
- style="stop-color:#ecfaff;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1701" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0"
- refX="0"
- id="DiamondEmpty"
- style="overflow:visible">
- <path
- id="path7"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="translate(-5,0)" />
- </marker>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3268"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,541.12253,30.198804)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3270"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3272"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3274"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3276"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- id="linearGradient7299">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop7301" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop7303" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3280"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- id="linearGradient5596">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop5598" />
- <stop
- style="stop-color:#e7e790;stop-opacity:0.56489879"
- offset="1"
- id="stop5600" />
- </linearGradient>
- <linearGradient
- id="linearGradient19816">
- <stop
- id="stop19818"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop19820"
- offset="1"
- style="stop-color:#e7e790;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient11508">
- <stop
- id="stop11510"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop11512"
- offset="1"
- style="stop-color:#008401;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3286">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3288" />
- <stop
- style="stop-color:#79e291;stop-opacity:1;"
- offset="1"
- id="stop3290" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2Lend"
- style="overflow:visible">
- <path
- id="path16811"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
- </marker>
- <linearGradient
- id="linearGradient7447">
- <stop
- style="stop-color:#ff6161;stop-opacity:1;"
- offset="0"
- id="stop7449" />
- <stop
- style="stop-color:#840929;stop-opacity:1;"
- offset="1"
- id="stop7451" />
- </linearGradient>
- <linearGradient
- id="linearGradient7485">
- <stop
- style="stop-color:#b6bcef;stop-opacity:1;"
- offset="0"
- id="stop7487" />
- <stop
- style="stop-color:#4026b1;stop-opacity:1;"
- offset="1"
- id="stop7489" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0"
- refX="0"
- id="EmptyArrow2"
- style="overflow:visible">
- <path
- id="path13"
- d="M 0,0 L 0,-5 L -10,0 L 0,5 L 0,0 z"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(-1,0,0,-1,-10,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient92445"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112303"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112301"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112299"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.293791,1.3701286e-2,-5.3144349e-3,0.5018339,-46.792176,73.88505)"
- r="95.092682"
- fy="112.14567"
- fx="153.46323"
- cy="112.14567"
- cx="153.46323"
- id="radialGradient112297"
- xlink:href="#linearGradient11508"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112295"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112293"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112291"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112289"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112287"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient1694">
- <stop
- id="stop1695"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:0.0000000;" />
- <stop
- id="stop1696"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient112278">
- <stop
- id="stop112280"
- offset="0.0000000"
- style="stop-color:#0c1fdb;stop-opacity:1.0000000;" />
- <stop
- id="stop112282"
- offset="1.0000000"
- style="stop-color:#062d76;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- gradientTransform="scale(1.475472,0.677749)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1686"
- inkscape:collect="always"
- x1="242.39842"
- x2="242.39842"
- xlink:href="#linearGradient1683"
- y1="1035.3337"
- y2="636.25543" />
- <linearGradient
- gradientTransform="scale(1.475472,0.677749)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1690"
- inkscape:collect="always"
- x1="240.86183"
- x2="240.86183"
- xlink:href="#linearGradient1683"
- y1="635.74658"
- y2="1038.9441" />
- <linearGradient
- gradientTransform="scale(1.479463,0.675921)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1692"
- inkscape:collect="always"
- x1="244.8598"
- x2="244.8598"
- xlink:href="#linearGradient1694"
- y1="827.01349"
- y2="646.06177" />
- <linearGradient
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient112273"
- inkscape:collect="always"
- x1="303.90472"
- x2="-93.992599"
- xlink:href="#linearGradient1683"
- y1="-492.41382"
- y2="-492.41382" />
- <linearGradient
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient112271"
- inkscape:collect="always"
- x1="-92.98716"
- x2="315.00735"
- xlink:href="#linearGradient1683"
- y1="-477.69666"
- y2="-477.69669" />
- <linearGradient
- gradientTransform="matrix(0,1.475473,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1705"
- inkscape:collect="always"
- x1="112.06259"
- x2="-170.00552"
- xlink:href="#linearGradient1694"
- y1="-485.28952"
- y2="-485.28973" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5287"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5285"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5283"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5281"
- xlink:href="#linearGradient11508"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient11602"
- xlink:href="#linearGradient19816"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient15668"
- xlink:href="#linearGradient7299"
- inkscape:collect="always" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- y2="148.38934"
- x2="389.01984"
- y1="148.38934"
- x1="96.085953"
- id="linearGradient5355"
- xlink:href="#linearGradient5349"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4152">
- <stop
- id="stop4154"
- offset="0"
- style="stop-color:#6b6bff;stop-opacity:1;" />
- <stop
- id="stop4156"
- offset="1"
- style="stop-color:#6b6bff;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient5349">
- <stop
- id="stop5351"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop5353"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient112247">
- <stop
- id="stop112249"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop112251"
- offset="1"
- style="stop-color:#a090e7;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient9263">
- <stop
- id="stop9265"
- offset="0"
- style="stop-color:#000000;stop-opacity:0" />
- <stop
- id="stop9267"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112241"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutL">
- <path
- transform="scale(0.8,0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16734" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleInL"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleInL">
- <path
- transform="scale(-0.8,-0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16743" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutM"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutM">
- <path
- transform="scale(0.4,0.4)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16731" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker112234"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend">
- <path
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path16829" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker112230"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Lend">
- <path
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- id="path112232" />
- </marker>
- <linearGradient
- id="linearGradient112224">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop112226" />
- <stop
- style="stop-color:#e7e790;stop-opacity:1;"
- offset="1"
- id="stop112228" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112220"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="matrix(-1,0,0,-1,-10,0)"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 0,-5 L -10,0 L 0,5 L 0,0 z"
- id="path112222" />
- </marker>
- <marker
- style="overflow:visible"
- id="EmptyArrow"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="matrix(-1,0,0,-1,-10,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 0,-5 L -12.5,0 L 0,5 L 0,0 z M -0.5,0 L -0.5,-4.5 L -12,0 L -0.5,4.5 L -0.5,0 z"
- id="path9" />
- </marker>
- <linearGradient
- id="linearGradient112212">
- <stop
- id="stop112214"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop112216"
- offset="1"
- style="stop-color:#79e291;stop-opacity:1;" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112208"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="translate(-5,0)"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z"
- id="path112210" />
- </marker>
- <marker
- style="overflow:visible"
- id="DiamondL"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DiamondL">
- <path
- transform="scale(0.8,0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z"
- id="path4404" />
- </marker>
- <linearGradient
- id="linearGradient112200">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop112202" />
- <stop
- style="stop-color:#e27979;stop-opacity:1"
- offset="1"
- id="stop112204" />
- </linearGradient>
- <linearGradient
- id="linearGradient11516">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop11518" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop11520" />
- </linearGradient>
- <marker
- 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 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- id="path6743" />
- </marker>
- <inkscape:perspective
- id="perspective112192"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9300"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9574"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9882"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective10244"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient10356"
- id="linearGradient10362"
- x1="407.48032"
- y1="968.17322"
- x2="669.66157"
- y2="968.17322"
- gradientUnits="userSpaceOnUse" />
- <inkscape:perspective
- id="perspective5379"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective5446"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective7010"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <marker
- id="marker18095-5"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-2"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-5"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-0"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-2"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-9"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-0"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-07"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-4"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-5"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-3"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-7" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#f39300;stroke-width:1pt;fill:#f39300"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path6738" />
- </marker>
- <marker
- id="marker18095-3"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-8"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-7"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- id="marker18095-31"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-4"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- id="marker18095-56"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-22"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-67"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-5"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-3"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-1"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-8"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-6"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-5"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-52"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-65"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-55"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8I"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8I">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#d9d9cd;stroke-width:1pt;fill:#d9d9cd"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path10009" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-11"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-9" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-551" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-1"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-9" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-97" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-5"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-6" />
- </marker>
- <marker
- id="marker18095-7"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-88"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-4"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-9"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-40"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-83"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-1"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-8"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-35"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-6"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-71"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-4"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- </defs>
- <metadata
- id="metadata2480">
- <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"
- style="display:inline">
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"
- transform="matrix(1.4955348,0,0,1.4955348,294.52243,-24.193783)"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="matrix(1.4955348,0,0,1.4955348,289.18122,10.523989)"
- id="g3178" />
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"
- transform="matrix(1.4955348,0,0,1.4955348,294.52243,-24.193783)"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <g
- transform="matrix(0.7477674,0,0,0.7477674,449.07545,-23.006216)"
- id="g18053" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6905"
- transform="matrix(1.4955348,0,0,1.4955348,25.452373,-648.84716)"><flowRegion
- id="flowRegion6907"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use6909"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6911">VariableOwner</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6913"
- transform="matrix(1.4955348,0,0,1.4955348,-381.87677,-1204.8587)"><flowRegion
- id="flowRegion6915"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use6917"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6919">VariableOwner</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot80522"
- transform="matrix(1.4955348,0,0,1.4955348,804.42171,72.551303)"><flowRegion
- id="flowRegion80524"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use80526"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara80528">1</flowPara></flowRoot> <g
- id="g17200">
- <rect
- ry="5.6651931"
- y="131.10234"
- x="35.433071"
- height="283.46457"
- width="425.19684"
- id="rect39497"
- style="fill:#bfeafa;fill-opacity:1;stroke:#000000;stroke-width:1.49527562;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-size:14.95534801px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="40.979282"
- y="148.46327"
- id="text18090"><tspan
- sodipodi:role="line"
- id="tspan18092"
- x="40.979282"
- y="148.46327">Vaadin Framework</tspan></text>
- </g>
- <g
- transform="translate(-53.149736,283.46443)"
- style="display:inline"
- id="g17200-1">
- <rect
- ry="5.6651931"
- y="149.56665"
- x="89.330444"
- height="87.835045"
- width="424.44922"
- id="rect39497-8"
- style="fill:#ffe2b5;fill-opacity:1;stroke:#000000;stroke-width:1.49527562;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-size:14.95534801px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="94.876656"
- y="166.92758"
- id="text18090-3"><tspan
- sodipodi:role="line"
- id="tspan18092-4"
- x="94.876656"
- y="166.92758">UI Logic</tspan></text>
- </g>
- <g
- style="display:inline"
- id="g39459-3"
- transform="matrix(1.4955348,0,0,1.4955348,-186.92772,-177.78458)">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2.99948001;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39461-9"
- width="118.96288"
- height="35.433075"
- x="160.02942"
- y="229.8378"
- ry="3.7880721" />
- <text
- id="text39463-9"
- y="250.52808"
- x="164.65993"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="250.52808"
- x="164.65993"
- id="tspan39465-4"
- sodipodi:role="line">Component.Event</tspan></text>
- <text
- id="text31857-5-9-8"
- y="238.99831"
- x="164.58794"
- style="font-size:5.99999952px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="238.99831"
- x="164.58794"
- sodipodi:role="line"
- id="tspan31859-2-9-4">com.vaadin.ui</tspan></text>
- </g>
- <g
- style="display:inline"
- id="g39459-3-8"
- transform="matrix(1.4955348,0,0,1.4955348,26.418466,-0.02966157)">
- <rect
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2.99948001;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39461-9-9"
- width="118.46288"
- height="35.433075"
- x="160.02942"
- y="229.8378"
- ry="3.7880721" />
- <text
- id="text39463-9-9"
- y="250.52808"
- x="164.65993"
- style="font-size:10.69851398px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="250.52808"
- x="164.65993"
- id="tspan39465-4-1"
- sodipodi:role="line">Button.ClickListener</tspan></text>
- <text
- id="text31857-5-9-8-0"
- y="238.99831"
- x="164.58794"
- style="font-size:5.99999952px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="238.99831"
- x="164.58794"
- sodipodi:role="line"
- id="tspan31859-2-9-4-4">com.vaadin.ui</tspan></text>
- </g>
- <g
- style="display:inline"
- id="g17467-7"
- transform="matrix(1.4955348,0,0,1.4955348,-187.17918,-92.043014)">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect17469-7"
- width="118.46288"
- height="35.433075"
- x="160.69756"
- y="232.13174"
- ry="3.7880721" />
- <text
- id="text17471-1"
- y="252.82204"
- x="164.52406"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="252.82204"
- x="164.52406"
- sodipodi:role="line"
- id="tspan17475-6">Button.ClickEvent</tspan></text>
- <text
- id="text39409-1"
- y="241.29225"
- x="165.25607"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="241.29225"
- x="165.25607"
- sodipodi:role="line"
- id="tspan39411-1">com.vaadin.ui</tspan></text>
- </g>
- <g
- style="display:inline"
- id="g17467-7-2"
- transform="matrix(1.4955348,0,0,1.4955348,25.419245,-92.043014)">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect17469-7-7"
- width="118.46288"
- height="35.433075"
- x="160.69756"
- y="232.13174"
- ry="3.7880721" />
- <text
- id="text17471-1-2"
- y="252.82204"
- x="164.52406"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="252.82204"
- x="164.52406"
- sodipodi:role="line"
- id="tspan17475-6-7">Button</tspan></text>
- <text
- id="text39409-1-0"
- y="241.29225"
- x="165.25607"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="241.29225"
- x="165.25607"
- sodipodi:role="line"
- id="tspan39411-1-6">com.vaadin.ui</tspan></text>
- </g>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4.96062994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#DotSu);display:inline"
- d="m 226.77165,279.92124 35.43307,0"
- id="path4600-1-9-5"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4.96062994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#DotSu);display:inline"
- d="m 354.33071,304.72439 0,35.43307"
- id="path4600-1-9-5-0"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <text
- id="text39405-7-0"
- y="336.61417"
- x="364.96063"
- style="font-size:17.94641876px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="336.61417"
- x="364.96063"
- id="tspan39407-9-3"
- sodipodi:role="line">n</tspan></text>
- <text
- id="text39405-7-0-2"
- y="272.60132"
- x="256.5101"
- style="font-size:17.94641876px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="272.60132"
- x="256.5101"
- id="tspan39407-9-3-5"
- sodipodi:role="line">1</tspan></text>
- <g
- id="g4913"
- transform="translate(7.0866131,4.4454739e-6)">
- <rect
- ry="0"
- y="219.68501"
- x="127.55905"
- height="35.433086"
- width="14.173229"
- id="rect3639"
- style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path4600-6"
- d="m 134.64567,258.6614 0,-42.51969"
- style="fill:none;stroke:#49c2f1;stroke-width:6.02362204;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095);display:inline" />
- </g>
- <text
- id="text4185-8-0"
- y="240.80486"
- x="151.23221"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="240.80486"
- x="151.23221"
- sodipodi:role="line"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191-0-4">«extends»</tspan></text>
- <g
- style="display:inline"
- id="g17430-9"
- transform="matrix(1.4955348,0,0,1.4955348,0.18152679,105.08216)">
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect17432-0"
- width="116.96288"
- height="35.433243"
- x="179.07294"
- y="232.13176"
- ry="3.7880721" />
- <text
- id="text17434-39"
- y="248.95279"
- x="183.8047"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#49c2f1;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="248.95279"
- x="183.8047"
- id="tspan17436-27"
- sodipodi:role="line">MyListener</tspan></text>
- </g>
- <g
- style="display:inline"
- id="g4913-3"
- transform="translate(219.68505,194.88191)">
- <rect
- ry="0"
- y="209.05508"
- x="127.55905"
- height="46.063015"
- width="14.173233"
- id="rect3639-90"
- style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path4600-6-7"
- d="m 134.64567,258.6614 0,-56.69293"
- style="fill:none;stroke:#49c2f1;stroke-width:6.02362204;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095);display:inline" />
- </g>
- <text
- id="text4185-8-0-6-6"
- y="427.20688"
- x="362.13867"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="427.20688"
- x="362.13867"
- sodipodi:role="line"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191-0-4-8-3">«implements»</tspan></text>
- <text
- id="text4185-8-0-8"
- y="300.73447"
- x="338.56525"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="300.73447"
- x="338.56525"
- sodipodi:role="line"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191-0-4-0">addClickListener()</tspan></text>
- <text
- id="text4185-8-0-8-1"
- y="390.40372"
- x="368.73846"
- style="font-size:12px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Italic"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="390.40372"
- x="368.73846"
- sodipodi:role="line"
- style="font-size:12px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Italic"
- id="tspan4191-0-4-0-8">buttonClick()</tspan></text>
- <text
- id="text4185-8-0-8-1-1"
- y="498.70294"
- x="369.65186"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="498.70294"
- x="369.65186"
- sodipodi:role="line"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191-0-4-0-8-5">buttonClick()</tspan></text>
- </g>
-</svg>
diff --git a/documentation/architecture/original-drawings/java-servlet.svg b/documentation/architecture/original-drawings/java-servlet.svg deleted file mode 100644 index 71eecf7194..0000000000 --- a/documentation/architecture/original-drawings/java-servlet.svg +++ /dev/null @@ -1,2388 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="java-servlet.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="600.02155"
- inkscape:export-ydpi="600.02155"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10"
- guidetolerance="10"
- objecttolerance="6"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="2.8284271"
- inkscape:cx="261.54877"
- inkscape:cy="627.91386"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1672"
- inkscape:window-height="1019"
- inkscape:window-x="0"
- inkscape:window-y="0"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="true"
- showguides="true"
- inkscape:guide-bbox="true"
- inkscape:snap-guide="true"
- inkscape:snap-intersection-line-segments="true"
- inkscape:window-maximized="0">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false"
- originx="0mm"
- originy="0mm" />
- <sodipodi:guide
- orientation="1,0"
- position="106.29921,946.81598"
- id="guide3041" />
- <sodipodi:guide
- id="guide9173"
- position="464.17323,715.74803"
- orientation="1,0" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <linearGradient
- inkscape:collect="always"
- id="linearGradient10356">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop10358" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop10360" />
- </linearGradient>
- <pattern
- patternUnits="userSpaceOnUse"
- width="19.488184"
- height="5.3149635"
- patternTransform="translate(442.02756,179.82281)"
- id="pattern31837">
- <path
- id="path31833"
- d="M 0.88582677,4.4291368 L 18.602357,4.4291368"
- style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- id="path31835"
- d="M 0.88582677,0.88582677 L 18.602357,0.88582677"
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </pattern>
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern31837"
- id="pattern31843"
- patternTransform="matrix(0.8219623,-0.5106659,0.5106659,0.8219623,407.01829,190.47423)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern31843"
- id="pattern39357"
- patternTransform="matrix(1.2292733,-0.7637186,0.7637186,1.2292733,253.27252,439.9282)" />
- <marker
- inkscape:stockid="CurvyCross"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="CurvyCross"
- style="overflow:visible">
- <g
- id="g18903"
- transform="scale(0.6)">
- <path
- id="path18905"
- d="M 4.6254930,-5.0456926 C 1.8654930,-5.0456926 -0.37450702,-2.8056926 -0.37450702,-0.045692580 C -0.37450702,2.7143074 1.8654930,4.9543074 4.6254930,4.9543074"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none" />
- <path
- id="path18907"
- d="M -5.4129913,-5.0456926 C -2.6529913,-5.0456926 -0.41299131,-2.8056926 -0.41299131,-0.045692580 C -0.41299131,2.7143074 -2.6529913,4.9543074 -5.4129913,4.9543074"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none" />
- </g>
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4794"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4590"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient841"
- id="linearGradient4390"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9208103,1.086)"
- x1="10.800377"
- y1="-94.637573"
- x2="116.61332"
- y2="-94.637573" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4376"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3095"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1683">
- <stop
- style="stop-color:#db1f0c;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1684" />
- <stop
- style="stop-color:#761006;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1685" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient24714"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient2263">
- <stop
- style="stop-color:#ff9696;stop-opacity:0.61960787;"
- offset="0"
- id="stop2264" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.70103091;"
- offset="1.0000000"
- id="stop2265" />
- </linearGradient>
- <linearGradient
- id="linearGradient2891">
- <stop
- style="stop-color:#ff0000;stop-opacity:0.68041235;"
- offset="0"
- id="stop2892" />
- <stop
- style="stop-color:#ff0000;stop-opacity:0.14432989;"
- offset="1"
- id="stop2893" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient24524"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path3964"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.8,0.8)" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient2870"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient239278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient865">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop866" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop868" />
- </linearGradient>
- <linearGradient
- id="linearGradient1400">
- <stop
- style="stop-color:#000000;stop-opacity:0.67843139;"
- offset="0.0000000"
- id="stop1401" />
- <stop
- style="stop-color:#000000;stop-opacity:0.32941177;"
- offset="0.56999999"
- id="stop1403" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop1402" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient233706"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- y2="383.76529"
- y1="843.20789"
- xlink:href="#linearGradient1507"
- x2="547.80804"
- x1="201.38963"
- id="linearGradient1506"
- gradientTransform="scale(0.9446888,1.0585496)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3450"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1290">
- <stop
- style="stop-color:#b2a269;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1291" />
- <stop
- style="stop-color:#6d5b18;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1292" />
- </linearGradient>
- <linearGradient
- id="linearGradient846">
- <stop
- style="stop-color:#e7e7e7;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop847" />
- <stop
- style="stop-color:#a5a5a5;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop848" />
- </linearGradient>
- <linearGradient
- id="linearGradient841">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop842" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop843" />
- </linearGradient>
- <linearGradient
- id="linearGradient853">
- <stop
- style="stop-color:#000000;stop-opacity:0.29752067;"
- offset="0.00000000"
- id="stop854" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop855" />
- </linearGradient>
- <linearGradient
- y2="287.73825"
- y1="169.4436"
- xlink:href="#linearGradient1492"
- x2="622.33325"
- x1="741.63898"
- id="linearGradient1497"
- gradientTransform="scale(0.9552926,1.0467997)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1501">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1502" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1504" />
- </linearGradient>
- <linearGradient
- y2="418.53635"
- y1="236.12772"
- xlink:href="#linearGradient1501"
- x2="330.88034"
- x1="687.96375"
- id="linearGradient1499"
- gradientTransform="scale(0.9890091,1.011113)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1492">
- <stop
- style="stop-color:#dadada;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1493" />
- <stop
- style="stop-color:#f1f1f1;stop-opacity:1.0000000;"
- offset="0.34923077"
- id="stop1496" />
- <stop
- style="stop-color:#f0f0f0;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1494" />
- </linearGradient>
- <linearGradient
- y2="689.86005"
- y1="230.07422"
- xlink:href="#linearGradient1492"
- x2="351.7063"
- x1="728.96643"
- id="linearGradient1495"
- gradientTransform="scale(0.955425,1.0466546)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1507">
- <stop
- style="stop-color:#000000;stop-opacity:0.095505618;"
- offset="0.0000000"
- id="stop1508" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1510" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3877"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1699">
- <stop
- style="stop-color:#017eff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1700" />
- <stop
- style="stop-color:#ecfaff;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1701" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0"
- refX="0"
- id="DiamondEmpty"
- style="overflow:visible">
- <path
- id="path7"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="translate(-5,0)" />
- </marker>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3268"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,541.12253,30.198804)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3270"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3272"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3274"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3276"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- id="linearGradient7299">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop7301" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop7303" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3280"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- id="linearGradient5596">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop5598" />
- <stop
- style="stop-color:#e7e790;stop-opacity:0.56489879"
- offset="1"
- id="stop5600" />
- </linearGradient>
- <linearGradient
- id="linearGradient19816">
- <stop
- id="stop19818"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop19820"
- offset="1"
- style="stop-color:#e7e790;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient11508">
- <stop
- id="stop11510"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop11512"
- offset="1"
- style="stop-color:#008401;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3286">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3288" />
- <stop
- style="stop-color:#79e291;stop-opacity:1;"
- offset="1"
- id="stop3290" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2Lend"
- style="overflow:visible">
- <path
- id="path16811"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
- </marker>
- <linearGradient
- id="linearGradient7447">
- <stop
- style="stop-color:#ff6161;stop-opacity:1;"
- offset="0"
- id="stop7449" />
- <stop
- style="stop-color:#840929;stop-opacity:1;"
- offset="1"
- id="stop7451" />
- </linearGradient>
- <linearGradient
- id="linearGradient7485">
- <stop
- style="stop-color:#b6bcef;stop-opacity:1;"
- offset="0"
- id="stop7487" />
- <stop
- style="stop-color:#4026b1;stop-opacity:1;"
- offset="1"
- id="stop7489" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0"
- refX="0"
- id="EmptyArrow2"
- style="overflow:visible">
- <path
- id="path13"
- d="M 0,0 L 0,-5 L -10,0 L 0,5 L 0,0 z"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(-1,0,0,-1,-10,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient92445"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112303"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112301"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112299"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.293791,1.3701286e-2,-5.3144349e-3,0.5018339,-46.792176,73.88505)"
- r="95.092682"
- fy="112.14567"
- fx="153.46323"
- cy="112.14567"
- cx="153.46323"
- id="radialGradient112297"
- xlink:href="#linearGradient11508"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112295"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112293"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112291"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112289"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112287"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient1694">
- <stop
- id="stop1695"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:0.0000000;" />
- <stop
- id="stop1696"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient112278">
- <stop
- id="stop112280"
- offset="0.0000000"
- style="stop-color:#0c1fdb;stop-opacity:1.0000000;" />
- <stop
- id="stop112282"
- offset="1.0000000"
- style="stop-color:#062d76;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- gradientTransform="scale(1.475472,0.677749)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1686"
- inkscape:collect="always"
- x1="242.39842"
- x2="242.39842"
- xlink:href="#linearGradient1683"
- y1="1035.3337"
- y2="636.25543" />
- <linearGradient
- gradientTransform="scale(1.475472,0.677749)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1690"
- inkscape:collect="always"
- x1="240.86183"
- x2="240.86183"
- xlink:href="#linearGradient1683"
- y1="635.74658"
- y2="1038.9441" />
- <linearGradient
- gradientTransform="scale(1.479463,0.675921)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1692"
- inkscape:collect="always"
- x1="244.8598"
- x2="244.8598"
- xlink:href="#linearGradient1694"
- y1="827.01349"
- y2="646.06177" />
- <linearGradient
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient112273"
- inkscape:collect="always"
- x1="303.90472"
- x2="-93.992599"
- xlink:href="#linearGradient1683"
- y1="-492.41382"
- y2="-492.41382" />
- <linearGradient
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient112271"
- inkscape:collect="always"
- x1="-92.98716"
- x2="315.00735"
- xlink:href="#linearGradient1683"
- y1="-477.69666"
- y2="-477.69669" />
- <linearGradient
- gradientTransform="matrix(0,1.475473,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1705"
- inkscape:collect="always"
- x1="112.06259"
- x2="-170.00552"
- xlink:href="#linearGradient1694"
- y1="-485.28952"
- y2="-485.28973" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5287"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5285"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5283"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5281"
- xlink:href="#linearGradient11508"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient11602"
- xlink:href="#linearGradient19816"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient15668"
- xlink:href="#linearGradient7299"
- inkscape:collect="always" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- y2="148.38934"
- x2="389.01984"
- y1="148.38934"
- x1="96.085953"
- id="linearGradient5355"
- xlink:href="#linearGradient5349"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4152">
- <stop
- id="stop4154"
- offset="0"
- style="stop-color:#6b6bff;stop-opacity:1;" />
- <stop
- id="stop4156"
- offset="1"
- style="stop-color:#6b6bff;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient5349">
- <stop
- id="stop5351"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop5353"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient112247">
- <stop
- id="stop112249"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop112251"
- offset="1"
- style="stop-color:#a090e7;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient9263">
- <stop
- id="stop9265"
- offset="0"
- style="stop-color:#000000;stop-opacity:0" />
- <stop
- id="stop9267"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112241"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutL">
- <path
- transform="scale(0.8,0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16734" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleInL"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleInL">
- <path
- transform="scale(-0.8,-0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16743" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutM"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutM">
- <path
- transform="scale(0.4,0.4)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16731" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker112234"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend">
- <path
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path16829" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker112230"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Lend">
- <path
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- id="path112232" />
- </marker>
- <linearGradient
- id="linearGradient112224">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop112226" />
- <stop
- style="stop-color:#e7e790;stop-opacity:1;"
- offset="1"
- id="stop112228" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112220"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="matrix(-1,0,0,-1,-10,0)"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 0,-5 L -10,0 L 0,5 L 0,0 z"
- id="path112222" />
- </marker>
- <marker
- style="overflow:visible"
- id="EmptyArrow"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="matrix(-1,0,0,-1,-10,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 0,-5 L -12.5,0 L 0,5 L 0,0 z M -0.5,0 L -0.5,-4.5 L -12,0 L -0.5,4.5 L -0.5,0 z"
- id="path9" />
- </marker>
- <linearGradient
- id="linearGradient112212">
- <stop
- id="stop112214"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop112216"
- offset="1"
- style="stop-color:#79e291;stop-opacity:1;" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112208"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="translate(-5,0)"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z"
- id="path112210" />
- </marker>
- <marker
- style="overflow:visible"
- id="DiamondL"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DiamondL">
- <path
- transform="scale(0.8,0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z"
- id="path4404" />
- </marker>
- <linearGradient
- id="linearGradient112200">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop112202" />
- <stop
- style="stop-color:#e27979;stop-opacity:1"
- offset="1"
- id="stop112204" />
- </linearGradient>
- <linearGradient
- id="linearGradient11516">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop11518" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop11520" />
- </linearGradient>
- <marker
- 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 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- id="path6743" />
- </marker>
- <inkscape:perspective
- id="perspective112192"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9300"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9574"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9882"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective10244"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient10356"
- id="linearGradient10362"
- x1="407.48032"
- y1="968.17322"
- x2="669.66157"
- y2="968.17322"
- gradientUnits="userSpaceOnUse" />
- <inkscape:perspective
- id="perspective5379"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective5446"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective7010"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <marker
- id="marker18095-5"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-2"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-5"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-0"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-2"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-9"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-0"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-07"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-4"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-5"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-3"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-7" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#f39300;stroke-width:1pt;fill:#f39300"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path6738" />
- </marker>
- <marker
- id="marker18095-3"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-8"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-7"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- id="marker18095-31"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-4"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- id="marker18095-56"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-22"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-67"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-5"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-3"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-1"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-8"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-6"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-5"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-52"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-65"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-55"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8I"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8I">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#d9d9cd;stroke-width:1pt;fill:#d9d9cd"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path10009" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-11"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-9" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-551" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-1"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-9" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-4"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-97" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-32"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-4" />
- </marker>
- <marker
- id="marker52016-8"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-4"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-0"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- </defs>
- <metadata
- id="metadata2480">
- <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
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1"
- style="display:inline">
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"
- transform="matrix(1.4955348,0,0,1.4955348,-57.448129,56.258489)"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="matrix(1.4955348,0,0,1.4955348,-62.789338,90.976267)"
- id="g3178" />
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"
- transform="matrix(1.4955348,0,0,1.4955348,-57.448129,56.258489)"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <g
- transform="matrix(0.7477674,0,0,0.7477674,97.104891,57.446056)"
- id="g18053" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6905"
- transform="matrix(1.4955348,0,0,1.4955348,-326.51819,-568.39489)"><flowRegion
- id="flowRegion6907"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use6909"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6911">VariableOwner</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6913"
- transform="matrix(1.4955348,0,0,1.4955348,-733.84733,-1124.4065)"><flowRegion
- id="flowRegion6915"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use6917"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6919">VariableOwner</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot80522"
- transform="matrix(1.4955348,0,0,1.4955348,452.45115,153.00358)"><flowRegion
- id="flowRegion80524"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use80526"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara80528">1</flowPara></flowRoot> <g
- transform="translate(7.1850311,49.448814)"
- id="g12796">
- <rect
- style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.77165353000000003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6642-4"
- width="262.20471"
- height="42.519684"
- x="99.114182"
- y="255.27557"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-708.5862,-802.53531)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363"><rect
- id="rect11365"
- width="284.75891"
- height="30.059965"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara11367">Browser</flowPara></flowRoot> </g>
- <text
- id="text31847-9-0"
- y="358.11206"
- x="249.86481"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="358.11206"
- x="249.86481"
- sodipodi:role="line"
- id="tspan31851-9-1">HTTP(S)</tspan></text>
- <g
- style="display:inline"
- id="g4116"
- transform="translate(-344.72469,-135.56137)">
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-356.29248,-560.62822)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11369-9"
- xml:space="preserve"><flowRegion
- id="flowRegion11371-3"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="17.979126"
- width="116.12012"
- id="rect11373-3" /></flowRegion><flowPara
- id="flowPara11375-6">Servlet Container</flowPara></flowRoot> <rect
- ry="3.7880721"
- y="497.8645"
- x="451.90973"
- height="151.47638"
- width="261.31891"
- id="rect6642-49"
- style="fill:none;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- </g>
- <g
- id="g4123"
- transform="translate(-333.04782,-208.36765)">
- <rect
- ry="3.7880721"
- y="594.58807"
- x="453.52026"
- height="109.84253"
- width="230.31496"
- id="rect6642-4-3-4"
- style="fill:#e6e6e6;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-353.37612,-463.01879)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="20.981634"
- width="159.7314"
- id="rect11365-5" /></flowRegion><flowPara
- id="flowPara11367-2">Web Application</flowPara></flowRoot> </g>
- <g
- style="display:inline"
- transform="translate(116.37846,237.67767)"
- id="g28403-3-5-6-2-46-4">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-8-7-7"
- width="56.692917"
- height="60.236221"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-6-7-8"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-50-8-2"><rect
- id="rect11365-5-4-6-4-0-4-4"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4300-7-8-2">HTML</flowPara><flowPara
- id="flowPara5946">Pages</flowPara></flowRoot> </g>
- <g
- style="display:inline"
- transform="translate(187.24461,237.67767)"
- id="g28403-3-5-6-2-46-4-0">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-8-7-7-0"
- width="56.692909"
- height="60.236221"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-6-7-8-2"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-50-8-2-5"><rect
- id="rect11365-5-4-6-4-0-4-4-4"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara5946-1">JSP</flowPara><flowPara
- id="flowPara5986">Pages</flowPara></flowRoot> </g>
- <g
- style="display:inline"
- transform="translate(258.11075,237.67767)"
- id="g28403-3-5-6-2-46-4-0-1">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-8-7-7-0-7"
- width="56.692909"
- height="60.236221"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-6-7-8-2-3"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-50-8-2-5-8"><rect
- id="rect11365-5-4-6-4-0-4-4-4-1"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara5986-6">Java</flowPara><flowPara
- id="flowPara6026">Servlets</flowPara></flowRoot> </g>
- <path
- style="fill:none;stroke:#000000;stroke-width:6.02362205000000017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker64887);display:inline"
- d="m 244.48819,325.98423 0,70.86614"
- id="path4600-1-1"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- </g>
-</svg>
diff --git a/documentation/book-preface.asciidoc b/documentation/book-preface.asciidoc deleted file mode 100644 index 7803a9b502..0000000000 --- a/documentation/book-preface.asciidoc +++ /dev/null @@ -1,271 +0,0 @@ -[[preface]] -[preface] -[] -== Preface - -This book provides an overview of the Vaadin Framework and covers the most -important topics that you might encounter while developing applications with it. -A more detailed documentation of the individual classes, interfaces, and methods -is given in the Vaadin API Reference. - -This edition mostly covers Vaadin Framework 7.5 released in 2015, as well as the -latest versions of Vaadin Pro Tools. In addition to updates in the core -framework, the Volume 1 includes a new chapter about the new Vaadin Designer -plugin for Eclipse. New add-ons, namely Vaadin Spreadsheet, Vaadin CDI, and -Vaadin Spring, which were released earlier this year, are documented in Volume -2. - -Writing this manual is an ongoing work and it is rarely completely up-to-date -with the quick-evolving product. Some features may not be included in this book -yet. For the most current version, please see the on-line edition available at -http://vaadin.com/book. You can also find PDF and EPUB versions of the book -there. You may find the other versions more easily searchable than the printed -book. The index in the book is incomplete and will be expanded later. The web -edition also has some additional technical content, such as some example code -and additional sections that you may need when actually doing development. The -purpose of the slightly abridged print edition is more to be an introductionary -textbook to Vaadin, and still fit in your pocket. - -Also, many Vaadin 7 features are showcased as mini-tutorials, which are -available in the Vaadin Wiki at https://vaadin.com/wiki/-/wiki/Main/Vaadin+7. - -= Who is This Book For? - -This book is intended for software developers who use, or are considering to -use, Vaadin to develop web applications. - -The book assumes that you have some experience with programming in Java, but if -not, it is at least as easy to begin learning Java with Vaadin as with any other -UI framework. No knowledge of AJAX is needed as it is well hidden from the -developer. - -You may have used some desktop-oriented user interface frameworks for Java, such -as AWT, Swing, or SWT, or a library such as Qt for C++. Such knowledge is useful -for understanding the scope of Vaadin, the event-driven programming model, and -other common concepts of UI frameworks, but not necessary. - -If you do not have a web graphics designer at hand, knowing the basics of HTML -and CSS can help so that you can develop presentation themes for your -application. A brief introduction to CSS is provided. Knowledge of Google Web -Toolkit (GWT) may be useful if you develop or integrate new client-side -components. - - -= Organization of This Book - -The Book of Vaadin gives an introduction to what Vaadin is and how you use it to -develop web applications. - -Volume 1 - -<<dummy/../../../framework/introduction/introduction-overview.asciidoc#intro.overview,"Introduction">>:: The chapter gives an introduction to the application architecture supported by -Vaadin, the core design ideas behind the framework, and some historical -background. - -<<dummy/../../../framework/getting-started/getting-started-overview.asciidoc#getting-started.overview,"Getting Started with Vaadin">>:: This chapter gives practical instructions for installing Vaadin and the -reference toolchain, including the Vaadin Plugin for Eclipse, how to run and -debug the demos, and how to create your own application project in the Eclipse -IDE. - -<<dummy/../../../framework/architecture/architecture-overview.asciidoc#architecture.overview,"Architecture">>:: This chapter gives an introduction to the architecture of Vaadin and its major -technologies, including AJAX, Google Web Toolkit, and event-driven programming. - -<<dummy/../../../framework/application/application-overview.asciidoc#application.overview,"Writing a Server-Side Web Application">>:: This chapter gives all the practical knowledge required for creating -applications with Vaadin, such as window management, application lifecycle, -deployment in a servlet container, and handling events, errors, and resources. - -<<dummy/../../../framework/components/components-overview.asciidoc#components.overview,"User Interface Components">>:: This chapter gives the basic usage documentation for all the (non-layout) user -interface components in Vaadin and their most significant features. The -component sections include examples for using each component, as well as for -styling with CSS/Sass. - -<<dummy/../../../framework/layout/layout-overview.asciidoc#layout.overview,"Managing Layout">>:: This chapter describes the layout components, which are used for managing the -layout of the user interface, just like in any desktop application frameworks. - -<<dummy/../../../designer/designer-overview.asciidoc#designer.overview,"Vaadin Designer">>:: This chapter gives instructions for using Vaadin Designer, a visual tool for the -Eclipse IDE for creating composite designs, such as for UIs, views, or other -composites. - - - -Volume 2: - -<<dummy/../../../framework/themes/themes-overview.asciidoc#themes.overview,"Themes">>:: This chapter gives an introduction to Cascading Style Sheets (CSS) and Sass and -explains how you can use them to build custom visual themes for your -application. - -<<dummy/../../../framework/datamodel/datamodel-overview.asciidoc#datamodel.overview,"Binding Components to Data">>:: This chapter gives an overview of the built-in data model of Vaadin, consisting -of properties, items, and containers. - -<<dummy/../../../framework/sqlcontainer/sqlcontainer-overview.asciidoc#sqlcontainer.overview,"Vaadin SQLContainer">>:: This chapter gives documentation for the SQLContainer, which allows binding -Vaadin components to SQL queries. - -<<dummy/../../../framework/advanced/advanced-overview.asciidoc#advanced.overview,"Advanced Web Application Topics">>:: This chapter provides many special topics that are commonly needed in -applications, such as opening new browser windows, embedding applications in -regular web pages, low-level management of resources, shortcut keys, debugging, -etc. - -<<dummy/../../../framework/portal/portal-overview.asciidoc#portal.overview,"Portal Integration">>:: This chapter describes the development of Vaadin applications as portlets which -you can deploy to any portal supporting Java Portlet API 2.0 (JSR-286). The -chapter also describes the special support for Liferay and the Control Panel, -IPC, and WSRP add-ons. - -<<dummy/../../../framework/clientside/clientside-overview.asciidoc#clientside.overview,"Client-Side Vaadin Development">>:: This chapter gives an introduction to creating and developing client-side -applications and widgets, including installation, compilation, and debugging. - -<<dummy/../../../framework/clientsideapp/clientsideapp-overview.asciidoc#clientsideapp.overview,"Client-Side Applications">>:: This chapter describes how to develop client-side applications and how to -integrate them with a back-end service. - -<<dummy/../../../framework/clientsidewidgets/clientsidewidgets-overview.asciidoc#clientsidewidgets.overview,"Client-Side Widgets">>:: This chapter describes the built-in widgets (client-side components) available -for client-side development. The built-in widgets include Google Web Toolkit -widgets as well as Vaadin widgets. - -<<dummy/../../../framework/gwt/gwt-overview.asciidoc#gwt.overview,"Integrating with the Server-Side">>:: This chapter describes how to integrate client-side widgets with their -server-side counterparts for the purpose of creating new server-side components. -The chapter also covers integrating JavaScript components. - - - -<<dummy/../../../framework/addons/addons-overview.asciidoc#addons.overview,"Using Vaadin Add-ons">>:: This chapter gives instructions for downloading and installing add-on components -from the Vaadin Directory. - -<<dummy/../../../charts/charts-overview.asciidoc#charts.overview,"Vaadin Charts">>:: This chapter documents the use of the Vaadin Charts add-on component for -interactive charting with many diagram types. The add-on includes the Chart and -Timeline components. - -<<dummy/../../../framework/jpacontainer/jpacontainer-overview.asciidoc#jpacontainer.overview,"Vaadin JPAContainer">>:: This chapter gives documentation of the JPAContainer add-on, which allows -binding Vaadin components directly to relational and other databases using Java -Persistence API (JPA). - -<<dummy/../../../mobile/mobile-overview.asciidoc#mobile.overview,"Mobile Applications with TouchKit">>:: This chapter gives examples and reference documentation for using the Vaadin -TouchKit add-on for developing mobile applications. - -<<dummy/../../../spreadsheet/spreadsheet-overview.asciidoc#spreadsheet.overview,"Vaadin Spreadsheet">>:: This chapter gives documentation of the Vaadin Spreadsheet add-on, which -provides a Microsoft Excel compatible spreadsheet component. - -<<dummy/../../../testbench/testbench-overview.asciidoc#testbench.overview,"Vaadin TestBench">>:: This chapter gives the complete documentation of using the Vaadin TestBench tool -for recording and executing user interface regression tests of Vaadin -applications. - - - - -= Supplementary Material - -The Vaadin websites offer plenty of material that can help you understand what -Vaadin is, what you can do with it, and how you can do it. - -Demo Applications:: The most important demo application for Vaadin is the Sampler, which -demonstrates the use of all basic components and features. You can run it -on-line at http://demo.vaadin.com/ or download it as a WAR from the -link:http://vaadin.com/download/[Vaadin download page]. - -+ -Most of the code examples in this book and many others can be found online at -http://demo.vaadin.com/book-examples-vaadin7/book/. - -Cheat Sheet:: The two-page cheat sheet illustrates the basic relationship hierarchy of the -user interface and data binding classes and interfaces. You can download it at -http://vaadin.com/book. - -Refcard:: The six-page DZone Refcard gives an overview to application development with -Vaadin. It includes a diagram of the user interface and data binding classes and -interfaces. You can find more information about it at -https://vaadin.com/refcard. - -Address Book Tutorial:: The Address Book is a sample application accompanied with a tutorial that gives -detailed step-by-step instructions for creating a real-life web application with -Vaadin. You can find the tutorial from the product website. - -Developer's Website:: Vaadin Developer's Site at http://dev.vaadin.com/ provides various online -resources, such as the ticket system, a development wiki, source repositories, -activity timeline, development milestones, and so on. - -+ -The wiki provides instructions for developers, especially for those who wish to -check-out and compile Vaadin itself from the source repository. The technical -articles deal with integration of Vaadin applications with various systems, such -as JSP, Maven, Spring, Hibernate, and portals. The wiki also provides answers to -Frequently Asked Questions. - -Online Documentation:: You can read this book online at http://vaadin.com/book. Lots of additional -material, including technical HOWTOs, answers to Frequently Asked Questions and -other documentation is also available on link:http://dev.vaadin.com/[Vaadin -web-site]. - - - - -= Support - -Stuck with a problem? No need to lose your hair over it, the Vaadin Framework -developer community and the Vaadin company offer support to all of your needs. - -Community Support Forum:: You can find the user and developer community forum at http://vaadin.com/forum. -Please use the forum to discuss any problems you might encounter, wishes for -features, and so on. The answer to your problems may already lie in the forum -archives, so searching the discussions is always the best way to begin. - -Report Bugs:: If you have found a possible bug in Vaadin, the demo applications, or the -documentation, please report it by filing a ticket at the Vaadin developer's -site at http://dev.vaadin.com/. You may want to check the existing tickets -before filing a new one. You can make a ticket to make a request for a new -feature as well, or to suggest modifications to an existing feature. - -Commercial Support:: Vaadin offers full commercial support and training services for the Vaadin -Framework and related products. Read more about the commercial products at -http://vaadin.com/pro for details. - - - - -= About the Author - -Marko Grönroos is a professional writer and software developer working at Vaadin -Ltd in Turku, Finland. He has been involved in web application development since -1994 and has worked on several application development frameworks in C, C++, and -Java. He has been active in many open source software projects and holds an -M.Sc. degree in Computer Science from the University of Turku. - - -= Acknowledgements - -Much of the book is the result of close work within the development team at -Vaadin Ltd. Joonas Lehtinen, CEO of Vaadin Ltd, wrote the first outline of the -book, which became the basis for the first two chapters. Since then, Marko -Grönroos has become the primary author and editor. The development team has -contributed several passages, answered numerous technical questions, reviewed -the manual, and made many corrections. - -The contributors are (in rough chronological order): - -[options="compact"] -* Joonas Lehtinen -* Jani Laakso -* Marko Grönroos -* Jouni Koivuviita -* Matti Tahvonen -* Artur Signell -* Marc Englund -* Henri Sara -* Jonatan Kronqvist -* Mikael Grankvist (TestBench) -* Teppo Kurki (SQLContainer) -* Tomi Virtanen (Calendar) -* Risto Yrjänä (Calendar) -* John Ahlroos (Timeline) -* Petter Holmström (JPAContainer) -* Leif Åstrand -* Guillermo Alvarez (Charts) - - -= About Vaadin Ltd - -Vaadin Ltd is a Finnish software company specializing in the design and -development of Rich Internet Applications. The company offers planning, -implementation, and support services for the software projects of its customers, -as well as sub-contract software development. Vaadin Framework, previously known -as IT Mill Toolkit, is the flagship open source product of the company, for -which it provides commercial development and support services. - - diff --git a/documentation/book.asc b/documentation/book.asc deleted file mode 100644 index c68ff8e048..0000000000 --- a/documentation/book.asc +++ /dev/null @@ -1,100 +0,0 @@ -//====================================================================== -//Copyright 2000-2012 Vaadin Ltd -//All Rights Reserved -//This work is licensed under a Creative Commons Attribution-NoDerivs -//License (CC-BY-ND) Version 3.0. Full license text is available at: -//http://creativecommons.org/licenses/by-nd/3.0/legalcode -//====================================================================== -//The Doctype definition must be exactly same for book-pocket.pdf -:experimental: true -:source-highlighter: coderay -Book of VaadinVaadin 7 Edition - 6th Revision - - MarkoGrönroos - Tracy - Translator - Translation - This book can be downloaded for free at - http://vaadin.com/book - - Vaadin Ltd - Vaadin Ltd - Ruukinkatu 2-4 - 20540 - Turku - Finland - 2012-02-29Vaadin Framework - - Vaadin Framework - 7.4 - Vaadin 7 Edition - 6th Revision - Bookwell Oy - - Juva - Finland - - 2000-2015Vaadin Ltd - All rights reserved. This work is licensed under the Creative Commons CC-BY-ND - License Version 2.0. - - Vaadin is an AJAX web application development framework that enables - developers to build high-quality user interfaces with Java, both on the - server- and client-side. It provides a set of libraries of ready-to-use user - interface components and a clean framework for creating your own - components. The focus is on ease-of-use, re-usability, extensibility, and - meeting the requirements of large enterprise applications. - - - - - -include::book-preface.asciidoc[] - -include::introduction/chapter-introduction.asciidoc[] - -include::getting-started/chapter-getting-started.asciidoc[] - -include::architecture/chapter-architecture.asciidoc[] - -include::application/chapter-application.asciidoc[] - -include::components/chapter-components.asciidoc[] - -include::layout/chapter-layout.asciidoc[] - -include::designer/chapter-designer.asciidoc[] - -include::themes/chapter-themes.asciidoc[] - -include::datamodel/chapter-datamodel.asciidoc[] - -include::sqlcontainer/chapter-sqlcontainer.asciidoc[] - -include::advanced/chapter-advanced.asciidoc[] - -include::portal/chapter-portal.asciidoc[] - -include::clientside/chapter-clientside.asciidoc[] - -include::clientsideapp/chapter-clientsideapp.asciidoc[] - -include::clientsidewidgets/chapter-clientsidewidgets.asciidoc[] - -include::gwt/chapter-gwt.asciidoc[] - -include::addons/chapter-addons.asciidoc[] - -include::charts/chapter-charts.asciidoc[] - -include::jpacontainer/chapter-jpacontainer.asciidoc[] - -include::mobile/chapter-mobile.asciidoc[] - -include::spreadsheet/chapter-spreadsheet.asciidoc[] - -include::testbench/chapter-testbench.asciidoc[] - - -include::index.asciidoc[]//// -Keep this comment at the end of the file Local variables: mode: xml sgml-omittag:nil sgml-shorttag:nil sgml-namecase-general:nil sgml-general-insert-case:lower sgml-minimize-attributes:nil sgml-always-quote-attributes:t sgml-indent-step:4 sgml-indent-data:t sgml-parent-document:nil sgml-exposed-tags:nil sgml-local-catalogs:("/etc/sgml/catalog" "/usr/share/xemacs21/xemacs-packages/etc/psgml-dtds/CATALOG") sgml-local-ecat-files:("ECAT" "~/sgml/ECAT" "/usr/share/sgml/ECAT" "/usr/local/share/sgml/ECAT" "/usr/local/lib/sgml/ECAT") End: -//// diff --git a/documentation/clientside/chapter-clientside.asciidoc b/documentation/clientside/chapter-clientside.asciidoc deleted file mode 100644 index 6effe8475a..0000000000 --- a/documentation/clientside/chapter-clientside.asciidoc +++ /dev/null @@ -1,18 +0,0 @@ -[[clientside]] -== Client-Side Vaadin Development - -This chapter gives an overview of the Vaadin client-side framework, its -architecture, and development tools. - - -include::clientside-overview.asciidoc[leveloffset=+2] - -include::clientside-installing.asciidoc[leveloffset=+2] - -include::clientside-module.asciidoc[leveloffset=+2] - -include::clientside-compiling.asciidoc[leveloffset=+2] - -include::clientside-widget.asciidoc[leveloffset=+2] - -include::clientside-debugging.asciidoc[leveloffset=+2] diff --git a/documentation/clientside/clientside-compiling.asciidoc b/documentation/clientside/clientside-compiling.asciidoc deleted file mode 100644 index 18afb2c6ac..0000000000 --- a/documentation/clientside/clientside-compiling.asciidoc +++ /dev/null @@ -1,81 +0,0 @@ ---- -title: Compiling a Client-Side Module -order: 4 -layout: page ---- - -[[clientside.compiling]] -= Compiling a Client-Side Module - -A client-side module, either a widget set or a pure client-side module, needs to -be compiled to JavaScript using the Vaadin Client Compiler. During development, -the Development Mode makes the compilation automatically when you reload the -page, provided that the module has been initially compiled once with the -compiler. - -As most Vaadin add-ons include widgets, widget set compilation is usually needed -when using add-ons. In that case, the widget sets from different add-ons are -compiled into a __project widget set__, as described in -<<dummy/../../../framework/addons/addons-overview.asciidoc#addons.overview,"Using -Vaadin -Add-ons">>.//// -TODO Provide a link to a proper add-on compilation section when one is -available. -//// - -[[clientside.compiling.overview]] -== Vaadin Compiler Overview - -The Vaadin Client Compiler compiles Java to JavaScript. It is provided as the -[filename]#vaadin-client-compiler# JAR, which you can execute with the -[literal]#++-jar++# parameter for the Java runtime. It requires the -[filename]#vaadin-client# JAR, which contains the Vaadin client-side framework. - -The compiler compiles a __client module__, which can be either a pure -client-side module or a Vaadin widget set, that is, the Vaadin Client-Side -Engine that includes the widgets used in the application. The client module is -defined with a module descriptor, which was described in -<<dummy/../../../framework/clientside/clientside-module#clientside.module,"Client-Side -Module Descriptor">>. - -The compiler writes the compilation result to a target folder that will include -the compiled JavaScript with any static resources included in the module. - - -[[clientside.compiling.eclipse]] -== Compiling in Eclipse - -When the Vaadin Plugin is installed in Eclipse, you can simply click the -[guibutton]#Compile Vaadin widgets# button in the toolbar. It will compile the -widget set it finds from the project. If the project has multiple widget sets, -such as one for custom widgets and another one for the project, you need to -select the module descriptor of the widget set to compile before clicking the -button. - -The compilation with Vaadin Plugin for Eclipse currently requires that the -module descriptor has suffix [filename]#Widgetset.gwt.xml#, although you can use -it to compile also other client-side modules than widget sets. The result is -written under [filename]#WebContent/VAADIN/widgetsets# folder. - - -[[clientside.compiling.ant]] -== Compiling with Ant - -You can find a script template for compiling widget sets with Ant and Ivy at the -link:http://vaadin.com/download/[Vaadin download page]. You can copy the build -script to your project and, once configured, run it with Ant. - - -[[clientside.compiling.maven]] -== Compiling with Maven - -You can compile the widget set with the [literal]#++vaadin:compile++# goal as -follows: - -[subs="normal"] ----- -[prompt]#$# [command]#mvn# [parameter]#vaadin:compile# ----- - - - diff --git a/documentation/clientside/clientside-debugging.asciidoc b/documentation/clientside/clientside-debugging.asciidoc deleted file mode 100644 index efbe24a8ec..0000000000 --- a/documentation/clientside/clientside-debugging.asciidoc +++ /dev/null @@ -1,125 +0,0 @@ ---- -title: Debugging Client-Side Code -order: 6 -layout: page ---- - -[[clientside.debugging]] -= Debugging Client-Side Code - -Vaadin currently includes SuperDevMode for debugging client-side code right in -the browser. - -The predecessor of SuperDevMode, the GWT Development Mode, no longer works in -recent versions of Firefox and Chrome, because of certain API changes in the -browsers. There exists workarounds on some platforms, but for the sake of -simplicity, we recommend using the SuperDevMode. - -ifdef::web[] -[[clientside.debugging.devmode]] -== Launching Development Mode - -The Development Mode launches the application in the browser, compiles the -client-side module (or widget set) when the page is loaded, and allows debugging -the client-side code in Eclipse. You can launch the Development Mode by running -the [classname]#com.google.gwt.dev.DevMode# class. It requires some parameters, -as described later. - -The Vaadin Plugin for Eclipse can create a launch configuration for the -Development Mode. In the Vaadin section of project properties, click the -[guibutton]#Create development mode launch# button. This creates a new launch -configuration in the project. You can edit the launch configuration in "Run > -Run Configurations". - - ----- --noserver -war WebContent/VAADIN/widgetsets com.example.myproject.widgetset.MyWidgetSet -startupUrl http://localhost:8080/myproject -bindAddress 127.0.0.1 ----- - -The parameters are as follows: - -[parameter]#-noserver#:: Normally, the Development Mode launches its own Jetty server for hosting the content. If you are developing the application under an IDE that deploys it to a server, such as Eclipse, you can disable the Development Mode server with this option. -[parameter]#-war#:: Specifies path to the location where the JavaScript is to be compiled. When developing a pure client-side module, this could be the [filename]#WebContent# (in Eclipse) or some other folder under it. When compiling widget sets, it must be [filename]#WebContent/VAADIN/widgetsets#. -[parameter]#-startupUrl#:: Specifies the address of the loader page for the application. For server-side Vaadin applications, this should be the path to the Vaadin application servlet, as defined in the deployment. For pure client-side widgets, it should be the page where the application is included. -[parameter]#-bindAddress#:: This is the IP address of the host in which the Development Mode runs. For debugging on the development workstation, it can be just [literal]#++127.0.0.1++#. Setting it as the proper IP address of the host enables remote debugging. - - -endif::web[] - -[[clientside.debugging.superdevmode]] -== Launching SuperDevMode - -The SuperDevMode is much like the old Development Mode, except that it does not -require a browser plugin. Compilation from Java to JavaScript is done -incrementally, reducing the compilation time significantly. It also allows -debugging JavaScript and even Java right in the browser (currently only -supported in Chrome). - -You can enable SuperDevMode as follows: - -. You need to set a redirect property in the [filename]#.gwt.xml# module -descriptor as follows: - - -+ ----- -<set-configuration-property name="devModeRedirectEnabled" value="true" /> ----- -+ -In addition, you need the [literal]#++xsiframe++# linker. It is included in the -[classname]#com.vaadin.DefaultWidgetSet# as well as in the -[classname]#com.vaadin.Vaadin# module. Otherwise, you need to include it with: - - -+ ----- -<add-linker name="xsiframe" /> ----- -. Compile the module (that is, the widget set), for example by clicking the button in Eclipse. -. If you are using Eclipse, create a launch configuration for the SuperDevMode by -clicking the [guibutton]#Create SuperDevMode launch# in the [guilabel]#Vaadin# -section of the project properties. - -.. The main class to execute should be [classname]#com.google.gwt.dev.codeserver.CodeServer#. -.. The application takes the fully-qualified class name of the module (or widget set) as parameter, for example, [classname]#com.example.myproject.widgetset.MyprojectWidgetset#. -.. Add project sources to the class path of the launch if they are not in the project class path. - - -The above configuration only needs to be done once to enable the SuperDevMode. -After that, you can launch the mode as follows: - -. Run the SuperDevMode Code Server with the launch configuration that you created above. This perfoms the initial compilation of your module or widget set. -. Launch the servlet container for your application, for example, Tomcat. -. Open your browser with the application URL and add [literal]#++?superdevmode++# parameter to the URL (see the notice below if you are not extending [classname]#DefaultWidgetSet#). This recompiles the code, after which the page is reloaded with the SuperDevMode. You can also use the [literal]#++?debug++# parameter and then click the [guibutton]#SDev# button in the debug console. - -If you make changes to the client-side code and refresh the page in the browser, -the client-side is recompiled and you see the results immediately. - -The Step 3 above assumes that you extend [classname]#DefaultWidgetSet# in your -module. If that is not the case, you need to add the following at the start of -the [methodname]#onModuleLoad()# method of the module: - - ----- -if (SuperDevMode.enableBasedOnParameter()) { return; } ----- - -Alternatively, you can use the bookmarklets provided by the code server. Go to -http://localhost:9876/ and drag the bookmarklets " [guilabel]#Dev Mode On#" and -" [guilabel]#Dev Mode Off#" to the bookmarks bar - - -[[clientside.debugging.chrome]] -== Debugging Java Code in Chrome - -Chrome supports source maps, which allow debugging Java source code from which -the JavaScript was compiled. - -Open the Chrome Inspector by right-clicking and selecting [guilabel]#Inspect -Element#. Click the settings icon in the lower corner of the window and check -the "Scripts > Enable source maps" option. Refresh the page with the Inspector -open, and you will see Java code instead of JavaScript in the scripts tab. - - - - diff --git a/documentation/clientside/clientside-installing.asciidoc b/documentation/clientside/clientside-installing.asciidoc deleted file mode 100644 index 0ad907f052..0000000000 --- a/documentation/clientside/clientside-installing.asciidoc +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: Installing the Client-Side Development Environment -order: 2 -layout: page ---- - -[[clientside.installing]] -= Installing the Client-Side Development Environment - -The installation of the client-side development libraries is described in -<<dummy/../../../framework/getting-started/getting-started-overview.asciidoc#getting-started.overview,"Getting -Started with Vaadin">>. You especially need the [filename]#vaadin-client# -library, which contains the client-side Java API, and -[filename]#vaadin-client-compiler#, which contains the Vaadin Client Compiler -for compiling Java to JavaScript. - - - diff --git a/documentation/clientside/clientside-module.asciidoc b/documentation/clientside/clientside-module.asciidoc deleted file mode 100644 index 4656264ce1..0000000000 --- a/documentation/clientside/clientside-module.asciidoc +++ /dev/null @@ -1,98 +0,0 @@ ---- -title: Client-Side Module Descriptor -order: 3 -layout: page ---- - -[[clientside.module]] -= Client-Side Module Descriptor - -Client-side Vaadin modules, such as the Vaadin Client-Side Engine (widget set) -or pure client-side applications, that are to be compiled to JavaScript, are -defined in a __module descriptor__ ( [filename]#.gwt.xml#) file. - -When defining a widget set to build the Vaadin client-side engine, the only -necessary task is to inherit a base widget set. If you are developing a regular -widget set, you should normally inherit the [classname]#DefaultWidgetSet#. - - ----- - -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE module PUBLIC - "-//Google Inc.//DTD Google Web Toolkit 1.7.0//EN" - "http://google-web-toolkit.googlecode.com/svn/tags/1.7.0/distro-source/core/src/gwt-module.dtd"> - -<module> - <!-- Inherit the default widget set --> - <inherits name="com.vaadin.DefaultWidgetSet" /> -</module> ----- - -If you are developing a pure client-side application, you should instead inherit -[classname]#com.vaadin.Vaadin#, as described in -<<dummy/../../../framework/clientsideapp/clientsideapp-overview.asciidoc#clientsideapp.overview,"Client-Side -Applications">>. In that case, the module descriptor also needs an entry-point. - -If you are using the Eclipse IDE, the New Vaadin Widget wizard will -automatically create the GWT module descriptor. See -<<dummy/../../../framework/gwt/gwt-eclipse#gwt.eclipse.widget,"Creating a -Widget">> for detailed instructions. - -[[clientside.module.stylesheet]] -== Specifying a Stylesheet - -A client-side module can include CSS stylesheets. When the module is compiled, -these stylesheets are copied to the output target. In the module descriptor, -define a [literal]#++stylesheet++# element. - -For example, if you are developing a custom widget and want to have a default -stylesheet for it, you could define it as follows: - - ----- -<stylesheet src="mywidget/styles.css"/> ----- - -The specified path is relative to the __public__ folder under the folder of the -module descriptor. - - -[[gwt.module.compilation-limiting]] -== Limiting Compilation Targets - -Compiling widget sets takes considerable time. You can reduce the compilation -time significantly by compiling the widget sets only for your browser, which is -useful during development. You can do this by setting the -[parameter]#user.agent# property in the module descriptor. - - ----- -<set-property name="user.agent" value="gecko1_8"/> ----- - -The [parameter]#value# attribute should match your browser. The browsers -supported by GWT depend on the GWT version, below is a list of browser -identifiers supported by GWT. - -.GWT User Agents -[options="header"] -|=============== -|Identifier|Name -|ie6|Internet Explorer 6 -|ie8|Internet Explorer 8 -|gecko1_8|Mozilla Firefox 1.5 and later -|safari|Apple Safari and other Webkit-based browsers including Google Chrome -|opera|Opera -|ie9|Internet Explorer 9 - -|=============== - - - - -For more information about the GWT Module XML Format, please see Google Web -Toolkit Developer Guide. - - - diff --git a/documentation/clientside/clientside-overview.asciidoc b/documentation/clientside/clientside-overview.asciidoc deleted file mode 100644 index 8b475d812e..0000000000 --- a/documentation/clientside/clientside-overview.asciidoc +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: Overview -order: 1 -layout: page ---- - -[[clientside.overview]] -= Overview - -As noted in the introduction, Vaadin supports two development models: -server-side and client-side. Client-side Vaadin code is executed in the web -browser as JavaScript code. The code is written in Java, like all Vaadin code, -and then compiled to JavaScript with the __Vaadin Client Compiler__. You can -develop client-side widgets and integrate them with server-side counterpart -components to allow using them in server-side Vaadin applications. That is how -the components in the server-side framework and in most add-ons are done. -Alternatively, you can create pure client-side GWT applications, which you can -simply load in the browser from an HTML page and use even without server-side -connectivity. - -The client-side framework is based on the Google Web Toolkit (GWT), with added -features and bug fixes. Vaadin is compatible with GWT to the extent of the basic -GWT feature set. Vaadin Ltd is a member of the GWT Steering Committee, working -on the future direction of GWT together with Google and other supporters of GWT. - - -[NOTE] -.Widgets and Components -==== -((("widget, -definition"))) -Google Web Toolkit uses the term __widget__ for user interface components. In -this book, we use the term widget to refer to client-side components, while -using the term __component__ in a general sense and also in the special sense -for server-side components. - -==== - - - -The main idea in server-side Vaadin development is to render the server-side -components in the browser with the Client-Side Engine. The engine is essentially -a set of widgets paired with __connectors__ that serialize their state and -events with the server-side counterpart components. The client-side engine is -technically called a __widget set__, to describe the fact that it mostly -consists of widgets and that widget sets can be combined, as described later. - - - diff --git a/documentation/clientside/clientside-widget.asciidoc b/documentation/clientside/clientside-widget.asciidoc deleted file mode 100644 index ed911a46b4..0000000000 --- a/documentation/clientside/clientside-widget.asciidoc +++ /dev/null @@ -1,76 +0,0 @@ ---- -title: Creating a Custom Widget -order: 5 -layout: page ---- - -[[clientside.widget]] -= Creating a Custom Widget - -Creating a new Vaadin component usually begins from making a client-side widget, -which is later integrated with a server-side counterpart to enable server-side -development. In addition, you can also choose to make pure client-side widgets, -a possibility which we also describe later in this section. - -[[clientside.widget.simple]] -== A Basic Widget - -All widgets extend the [classname]#Widget# class or some of its subclasses. You -can extend any core GWT or supplementary Vaadin widgets. Perhaps typically, an -abstraction such as [classname]#Composite#. The basic GWT widget component -hierarchy is illustrated in <<figure.clientside.widgets>>. Please see the GWT -API documentation for a complete description of the widget classes. - -[[figure.clientside.widgets]] -.GWT Widget Base Class Hierarchy -image::img/gwt-widgets-hi.png[] - -For example, we could extend the [classname]#Label# widget to display some -custom text. - - ----- -package com.example.myapp.client; - -import com.google.gwt.user.client.ui.Label; - -public class MyWidget extends Label { - public static final String CLASSNAME = "mywidget"; - - public MyWidget() { - setStyleName(CLASSNAME); - setText("This is MyWidget"); - } -} ----- - -The above example is largely what the Eclipse plugin generates as a widget stub. -It is a good practice to set a distinctive style class for the widget, to allow -styling it with CSS. - -The client-side source code __must__ be contained in a [filename]#client# -package under the package of the descriptor file, which is covered later. - - -[[clientside.widget.using]] -== Using the Widget - -You can use a custom widget just like you would use any widget, possibly -integrating it with a server-side component, or in pure client-side modules such -as the following: - - ----- -public class MyEntryPoint implements EntryPoint { - @Override - public void onModuleLoad() { - // Use the custom widget - final MyWidget mywidget = new MyWidget(); - RootPanel.get().add(mywidget); - } -} ----- - - - - diff --git a/documentation/clientsideapp/chapter-clientsideapp.asciidoc b/documentation/clientsideapp/chapter-clientsideapp.asciidoc deleted file mode 100644 index 19b3cc1b7d..0000000000 --- a/documentation/clientsideapp/chapter-clientsideapp.asciidoc +++ /dev/null @@ -1,16 +0,0 @@ -[[clientsideapp]] -== Client-Side Applications - -This chapter describes how to develop client-side Vaadin applications. - -__We only give a brief introduction to the topic in this book. Please refer to -the GWT documentation for a more complete treatment of the many GWT features.__ - - -include::clientsideapp-overview.asciidoc[leveloffset=+2] - -include::clientsideapp-entrypoint.asciidoc[leveloffset=+2] - -include::clientsideapp-compiling.asciidoc[leveloffset=+2] - -include::clientsideapp-loading.asciidoc[leveloffset=+2] diff --git a/documentation/clientsideapp/clientsideapp-compiling.asciidoc b/documentation/clientsideapp/clientsideapp-compiling.asciidoc deleted file mode 100644 index fe790fa45e..0000000000 --- a/documentation/clientsideapp/clientsideapp-compiling.asciidoc +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: Compiling and Running a Client-Side Application -order: 3 -layout: page ---- - -[[clientsideapp.compiling]] -= Compiling and Running a Client-Side Application - -__Compilation of client-side modules other than widget sets with the Vaadin -Plugin for Eclipse has recent changes and limitations at the time of writing of -this edition and the information given here may not be accurate.__ - -The application needs to be compiled into JavaScript to run it in a browser. For -deployment, and also initially for the first time when running the Development -Mode, you need to do the compilation with the Vaadin Client Compiler, as -described in -<<dummy/../../../framework/clientside/clientside-compiling#clientside.compiling,"Compiling -a Client-Side Module">>. - -During development, it is easiest to use the SuperDevMode, which also quickly -launching the client-side code and also allows debugging. See -<<dummy/../../../framework/clientside/clientside-debugging#clientside.debugging,"Debugging -Client-Side Code">> for more details. - - - diff --git a/documentation/clientsideapp/clientsideapp-entrypoint.asciidoc b/documentation/clientsideapp/clientsideapp-entrypoint.asciidoc deleted file mode 100644 index f13303bde4..0000000000 --- a/documentation/clientsideapp/clientsideapp-entrypoint.asciidoc +++ /dev/null @@ -1,83 +0,0 @@ ---- -title: Client-Side Module Entry-Point -order: 2 -layout: page ---- - -[[clientsideapp.entrypoint]] -= Client-Side Module Entry-Point - -A client-side application requires an __entry-point__ where the execution -starts, much like the [methodname]#init()# method in server-side Vaadin UIs. - -Consider the following application: - - ----- -package com.example.myapp.client; - -import com.google.gwt.core.client.EntryPoint; -import com.google.gwt.event.dom.client.ClickEvent; -import com.google.gwt.event.dom.client.ClickHandler; -import com.google.gwt.user.client.ui.RootPanel; -import com.vaadin.ui.VButton; - -public class MyEntryPoint implements EntryPoint { - @Override - public void onModuleLoad() { - // Create a button widget - Button button = new Button(); - button.setText("Click me!"); - button.addClickHandler(new ClickHandler() { - @Override - public void onClick(ClickEvent event) { - mywidget.setText("Hello, world!"); - } - }); - RootPanel.get().add(button); - } -} ----- - -Before compiling, the entry-point needs to be defined in a module descriptor, as -described in the next section. - -[[clientsideapp.entrypoint.descriptor]] -== Module Descriptor - -The entry-point of a client-side application is defined, along with any other -configuration, in a client-side module descriptor, described in -<<dummy/../../../framework/clientside/clientside-module#clientside.module,"Client-Side -Module Descriptor">>. The descriptor is an XML file with suffix -[filename]#.gwt.xml#. - - ----- -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE module PUBLIC -"-//Google Inc.//DTD Google Web Toolkit 1.7.0//EN" -"http://google-web-toolkit.googlecode.com/svn/tags/1.7.0/distro-source/core/src/gwt-module.dtd"> -<module> - <!-- Builtin Vaadin and GWT widgets --> - <inherits name="com.vaadin.Vaadin" /> - - <!-- The entry-point for the client-side application --> - <entry-point class="com.example.myapp.client.MyEntryPoint"/> -</module> ----- - -You might rather want to inherit the [classname]#com.google.gwt.user.User# to -get just the basic GWT widgets, and not the Vaadin-specific widgets and classes, -most of which are unusable in pure client-side applications. - -You can put static resources, such as images or CSS stylesheets, in a -[filename]#public# folder (not a Java package) under the folder of the -descriptor file. When the module is compiled, the resources are copied to the -output folder. Normally in pure client-side application development, it is -easier to load them in the HTML host file or in a [classname]#ClientBundle# (see -GWT documentation), but these methods are not compatible with server-side -component integration, if you use the resources for that purpose as well. - - - - diff --git a/documentation/clientsideapp/clientsideapp-loading.asciidoc b/documentation/clientsideapp/clientsideapp-loading.asciidoc deleted file mode 100644 index 1ac6ddce1a..0000000000 --- a/documentation/clientsideapp/clientsideapp-loading.asciidoc +++ /dev/null @@ -1,54 +0,0 @@ ---- -title: Loading a Client-Side Application -order: 4 -layout: page ---- - -[[clientsideapp.loading]] -= Loading a Client-Side Application - -You can load the JavaScript code of a client-side application in an HTML __host -page__ by including it with a [literal]#++<script>++# tag, for example as -follows: - - ----- -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <meta http-equiv="Content-Type" - content="text/html; charset=UTF-8" /> - - <title>Embedding a Vaadin Application in HTML Page</title> - - <!-- Load the Vaadin style sheet --> - <link rel="stylesheet" - type="text/css" - href="/myproject/VAADIN/themes/reindeer/legacy-styles.css"/> - </head> - - <body> - <h1>A Pure Client-Side Application</h1> - - <script type="text/javascript" language="javascript" - src="clientside/com.example.myapp.MyModule/ - com.example.myapp.MyModule.nocache.js"> - </script> - </body> -</html> ----- - -The JavaScript module is loaded in a [literal]#++<script>++# element. The -[literal]#++src++# parameter should be a relative link from the host page to the -compiled JavaScript module. - -If the application uses any supplementary Vaadin widgets, and not just core GWT -widgets, you need to include the Vaadin theme as was done in the example. The -exact path to the style file depends on your project structure - the example is -given for a regular Vaadin application where themes are contained in the -[filename]#VAADIN# folder in the WAR. - -In addition to CSS and scripts, you can load any other resources needed by the -client-side application in the host page. - - - diff --git a/documentation/clientsideapp/clientsideapp-overview.asciidoc b/documentation/clientsideapp/clientsideapp-overview.asciidoc deleted file mode 100644 index 550a1b90f5..0000000000 --- a/documentation/clientsideapp/clientsideapp-overview.asciidoc +++ /dev/null @@ -1,90 +0,0 @@ ---- -title: Overview -order: 1 -layout: page ---- - -[[clientsideapp.overview]] -= Overview - -Vaadin allows developing client-side modules that run in the browser. -Client-side modules can use all the GWT widgets and some Vaadin-specific -widgets, as well as the same themes as server-side Vaadin applications. -Client-side applications run in the browser, even with no further server -communications. When paired with a server-side service to gain access to data -storage and server-side business logic, client-side applications can be -considered "fat clients", in comparison to the "thin client" approach of the -server-side Vaadin applications. The services can use the same back-end services -as server-side Vaadin applications. Fat clients are useful for a range of -purposes when you have a need for highly responsive UI logic, such as for games -or for serving a huge number of clients with possibly stateless server-side -code. - -[[figure.clientsideapp.overview.architecture]] -.Client-Side Application Architecture -image::img/clientsideapp-architecture-hi.png[] - -A client-side application is defined as a __module__, which has an -__entry-point__ class. Its [methodname]#onModuleLoad()# method is executed when -the JavaScript of the compiled module is loaded in the browser. - -Consider the following client-side application: - - ----- -public class HelloWorld implements EntryPoint { - @Override - public void onModuleLoad() { - RootPanel.get().add(new Label("Hello, world!")); - } -} ----- - -The user interface of a client-side application is built under a HTML __root -element__, which can be accessed by [methodname]#RootPanel.get()#. The purpose -and use of the entry-point is documented in more detail in -<<dummy/../../../framework/clientsideapp/clientsideapp-entrypoint#clientsideapp.entrypoint,"Client-Side -Module Entry-Point">>. The user interface is built from __widgets__ -hierarchically, just like with server-side Vaadin UIs. The built-in widgets and -their relationships are catalogued in -<<dummy/../../../framework/clientsidewidgets/clientsidewidgets-overview.asciidoc#clientsidewidgets.overview,"Client-Side -Widgets">>. You can also use many of the widgets in Vaadin add-ons that have -them, or make your own. - -A client-side module is defined in a __module descriptor__, as described in -<<dummy/../../../framework/clientside/clientside-module#clientside.module,"Client-Side -Module Descriptor">>. A module is compiled from Java to JavaScript using the -Vaadin Compiler, of which use was described in -<<dummy/../../../framework/clientside/clientside-compiling#clientside.compiling,"Compiling -a Client-Side Module">>. The -<<dummy/../../../framework/clientsideapp/clientsideapp-compiling#clientsideapp.compiling,"Compiling -and Running a Client-Side Application">> in this chapter gives further -information about compiling client-side applications. The resulting JavaScript -can be loaded to any web page, as described in -<<dummy/../../../framework/clientsideapp/clientsideapp-loading#clientsideapp.loading,"Loading -a Client-Side Application">>. - -The client-side user interface can be built declaratively using the included -__UI -Binder__//// -, as described in <xref -linkend="clientsideapp.uibinder"/> -//// -. - -The servlet for processing RPC calls from the client-side can be generated -automatically using the included compiler. - -Even with regular server-side Vaadin applications, it may be useful to provide -an off-line mode if the connection is closed. An off-line mode can persist data -in a local store in the browser, thereby avoiding the need for server-side -storage, and transmit the data to the server when the connection is again -available. Such a pattern is commonly used with Vaadin -TouchKit.//// -Use of a client-side application to provide an off-line mode is described in -<xref -linkend="clientsideapp.offline"/>. -//// - - - diff --git a/documentation/clientsideapp/img/clientsideapp-architecture-hi.png b/documentation/clientsideapp/img/clientsideapp-architecture-hi.png Binary files differdeleted file mode 100644 index a97817d358..0000000000 --- a/documentation/clientsideapp/img/clientsideapp-architecture-hi.png +++ /dev/null diff --git a/documentation/clientsideapp/img/clientsideapp-architecture-lo.png b/documentation/clientsideapp/img/clientsideapp-architecture-lo.png Binary files differdeleted file mode 100644 index 5151ce5b7a..0000000000 --- a/documentation/clientsideapp/img/clientsideapp-architecture-lo.png +++ /dev/null diff --git a/documentation/clientsideapp/original-drawings/clientsideapp-architecture.svg b/documentation/clientsideapp/original-drawings/clientsideapp-architecture.svg deleted file mode 100644 index f305ead6e6..0000000000 --- a/documentation/clientsideapp/original-drawings/clientsideapp-architecture.svg +++ /dev/null @@ -1,1718 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.48.3.1 r9886"
- sodipodi:docname="clientsideapp-architecture.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- version="1.1">
- <defs
- id="defs1903">
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective206" />
- <linearGradient
- id="linearGradient11516">
- <stop
- id="stop11518"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop11520"
- offset="1"
- style="stop-color:#a090e7;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient11508">
- <stop
- id="stop11510"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop11512"
- offset="1"
- style="stop-color:#e27979;stop-opacity:1" />
- </linearGradient>
- <marker
- inkscape:stockid="DiamondL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="DiamondL"
- style="overflow:visible">
- <path
- id="path4404"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.8)" />
- </marker>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="DiamondEmpty"
- style="overflow:visible">
- <path
- id="path7"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z "
- style="fill-rule:evenodd;fill:#ffffff;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(1.0) translate(-5,0)" />
- </marker>
- <linearGradient
- id="linearGradient3286">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3288" />
- <stop
- style="stop-color:#79e291;stop-opacity:1;"
- offset="1"
- id="stop3290" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="EmptyArrow"
- style="overflow:visible;">
- <path
- id="path9"
- d="M 0.0,0.0 L 0.0,-5.0 L -12.5,0.0 L 0.0,5.0 L 0.0,0.0 z M -0.5,0.0 L -0.5,-4.5 L -12.0,0.0 L -0.5,4.5 L -0.5,0.0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(1.0) rotate(180) translate(10,0)" />
- </marker>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="EmptyArrow2"
- style="overflow:visible;">
- <path
- id="path13"
- d="M 0.0,0.0 L 0.0,-5.0 L -10.0,0.0 L 0.0,5.0 L 0.0,0.0 z"
- style="fill-rule:evenodd;fill:#ffffff;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(1.0) rotate(180) translate(10,0)" />
- </marker>
- <linearGradient
- id="linearGradient19816">
- <stop
- id="stop19818"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop19820"
- offset="1"
- style="stop-color:#e7e790;stop-opacity:1;" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow2Lend"
- style="overflow:visible;">
- <path
- id="path16811"
- style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- transform="scale(1.1) rotate(180) translate(1,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow1Lend"
- style="overflow:visible;">
- <path
- id="path16829"
- d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(0.8) rotate(180) translate(12.5,0)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutM"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleOutM"
- style="overflow:visible">
- <path
- id="path16731"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.4)" />
- </marker>
- <marker
- inkscape:stockid="TriangleInL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleInL"
- style="overflow:visible">
- <path
- id="path16743"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(-0.8)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path16734"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.8)" />
- </marker>
- <linearGradient
- id="linearGradient9263">
- <stop
- style="stop-color:#000000;stop-opacity:0"
- offset="0"
- id="stop9265" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop9267" />
- </linearGradient>
- <linearGradient
- id="linearGradient7299">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop7301" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop7303" />
- </linearGradient>
- <linearGradient
- id="linearGradient5349">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop5351" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop5353" />
- </linearGradient>
- <linearGradient
- id="linearGradient4152">
- <stop
- style="stop-color:#6b6bff;stop-opacity:1;"
- offset="0"
- id="stop4154" />
- <stop
- style="stop-color:#6b6bff;stop-opacity:0;"
- offset="1"
- id="stop4156" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5349"
- id="linearGradient5355"
- x1="96.085953"
- y1="148.38934"
- x2="389.01985"
- y2="148.38934"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient12637"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,265.61411,78.560061)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient15668"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient17873"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,541.12253,30.198804)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient17875"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient20832"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22790"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22806"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22822"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22838"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient2303"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3306"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2251403,2.385383e-3,-2.8806072e-3,0.5966421,625.8055,-4.9637231)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3307"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.634924,2.3804409e-3,-3.8441097e-3,0.5954059,670.96002,-4.81581)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3327"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient8322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient8338"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient8354"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient11393"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2251403,2.385383e-3,-2.8806072e-3,0.5966421,625.8055,-4.9637231)"
- cx="-145.65326"
- cy="87.697487"
- fx="-145.65326"
- fy="87.697487"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient11490"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11508"
- id="radialGradient11506"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11516"
- id="linearGradient11514"
- x1="402.58597"
- y1="24.440832"
- x2="535.59796"
- y2="190.61652"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient11602"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11508"
- id="radialGradient11604"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11516"
- id="linearGradient13616"
- x1="174.35712"
- y1="96.654701"
- x2="220.02124"
- y2="192.93446"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient14623"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9722636,1.8198108e-3,-2.2860317e-3,0.4551788,579.72294,2.0165387)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="linearGradient16644"
- x1="160.84073"
- y1="73.780838"
- x2="239.77594"
- y2="207.50426"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11516"
- id="linearGradient18644"
- x1="1036.6514"
- y1="1185.2882"
- x2="1076.5066"
- y2="1351.074"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient19653"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-3"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-8"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-5"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-0"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-8"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-1"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-2"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-6"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-9"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-10"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-7"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-3"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-12"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-8"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-9"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-88"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-0"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-22"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-1"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-62"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-02"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-4"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-6"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-9"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-5"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-1"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-5"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-55"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-60"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-6"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-1"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-5"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-9"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-29"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-62"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-5"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-2"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-89"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-02"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-888"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-9"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-73"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-86"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-83"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-93"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-54"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-62"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-6"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-94"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-92"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-37"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-2"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-2"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-39"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-27"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-81"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-0"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-07"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-0"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-5"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-70"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-4"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-01"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-31"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-3"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-5"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-98"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-9"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-9"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-4"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-60"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-555"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-75"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-48"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-22"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-24"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-25"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-8"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-4"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-55"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-38"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-074"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.8159692"
- inkscape:cx="281.72168"
- inkscape:cy="662.60043"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1920"
- inkscape:window-height="1060"
- inkscape:window-x="-2"
- inkscape:window-y="-3"
- showgrid="true"
- showguides="false"
- inkscape:connector-spacing="10"
- inkscape:guide-bbox="true"
- inkscape:window-maximized="1">
- <sodipodi:guide
- orientation="0,1"
- position="31.938869,788.55965"
- id="guide17449" />
- <sodipodi:guide
- orientation="1,0"
- position="224.67342,882.17358"
- id="guide17453" />
- <sodipodi:guide
- orientation="0,1"
- position="285.41744,976.57155"
- id="guide23390" />
- <sodipodi:guide
- orientation="0,1"
- position="285.79781,806.73177"
- id="guide23439" />
- <sodipodi:guide
- orientation="1,0"
- position="561.68355,823.80254"
- id="guide23441" />
- <sodipodi:guide
- orientation="1,0"
- position="415.75596,833.7146"
- id="guide23443" />
- <sodipodi:guide
- orientation="1,0"
- position="61.675057,822.15053"
- id="guide23607" />
- <inkscape:grid
- type="xygrid"
- id="grid4114"
- empspacing="5"
- visible="true"
- enabled="true"
- snapvisiblegridlinesonly="true"
- spacingx="5px"
- spacingy="5px" />
- </sodipodi:namedview>
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <g
- id="g4123"
- transform="translate(-342.06357,-147.85583)">
- <rect
- ry="3.7880721"
- y="605.21802"
- x="457.06357"
- height="119.99999"
- width="310.00003"
- id="rect6642-4-3"
- style="fill:#e6e6e6;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-350.52446,-452.47406)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="20.981634"
- width="159.7314"
- id="rect11365-5" /></flowRegion><flowPara
- id="flowPara11367-2">Web Application</flowPara></flowRoot> </g>
- <g
- id="g4116"
- transform="translate(-351.90973,-70.502319)">
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-358.45417,-561.53842)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11369-9"
- xml:space="preserve"><flowRegion
- id="flowRegion11371-3"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="17.979126"
- width="116.12012"
- id="rect11373-3" /></flowRegion><flowPara
- id="flowPara11375-6">Server</flowPara></flowRoot> <rect
- ry="3.7880721"
- y="497.8645"
- x="451.90973"
- height="165"
- width="340"
- id="rect6642-49"
- style="fill:none;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- </g>
- <g
- id="g12796"
- transform="translate(0,5)">
- <rect
- ry="3.7880721"
- y="242.36218"
- x="100"
- height="160"
- width="340"
- id="rect6642-4"
- style="fill:#8c8c8c;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-708.875,-816.17532)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361"
- xml:space="preserve"><flowRegion
- id="flowRegion11363"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="17.67767"
- width="94.752312"
- id="rect11365" /></flowRegion><flowPara
- id="flowPara11367">Web Browser</flowPara></flowRoot> <g
- id="g28403-2-5-2-4"
- transform="translate(110.8829,151.96949)">
- <rect
- ry="3.7880721"
- y="119.85882"
- x="7.3594728"
- height="55.533875"
- width="211.75763"
- id="rect4680-4-4-7-8"
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-799.7579,-939.67189)"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-1-1-2-1-2-3"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-0-64-3-6-2-8"><rect
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="60.147655"
- width="188.23749"
- id="rect11365-5-4-5-1-8-6-7" /></flowRegion><flowPara
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowPara4340-2">Client-Side App</flowPara></flowRoot> </g>
- <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 325,300.36218 20,0"
- id="path4833-3-7-8-1-0"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <g
- id="g28403-2-5-2-40"
- transform="translate(340.42278,145.12597)">
- <rect
- ry="3.7880721"
- y="117.23621"
- x="4.57722"
- height="135"
- width="89.539879"
- id="rect4680-4-4-7-0"
- style="fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <g
- transform="translate(-7.233293,-53.196324)"
- id="g28403-3-5-6">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5"
- width="69.539879"
- height="35.488552"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7"><rect
- id="rect11365-5-4-6-4"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9">Built-in</flowPara><flowPara
- id="flowPara4300">Widgets</flowPara></flowRoot> </g>
- <g
- transform="translate(-7.23329,-13.196324)"
- id="g28403-3-5-6-6">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5"
- width="69.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5"><rect
- id="rect11365-5-4-6-4-5"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-9">Add-on</flowPara><flowPara
- id="flowPara4338">Widgets</flowPara></flowRoot> </g>
- <g
- transform="translate(-7.23329,26.803676)"
- id="g28403-3-5-6-2">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2, 2;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-8"
- width="69.539879"
- height="35.488552"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-6"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-50"><rect
- id="rect11365-5-4-6-4-0"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-1">Custom</flowPara><flowPara
- id="flowPara4300-7">Widgets</flowPara></flowRoot> </g>
- </g>
- <g
- id="g28403-2-5-2-4-4"
- transform="translate(110.8829,217.50336)">
- <rect
- ry="3.7880721"
- y="119.85882"
- x="7.3594728"
- height="55.000004"
- width="211.75763"
- id="rect4680-4-4-7-8-2"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-799.7579,-939.67189)"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-1-1-2-1-2-3-1"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-0-64-3-6-2-8-3"><rect
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="60.147655"
- width="188.23749"
- id="rect11365-5-4-5-1-8-6-7-0" /></flowRegion><flowPara
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowPara4372">Vaadin Client-Side API</flowPara><flowPara
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Bold"
- id="flowPara4376">RPC, JSON, ...</flowPara></flowRoot> </g>
- <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016)"
- d="m 315.0622,322.36218 0,24.12389"
- id="path4833-3-7-2"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- </g>
- <g
- transform="translate(128.74016,497.48032)"
- id="g28403-3-9-1" />
- <g
- transform="translate(100.4016,485.79123)"
- id="g28403-2-9">
- <rect
- style="fill:#abdca7;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-4-0"
- width="339.53986"
- height="125"
- x="0.058529999"
- y="121.57095"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-1-2-7"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-805.37399,-936.80336)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-64-3-63"><rect
- id="rect11365-5-4-5-1-7"
- width="136.60326"
- height="42.457775"
- x="813.87988"
- y="1064.3831"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara17609-3-7-6">Back-end</flowPara></flowRoot> <g
- transform="translate(78.248017,-28.861588)"
- id="g28403-3-5-6-6-3-3">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5-4-6"
- width="74.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1-8-0"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.76939)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5-1-8"><rect
- id="rect11365-5-4-6-4-5-6-9"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4338-1-9">Web Service</flowPara></flowRoot> </g>
- <g
- transform="translate(163.24802,-28.861588)"
- id="g28403-3-5-6-6-3-3-7">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5-4-6-4"
- width="74.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1-8-0-8"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.76939)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5-1-8-3"><rect
- id="rect11365-5-4-6-4-5-6-9-2"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4338-1-9-4">EJB</flowPara></flowRoot> </g>
- <g
- transform="translate(-6.7519876,15.649856)"
- id="g28403-3-5-6-6-3-3-7-7">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5-4-6-4-1"
- width="74.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1-8-0-8-7"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.76939)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5-1-8-3-0"><rect
- id="rect11365-5-4-6-4-5-6-9-2-4"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4338-1-9-4-3">Persistence</flowPara></flowRoot> </g>
- <g
- transform="translate(-6.7519825,-28.861588)"
- id="g28403-3-5-6-6-3-3-76">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5-4-6-40"
- width="74.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1-8-0-4"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.76939)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5-1-8-4"><rect
- id="rect11365-5-4-6-4-5-6-9-1"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4338-1-9-9">Business</flowPara><flowPara
- id="flowPara5826">Logic</flowPara></flowRoot> </g>
- <g
- transform="translate(77.787887,16.138412)"
- id="g28403-3-5-6-6-3-3-7-7-4">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5-4-6-4-1-9"
- width="74.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1-8-0-8-7-6"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.76939)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5-1-8-3-0-4"><rect
- id="rect11365-5-4-6-4-5-6-9-2-4-4"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4338-1-9-4-3-8">Database</flowPara></flowRoot> </g>
- </g>
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-568.875,-651.17532)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11369-9-9"
- xml:space="preserve"><flowRegion
- id="flowRegion11371-3-1"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="29.154446"
- width="109.99512"
- id="rect11373-3-1" /></flowRegion><flowPara
- id="flowPara5380">HTTP(S)</flowPara></flowRoot> <g
- id="g4123-4-4"
- transform="translate(-202.06357,-122.85583)">
- <rect
- ry="3.7880721"
- y="605.21802"
- x="457.06357"
- height="79.999992"
- width="155.00003"
- id="rect6642-4-3-9-8"
- style="fill:#d2d2d2;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-351.81143,-453.31949)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-17-7"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-06-5"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="19.154446"
- width="164.99512"
- id="rect11365-5-0-92" /></flowRegion><flowPara
- id="flowPara11367-2-8-9">Themes</flowPara></flowRoot> <g
- transform="translate(445.25306,454.78547)"
- id="g28403-3-5-6-4-0">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-0-6"
- width="59.999996"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-68-6"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-880.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-6-7"><rect
- id="rect11365-5-4-6-4-2-3"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-7-6">Built-in</flowPara><flowPara
- id="flowPara4300-9-8">Themes</flowPara></flowRoot> </g>
- <g
- transform="translate(515.25306,454.78547)"
- id="g28403-3-5-6-2-1-8">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2, 2;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-8-4-6"
- width="59.539879"
- height="35.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-6-6-7"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-880.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-50-7-2"><rect
- id="rect11365-5-4-6-4-0-2-0"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4300-7-9-2">User</flowPara><flowPara
- id="flowPara4753">Theme</flowPara></flowRoot> </g>
- </g>
- <g
- transform="translate(108.74016,302.48032)"
- id="g28403-3-9-1-5">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-1-2-0"
- width="110"
- height="60"
- x="21.259842"
- y="179.88187"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-2-2-8"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-785.50623,-878.66835)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-6-9-3"><rect
- id="rect11365-5-4-9-5-5"
- width="142.10995"
- height="56.224495"
- x="813.87988"
- y="1064.3831"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4298">Servlet</flowPara></flowRoot> </g>
- <path
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016)"
- d="m 225,537.36218 0,75"
- id="path4833-3-7"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095)"
- d="m 225.02651,376.56955 0,115"
- id="path4833-3-2-9-7"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095)"
- d="m 321.00001,392.36218 0,98.14524"
- id="path4833-3-2-9-7-0"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- </g>
- <g
- inkscape:groupmode="layer"
- id="layer2"
- inkscape:label="Varjot" />
-</svg>
diff --git a/documentation/clientsidewidgets/chapter-clientsidewidgets.asciidoc b/documentation/clientsidewidgets/chapter-clientsidewidgets.asciidoc deleted file mode 100644 index 7adfe276e3..0000000000 --- a/documentation/clientsidewidgets/chapter-clientsidewidgets.asciidoc +++ /dev/null @@ -1,18 +0,0 @@ -[[clientsidewidgets]] -== Client-Side Widgets - -This chapter gives basic documentation on the use of the Vaadin client-side -framework for the purposes of creating client-side applications and writing your -own widgets. - -__We only give a brief introduction to the topic in this chapter. Please refer -to the GWT documentation for a more complete treatment of the GWT widgets.__ - - -include::clientsidewidgets-overview.asciidoc[leveloffset=+2] - -include::clientsidewidgets-gwt.asciidoc[leveloffset=+2] - -include::clientsidewidgets-vaadin.asciidoc[leveloffset=+2] - -include::clientsidewidgets-grid.asciidoc[leveloffset=+2] diff --git a/documentation/clientsidewidgets/clientsidewidgets-grid.asciidoc b/documentation/clientsidewidgets/clientsidewidgets-grid.asciidoc deleted file mode 100644 index 40e1e2ff19..0000000000 --- a/documentation/clientsidewidgets/clientsidewidgets-grid.asciidoc +++ /dev/null @@ -1,77 +0,0 @@ ---- -title: Grid -order: 4 -layout: page ---- - -[[clientsidewidgets.grid]] -= Grid - -The [classname]#Grid# widget is the client-side counterpart for the server-side -[classname]#Grid# component described in -<<dummy/../../../framework/components/components-grid#components.grid,"Grid">>. - -The client-side API is almost identical to the server-side API, so its -documentation is currently omitted here and we refer you to the API -documentation. In the following, we go through some customization features of -[classname]#Grid#. - -[[clientsidewidgets.grid.renderers]] -== Renderers - -As described in -<<dummy/../../../framework/components/components-grid#components.grid.renderer,"Column -Renderers">>, renderers draw the visual representation of data values on the -client-side. They implement [interfacename]#Renderer# interface and its -[methodname]#render()# method. The method gets a reference to the element of the -grid cell, as well as the data value to be rendered. An implementation needs to -modify the element as needed. - -For example, [classname]#TextRenderer# is implemented simply as follows: - - ----- -public class TextRenderer implements Renderer<String> { - @Override - public void render(RendererCellReference cell, - String text) { - cell.getElement().setInnerText(text); - } -} ----- - -The server-side renderer API should extend [classname]#AbstractRenderer# or -[classname]#ClickableRenderer# with the data type accepted by the renderer. The -data type also must be given for the superclass constructor. - - ----- -public class TextRenderer extends AbstractRenderer<String> { - public TextRenderer() { - super(String.class); - } -} ----- - -The client-side and server-side renderer need to be connected with a connector -extending from [classname]#AbstractRendererConnector#. - - ----- -@Connect(com.vaadin.ui.renderer.TextRenderer.class) -public class TextRendererConnector - extends AbstractRendererConnector<String> { - @Override - public TextRenderer getRenderer() { - return (TextRenderer) super.getRenderer(); - } -} ----- - -Renderers can have parameters, for which normal client-side communication of -extension parameters can be used. Please see the implementations of different -renderers for examples. - - - - diff --git a/documentation/clientsidewidgets/clientsidewidgets-gwt.asciidoc b/documentation/clientsidewidgets/clientsidewidgets-gwt.asciidoc deleted file mode 100644 index c4605e7ef0..0000000000 --- a/documentation/clientsidewidgets/clientsidewidgets-gwt.asciidoc +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: GWT Widgets -order: 2 -layout: page ---- - -[[clientsidewidgets.gwt]] -= GWT Widgets - -GWT widgets are user interface elements that are rendered as HTML. Rendering is -done either by manipulating the HTML Document Object Model (DOM) through the -lower-level DOM API, or simply by injecting the HTML with -[methodname]#setInnerHTML()#. The layout of the user interface is managed using -special panel widgets. - -For information about the basic GWT widgets, please refer to the GWT Developer's -Guide at https://developers.google.com/web-toolkit/doc/latest/DevGuideUi. - - - diff --git a/documentation/clientsidewidgets/clientsidewidgets-overview.asciidoc b/documentation/clientsidewidgets/clientsidewidgets-overview.asciidoc deleted file mode 100644 index 75206944ed..0000000000 --- a/documentation/clientsidewidgets/clientsidewidgets-overview.asciidoc +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Overview -order: 1 -layout: page ---- - -[[clientsidewidgets.overview]] -= Overview - -The Vaadin client-side API is based on the Google Web Toolkit. It involves -__widgets__ for representing the user interface as Java objects, which are -rendered as a HTML DOM in the browser. Events caused by user interaction with -the page are delegated to event handlers, where you can implement your UI logic. - -In general, the client-side widgets come in two categories - basic GWT widgets -and Vaadin-specific widgets. The library includes __connectors__ for integrating -the Vaadin-specific widgets with the server-side components, thereby enabling -the server-side development model of Vaadin. The integration is described in -<<dummy/../../../framework/gwt/gwt-overview.asciidoc#gwt.overview,"Integrating -with the Server-Side">>. - -The layout of the client-side UI is managed with __panel__ widgets, which -correspond in their function with layout components in the Vaadin server-side -API. - -In addition to the rendering API, the client-side API includes facilities for -making HTTP requests, logging, accessibility, internationalization, and testing. - -For information about the basic GWT framework, please refer to -https://developers.google.com/web-toolkit/overview. - - - diff --git a/documentation/clientsidewidgets/clientsidewidgets-vaadin.asciidoc b/documentation/clientsidewidgets/clientsidewidgets-vaadin.asciidoc deleted file mode 100644 index 21dc4d9e27..0000000000 --- a/documentation/clientsidewidgets/clientsidewidgets-vaadin.asciidoc +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Vaadin Widgets -order: 3 -layout: page ---- - -[[clientsidewidgets.vaadin]] -= Vaadin Widgets - -Vaadin comes with a number of Vaadin-specific widgets in addition to the GWT -widgets, some of which you can use in pure client-side applications. The Vaadin -widgets have somewhat different feature set from the GWT widgets and are -foremost intended for integration with the server-side components, but some may -prove useful for client-side applications as well. - - ----- -public class MyEntryPoint implements EntryPoint { - @Override - public void onModuleLoad() { - // Add a Vaadin button - VButton button = new VButton(); - button.setText("Click me!"); - button.addClickHandler(new ClickHandler() { - @Override - public void onClick(ClickEvent event) { - mywidget.setText("Clicked!"); - } - }); - - RootPanel.get().add(button); - } -} ----- - - - diff --git a/documentation/components/chapter-components.asciidoc b/documentation/components/chapter-components.asciidoc deleted file mode 100644 index 9d908ae64c..0000000000 --- a/documentation/components/chapter-components.asciidoc +++ /dev/null @@ -1,72 +0,0 @@ -[[components]] -== User Interface Components - -This chapter provides an overview and a detailed description of all non-layout -components in Vaadin. - - -include::components-overview.asciidoc[leveloffset=+2] - -include::components-interfaces.asciidoc[leveloffset=+2] - -include::components-features.asciidoc[leveloffset=+2] - -include::components-fields.asciidoc[leveloffset=+2] - -include::components-selection.asciidoc[leveloffset=+2] - -include::components-extensions.asciidoc[leveloffset=+2] - -include::components-label.asciidoc[leveloffset=+2] - -include::components-link.asciidoc[leveloffset=+2] - -include::components-textfield.asciidoc[leveloffset=+2] - -include::components-textarea.asciidoc[leveloffset=+2] - -include::components-passwordfield.asciidoc[leveloffset=+2] - -include::components-richtextarea.asciidoc[leveloffset=+2] - -include::components-datefield.asciidoc[leveloffset=+2] - -include::components-button.asciidoc[leveloffset=+2] - -include::components-checkbox.asciidoc[leveloffset=+2] - -include::components-combobox.asciidoc[leveloffset=+2] - -include::components-listselect.asciidoc[leveloffset=+2] - -include::components-nativeselect.asciidoc[leveloffset=+2] - -include::components-optiongroup.asciidoc[leveloffset=+2] - -include::components-twincolselect.asciidoc[leveloffset=+2] - -include::components-table.asciidoc[leveloffset=+2] - -include::components-tree.asciidoc[leveloffset=+2] - -include::components-treetable.asciidoc[leveloffset=+2] - -include::components-grid.asciidoc[leveloffset=+2] - -include::components-menubar.asciidoc[leveloffset=+2] - -include::components-upload.asciidoc[leveloffset=+2] - -include::components-progressbar.asciidoc[leveloffset=+2] - -include::components-slider.asciidoc[leveloffset=+2] - -include::components-popupview.asciidoc[leveloffset=+2] - -include::components-calendar.asciidoc[leveloffset=+2] - -include::components-customcomponent.asciidoc[leveloffset=+2] - -include::components-customfield.asciidoc[leveloffset=+2] - -include::components-embedded.asciidoc[leveloffset=+2] diff --git a/documentation/components/components-button.asciidoc b/documentation/components/components-button.asciidoc deleted file mode 100644 index 93eddfe845..0000000000 --- a/documentation/components/components-button.asciidoc +++ /dev/null @@ -1,65 +0,0 @@ ---- -title: Button -order: 14 -layout: page ---- - -[[components.button]] -= [classname]#Button# - -The [classname]#Button# component is normally used for initiating some action, -such as finalizing input in forms. When the user clicks a button, a -[classname]#Button.ClickEvent# is fired, which can be handled with a -[interfacename]#Button.ClickListener# in the [methodname]#buttonClick()# method. - -You can handle button clicks with an anonymous class as follows: - - -[source, java] ----- -Button button = new Button("Do not press this button"); - -button.addClickListener(new Button.ClickListener() { - public void buttonClick(ClickEvent event) { - Notification.show("Do not press this button again"); - } -}); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.button.basic[on-line example, window="_blank"]. - -The result is shown in <<figure.component.button.basic>>. The listener can also -be given in the constructor, which is often perhaps simpler. - -[[figure.component.button.basic]] -.Button in Different Styles of Valo Theme -image::img/button-example1.png[] - -If you handle several buttons in the same listener, you can differentiate -between them either by comparing the [classname]#Button# object reference -returned by the [methodname]#getButton()# method of -[classname]#Button.ClickEvent# to a kept reference. For a detailed description -of these patterns together with some examples, please see -<<dummy/../../../framework/architecture/architecture-events#architecture.events,"Events -and Listeners">>. - -== CSS Style Rules - - -[source, css] ----- -.v-button { } - .v-button-wrap { } - .v-button-caption { } ----- - -A button has an overall [literal]#++v-button++# style. The caption has -[literal]#++v-button-caption++# style. There is also an intermediate wrap -element, which may help in styling in some cases. - -Some built-in themes contain a small style, which you can enable by adding -[parameter]#Reindeer.BUTTON_SMALL#, etc. The [classname]#BaseTheme# also has a -[parameter]#BUTTON_LINK# style, which makes the button look like a hyperlink. - - - - diff --git a/documentation/components/components-calendar.asciidoc b/documentation/components/components-calendar.asciidoc deleted file mode 100644 index 19f91d8553..0000000000 --- a/documentation/components/components-calendar.asciidoc +++ /dev/null @@ -1,1192 +0,0 @@ ---- -title: Calendar -order: 30 -layout: page ---- - -[[components.calendar]] -= [classname]#Calendar# - -The [classname]#Calendar# component allows organizing and displaying calendar -events. The main features of the calendar include: - -* Monthly, weekly, and daily views -* Two types of events: all-day events and events with a time range -* Add events directly, from a [classname]#Container#, or with an event provider -* Control the range of the visible dates -* Selecting and editing date or time range by dragging -* Drag and drop events to calendar -* Support for localization and timezones - -User interaction with the calendar elements, such as date and week captions as -well as events, is handled with event listeners. Also date/time range -selections, event dragging, and event resizing can be listened by the server. -The weekly view has navigation buttons to navigate forward and backward in time. -These actions are also listened by the server. Custom navigation can be -implemented using event handlers - -ifdef::web[] -, as described in -<<components.calendar.customizing>> -endif::web[] -. - -The data source of a calendar can be practically anything, as its events are -queried dynamically by the component. You can bind the calendar to a Vaadin -container, or to any other data source by implementing an __event provider__. - -The [classname]#Calendar# has undefined size by default and you usually want to -give it a fixed or relative size, for example as follows. - - -[source, java] ----- -Calendar cal = new Calendar("My Calendar"); -cal.setWidth("600px"); -cal.setHeight("300px"); ----- - -After creating the calendar, you need to set a time range for it, which also -controls the view mode, and set up the data source for calendar events. - -[[components.calendar.daterange]] -== Date Range and View Mode - -The Vaadin Calendar has two types of views that are shown depending on the date -range of the calendar. The __weekly view__ displays a week by default. It can -show anything between one to seven days a week, and is also used as a single-day -view. The view mode is determined from the __date range__ of the calendar, -defined by a start and an end date. Calendar will be shown in a __monthly view__ -when the date range is over than one week (seven days) long. The date range is -always calculated in an accuracy of one millisecond. - -[[figure.components.calendar.daterange.monthly]] -.Monthly view with All-Day and Normal Events -image::img/calendar-monthly.png[] - -The monthly view, shown in <<figure.components.calendar.daterange.monthly>>, can -easily be used to control all types of events, but it is best suited for events -that last for one or more days. You can drag the events to move them. In the -figure, you can see two longer events that are highlighted with a blue and green -background color. Other markings are shorter day events that last less than a 24 -hours. These events can not be moved by dragging in the monthly view. - -[[figure.components.calendar.daterange.weekly]] -.Weekly View -image::img/calendar-weekly.png[] - -In <<figure.components.calendar.daterange.weekly>>, you can see four normal day -events and also all-day events at the top of the time line grid. - -In the following, we set the calendar to show only one day, which is the current -day. - - -[source, java] ----- -cal.setStartDate(new Date()); -cal.setEndDate(new Date()); ----- - -Notice that although the range we set above is actually zero time long, the -calendar still renders the time from 00:00 to 23:59. This is normal, as the -Vaadin Calendar is guaranteed to render at least the date range provided, but -may expand it. This behaviour is important to notice when we implement our own -event providers. - - -[[components.calendar.events]] -== Calendar Events - -All occurrences in a calendar are represented as __events__. You have three ways -to manage the calendar events: - -* Add events directly to the [classname]#Calendar# object using the [methodname]#addEvent()# -* Use a [interfacename]#Container# as a data source -* Use the __event provider__ mechanism - -You can add events with [methodname]#addEvent()# and remove them with the -[methodname]#removeEvent()#. These methods will use the underlying event -provider to write the modifications to the data source. - -[[components.calendar.events.types]] -=== Event Interfaces and Providers - -Events are handled though the [interfacename]#CalendarEvent# interface. The -concrete class of the event depends on the specific -[classname]#CalendarEventProvider# used in the calendar. - -By default, [classname]#Calendar# uses a [classname]#BasicEventProvider# to -provide events, which uses [classname]#BasicEvent# instances. - -Calendar does not depend on any particular data source implementation. Events -are queried by the [classname]#Calendar# from the provider that just has to -implement the [interfacename]#CalendarEventProvider# interface. It is up to the -event provider that [classname]#Calendar# gets the correct events. - -You can bind any Vaadin [classname]#Container# to a calendar, in which case a -[classname]#ContainerEventProvider# is used transparently. The container must be -ordered by start date and time of the events. See -<<dummy/../../../framework/datamodel/datamodel-container#datamodel.container,"Collecting -Items in Containers">> for basic information about containers. - - -[[components.calendar.events.details]] -=== Event Types - -A calendar event requires a start time and an end time. These are the only -mandatory properties. In addition, an event can also be set as an all-day event -by setting the [literal]#++all-day++# property of the event. You can also set -the [literal]#++description++# of an event, which is displayed as a tooltip in -the user interface. - -If the [literal]#++all-day++# field of the event is [literal]#++true++#, then -the event is always rendered as an all-day event. In the monthly view, this -means that no start time is displayed in the user interface and the event has an -colored background. In the weekly view, all-day events are displayed in the -upper part of the screen, and rendered similarly to the monthly view. In -addition, when the time range of an event is 24 hours or longer, it is rendered -as an all-day event in the monthly view. - -When the time range of an event is equal or less than 24 hours, with the -accuracy of one millisecond, the event is considered as a normal day event. -Normal event has a start and end times that may be on different days. - - -[[components.calendar.events.basic]] -=== Basic Events - -The easiest way to add and manage events in a calendar is to use the __basic -event__ management API. Calendar uses by default a -[classname]#BasicEventProvider#, which keeps the events in memory in an internal -reprensetation. - -For example, the following adds a two-hour event starting from the current time. -The standard Java [classname]#GregorianCalendar# provides various ways to -manipulate date and time. - - -[source, java] ----- -// Add a two-hour event -GregorianCalendar start = new GregorianCalendar(); -GregorianCalendar end = new GregorianCalendar(); -end.add(java.util.Calendar.HOUR, 2); -calendar.addEvent(new BasicEvent("Calendar study", - "Learning how to use Vaadin Calendar", - start.getTime(), end.getTime())); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#calendar.monthlyview[on-line example, window="_blank"]. - -This adds a new event that lasts for 3 hours. As the BasicEventProvider and -BasicEvent implement some optional event interfaces provided by the calendar -package, there is no need to refresh the calendar. Just create events, set their -properties and add them to the Event Provider. - - - -[[components.calendar.container]] -== Getting Events from a Container - -You can use any Vaadin [interfacename]#Container# that implements the -[interfacename]#Indexed# interface as the data source for calendar events. The -[classname]#Calendar# will listen to change events from the container as well as -write changes to the container. You can attach a container to a -[classname]#Calendar# with [methodname]#setContainerDataSource()#. - -In the following example, we bind a [classname]#BeanItemContainer# that contains -built-in [classname]#BasicEvent# events to a calendar. - - -[source, java] ----- -// Create the calendar -Calendar calendar = new Calendar("Bound Calendar"); - -// Use a container of built-in BasicEvents -final BeanItemContainer<BasicEvent> container = - new BeanItemContainer<BasicEvent>(BasicEvent.class); - -// Create a meeting in the container -container.addBean(new BasicEvent("The Event", "Single Event", - new GregorianCalendar(2012,1,14,12,00).getTime(), - new GregorianCalendar(2012,1,14,14,00).getTime())); - -// The container must be ordered by the start time. You -// have to sort the BIC every time after you have added -// or modified events. -container.sort(new Object[]{"start"}, new boolean[]{true}); - -calendar.setContainerDataSource(container, "caption", - "description", "start", "end", "styleName"); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#calendar.beanitemcontainer[on-line example, window="_blank"]. - -The container must either use the default property IDs for event data, as -defined in the [interfacename]#CalendarEvent# interface, or provide them as -parameters for the [methodname]#setContainerDataSource()# method, as we did in -the example above. - -[[components.calendar.container.sorting]] -=== Keeping the Container Ordered - -The events in the container __must__ be kept ordered by their start date/time. -Failing to do so may and will result in the events not showing in the calendar -properly. - -Ordering depends on the container. With some containers, such as -[classname]#BeanItemContainer#, you have to sort the container explicitly every -time after you have added or modified events, usually with the -[methodname]#sort()# method, as we did in the example above. Some container, -such as [classname]#JPAContainer#, keep the in container automatically order if -you provide a sorting rule. - -For example, you could order a [classname]#JPAContainer# by the following rule, -assuming that the start date/time is held in the [literal]#++startDate++# -property: - - -[source, java] ----- -// The container must be ordered by start date. For JPAContainer -// we can just set up sorting once and it will stay ordered. -container.sort(new String[]{"startDate"}, new boolean[]{true}); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#calendar.jpacontainer[on-line example, window="_blank"]. - - -ifdef::web[] -[[components.calendar.container.customization]] -=== Delegation of Event Management - -Setting a container as the calendar data source with -[methodname]#setContainerDataSource()# automatically switches to -[classname]#ContainerEventProvider#. You can manipulate the event data through -the API in [classname]#Calendar# and the user can move and resize event through -the user interface. The event provider delegates all such calendar operations to -the container. - -If you add events through the [classname]#Calendar# API, notice that you may be -unable to create events of the type held in the container or adding them -requires some container-specific operations. In such case, you may need to -customize the [methodname]#addEvent()# method. - -For example, [classname]#JPAContainer# requires adding new items with -[methodname]#addEntity()#. You could first add the entity to the container or -entity manager directly and then pass it to the [methodname]#addEvent()#. That -does not, however, work if the entity class does not implement -[interfacename]#CalendarEvent#. This is actually the case always if the property -names differ from the ones defined in the interface. You could handle creating -the underlying entity objects in the [methodname]#addEvent()# as follows: - - -[source, java] ----- -// Create a JPAContainer -final JPAContainer<MyCalendarEvent> container = - JPAContainerFactory.make(MyCalendarEvent.class, - "book-examples"); - -// Customize the event provider for adding events -// as entities -ContainerEventProvider cep = - new ContainerEventProvider(container) { - @Override - public void addEvent(CalendarEvent event) { - MyCalendarEvent entity = new MyCalendarEvent( - event.getCaption(), event.getDescription(), - event.getStart(), event.getEnd(), - event.getStyleName()); - container.addEntity(entity); - } -} - -// Set the container as the data source -calendar.setEventProvider(cep); - -// Now we can add events to the database through the calendar -BasicEvent event = new BasicEvent("The Event", "Single Event", - new GregorianCalendar(2012,1,15,12,00).getTime(), - new GregorianCalendar(2012,1,15,14,00).getTime()); -calendar.addEvent(event); ----- - -endif::web[] - - -ifdef::web[] -[[components.calendar.eventprovider]] -== Implementing an Event Provider - -If the two simple ways of storing and managing events for a calendar are not -enough, you may need to implement a custom event provider. It is the most -flexible way of providing events. You need to attach the event provider to the -[classname]#Calendar# using the [methodname]#setEventProvider()# method. - -Event queries are done by asking the event provider for all the events between -two given dates. The range of these dates is guaranteed to be at least as long -as the start and end dates set for the component. The component can, however, -ask for a longer range to ensure correct rendering. In particular, all start -dates are expanded to the start of the day, and all end dates are expanded to -the end of the day. - -[[components.calendar.eventprovider.customevents]] -=== Custom Events - -An event provider could use the built-in [classname]#BasicEvent#, but it is -usually more proper to define a custom event type that is bound directly to the -data source. Custom events may be useful for some other purposes as well, such -as when you need to add extra information to an event or customize how it is -acquired. - -Custom events must implement the [interfacename]#CalendarEvent# interface or -extend an existing event class. The built-in [classname]#BasicEvent# class -should serve as a good example of implementing simple events. It keeps the data -in member variables. - - -[source, java] ----- -public class BasicEvent - implements CalendarEventEditor, EventChangeNotifier { - ... - - public String getCaption() { - return caption; - } - - public String getDescription() { - return description; - } - - public Date getEnd() { - return end; - } - - public Date getStart() { - return start; - } - - public String getStyleName() { - return styleName; - } - - public boolean isAllDay() { - return isAllDay; - } - - public void setCaption(String caption) { - this.caption = caption; - fireEventChange(); - } - - public void setDescription(String description) { - this.description = description; - fireEventChange(); - } - - public void setEnd(Date end) { - this.end = end; - fireEventChange(); - } - - public void setStart(Date start) { - this.start = start; - fireEventChange(); - } - - public void setStyleName(String styleName) { - this.styleName = styleName; - fireEventChange(); - } - - public void setAllDay(boolean isAllDay) { - this.isAllDay = isAllDay; - fireEventChange(); - } - - public void addEventChangeListener( - EventChangeListener listener) { - ... - } - - public void removeListener(EventChangeListener listener) { - ... - } - - protected void fireEventChange() {...} -} ----- - -You may have noticed that there was some additional code in the -[classname]#BasicEvent# that was not in the [interfacename]#CalendarEvent# -interface. Namely [classname]#BasicEvent# also implements two additional -interfaces: - -[interfacename]#CalendarEditor#:: This interface defines setters for all the fields, and is required for some of -the default handlers to work. - -[interfacename]#EventChangeNotifier#:: This interface adds the possibility to listen for changes in the event, and -enables the [classname]#Calendar# to render the changes immediately. - - - -The start time and end time are mandatory, but caption, description, and style -name are not. The style name is used as a part of the CSS class name for the -HTML DOM element of the event. - -In addition to the basic event interfaces, you can enhance the functionality of -your event and event provider classes by using the [classname]#EventChange# and -[classname]#EventSetChange# events. They let the [classname]#Calendar# component -to know about changes in events and update itself accordingly. The -[classname]#BasicEvent# and [classname]#BasicEventProvider# examples given -earlier include a simple implementation of these interfaces. - - -[[components.calendar.eventprovider.eventprovider]] -=== Implementing the Event Provider - -An event provider needs to implement the [interfacename]#CalendarEventProvider# -interface. It has only one method to be implemented. Whenever the calendar is -painted, [methodname]#getEvents(Date, Date)# method is called and it must return -a list of events between the given start and end time. - -The following example implementation returns only one example event. The event -starts from the current time and is five hours long. - - -[source, java] ----- -public class MyEventProvider implements CalendarEventProvider{ - public List<Event> getEvents(Date startDate, Date endDate){ - List<Event> events = new ArrayList<Event>(); - GregorianCalendar cal = new GregorianCalendar(); - cal.setTime(new Date()); - - Date start = cal.getTime(); - cal.add(GregorianCalendar.HOUR, 5); - Date end = cal.getTime(); - BasicEvent event = new BasicEvent(); - event.setCaption("My Event"); - event.setDescription("My Event Description"); - event.setStart(start); - event.setEnd(end); - events.add(event); - - return events; - } -} ----- - -It is important to notice that the [classname]#Calendar# may query for dates -beyond the range defined by start date and end date. Particularly, it may expand -the date range to make sure the user interface is rendered correctly. - - -endif::web[] - -ifdef::web[] -[[components.calendar.appearance]] -== Styling a Calendar - -Configuring the appearance of the Vaadin Calendar component is one of the basic -tasks. At the least, you need to consider its sizing in your user interface. You -also quite probably want to use some color or colors for events. - -[[components.calendar.appearance.sizing]] -=== Sizing - -The Calendar supports component sizing as usual for defined (fixed or relative) -sizes. When using an undefined size for the calendar, all the sizes come from -CSS. In addition, when the height is undefined, a scrollbar is displayed in the -weekly view to better fit the cells to the user interface. - -Below is a list of style rules that define the size of a Calendar with undefined -size (these are the defaults): - - -[source, css] ----- -.v-calendar-month-sizedheight .v-calendar-month-day { - height: 100px; -} - -.v-calendar-month-sizedwidth .v-calendar-month-day { - width: 100px; -} - -.v-calendar-header-month-Hsized .v-calendar-header-day { - width: 101px; -} - -/* for IE */ -.v-ie6 .v-calendar-header-month-Hsized .v-calendar-header-day { - width: 104px; -} - -/* for others */ -.v-calendar-header-month-Hsized td:first-child { - padding-left: 21px; -} - -.v-calendar-header-day-Hsized { - width: 200px; -} - -.v-calendar-week-numbers-Vsized .v-calendar-week-number { - height: 100px; - line-height: 100px; -} - -.v-calendar-week-wrapper-Vsized { - height: 400px; - overflow-x: hidden !important; -} - -.v-calendar-times-Vsized .v-calendar-time { - height: 38px; -} - -.v-calendar-times-Hsized .v-calendar-time { - width: 42px; -} - -.v-calendar-day-times-Vsized .v-slot,.v-calendar-day-times-Vsized .v-slot-even { - height: 18px; -} - -.v-calendar-day-times-Hsized, .v-calendar-day-times-Hsized .v-slot,.v-calendar-day-times-Hsized .v-slot-even { - width: 200px; -} ----- - - -[[components.calendar.appearance.event-style]] -=== Event Style - -Events can be styled with CSS by setting them a __style name suffix__. The -suffix is retrieved with the [methodname]#getStyleName()# method in -[interfacename]#CalendarEvent#. If you use [classname]#BasicEvent# events, you -can set the suffix with [methodname]#setStyleName()#. - - -[source, java] ----- -BasicEvent event = new BasicEvent("Wednesday Wonder", ... ); -event.setStyleName("mycolor"); -calendar.addEvent(event); ----- - -Suffix [literal]#++mycolor++# would create -[literal]#++v-calendar-event-mycolor++# class for regular events and -[literal]#++v-calendar-event-mycolor-add-day++# for all-day events. You could -style the events with the following rules: - - -[source, css] ----- -.v-calendar .v-calendar-event-mycolor {} -.v-calendar .v-calendar-event-mycolor-all-day {} -.v-calendar .v-calendar-event-mycolor .v-calendar-event-caption {} -.v-calendar .v-calendar-event-mycolor .v-calendar-event-content {} ----- - - -endif::web[] - -ifdef::web[] -[[components.calendar.visible-hours-days]] -== Visible Hours and Days - -As we saw in <<components.calendar.daterange>>, you can set the range of dates -that are shown by the Calendar. But what if you wanted to show the entire month -but hide the weekends? Or show only hours from 8 to 16 in the weekly view? The -[methodname]#setVisibleDays()# and [methodname]#setVisibleHours()# methods allow -you to do that. - - -[source, java] ----- -calendar.setVisibleDays(1,5); // Monday to Friday -calendar.setVisibleHours(0,15); // Midnight until 4 pm ----- - -After the above settings, only weekdays from Monday to Friday would be shown. -And when the calendar is in the weekly view, only the time range from 00:00 to -16:00 would be shown. - -Note that the excluded times are never shown so you should take care when -setting the date range. If the date range contains only dates / times that are -excluded, nothing will be displayed. Also note that even if a date is not -rendered because these settings, the event provider may still be queried for -events for that date. - -endif::web[] - -ifdef::web[] -[[components.calendar.drag-and-drop]] -== Drag and Drop - -Vaadin Calendar can act as a drop target for drag and drop, described in -<<dummy/../../../framework/advanced/advanced-dragndrop#advanced.dragndrop,"Drag -and Drop">>. With the functionality, the user could drag events, for example, -from a table to a calendar. - -To support dropping, a [classname]#Calendar# must have a drop handler. When the -drop handler is set, the days in the monthly view and the time slots in the -weekly view can receive drops. Other locations, such as day names in the weekly -view, can not currently receive drops. - -Calendar uses its own implementation of [interfacename]#TargetDetails#: -[classname]#CalendarTargetdetails#. It holds information about the the drop -location, which in the context of [classname]#Calendar# means the date and time. -The drop target location can be retrieved via the [methodname]#getDropTime()# -method. If the drop is done in the monthly view, the returned date does not have -exact time information. If the drop happened in the weekly view, the returned -date also contains the start time of the slot. - -Below is a short example of creating a drop handler and using the drop -information to create a new event: - - -[source, java] ----- -private Calendar createDDCalendar() { - Calendar calendar = new Calendar(); - calendar.setDropHandler(new DropHandler() { - public void drop(DragAndDropEvent event) { - CalendarTargetDetails details = - (CalendarTargetDetails) event.getTargetDetails(); - - TableTransferable transferable = - (TableTransferable) event.getTransferable(); - - createEvent(details, transferable); - removeTableRow(transferable); - } - - public AcceptCriterion getAcceptCriterion() { - return AcceptAll.get(); - } - - }); - - return calendar; -} - - -protected void createEvent(CalendarTargetDetails details, - TableTransferable transferable) { - Date dropTime = details.getDropTime(); - java.util.Calendar timeCalendar = details.getTargetCalendar() - .getInternalCalendar(); - timeCalendar.setTime(dropTime); - timeCalendar.add(java.util.Calendar.MINUTE, 120); - Date endTime = timeCalendar.getTime(); - - Item draggedItem = transferable.getSourceComponent(). - getItem(transferable.getItemId()); - - String eventType = (String)draggedItem. - getItemProperty("type").getValue(); - - String eventDescription = "Attending: " - + getParticipantString( - (String[]) draggedItem. - getItemProperty("participants").getValue()); - - BasicEvent newEvent = new BasicEvent(); - newEvent.setAllDay(!details.hasDropTime()); - newEvent.setCaption(eventType); - newEvent.setDescription(eventDescription); - newEvent.setStart(dropTime); - newEvent.setEnd(endTime); - - BasicEventProvider ep = (BasicEventProvider) details - .getTargetCalendar().getEventProvider(); - ep.addEvent(newEvent); -} ----- - -endif::web[] - -ifdef::web[] -[[components.calendar.contextmenu]] -== Using the Context Menu - -Vaadin Calendar allows the use of context menu (mouse right-click) to manage -events. As in other context menus in Vaadin, the menu items are handled in -Vaadin as __actions__ by an __action handler__. To enable a context menu, you -have to implement a Vaadin [interfacename]#Action.Handler# and add it to the -calendar with [methodname]#addActionHandler()#. - -An action handler must implement two methods: [methodname]#getActions()# and -[methodname]#handleAction()#. The [methodname]#getActions()# is called for each -day displayed in the calendar view. It should return a list of allowed actions -for that day, that is, the items of the context menu. The [parameter]#target# -parameter is the context of the click - a [classname]#CalendarDateRange# that -spans over the day. The [parameter]#sender# is the [classname]#Calendar# object. - -The [methodname]#handleActions()# receives the target context in the -[parameter]#target#. If the context menu was opened on an event, the target is -the [interfacename]#Event# object, otherwise it is a -[classname]#CalendarDateRange#. - -endif::web[] - -ifdef::web[] -[[components.calendar.localization]] -== Localization and Formatting - -[[components.calendar.localization.locale]] -=== Setting the Locale and Time Zone - -Month and weekday names are shown in the language of the locale setting of the -[classname]#Calendar#. The translations are acquired from the standard Java -locale data. By default, [classname]#Calendar# uses the system default locale -for its internal calendar, but you can change it with -[methodname]#setLocale(Locale locale)#. Setting the locale will update also -other location specific date and time settings, such as the first day of the -week, time zone, and time format. However, time zone and time format can be -overridden by settings in the [classname]#Calendar#. - -For example, the following would set the language to US English: - - -[source, java] ----- -cal.setLocale(Locale.US); ----- - -The locale defines the default time zone. You can change it with the -[methodname]#setTimeZone()# method, which takes a -[classname]#java.util.TimeZone# object as its parameter. Setting timezone to -null will reset timezone to the locale default. - -For example, the following would set the Finnish time zone, which is EET - - -[source, java] ----- -cal.setTimeZone(TimeZone.getTimeZone("Europe/Helsinki")); ----- - - -[[components.calendar.localization.datecaption]] -=== Time and Date Caption Format - -The time may be shown either in 24 or 12 hour format. The default format is -defined by the locale, but you can change it with the -[methodname]#setTimeFormat()# method. Giving a [literal]#++null++# setting will -reset the time format to the locale default. - - -[source, java] ----- -cal.setTimeFormat(TimeFormat.Format12H); ----- - -You can change the format of the date captions in the week view with the -[methodname]#setWeeklyCaptionFormat(String dateFormatPattern)# method. The date -format pattern should follow the format of the standard Java -[classname]#java.text.SimpleDateFormat# class. - -For example: - - -[source, java] ----- -cal.setWeeklyCaptionFormat("dd-MM-yyyy"); ----- - - -endif::web[] - -ifdef::web[] -[[components.calendar.customizing]] -== Customizing the Calendar - -In this section, we give a tutorial for how to make various basic customizations -of the Vaadin Calendar. The event provider and styling was described earlier, so -now we concentrate on other features of the Calendar API. - -[[components.calendar.customizing.overview]] -=== Overview of Handlers - -Most of the handlers related to calendar events have sensible default handlers. -These are found in the [package]#com.vaadin.ui.handler# package. The default -handlers and their functionalities are described below. - -* [classname]#BasicBackwardHandler#. Handles clicking the back-button of the weekly view so that the viewed month is changed to the previous one. -* [classname]#BasicForwardHandler#. Handles clicking the forward-button of the weekly view so that the viewed month is changed to the next one. -* [classname]#BasicWeekClickHandler#. Handles clicking the week numbers int the monthly view so that the viewable date range is changed to the clicked week. -* [classname]#BasicDateClickHandler#. Handles clicking the dates on both the monthly view and the weekly view. Changes the viewable date range so that only the clicked day is visible. -* [classname]#BasicEventMoveHandler#. Handles moving the events in both monthly view and the weekly view. Events can be moved and their start and end dates are changed correctly, but only if the event implements [classname]#CalendarEventEditor# (implemented by [classname]#BasicEvent#). -* [classname]#BasicEventResizeHandler#. Handles resizing the events in the weekly view. Events can be resized and their start and end dates are changed correctly, but only if the event implements [classname]#CalendarEventEditor# (implemented by the [classname]#BasicEvent#). - -All of these handlers are automatically set when creating a new -[classname]#Calendar#. If you wish to disable some of the default functionality, -you can simply set the corresponding handler to [literal]#++null++#. This will -prevent the functionality from ever appearing on the user interface. For -example, if you set the [classname]#EventMoveHandler# to [literal]#++null++#, -the user will be unable to move events in the browser. - - -[[components.calendar.customizing.creating]] -=== Creating a Calendar - -Let us first create a new [classname]#Calendar# instance. Here we use our own -event provider, the [classname]#MyEventProvider# described in -<<components.calendar.eventprovider.eventprovider>>. - - -[source, java] ----- -Calendar cal = new Calendar(new MyEventProvider()); ----- - -This initializes the Calendar. To customize the viewable date range, we must set -a start and end date to it. - -There is only one visible event in the timeline, starting from the current time. -That is what our event provider passes to the client.//TODO See the figure -3. - -It would be nice to also be able to control the navigation forward and backward. -The default navigation is provided by the default handlers, but perhaps we want -to restrict the users so they can only navigate dates in the current year. Maybe -we also want to pose some other restrictions to the clicking week numbers and -dates. - -These restrictions and other custom logic can be defined with custom handlers. -You can find the handlers in the [package]#com.vaadin.addon.calendar.ui.handler# -package and they can be easily extended. Note that if you don not want to extend -the default handlers, you are free to implement your own. The interfaces are -described in [interfacename]#CalendarComponentEvents#. - - -endif::web[] - -[[components.calendar.navigation]] -== Backward and Forward Navigation - -Vaadin Calendar has only limited built-in navigation support. The weekly view -has navigation buttons in the top left and top right -corners.//// -TODO See the figure -4. -//// - -You can handle backward and forward navigation with a -[interfacename]#BackwardListener# and [interfacename]#ForwardListener#. - - -[source, java] ----- -cal.setHandler(new BasicBackwardHandler() { - protected void setDates(BackwardEvent event, - Date start, Date end) { - - java.util.Calendar calendar = event.getComponent() - .getInternalCalendar(); - if (isThisYear(calendar, end) - && isThisYear(calendar, start)) { - super.setDates(event, start, end); - } - }}); ----- - -The forward navigation handler can be implemented in the same way. The example -handler restricts the dates to the current year. - - -ifdef::web[] -[[components.calendar.dateclick]] -== Date Click Handling - -By default, clicking a date either in month or week view switches to single-day -view, while clicking on the date header in the day view has no effect. The date -click event is handled by a [interfacename]#DateClickHandler#. - -The following example handles click events on the date header in the day view to -zoom out to the week view. For other clicks it applies the default behavior; in -the week view clicking on a day switches to the day view. - - -[source, java] ----- -calendar.setHandler(new BasicDateClickHandler() { - public void dateClick(DateClickEvent event) { - Calendar cal = event.getComponent(); - - // Check if the current range is already one day long - long currentCalDateRange = cal.getEndDate().getTime() - - cal.getStartDate().getTime(); - - // From one-day view, zoom out to week view - if (currentCalDateRange <= DateConstants.DAYINMILLIS) { - // Change the date range to the current week - GregorianCalendar weekstart = new GregorianCalendar(); - GregorianCalendar weekend = new GregorianCalendar(); - weekstart.setTime(event.getDate()); - weekend.setTime(event.getDate()); - weekstart.setFirstDayOfWeek(java.util.Calendar.SUNDAY); - weekstart.set(java.util.Calendar.HOUR_OF_DAY, 0); - weekstart.set(java.util.Calendar.DAY_OF_WEEK, - java.util.Calendar.SUNDAY); - weekend.set(java.util.Calendar.HOUR_OF_DAY, 23); - weekend.set(java.util.Calendar.DAY_OF_WEEK, - java.util.Calendar.SATURDAY); - cal.setStartDate(weekstart.getTime()); - cal.setEndDate(weekend.getTime()); - - Notification.show("Custom zoom to week"); - } else { - // Default behavior, change date range to one day - super.dateClick(event); - } - } - }); ----- - -endif::web[] - -ifdef::web[] -[[components.calendar.weekclick]] -== Handling Week Clicks - -The monthly view displays week numbers for each week row on the left side of the -date grid. The week number are clickable and you can handle the click events by -setting a [interfacename]#WeekClickHandler# for the [classname]#Calendar# -object. The default handler changes the date range to be the clicked week. - -In the following example, we add a week click handler that changes the date -range of the calendar to one week only if the start and end dates of the week -are in the current month. - - -[source, java] ----- -cal.setHandler(new BasicWeekClickHandler() { - protected void setDates(WeekClick event, - Date start, Date end) { - java.util.Calendar calendar = event.getComponent() - .getInternalCalendar(); - if (isThisMonth(calendar, start) - && isThisMonth(calendar, end)) { - super.setDates(event, start, end); - } - } -}); ----- - -endif::web[] - -ifdef::web[] -[[components.calendar.eventclick]] -== Handling Event Clicks - -The calendar events in all views are are clickable. There is no default handler. -Just like the date and week click handlers, event click handling is enabled by -setting an [interfacename]#EventClickHandler# for the [classname]#Calendar# -object. - -You can get hold of the clicked event by the [methodname]#getCalendarEvent()# -method in the [classname]#EventClick# object passed to the handler, as shown in -the following example. - - -[source, java] ----- -cal.setHandler(new EventClickHandler() { - public void eventClick(EventClick event) { - BasicEvent e = (BasicEvent) event.getCalendarEvent(); - - // Do something with it - new Notification("Event clicked: " + e.getCaption(), - e.getDescription()).show(Page.getCurrent()); - } -}); ----- - -endif::web[] - -ifdef::web[] -[[components.calendar.eventdrag]] -== Event Dragging - -The user can drag an event to change its position in time. The default handler -sets the start and end time of the event accordingly. You can do many things -with a custom move handler, such as restrict moving events. - -In the following example, we add a [interfacename]#EventMoveHandler# to a -[classname]#Calendar#. The event handler updates the new position to the -datasource, but only if the new dates are in the current month. This requires -making some changes to the event provider class. - - -[source, java] ----- -cal.setHandler(new BasicEventMoveHandler() { - private java.util.Calendar javaCalendar; - - public void eventMove(MoveEvent event) { - javaCalendar = event.getComponent().getInternalCalendar(); - super.eventMove(event); - } - - protected void setDates(CalendarEventEditor event, - Date start, Date end) { - if (isThisMonth(javaCalendar, start) - && isThisMonth(javaCalendar, end)) { - super.setDates(event, start, end); - } - } -}); ----- - -For the above example to work, the example event provider presented earlier -needs to be changed slightly so that it doesn't always create a new event when -[methodname]#getEvents()# is called. - - -[source, java] ----- -public static class MyEventProvider - implements CalendarEventProvider { - private List<CalendarEvent> events = - new ArrayList<CalendarEvent>(); - - public MyEventProvider() { - events = new ArrayList<CalendarEvent>(); - GregorianCalendar cal = new GregorianCalendar(); - cal.setTime(new Date()); - - Date start = cal.getTime(); - cal.add(GregorianCalendar.HOUR, 5); - Date end = cal.getTime(); - BasicEvent event = new BasicEvent(); - event.setCaption("My Event"); - event.setDescription("My Event Description"); - event.setStart(start); - event.setEnd(end); - events.add(event); - } - - public void addEvent(CalendarEvent BasicEvent) { - events.add(BasicEvent); - } - - public List<CalendarEvent> getEvents(Date startDate, - Date endDate) { - return events; - } -} ----- - -After these changes, the user can move events around as earlier, but dropping an -event, the start and end dates are checked by the server. Note that as the -server-side must move the event in order for it to render to the place it was -dropped. The server can also reject moves by not doing anything when the event -is received. - -endif::web[] - -ifdef::web[] -[[components.calendar.dragselection]] -== Handling Drag Selection - -Drag selection works both in the monthly and weekly views. To listen for drag -selection, you can add a [interfacename]#RangeSelectListener# to the -[classname]#Calendar#. There is no default handler for range select. - -In the code example below, we create an new event when any date range is -selected. Drag selection opens a window where the user is asked for a caption -for the new event. After confirming, the new event is be passed to the event -provider and calendar is updated. Note that as our example event provider and -event classes do not implement the event change interface, we must refresh the -[classname]#Calendar# manually after changing the events. - - -[source, java] ----- -cal.setHandler(new RangeSelectHandler() { - public void rangeSelect(RangeSelectEvent event) { - BasicEvent calendarEvent = new BasicEvent(); - calendarEvent.setStart(event.getStart()); - calendarEvent.setEnd(event.getEnd()); - - // Create popup window and add a form in it. - VerticalLayout layout = new VerticalLayout(); - layout.setMargin(true); - layout.setSpacing(true); - - final Window w = new Window(null, layout); - ... - - // Wrap the calendar event to a BeanItem - // and pass it to the form - final BeanItem<CalendarEvent> item = - new BeanItem<CalendarEvent>(myEvent); - - final Form form = new Form(); - form.setItemDataSource(item); - ... - - layout.addComponent(form); - - HorizontalLayout buttons = new HorizontalLayout(); - buttons.setSpacing(true); - buttons.addComponent(new Button("OK", new ClickListener() { - - public void buttonClick(ClickEvent event) { - form.commit(); - - // Update event provider's data source - provider.addEvent(item.getBean()); - - UI.getCurrent().removeWindow(w); - } - })); - - ... - } -}); ----- - -endif::web[] - -ifdef::web[] -[[components.calendar.eventresizing]] -== Resizing Events - -The user can resize an event by dragging from both ends to change its start or -end time. This offers a convenient way to change event times without the need to -type anything. The default resize handler sets the start and end time of the -event according to the resize. - -In the example below, we set a custom handler for resize events. The handler -prevents any event to be resized over 12 hours in length. Note that this does -not prevent the user from resizing an event over 12 hours in the client. The -resize will just be corrected by the server. - - -[source, java] ----- -cal.setHandler(new BasicEventResizeHandler() { - private static final long twelveHoursInMs = 12*60*60*1000; - - protected void setDates(CalendarEventEditor event, - Date start, Date end) { - long eventLength = end.getTime() - start.getTime(); - if (eventLength <= twelveHoursInMs) { - super.setDates(event, start, end); - } - } -}); ----- - -endif::web[] - - - diff --git a/documentation/components/components-checkbox.asciidoc b/documentation/components/components-checkbox.asciidoc deleted file mode 100644 index f03aae03c5..0000000000 --- a/documentation/components/components-checkbox.asciidoc +++ /dev/null @@ -1,67 +0,0 @@ ---- -title: CheckBox -order: 15 -layout: page ---- - -[[components.checkbox]] -= [classname]#CheckBox# - -[classname]#CheckBox# is a two-state selection component that can be either -checked or unchecked. The caption of the check box will be placed right of the -actual check box. Vaadin provides two ways to create check boxes: individual -check boxes with the [classname]#CheckBox# component described in this section -and check box groups with the [classname]#OptionGroup# component in multiple -selection mode, as described in -<<dummy/../../../framework/components/components-optiongroup#components.optiongroup,"OptionGroup">>. - -Clicking on a check box will change its state. The state is a -[classname]#Boolean# property that you can set with the [methodname]#setValue()# -method and obtain with the [methodname]#getValue()# method of the -[classname]#Property# interface. Changing the value of a check box will cause a -[classname]#ValueChangeEvent#, which can be handled by a -[classname]#ValueChangeListener#. - - -[source, java] ----- -CheckBox checkbox1 = new CheckBox("Box with no Check"); -CheckBox checkbox2 = new CheckBox("Box with a Check"); - -checkbox2.setValue(true); - -checkbox1.addValueChangeListener(event -> // Java 8 - checkbox2.setValue(! checkbox1.getValue())); - -checkbox2.addValueChangeListener(event -> // Java 8 - checkbox1.setValue(! checkbox2.getValue())); ----- - -The result is shown in <<figure.components.checkbox.basic>>. - -[[figure.components.checkbox.basic]] -.An Example of a Check Box -image::img/checkbox-example1.png[] - -For an example on the use of check boxes in a table, see -<<dummy/../../../framework/components/components-table#components.table,"Table">>. - -== CSS Style Rules - - -[source, css] ----- -.v-checkbox { } - .v-checkbox > input { } - .v-checkbox > label { } ----- - -The top-level element of a [classname]#CheckBox# has the -[literal]#++v-checkbox++# style. It contains two sub-elements: the actual check -box [literal]#++input++# element and the [literal]#++label++# element. If you -want to have the label on the left, you can change the positions with " -[literal]#++direction: rtl++#" for the top element. - - - - diff --git a/documentation/components/components-combobox.asciidoc b/documentation/components/components-combobox.asciidoc deleted file mode 100644 index 189933ee5e..0000000000 --- a/documentation/components/components-combobox.asciidoc +++ /dev/null @@ -1,115 +0,0 @@ ---- -title: ComboBox -order: 16 -layout: page ---- - -[[components.combobox]] -= [classname]#ComboBox# - -[classname]#ComboBox# is a selection component allows selecting an item from a -drop-down list. The component also has a text field area, which allows entering -search text by which the items shown in the drop-down list are filtered. Common -selection component features are described in -<<dummy/../../../framework/components/components-selection#components.selection,"Selection -Components">>. - -.The [classname]#ComboBox# Component -image::img/combobox-basic.png[] - -[classname]#ComboBox# supports adding new items when the user presses -Enter -ifdef::web[] -, as described in -<<dummy/../../../framework/components/components-selection#components.selection.newitems,"Allowing -Adding New -Items">>. -endif::web[] - -[[components.combobox.filtering]] -== Filtered Selection - -[classname]#ComboBox# allows filtering the items available for selection in the -drop-down list by the text entered in the input box. - -[[figure.components.combobox.filter]] -.Filtered Selection in [classname]#ComboBox# -image::img/combobox-filtering.png[] - -Pressing Enter will complete the item in the input box. Pressing Up- and -Down-arrows can be used for selecting an item from the drop-down list. The -drop-down list is paged and clicking on the scroll buttons will change to the -next or previous page. The list selection can also be done with the arrow keys -on the keyboard. The shown items are loaded from the server as needed, so the -number of items held in the component can be quite large. The number of matching -items is displayed by the drop-down list. - -Filtering is enabled by setting a __filtering mode__ with -[methodname]#setFilteringMode()#. - - -[source, java] ----- -cb.setFilteringMode(FilteringMode.CONTAINS); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.select.combobox.filtering[on-line example, window="_blank"]. - -The modes defined in the [classname]#FilteringMode# enum are as follows: - -[parameter]#CONTAINS#:: Matches any item that contains the string given in the text field part of the -component. - -[parameter]#STARTSWITH#:: Matches only items that begin with the given string. - -[parameter]#OFF#(default):: Filtering is by default off and all items are shown all the time. - - - -The above example uses the containment filter that matches to all items -containing the input string. As shown in <<figure.components.combobox.filter>> -below, when we type some text in the input area, the drop-down list will show -all the matching items. - - -[[components.combobox.css]] -== CSS Style Rules - - -[source, css] ----- -.v-filterselect { } - .v-filterselect-input { } - .v-filterselect-button { } - -// Under v-overlay-container -.v-filterselect-suggestpopup { } - .popupContent { } - .v-filterselect-prevpage, - .v-filterselect-prevpage-off { } - .v-filterselect-suggestmenu { } - .gwt-MenuItem { } - .v-filterselect-nextpage, - .v-filterselect-nextpage-off { } - .v-filterselect-status { } ----- - -In its default state, only the input field of the [classname]#ComboBox# -component is visible. The entire component is enclosed in -[literal]#++v-filterselect++# style (a legacy remnant), the input field has -[literal]#++v-filterselect-input++# style and the button in the right end that -opens and closes the drop-down result list has -[literal]#++v-filterselect-button++# style. - -The drop-down result list has an overall -[literal]#++v-filterselect-suggestpopup++# style. It contains the list of -suggestions with [literal]#++v-filterselect-suggestmenu++# style. When there are -more items that fit in the menu, navigation buttons with -[literal]#++v-filterselect-prevpage++# and -[literal]#++v-filterselect-nextpage++# styles are shown. When they are not -shown, the elements have [literal]#++-off++# suffix. The status bar in the -bottom that shows the paging status has [literal]#++v-filterselect-status++# -style. - - - - diff --git a/documentation/components/components-customcomponent.asciidoc b/documentation/components/components-customcomponent.asciidoc deleted file mode 100644 index cce897daa9..0000000000 --- a/documentation/components/components-customcomponent.asciidoc +++ /dev/null @@ -1,87 +0,0 @@ ---- -title: Composition with CustomComponent -order: 31 -layout: page ---- - -[[components.customcomponent]] -= Composition with [classname]#CustomComponent# - -The ease of making new user interface components is one of the core features of -Vaadin. Typically, you simply combine existing built-in components to produce -composite components. In many applications, such composite components make up -the majority of the user interface. - -As described earlier in -<<dummy/../../../framework/application/application-architecture#application.architecture.composition,"Compositing -Components">>, you have two basic ways to create a composite - either by -extending a layout component or the [classname]#CustomComponent#, which -typically wraps around a layout component. The benefit of wrapping a layout -composite in [classname]#CustomComponent# is mainly encapsulation - hiding the -implementation details of the composition. Otherwise, a user of the composite -could rely on implementation details, which would create an unwanted dependency. - -To create a composite, you need to inherit the [classname]#CustomComponent# and -set the __composition root__ component in the constructor. The composition root -is typically a layout component that contains other components. - -For example: - - -[source, java] ----- -class MyComposite extends CustomComponent { - public MyComposite(String message) { - // A layout structure used for composition - Panel panel = new Panel("My Custom Component"); - VerticalLayout panelContent = new VerticalLayout(); - panelContent.setMargin(true); // Very useful - panel.setContent(panelContent); - - // Compose from multiple components - Label label = new Label(message); - label.setSizeUndefined(); // Shrink - panelContent.addComponent(label); - panelContent.addComponent(new Button("Ok")); - - // Set the size as undefined at all levels - panelContent.setSizeUndefined(); - panel.setSizeUndefined(); - setSizeUndefined(); - - // The composition root MUST be set - setCompositionRoot(panel); - } -} ----- - -Take note of the sizing when trying to make a customcomponent that shrinks to -fit the contained components. You have to set the size as undefined at all -levels; the sizing of the composite component and the composition root are -separate. - -You can use the component as follows: - - -[source, java] ----- -MyComposite mycomposite = new MyComposite("Hello"); ----- - -The rendered component is shown in <<figure.components.customcomponent>>. - -[[figure.components.customcomponent]] -.A Custom Composite Component -image::img/customcomponent-example1.png[] - -You can also inherit any other components, such as layouts, to attain similar -composition. ((("Google Web -Toolkit"))) -Even further, you can create entirely new low-level components, by integrating -pure client-side components or by extending the client-side functionality of -built-in components. Development of new components is covered in -<<dummy/../../../framework/gwt/gwt-overview.asciidoc#gwt.overview,"Integrating -with the Server-Side">>. - - - diff --git a/documentation/components/components-customfield.asciidoc b/documentation/components/components-customfield.asciidoc deleted file mode 100644 index f57eb2debf..0000000000 --- a/documentation/components/components-customfield.asciidoc +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Composite Fields with CustomField -order: 32 -layout: page ---- - -[[components.customfield]] -= Composite Fields with [classname]#CustomField# - -The [classname]#CustomField# is a way to create composite components like with -[classname]#CustomComponent#, except that it implements the -[interfacename]#Field# interface and inherit [classname]#AbstractField#, -described in -<<dummy/../../../framework/components/components-fields#components.fields,"Field -Components">>. A field allows editing a property value in the Vaadin data model, -and can be bound to data with field groups, as described in -<<dummy/../../../framework/datamodel/datamodel-itembinding#datamodel.itembinding,"Creating -Forms by Binding Fields to Items">>. The field values are buffered and can be -validated with validators. - -A composite field class must implement the [methodname]#getType()# and -[methodname]#initContent()# methods. The latter should return the content -composite of the field. It is typically a layout component, but can be any -component. - -It is also possible to override [methodname]#validate()#, -[methodname]#setInternalValue()#, [methodname]#commit()#, -[methodname]#setPropertyDataSource#, [methodname]#isEmpty()# and other methods -to implement different functionalities in the field. Methods overriding -[methodname]#setInternalValue()# should call the superclass method. - - - diff --git a/documentation/components/components-datefield.asciidoc b/documentation/components/components-datefield.asciidoc deleted file mode 100644 index 6c4b836e26..0000000000 --- a/documentation/components/components-datefield.asciidoc +++ /dev/null @@ -1,386 +0,0 @@ ---- -title: Date and Time Input with DateField -order: 13 -layout: page ---- - -[[components.datefield]] -= Date and Time Input with [classname]#DateField# - -The [classname]#DateField# component provides the means to display and input -date and time. The field comes in two variations: [classname]#PopupDateField#, -with a numeric input box and a popup calendar view, and -[classname]#InlineDateField#, with the calendar view always visible. The -[classname]#DateField# base class defaults to the popup variation. - -The example below illustrates the use of the [classname]#DateField# baseclass, -which is equivalent to the [classname]#PopupDateField#. We set the initial time -of the date field to current time by using the default constructor of the -[classname]#java.util.Date# class. - - -[source, java] ----- -// Create a DateField with the default style -DateField date = new DateField(); - -// Set the date and time to present -date.setValue(new Date()); ----- - -The result is shown in <<figure.components.datefield.basic>>. - -[[figure.components.datefield.basic]] -.[classname]#DateField# ([classname]#PopupDateField#) for Selecting Date and Time -image::img/datefield-example1.png[] - -[[components.datefield.popupdatefield]] -== [classname]#PopupDateField# - -The [classname]#PopupDateField# provides date input using a text box for the -date and time. As the [classname]#DateField# defaults to this component, the use -is exactly the same as described earlier. Clicking the handle right of the date -opens a popup view for selecting the year, month, and day, as well as time. Also -the Down key opens the popup. Once opened, the user can navigate the calendar -using the cursor keys. - -The date and time selected from the popup are displayed in the text box -according to the default date and time format of the current locale, or as -specified with [methodname]#setDateFormat()#. The same format definitions are -used for parsing user input. - -[[components.datefield.popupdatefield.format]] -=== Date and Time Format - -The date and time are normally displayed according to the default format for the -current locale (see -<<dummy/../../../framework/components/components-features#components.features.locale,"Locale">>). -You can specify a custom format with [methodname]#setDateFormat()#. It takes a -format string that follows the format of the [classname]#SimpleDateFormat# in -Java. - - -[source, java] ----- -// Display only year, month, and day in ISO format -date.setDateFormat("yyyy-MM-dd"); ----- - -The result is shown in <<figure.components.datefield.popupdatefield.format>>. - -[[figure.components.datefield.popupdatefield.format]] -.Custom Date Format for [classname]#PopupDateField# -image::img/datefield-formatting.png[] - -The same format specification is also used for parsing user-input date and time, -as described later. - - -ifdef::web[] -[[components.datefield.popupdatefield.malformed]] -=== Handling Malformed User Input - -A user can easily input a malformed or otherwise invalid date or time. -[classname]#DateField# has two validation layers: first on the client-side and -then on the server-side. - -The validity of the entered date is first validated on the client-side, -immediately when the input box loses focus. If the date format is invalid, the -[literal]#++v-datefield-parseerror++# style is set. Whether this causes a -visible indication of a problem depends on the theme. The built-in -[literal]#++reindeer++# theme does not shown any indication by default, making -server-side handling of the problem more convenient. - - -[source, css] ----- -.mydate.v-datefield-parseerror .v-textfield { - background: pink; -} ----- - -The [methodname]#setLenient(true)# setting enables relaxed interpretation of -dates, so that invalid dates, such as February 30th or March 0th, are wrapped to -the next or previous month, for example. - -The server-side validation phase occurs when the date value is sent to the -server. If the date field is set in immediate state, it occurs immediately after -the field loses focus. Once this is done and if the status is still invalid, an -error indicator is displayed beside the component. Hovering the mouse pointer -over the indicator shows the error message. - -You can handle the errors by overriding the -[methodname]#handleUnparsableDateString()# method. The method gets the user -input as a string parameter and can provide a custom parsing mechanism, as shown -in the following example. - - -[source, java] ----- -// Create a date field with a custom parsing and a -// custom error message for invalid format -PopupDateField date = new PopupDateField("My Date") { - @Override - protected Date handleUnparsableDateString(String dateString) - throws Property.ConversionException { - // Try custom parsing - String fields[] = dateString.split("/"); - if (fields.length >= 3) { - try { - int year = Integer.parseInt(fields[0]); - int month = Integer.parseInt(fields[1])-1; - int day = Integer.parseInt(fields[2]); - GregorianCalendar c = - new GregorianCalendar(year, month, day); - return c.getTime(); - } catch (NumberFormatException e) { - throw new Property. - ConversionException("Not a number"); - } - } - - // Bad date - throw new Property. - ConversionException("Your date needs two slashes"); - } -}; - -// Display only year, month, and day in slash-delimited format -date.setDateFormat("yyyy/MM/dd"); - -// Don't be too tight about the validity of dates -// on the client-side -date.setLenient(true); ----- - -The handler method must either return a parsed [classname]#Date# object or throw -a [classname]#ConversionException#. Returning [parameter]#null# will set the -field value to [parameter]#null# and clear the input box. - -endif::web[] - -ifdef::web[] -[[components.datefield.popupdatefield.error-customization]] -=== Customizing the Error Message - -In addition to customized parsing, overriding the handler method for unparseable -input is useful for internationalization and other customization of the error -message. You can also use it for another way for reporting the errors, as is -done in the example below: - - -[source, java] ----- -// Create a date field with a custom error message for invalid format -PopupDateField date = new PopupDateField("My Date") { - @Override - protected Date handleUnparsableDateString(String dateString) - throws Property.ConversionException { - // Have a notification for the error - Notification.show( - "Your date needs two slashes", - Notification.TYPE_WARNING_MESSAGE); - - // A failure must always also throw an exception - throw new Property.ConversionException("Bad date"); - } -}; ----- - -If the input is invalid, you should always throw the exception; returning a -[parameter]#null# value would make the input field empty, which is probably -undesired. - -endif::web[] - -[[components.datefield.popupdatefield.prompt]] -=== Input Prompt - -Like other fields that have a text box, [classname]#PopupDateField# allows an -input prompt that is visible until the user has input a value. You can set the -prompt with [methodname]#setInputPrompt#. - - -[source, java] ----- -PopupDateField date = new PopupDateField(); - -// Set the prompt -date.setInputPrompt("Select a date"); - -// Set width explicitly to accommodate the prompt -date.setWidth("10em"); ----- - -The date field doesn't automatically scale to accommodate the prompt, so you -need to set it explicitly with [methodname]#setWidth()#. - -The input prompt is not available in the [classname]#DateField# superclass. - - -[[components.datefield.popupdatefield.css]] -=== CSS Style Rules - - -[source, css] ----- -.v-datefield, v-datefield-popupcalendar {} - .v-textfield, v-datefield-textfield {} - .v-datefield-button {} ----- - -The top-level element of [classname]#DateField# and all its variants have -[literal]#++v-datefield++# style. The base class and the -[classname]#PopupDateField# also have the -[literal]#++v-datefield-popupcalendar++# style. - -In addition, the top-level element has a style that indicates the resolution, -with [literal]#++v-datefield-++# basename and an extension, which is one of -[literal]#++full++#, [literal]#++day++#, [literal]#++month++#, or -[literal]#++year++#. The [literal]#++-full++# style is enabled when the -resolution is smaller than a day. These styles are used mainly for controlling -the appearance of the popup calendar. - -The text box has [literal]#++v-textfield++# and -[literal]#++v-datefield-textfield++# styles, and the calendar button -[literal]#++v-datefield-button++#. - -Once opened, the calendar popup has the following styles at the top level: - - -[source, css] ----- -.v-datefield-popup {} - .v-popupcontent {} - .v-datefield-calendarpanel {} ----- - -The top-level element of the floating popup calendar has -[literal]#++.v-datefield-popup++# style. Observe that the popup frame is outside -the HTML structure of the component, hence it is not enclosed in the -[literal]#++v-datefield++# element and does not include any custom styles. -//NOTE: May be changed in -#5752. -The content in the [literal]#++v-datefield-calendarpanel++# is the same as in -[classname]#InlineDateField#, as described in <<components.datefield.calendar>>. - - - -[[components.datefield.calendar]] -== [classname]#InlineDateField# - -The [classname]#InlineDateField# provides a date picker component with a month -view. The user can navigate months and years by clicking the appropriate arrows. -Unlike with the popup variant, the month view is always visible in the inline -field. - - -[source, java] ----- -// Create a DateField with the default style -InlineDateField date = new InlineDateField(); - -// Set the date and time to present -date.setValue(new java.util.Date()); ----- - -The result is shown in <<figure.components.datefield.inlinedatefield>>. - -[[figure.components.datefield.inlinedatefield]] -.Example of the [classname]#InlineDateField# -image::img/datefield-inlinedatefield.png[] - -The user can also navigate the calendar using the cursor keys. - -=== CSS Style Rules - - -[source, css] ----- -.v-datefield {} - .v-datefield-calendarpanel {} - .v-datefield-calendarpanel-header {} - .v-datefield-calendarpanel-prevyear {} - .v-datefield-calendarpanel-prevmonth {} - .v-datefield-calendarpanel-month {} - .v-datefield-calendarpanel-nextmonth {} - .v-datefield-calendarpanel-nextyear {} - .v-datefield-calendarpanel-body {} - .v-datefield-calendarpanel-weekdays, - .v-datefield-calendarpanel-weeknumbers {} - .v-first {} - .v-last {} - .v-datefield-calendarpanel-weeknumber {} - .v-datefield-calendarpanel-day {} - .v-datefield-calendarpanel-time {} - .v-datefield-time {} - .v-select {} - .v-label {} ----- - -The top-level element has the [literal]#++v-datefield++# style. In addition, the -top-level element has a style name that indicates the resolution of the -calendar, with [literal]#++v-datefield-++# basename and an extension, which is -one of [literal]#++full++#, [literal]#++day++#, [literal]#++month++#, or -[literal]#++year++#. The [literal]#++-full++# style is enabled when the -resolution is smaller than a day. - -The [literal]#++v-datefield-calendarpanel-weeknumbers++# and -[literal]#++v-datefield-calendarpanel-weeknumber++# styles are enabled when the -week numbers are enabled. The former controls the appearance of the weekday -header and the latter the actual week numbers. - -The other style names should be self-explanatory. For weekdays, the -[literal]#++v-first++# and [literal]#++v-last++# styles allow making rounded -endings for the weekday bar. - - - -[[components.datefield.resolution]] -== Date and Time Resolution - -In addition to display a calendar with dates, [classname]#DateField# can also -display the time in hours and minutes, or just the month or year. The visibility -of the input components is controlled by __time resolution__, which you can set -with [methodname]#setResolution()#. The method takes as its parameters the -lowest visible component, [parameter]#DateField.Resolution.DAY# for just dates -and [parameter]#DateField.Resolution.MIN# for dates with time in hours and -minutes. Please see the API Reference for the complete list of resolution -parameters. - - -[[components.datefield.locale]] -== DateField Locale - -The date and time are displayed according to the locale of the user, as reported -by the browser. You can set a custom locale with the [methodname]#setLocale()# -method of [classname]#AbstractComponent#, as described in -<<dummy/../../../framework/components/components-features#components.features.locale,"Locale">>. -Only Gregorian calendar is supported. - - -ifdef::web[] -[[components.datefield.weeknumbers]] -== Week Numbers - -You can enable week numbers in a date field with -[methodname]#setShowISOWeekNumbers()#. The numbers are shown in a column on the -left side of the field. - - -[source, java] ----- -df.setShowISOWeekNumbers(true); ----- - -The supported numbering is defined in the ISO 8601 standard. Note that the ISO -standard applies only to calendar locales where the week starts on Monday. This -is not the case in many countries, such as Americas (North and South), many -East-Asian countries, and some African countries, where the week starts on -Sunday, nor in some North African and Middle-Eastern countries, where the week -begins on Saturday. In such locales, the week numbers are not displayed. - -endif::web[] - - - diff --git a/documentation/components/components-embedded.asciidoc b/documentation/components/components-embedded.asciidoc deleted file mode 100644 index bea83971a8..0000000000 --- a/documentation/components/components-embedded.asciidoc +++ /dev/null @@ -1,205 +0,0 @@ ---- -title: Embedded Resources -order: 33 -layout: page ---- - -[[components.embedded]] -= Embedded Resources - -You can embed images in Vaadin UIs with the [classname]#Image# component, Adobe -Flash graphics with [classname]#Flash#, and other web content with -[classname]#BrowserFrame#. There is also a generic [classname]#Embedded# -component for embedding other object types. The embedded content is referenced -as __resources__, as described in -<<dummy/../../../framework/application/application-resources#application.resources,"Images -and Other Resources">>. - -The following example displays an image as a class resource loaded with the -class loader: - - -[source, java] ----- -Image image = new Image("Yes, logo:", - new ClassResource("vaadin-logo.png")); -main.addComponent(image); ----- - -The caption can be given as null to disable it. An empty string displays an -empty caption which takes a bit space. The caption is managed by the containing -layout. - -You can set an altenative text for an embedded resource with -[methodname]#setAlternateText()#, which can be shown if images are disabled in -the browser for some reason. The text can be used for accessibility purposes, -such as for text-to-speech generation. - -[[components.embedded.image]] -== Embedded [classname]#Image# - -The [classname]#Image# component allows embedding an image resource in a Vaadin -UI. - - -[source, java] ----- -// Serve the image from the theme -Resource res = new ThemeResource("img/myimage.png"); - -// Display the image without caption -Image image = new Image(null, res); -layout.addComponent(image); ----- - -The [classname]#Image# component has by default undefined size in both -directions, so it will automatically fit the size of the embedded image. -((("scroll -bars"))) -If you want scrolling with scroll bars, you can put the image inside a -[classname]#Panel# that has a defined size to enable scrolling, as described in -<<dummy/../../../framework/layout/layout-panel#layout.panel.scrolling,"Scrolling -the Panel Content">>. You can also put it inside some other component container -and set the [literal]#++overflow: auto++# CSS property for the container element -in a theme to enable automatic scrollbars. (((overflow CSS -property))) - -[[components.embedded.image.generated]] -=== Generating and Reloading Images - -You can also generate the image content dynamically using a -[classname]#StreamResource#, as described in -<<dummy/../../../framework/application/application-resources#application.resources.stream,"Stream -Resources">>, or with a [classname]#RequestHandler#. - -If the image changes, the browser needs to reload it. Simply updating the stream -resource is not enough. Because of how caching is handled in some browsers, you -can cause a reload easiest by renaming the filename of the resource with a -unique name, such as one including a timestamp. You should set cache time to -zero with [methodname]#setCacheTime()# for the resource object when you create -it.//BUG -#2470. - - -[source, java] ----- -// Create the stream resource with some initial filename -StreamResource imageResource = - new StreamResource(imageSource, "initial-filename.png"); - -// Instruct browser not to cache the image -imageResource.setCacheTime(0); - -// Display the image -Image image = new Image(null, imageResource); ----- - -When refreshing, you also need to call [methodname]#markAsDirty()# for the -[classname]#Image# object. - - -[source, java] ----- -// This needs to be done, but is not sufficient -image.markAsDirty(); - -// Generate a filename with a timestamp -SimpleDateFormat df = new SimpleDateFormat("yyyyMMddHHmmssSSS"); -String filename = "myfilename-" + df.format(new Date()) + ".png"; - -// Replace the filename in the resource -imageResource.setFilename(makeImageFilename()); ----- - - - -[[components.embedded.flash]] -== Adobe [classname]#Flash# Graphics - -The [classname]#Flash# component allows embedding Adobe Flash animations in -Vaadin UIs. - - -[source, java] ----- -Flash flash = new Flash(null, - new ThemeResource("img/vaadin_spin.swf")); -layout.addComponent(flash); ----- - -You can set Flash parameters with [methodname]#setParameter()#, which takes a -parameter's name and value as strings. You can also set the -[parameter]#codeBase#, [parameter]#archive#, and [parameter]#standBy# attributes -for the Flash object element in HTML. - - -[[components.embedded.browserframe]] -== [classname]#BrowserFrame# - -The [classname]#BrowserFrame# allows embedding web content inside an HTML -<iframe> element. You can refer to an external URL with -[classname]#ExternalResource#. - -As the [classname]#BrowserFrame# has undefined size by default, it is critical -that you define a meaningful size for it, either fixed or relative. - - -[source, java] ----- -BrowserFrame browser = new BrowserFrame("Browser", - new ExternalResource("http://demo.vaadin.com/sampler/")); -browser.setWidth("600px"); -browser.setHeight("400px"); -layout.addComponent(browser); ----- - -Notice that web pages can prevent embedding them in an <iframe>. - - -[[components.embedded.embedded]] -== Generic [classname]#Embedded# Objects - -The generic [classname]#Embedded# component allows embedding all sorts of -objects, such as SVG graphics, Java applets, and PDF documents, in addition to -the images, Flash graphics, and browser frames which you can embed with the -specialized components. - -For example, to display a Flash animation: - - -[source, java] ----- -// A resource reference to some object -Resource res = new ThemeResource("img/vaadin_spin.swf"); - -// Display the object -Embedded object = new Embedded("My Object", res); -layout.addComponent(object); ----- - -Or an SVG image: - - -[source, java] ----- -// A resource reference to some object -Resource res = new ThemeResource("img/reindeer.svg"); - -// Display the object -Embedded object = new Embedded("My SVG", res); -object.setMimeType("image/svg+xml"); // Unnecessary -layout.addComponent(object); ----- - -The MIME type of the objects is usually detected automatically from the filename -extension with the [classname]#FileTypeResolver# utility in Vaadin. If not, you -can set it explicitly with [methodname]#setMimeType()#, as was done in the -example above (where it was actually unnecessary). - -Some embeddable object types may require special support in the browser. You -should make sure that there is a proper fallback mechanism if the browser does -not support the embedded type. - - - - diff --git a/documentation/components/components-extensions.asciidoc b/documentation/components/components-extensions.asciidoc deleted file mode 100644 index a84ad92f6e..0000000000 --- a/documentation/components/components-extensions.asciidoc +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Component Extensions -order: 6 -layout: page ---- - -[[components.extensions]] -= Component Extensions - -Components and UIs can have extensions which are attached to the component -dynamically. Especially, many add-ons are extensions. - -How a component is extended depends on the extension. Typically, they have an -[methodname]#extend()# method that takes the component to be extended as the -parameter. - - -[source, java] ----- -TextField tf = new TextField("Hello"); -layout.addComponent(tf); - -// Add a simple extension -new CapsLockWarning().extend(tf); - -// Add an extension that requires some parameters -CSValidator validator = new CSValidator(); -validator.setRegExp("[0-9]*"); -validator.setErrorMessage("Must be a number"); -validator.extend(tf); ----- - -Development of custom extensions is described in -<<dummy/../../../framework/gwt/gwt-extension#gwt.extension,"Component and UI -Extensions">>. - - - diff --git a/documentation/components/components-features.asciidoc b/documentation/components/components-features.asciidoc deleted file mode 100644 index 9374b93bc1..0000000000 --- a/documentation/components/components-features.asciidoc +++ /dev/null @@ -1,757 +0,0 @@ ---- -title: Common Component Features -order: 3 -layout: page ---- - -[[components.features]] -= Common Component Features - -The component base classes and interfaces provide a large number of features. -Let us look at some of the most commonly needed features. Features not -documented here can be found from the Java API Reference. - -The interface defines a number of properties, which you can retrieve or -manipulate with the corresponding setters and getters. - -[[components.features.caption]] -== Caption - -((("caption property"))) -((("Component interface", "caption"))) -A caption is an explanatory textual label accompanying a user interface -component, usually shown above, left of, or inside the component. The contents -of a caption are automatically quoted, so no raw HTML can be rendered in a -caption. - -The caption text can usually be given as the first parameter of a constructor of -a component or with [methodname]#setCaption()#. - - -[source, java] ----- -// New text field with caption "Name" -TextField name = new TextField("Name"); -layout.addComponent(name); ----- - -The caption of a component is, by default, managed and displayed by the layout -component or component container inside which the component is placed. For -example, the [classname]#VerticalLayout# component shows the captions -left-aligned above the contained components, while the [classname]#FormLayout# -component shows the captions on the left side of the vertically laid components, -with the captions and their associated components left-aligned in their own -columns. The [classname]#CustomComponent# does not manage the caption of its -composition root, so if the root component has a caption, it will not be -rendered. - -[[figure.components.features.caption.layoutmanaged]] -.Caption Management by [classname]#VerticalLayout# and [classname]#FormLayout#. -image::img/features-caption-layoutmanaged.png[] - -Some components, such as [classname]#Button# and [classname]#Panel#, manage the -caption themselves and display it inside the component. - -Icon (see <<components.features.icon>>) is closely related to caption and is -usually displayed horizontally before or after it, depending on the component -and the containing layout. Also the required indicator in field components is -usually shown before or after the caption. - -An alternative way to implement a caption is to use another component as the -caption, typically a [classname]#Label#, a [classname]#TextField#, or a -[classname]#Panel#. A [classname]#Label#, for example, allows highlighting a -shortcut key with HTML markup or to bind the caption to a data source. The -[classname]#Panel# provides an easy way to add both a caption and a border -around a component. - -=== CSS Style Rules - - -[source, css] ----- -.v-caption {} - .v-captiontext {} - .v-caption-clearelem {} - .v-required-field-indicator {} ----- - -A caption is be rendered inside an HTML element that has the -[literal]#++v-caption++# CSS style class. The containing layout may enclose a -caption inside other caption-related elements. - -Some layouts put the caption text in a [literal]#++v-captiontext++# element. A -[literal]#++v-caption-clearelem++# is used in some layouts to clear a CSS -[literal]#++float++# property in captions. An optional required indicator in -field components is contained in a separate element with -[literal]#++v-required-field-indicator++# style. - - - -[[components.features.description]] -== Description and Tooltips - -((("description property"))) -((("Component interface", "description"))) -((("tooltips"))) -All components (that inherit [classname]#AbstractComponent#) have a description -separate from their caption. The description is usually shown as a tooltip that -appears when the mouse pointer hovers over the component for a short time. - -You can set the description with [methodname]#setDescription()# and retrieve -with [methodname]#getDescription()#. - - -[source, java] ----- -Button button = new Button("A Button"); -button.setDescription("This is the tooltip"); ----- - -The tooltip is shown in <<figure.components.tooltip.plain>>. - -[[figure.components.tooltip.plain]] -.Component Description as a Tooltip -image::img/tooltip-plain-withpointer-hi.png[] - -A description is rendered as a tooltip in most components. - -When a component error has been set with [methodname]#setComponentError()#, the -error is usually also displayed in the tooltip, below the description. -Components that are in error state will also display the error indicator. See -<<dummy/../../../framework/application/application-errors#application.errors.error-indicator,"Error -Indicator and Message">>. - -The description is actually not plain text, but you can use HTML tags to format -it. Such a rich text description can contain any HTML elements, including -images. - - -[source, java] ----- -button.setDescription( - "<h2><img src=\"../VAADIN/themes/sampler/icons/comment_yellow.gif\"/>"+ - "A richtext tooltip</h2>"+ - "<ul>"+ - " <li>Use rich formatting with HTML</li>"+ - " <li>Include images from themes</li>"+ - " <li>etc.</li>"+ - "</ul>"); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.features.description.richtext[on-line example, window="_blank"]. - -The result is shown in <<figure.components.tooltip.richtext>>. - -[[figure.components.tooltip.richtext]] -.A Rich Text Tooltip -image::img/tooltip-richtext-withpointer-hi.png[] - -Notice that the setter and getter are defined for all fields in the -[classname]#Field# interface, not for all components in the -[classname]#Component# interface. - - -[[components.features.enabled]] -== Enabled - -((("enabled property"))) -((("Component interface", "enabled"))) -The __enabled__ property controls whether the user can actually use the -component. A disabled component is visible, but grayed to indicate the disabled -state. - -Components are always enabled by default. You can disable a component with -[methodname]#setEnabled(false)#. - - -[source, java] ----- -Button enabled = new Button("Enabled"); -enabled.setEnabled(true); // The default -layout.addComponent(enabled); - -Button disabled = new Button("Disabled"); -disabled.setEnabled(false); -layout.addComponent(disabled); ----- - -<<figure.components.features.enabled.simple>> shows the enabled and disabled -buttons. - -[[figure.components.features.enabled.simple]] -.An Enabled and Disabled [classname]#Button# -image::img/features-enabled-simple.png[] - -A disabled component is automatically put in read-only state. No client -interaction with such a component is sent to the server and, as an important -security feature, the server-side components do not receive state updates from -the client in the read-only state. This feature exists in all built-in -components in Vaadin and is automatically handled for all [classname]#Field# -components for the field property value. For custom widgets, you need to make -sure that the read-only state is checked on the server-side for all -safety-critical variables. - -=== CSS Style Rules - -Disabled components have the [literal]#++v-disabled++# CSS style in addition to -the component-specific style. To match a component with both the styles, you -have to join the style class names with a dot as done in the example below. - - -[source, css] ----- -.v-textfield.v-disabled { - border: dotted; -} ----- - -This would make the border of all disabled text fields dotted. - - -//TODO This may change to -$v-button-disabled-opacity -In Valo theme, the opacity of disabled components is specified with the -$v-disabled-opacity parameter - -ifdef::web[] -, as described in -<<dummy/../../../framework/themes/themes-valo#themes.valo.variables,"Common -Settings">> -endif::web[] -. - - -[[components.features.icon]] -== Icon - -((("icon property"))) -((("Component interface", "icon"))) -An icon is an explanatory graphical label accompanying a user interface -component, usually shown above, left of, or inside the component. Icon is -closely related to caption (see <<components.features.caption>>) and is usually -displayed horizontally before or after it, depending on the component and the -containing layout. - -The icon of a component can be set with the [methodname]#setIcon()# method. The -image is provided as a resource, perhaps most typically a -[classname]#ThemeResource#. - - -[source, java] ----- -// Component with an icon from a custom theme -TextField name = new TextField("Name"); -name.setIcon(new ThemeResource("icons/user.png")); -layout.addComponent(name); - -// Component with an icon from another theme ('runo') -Button ok = new Button("OK"); -ok.setIcon(new ThemeResource("../runo/icons/16/ok.png")); -layout.addComponent(ok); ----- - -The icon of a component is, by default, managed and displayed by the layout -component or component container in which the component is placed. For example, -the [classname]#VerticalLayout# component shows the icons left-aligned above the -contained components, while the [classname]#FormLayout# component shows the -icons on the left side of the vertically laid components, with the icons and -their associated components left-aligned in their own columns. The -[classname]#CustomComponent# does not manage the icon of its composition root, -so if the root component has an icon, it will not be rendered. - -[[figure.components.features.icon]] -.Displaying an Icon from a Theme Resource. -image::img/features-icon.png[] - -Some components, such as [classname]#Button# and [classname]#Panel#, manage the -icon themselves and display it inside the component. - -In addition to image resources, you can use __font icons__, which are icons -included in special fonts, but which are handled as special resources. See -<<dummy/../../../framework/themes/themes-fonticon#themes.fonticon,"Font Icons">> -for more details. - -=== CSS Style Rules - -An icon will be rendered inside an HTML element that has the -[literal]#++v-icon++# CSS style class. The containing layout may enclose an icon -and a caption inside elements related to the caption, such as -[literal]#++v-caption++#. - - - -[[components.features.locale]] -== Locale - -((("locale property", "in [classname]#Component#"))) -((("Component interface", "locale"))) -The locale property defines the country and language used in a component. You -can use the locale information in conjunction with an internationalization -scheme to acquire localized resources. Some components, such as -[classname]#DateField#, use the locale for component localization. - -You can set the locale of a component (or the application) with -[methodname]#setLocale()# as follows: - - -[source, java] ----- -// Component for which the locale is meaningful -InlineDateField date = new InlineDateField("Datum"); - -// German language specified with ISO 639-1 language -// code and ISO 3166-1 alpha-2 country code. -date.setLocale(new Locale("de", "DE")); - -date.setResolution(Resolution.DAY); -layout.addComponent(date); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.features.locale.simple[on-line example, window="_blank"]. - -The resulting date field is shown in -<<figure.components.features.locale.simple>>. - -[[figure.components.features.locale.simple]] -.Set Locale for [classname]#InlineDateField# -image::img/features-locale-simple.png[] - -ifdef::web[] -[[components.features.locale.get]] -=== Getting the Locale - -((("[methodname]#getLocale()#"))) -You can get the locale of a component with [methodname]#getLocale()#. If the -locale is undefined for a component, that is, not explicitly set, the locale of -the parent component is used. If none of the parent components have a locale -set, the locale of the UI is used, and if that is not set, the default system -locale is set, as given by [methodname]#Locale.getDefault()#. - -The [methodname]#getLocale()# returns null if the component is not yet attached -to the UI, which is usually the case in most constructors, so it is a bit -awkward to use it for internationalization. You can get the locale in -[methodname]#attach()#, as shown in the following example: - - -[source, java] ----- -Button cancel = new Button() { - @Override - public void attach() { - super.attach(); - ResourceBundle bundle = ResourceBundle.getBundle( - MyAppCaptions.class.getName(), getLocale()); - setCaption(bundle.getString(MyAppCaptions.CancelKey)); - } -}; -layout.addComponent(cancel); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.features.locale.get-attach[on-line example, window="_blank"]. - -However, it is normally a better practice to use the locale of the current UI to -get the localized resource right when the component is created. - - -[source, java] ----- -// Captions are stored in MyAppCaptions resource bundle -// and the UI object is known in this context. -ResourceBundle bundle = - ResourceBundle.getBundle(MyAppCaptions.class.getName(), - UI.getCurrent().getLocale()); - -// Get a localized resource from the bundle -Button cancel = - new Button(bundle.getString(MyAppCaptions.CancelKey)); -layout.addComponent(cancel); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.features.locale.get-ui[on-line example, window="_blank"]. - -endif::web[] - -ifdef::web[] -[[component.features.locale.selecting]] -=== Selecting a Locale - -A common task in many applications is selecting a locale. This is done in the -following example with a [classname]#ComboBox#, which gets the available locales -in Java. - - -[source, java] ----- -// The locale in which we want to have the language -// selection list -Locale displayLocale = Locale.ENGLISH; - -// All known locales -final Locale[] locales = Locale.getAvailableLocales(); - -// Allow selecting a language. We are in a constructor of a -// CustomComponent, so preselecting the current -// language of the application can not be done before -// this (and the selection) component are attached to -// the application. -final ComboBox select = new ComboBox("Select a language") { - @Override - public void attach() { - super.attach(); - setValue(getLocale()); - } -}; -for (int i=0; i<locales.length; i++) { - select.addItem(locales[i]); - select.setItemCaption(locales[i], - locales[i].getDisplayName(displayLocale)); - - // Automatically select the current locale - if (locales[i].equals(getLocale())) - select.setValue(locales[i]); -} -layout.addComponent(select); - -// Locale code of the selected locale -final Label localeCode = new Label(""); -layout.addComponent(localeCode); - -// A date field which language the selection will change -final InlineDateField date = - new InlineDateField("Calendar in the selected language"); -date.setResolution(Resolution.DAY); -layout.addComponent(date); - -// Handle language selection -select.addValueChangeListener(new Property.ValueChangeListener() { - public void valueChange(ValueChangeEvent event) { - Locale locale = (Locale) select.getValue(); - date.setLocale(locale); - localeCode.setValue("Locale code: " + - locale.getLanguage() + "_" + - locale.getCountry()); - } -}); -select.setImmediate(true); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.features.locale.selection[on-line example, window="_blank"]. - -The user interface is shown in <<figure.components.features.locale.selection>>. - -[[figure.components.features.locale.selection]] -.Selecting a Locale -image::img/features-locale-selection.png[] - -endif::web[] - - -[[components.features.readonly]] -== Read-Only - -((("read-only property"))) -((("Component interface", "read-only"))) -The property defines whether the value of a component can be changed. The -property is mainly applicable to [classname]#Field# components, as they have a -value that can be edited by the user. - - -[source, java] ----- -TextField readwrite = new TextField("Read-Write"); -readwrite.setValue("You can change this"); -readwrite.setReadOnly(false); // The default -layout.addComponent(readwrite); - -TextField readonly = new TextField("Read-Only"); -readonly.setValue("You can't touch this!"); -readonly.setReadOnly(true); -layout.addComponent(readonly); ----- - -The resulting read-only text field is shown in -<<figure.components.features.readonly.simple>>. - -[[figure.components.features.readonly.simple]] -.A Read-Only Component. -image::img/features-readonly-simple.png[] - -Setting a layout or some other component container as read-only does not usually -make the contained components read-only recursively. This is different from, for -example, the disabled state, which is usually applied recursively. - -Notice that the value of a selection component is the selection, not its items. -A read-only selection component doesn't therefore allow its selection to be -changed, but other changes are possible. For example, if you have a read-only -[classname]#Table# in editable mode, its contained fields and the underlying -data model can still be edited, and the user could sort it or reorder the -columns. - -Client-side state modifications will not be communicated to the server-side and, -more importantly, server-side field components will not accept changes to the -value of a read-only [classname]#Field# component. The latter is an important -security feature, because a malicious user can not fabricate state changes in a -read-only field. This is handled at the level of [classname]#AbstractField# in -[methodname]#setValue()#, so you can not change the value programmatically -either. Calling [methodname]#setValue()# on a read-only field results in -[classname]#Property.ReadOnlyException#. - -Also notice that while the read-only status applies automatically to the -property value of a field, it does not apply to other component variables. A -read-only component can accept some other variable changes from the client-side -and some of such changes could be acceptable, such as change in the scroll bar -position of a [classname]#Table#. Custom widgets should check the read-only -state for variables bound to business -data.//// -TODO: Note this also in the Advanced: Security section and possibly also in the -GWT -chapter. -//// - -=== CSS Style Rules - -Setting a normally editable component to read-only state can change its -appearance to disallow editing the value. In addition to CSS styling, also the -HTML structure can change. For example, [classname]#TextField# loses the edit -box and appears much like a [classname]#Label#. - -A read-only component will have the [literal]#++v-readonly++# style. The -following CSS rule would make the text in all read-only [classname]#TextField# -components appear in italic. - - -[source, css] ----- -.v-textfield.v-readonly { - font-style: italic; -} ----- - - - -[[components.features.stylename]] -== Style Name - -((("style name property"))) -((("Component interface", "style name"))) -The __style name__ property defines one or more custom CSS style class names for -the component. The [methodname]#getStyleName()# returns the current style names -as a space-separated list. The [methodname]#setStyleName()# replaces all the -styles with the given style name or a space-separated list of style names. You -can also add and remove individual style names with [methodname]#addStylename()# -and [methodname]#removeStyleName()#. A style name must be a valid CSS style -name. - - -[source, java] ----- -Label label = new Label("This text has a lot of style"); -label.addStyleName("mystyle"); -layout.addComponent(label); ----- - -The style name will appear in the component's HTML element in two forms: -literally as given and prefixed with the component-specific style name. For -example, if you add a style name [literal]#++mystyle++# to a -[classname]#Button#, the component would get both [literal]#++mystyle++# and -[literal]#++v-button-mystyle++# styles. Neither form may conflict with built-in -style names of Vaadin. For example, [literal]#++focus++# style would conflict -with a built-in style of the same name, and an [literal]#++content++# style for -a [classname]#Panel# component would conflict with the built-in -[literal]#++v-panel-content++# style. - -The following CSS rule would apply the style to any component that has the -[literal]#++mystyle++# style. - - -[source, css] ----- -.mystyle { - font-family: fantasy; - font-style: italic; - font-size: 25px; - font-weight: bolder; - line-height: 30px; -} ----- - -The resulting styled component is shown in -<<figure.components.features.stylename>> - -[[figure.components.features.stylename]] -.Component with a Custom Style -image::img/features-stylename-simple.png[] - - -[[components.features.visible]] -== Visible - -((("visible property"))) -((("Component interface", "visible"))) -Components can be hidden by setting the __visible__ property to __false__. Also -the caption, icon and any other component features are made hidden. Hidden -components are not just invisible, but their content is not communicated to the -browser at all. That is, they are not made invisible cosmetically with only CSS -rules. This feature is important for security if you have components that -contain security-critical information that must only be shown in specific -application states. - - -[source, java] ----- -TextField invisible = new TextField("No-see-um"); -invisible.setValue("You can't see this!"); -invisible.setVisible(false); -layout.addComponent(invisible); ----- - -The resulting invisible component is shown in -<<figure.components.features.visible.simple>>. - -[[figure.components.features.visible.simple]] -.An Invisible Component. -image::img/features-visible-simple.png[] - -Beware that invisible beings can leave footprints. The containing layout cell -that holds the invisible component will not go away, but will show in the layout -as extra empty space. Also expand ratios work just like if the component was -visible - it is the layout cell that expands, not the component. - -If you need to make a component only cosmetically invisible, you should use a -custom theme to set it [literal]#++display: none++# style. This is mainly useful -for some special components that have effects even when made invisible in CSS. -If the hidden component has undefined size and is enclosed in a layout that also -has undefined size, the containing layout will collapse when the component -disappears. If you want to have the component keep its size, you have to make it -invisible by setting all its font and other attributes to be transparent. In -such cases, the invisible content of the component can be made visible easily in -the browser. - -A component made invisible with the __visible__ property has no particular CSS -style class to indicate that it is hidden. The element does exist though, but -has [literal]#++display: none++# style, which overrides any CSS styling. - - -[[components.features.sizeable]] -== Sizing Components - -((("[classname]#Sizeable# interface"))) -Vaadin components are sizeable; not in the sense that they were fairly large or -that the number of the components and their features are sizeable, but in the -sense that you can make them fairly large on the screen if you like, or small or -whatever size. - -The [classname]#Sizeable# interface, shared by all components, provides a number -of manipulation methods and constants for setting the height and width of a -component in absolute or relative units, or for leaving the size undefined. - -The size of a component can be set with [methodname]#setWidth()# and -[methodname]#setHeight()# methods. The methods take the size as a floating-point -value. You need to give the unit of the measure as the second parameter for the -above methods. The available units are listed in -<<components.features.sizeable.units.table>> below. - - -[source, java] ----- -mycomponent.setWidth(100, Sizeable.UNITS_PERCENTAGE); -mycomponent.setWidth(400, Sizeable.UNITS_PIXELS); ----- - -Alternatively, you can speficy the size as a string. The format of such a string -must follow the HTML/CSS standards for specifying measures. - - -[source, java] ----- -mycomponent.setWidth("100%"); -mycomponent.setHeight("400px"); ----- - -The " [literal]#++100%++#" percentage value makes the component take all -available size in the particular direction (see the description of -[parameter]#Sizeable.UNITS_PERCENTAGE# in the table below). You can also use the -shorthand method [methodname]#setSizeFull()# to set the size to 100% in both -directions. - -The size can be __undefined__ in either or both dimensions, which means that the -component will take the minimum necessary space. Most components have undefined -size by default, but some layouts have full size in horizontal direction. You -can set the height or width as undefined with -[parameter]#Sizeable.SIZE_UNDEFINED# parameter for [methodname]#setWidth()# and -[methodname]#setHeight()#. - -You always need to keep in mind that __a layout with undefined size may not -contain components with defined relative size__, such as "full size". See -<<dummy/../../../framework/layout/layout-settings#layout.settings.size,"Layout -Size">> for details. - -The <<components.features.sizeable.units.table>> lists the available units and -their codes defined in the [classname]#Sizeable# interface. - -[[components.features.sizeable.units.table]] -.Size Units - -|=============== -|[parameter]#Unit.PIXELS#|px|The__pixel__is the basic hardware-specific measure of one physical display pixel. -|[parameter]#Unit.POINTS#|pt|The__point__is a typographical unit, which is usually defined as 1/72 inches or about 0.35 mm. However, on displays the size can vary significantly depending on display metrics. -|[parameter]#Unit.PICAS#|pc|The__pica__is a typographical unit, defined as 12 points, or 1/7 inches or about 4.233 mm. On displays, the size can vary depending on display metrics. -|[parameter]#Unit.EM#|em|A unit relative to the used font, the width of the upper-case "M" letter. -|[parameter]#Unit.EX#|ex|A unit relative to the used font, the height of the lower-case "x" letter. -|[parameter]#Unit.MM#|mm|A physical length unit, millimeters on the surface of a display device. However, the actual size depends on the display, its metrics in the operating system, and the browser. -|[parameter]#Unit.CM#|cm|A physical length unit,__centimeters__on the surface of a display device. However, the actual size depends on the display, its metrics in the operating system, and the browser. -|[parameter]#Unit.INCH#|in|A physical length unit,__inches__on the surface of a display device. However, the actual size depends on the display, its metrics in the operating system, and the browser. -|[parameter]#Unit.PERCENTAGE#|%|A relative percentage of the available size. For example, for the top-level layout[parameter]#100%#would be the full width or height of the browser window. The percentage value must be between 0 and 100. - -|=============== - - - -If a component inside [classname]#HorizontalLayout# or -[classname]#VerticalLayout# has full size in the namesake direction of the -layout, the component will expand to take all available space not needed by the -other components. See -<<dummy/../../../framework/layout/layout-settings#layout.settings.size,"Layout -Size">> for details. - - -== Managing Input Focus - -When the user clicks on a component, the component gets the __input focus__, -which is indicated by highlighting according to style definitions. If the -component allows inputting text, the focus and insertion point are indicated by -a cursor. Pressing the Tab key moves the focus to the component next in the -__focus order__. - -Focusing is supported by all [classname]#Field# components and also by -[classname]#Upload#. - -The focus order or __tab index__ of a component is defined as a positive integer -value, which you can set with [methodname]#setTabIndex()# and get with -[methodname]#getTabIndex()#. The tab index is managed in the context of the page -in which the components are contained. The focus order can therefore jump -between two any lower-level component containers, such as sub-windows or panels. - -The default focus order is determined by the natural hierarchical order of -components in the order in which they were added under their parents. The -default tab index is 0 (zero). - -Giving a negative integer as the tab index removes the component from the focus -order entirely. - -=== CSS Style Rules - -The component having the focus will have an additional style class with the -[literal]#++-focus++# suffix. For example, a [classname]#TextField#, which -normally has the [literal]#++v-textfield++# style, would additionally have the -[literal]#++v-textfield-focus++# style. - -For example, the following would make a text field blue when it has focus. - - -[source, css] ----- -.v-textfield-focus { - background: lightblue; -} ----- - - - - - diff --git a/documentation/components/components-fields.asciidoc b/documentation/components/components-fields.asciidoc deleted file mode 100644 index 229592c74e..0000000000 --- a/documentation/components/components-fields.asciidoc +++ /dev/null @@ -1,345 +0,0 @@ ---- -title: Field Components -order: 4 -layout: page ---- - -[[components.fields]] -= Field Components - -((("[classname]#Field#", id="term.components.fields", range="startofrange"))) - - -__Fields__ are components that have a value that the user can change through the -user interface. <<figure.components.fields>> illustrates the inheritance -relationships and the important interfaces and base classes. - -[[figure.components.fields]] -.Field Components -image::img/field-diagram-hi.png[] - -Field components are built upon the framework defined in the [classname]#Field# -interface and the [classname]#AbstractField# base class. -[classname]#AbstractField# is the base class for all field components. In -addition to the component features inherited from -[classname]#AbstractComponent#, it implements a number of features defined in -[classname]#Property#, [classname]#Buffered#, [classname]#Validatable#, and -[classname]#Component.Focusable# interfaces. - -The description of the field interfaces and base classes is broken down in the -following sections. - -[[components.fields.field]] -== [classname]#Field# Interface - -The [classname]#Field# interface inherits the [classname]#Component# -superinterface and also the [classname]#Property# interface to have a value for -the field. [classname]#AbstractField# is the only class implementing the -[classname]#Field# interface directly. The relationships are illustrated in -<<figure.components.fields.field>>. - -[[figure.components.fields.field]] -.[classname]#Field# Interface Inheritance Diagram -image::img/field-interface-hi.png[] - -You can set the field value with the [methodname]#setValue()# and read with the -[methodname]#getValue()# method defined in the [classname]#Property# interface. -The actual value type depends on the component. - -The [classname]#Field# interface defines a number of properties, which you can -access with the corresponding setters and getters. - -[methodname]#required#:: When enabled, a required indicator (usually the asterisk * character) is -displayed on the left, above, or right the field, depending on the containing -layout and whether the field has a caption. If such fields are validated but are -empty and the [methodname]#requiredError# property (see below) is set, an error -indicator is shown and the component error is set to the text defined with the -error property. Without validation, the required indicator is merely a visual -guide. - -[methodname]#requiredError#:: Defines the error message to show when a value is required, but none is entered. -The error message is set as the component error for the field and is usually -displayed in a tooltip when the mouse pointer hovers over the error indicator. - - - - -[[components.fields.databinding]] -== Data Binding and Conversions - -Fields are strongly coupled with the Vaadin data model. The field value is -handled as a [classname]#Property# of the field component, as documented in -<<dummy/../../../framework/datamodel/datamodel-properties#datamodel.properties,"Properties">>. -Selection fields allow management of the selectable items through the -[classname]#Container# interface. - -Fields are __editors__ for some particular type. For example, -[classname]#TextField# allows editing [classname]#String# values. When bound to -a data source, the property type of the data model can be something different, -say an [classname]#Integer#. __Converters__ are used for converting the values -between the representation and the model. They are described in -<<dummy/../../../framework/datamodel/datamodel-properties#datamodel.properties.converter,"Converting -Between Property Type and Representation">>. - - -[[components.fields.valuechanges]] -== Handling Field Value Changes - -[classname]#Field# inherits [classname]#Property.ValueChangeListener# to allow -listening for field value changes and [classname]#Property.Editor# to allow -editing values. - -When the value of a field changes, a [classname]#Property.ValueChangeEvent# is -triggered for the field. You should not implement the -[methodname]#valueChange()# method in a class inheriting -[classname]#AbstractField#, as it is already implemented in -[classname]#AbstractField#. You should instead implement the method explicitly -by adding the implementing object as a listener. - - -[[components.fields.buffering]] -== Field Buffering - -Field components implement the [interfacename]#Buffered# and -[interfacename]#BufferedValidatable# interfaces. When buffering is enabled for a -field with [methodname]#setBuffered(true)#, the value is not written to the -property data source before the [methodname]#commit()# method is called for the -field. Calling [methodname]#commit()# also runs validators added to the field, -and if any fail (and the [parameter]#invalidCommitted# is disabled), the value -is not written. - - -[source, java] ----- -form.addComponent(new Button("Commit", - new Button.ClickListener() { - @Override - public void buttonClick(ClickEvent event) { - try { - editor.commit(); - } catch (InvalidValueException e) { - Notification.show(e.getMessage()); - } - } -})); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.field.buffering.basic[on-line example, window="_blank"]. - -Calling [methodname]#discard()# reads the value from the property data source to -the current input. - -If the fields are bound in a [classname]#FieldGroup# that has buffering enabled, -calling [methodname]#commit()# for the group runs validation on all fields in -the group, and if successful, all the field values are written to the item data -source. See -<<dummy/../../../framework/datamodel/datamodel-itembinding#datamodel.itembinding.buffering,"Buffering -Forms">>. - - -[[components.fields.validation]] -== Field Validation - -The input for a field component can be syntactically or semantically invalid. -Fields implement the [interfacename]#Validatable# interface, which allows -checking validity of the input with __validators__ that implement the -[interfacename]#Validator# interface. You can add validators to fields with -[methodname]#addValidator()#. - - -[source, java] ----- -TextField field = new TextField("Name"); -field.addValidator(new StringLengthValidator( - "The name must be 1-10 letters (was {0})", - 1, 10, true)); -field.setNullRepresentation(""); -field.setNullSettingAllowed(true); -layout.addComponent(field); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.field.validation.basic[on-line example, window="_blank"]. - -Failed validation is indicated with the error indicator of the field, described -in -<<dummy/../../../framework/application/application-errors#application.errors.error-indicator,"Error -Indicator and Message">>, unless disabled with -[methodname]#setValidationVisible(false)#. Hovering mouse on the field displays -the error message given as a parameter for the validator. If validated -explicitly with [methodname]#validate()#, as described later, the -[classname]#InvalidValueException# is thrown if the validation fails, also -carrying the error message. The value [literal]#++{0}++# in the error message -string is replaced with the invalid input value. - -Validators validate the property type of the field after a possible conversion, -not the presentation type. For example, an [classname]#IntegerRangeValidator# -requires that the value type of the property data source is -[classname]#Integer#. - -[[components.fields.validation.builtin]] -=== Built-in Validators - -Vaadin includes the following built-in validators. The property value type is -indicated. - -[classname]#BeanValidator#:: Validates a bean property according to annotations defined in the Bean -Validation API 1.0 (JSR-303). This validator is usually not used explicitly, but -they are created implicitly when binding fields in a -[classname]#BeanFieldGroup#. Using bean validation requires an implementation -library of the API. See -<<dummy/../../../framework/datamodel/datamodel-itembinding#datamodel.itembinding.beanvalidation,"Bean -Validation">> for details. - -[classname]#CompositeValidator#:: Combines validators using logical AND and OR operators. - -[classname]#DateRangeValidator#:[classname]#Date#:: Checks that the date value is within the range at or between two given -dates/times. - -[classname]#DoubleRangeValidator#:[classname]#Double#:: Checks that the double value is at or between two given values. - -[classname]#EmailValidator#:[classname]#String#:: Checks that the string value is a syntactically valid email address. The -validated syntax is close to the RFC 822 standard regarding email addresses. - -[classname]#IntegerRangeValidator#:[classname]#Integer#:: Checks that the integer value is at or between two given values. - -[classname]#NullValidator#:: Checks that the value is or is not a null value. - -+ -For the validator to be meaningful, the component must support inputting null -values. For example, for selection components and [classname]#TextField#, -inputting null values can be enabled with [methodname]#setNullSettingAllowed()#. -You also need to set the representation of null values: in selection components -with [methodname]#setNullSelectionItemId()# and in [classname]#TextField# with -[methodname]#setNullRepresentation()#. - -ifdef::web[] -+ -Setting field as __required__ can be used for similar effect, and it also -enables an indicator to indicate that a value is required. -endif::web[] - -[classname]#RegexpValidator#:[classname]#String#:: Checks that the value matches with the given regular expression. - -[classname]#StringLengthValidator#:[classname]#String#:: Checks that the length of the input string is at or between two given lengths. - -ifdef::web[] -+ -The [parameter]#allowNull# parameter determines whether null values should be -allowed for the string, regardless of the string length. A null value has zero -length, so it will be invalid if the minimum length is greater than zero. -Allowing null value is meaningful only if inputting null values is enabled with -[methodname]#setNullSettingAllowed(true)#, and typically in such case, you want -to set the null representation to empty string with -[methodname]#setNullRepresentation("")#. Note that __this parameter is -deprecated__ and should normally be [parameter]#true#; then you can use -[methodname]#setRequired()# (for the false case) or [classname]#NullValidator#. -endif::web[] - - - -Please see the API documentation for more details. - - -[[components.fields.validation.automatic]] -=== Automatic Validation - -The validators are normally, when [literal]#++validationVisible++# is true for -the field, executed implicitly on the next server request if the input has -changed. If the field is in immediate mode, it (and any other fields with -changed value) are validated immediately when the focus leaves the field. - - -[source, java] ----- -TextField field = new TextField("Name"); -field.addValidator(new StringLengthValidator( - "The name must be 1-10 letters (was {0})", - 1, 10, true)); -field.setImmediate(true); -field.setNullRepresentation(""); -field.setNullSettingAllowed(true); -layout.addComponent(field); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.field.validation.basic[on-line example, window="_blank"]. - - -[[components.fields.validation.explicit]] -=== Explicit Validation - -The validators are executed when the [methodname]#validate()# or -[methodname]#commit()# methods are called for the field. - - -[source, java] ----- -// A field with automatic validation disabled -final TextField field = new TextField("Name"); -field.setNullRepresentation(""); -field.setNullSettingAllowed(true); -layout.addComponent(field); - -// Define validation as usual -field.addValidator(new StringLengthValidator( - "The name must be 1-10 letters (was {0})", - 1, 10, true)); - -// Run validation explicitly -Button validate = new Button("Validate"); -validate.addClickListener(new ClickListener() { - @Override - public void buttonClick(ClickEvent event) { - field.setValidationVisible(false); - try { - field.validate(); - } catch (InvalidValueException e) { - Notification.show(e.getMessage()); - field.setValidationVisible(true); - } - } -}); -layout.addComponent(validate); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.field.validation.explicit[on-line example, window="_blank"]. - - -[[components.fields.validation.custom]] -=== Implementing a Custom Validator - -You can create custom validators by implementing the [interfacename]#Validator# -interface and implementing its [methodname]#validate()# method. If the -validation fails, the method should throw either -[classname]#InvalidValueException# or [classname]#EmptyValueException#. - - -[source, java] ----- -class MyValidator implements Validator { - @Override - public void validate(Object value) - throws InvalidValueException { - if (!(value instanceof String && - ((String)value).equals("hello"))) - throw new InvalidValueException("You're impolite"); - } -} - -final TextField field = new TextField("Say hello"); -field.addValidator(new MyValidator()); -field.setImmediate(true); -layout.addComponent(field); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.field.validation.customvalidator[on-line example, window="_blank"]. - - -[[components.fields.validation.fieldgroup]] -=== Validation in Field Groups - -If the field is bound to a [classname]#FieldGroup#, described in -<<dummy/../../../framework/datamodel/datamodel-itembinding#datamodel.itembinding,"Creating -Forms by Binding Fields to Items">>, calling [methodname]#commit()# for the -group runs the validation for all the fields in the group, and if successful, -writes the input values to the data source. - - - -(((range="endofrange", startref="term.components.fields"))) - - diff --git a/documentation/components/components-grid.asciidoc b/documentation/components/components-grid.asciidoc deleted file mode 100644 index a323dc28bb..0000000000 --- a/documentation/components/components-grid.asciidoc +++ /dev/null @@ -1,1361 +0,0 @@ ---- -title: Grid -order: 24 -layout: page ---- - -[[components.grid]] -= [classname]#Grid# - -((("[classname]#Grid#"))) -[classname]#Grid# is many things, and perhaps the most versatile and powerful -component in Vaadin. Like [classname]#Table#, it allows presenting and editing -tabular data, but escapes many of [classname]#Table#'s limitations. Efficient -lazy loading of data while scrolling greatly improves performance. Grid is -scalable, mobile friendly, and extensible. - -[[components.grid.overview]] -== Overview - -[classname]#Grid# is for displaying and editing tabular data laid out in rows -and columns. At the top, a __header__ can be shown, and a __footer__ at the -bottom. In addition to plain text, the header and footer can contain HTML and -components. Having components in the header allows implementing filtering -easily. The grid data can be sorted by clicking on a column header; -shift-clicking a column header enables secondary sorting criteria. - -[[figure.components.grid.features]] -.A [classname]#Grid# Component -image::img/grid-features.png[] - -The data area can be scrolled both vertically and horizontally. The leftmost -columns can be frozen, so that they are never scrolled out of the view. The data -is loaded lazily from the server, so that only the visible data is loaded. The -smart lazy loading functionality gives excellent user experience even with low -bandwidth, such as mobile devices. - -The grid data can be edited with a row-based editor after double-clicking a row. -The fields are generated with a field factory, or set explicitly, and bound to -data with a field group. - -Grid is fully themeable with CSS and style names can be set for all grid -elements. For data rows and cells, the styles can be generated with a row or -cell style generator. - -Finally, [classname]#Grid# is designed to be extensible and used just as well -for client-side development - its GWT API is nearly identical to the server-side -API, including data binding. - -[[components.grid.overview.table]] -=== Differences to Table - -In addition to core features listed above, [classname]#Grid# has the following -API-level and functional differences to Table: - -* Grid is not a [interfacename]#Container# itself, even though it can be bound to a container data source. Consequently, columns are defined differently, and so forth. -* Rows can be added with [methodname]#addRow()# shorthand (during initialization) instead of [methodname]#addItem()#. -* Use [methodname]#setHeightByRows()# and [methodname]#setHeightMode()# instead of [methodname]#setPageLength()# to set the height in number of rows. -* Grid does not extend [classname]#AbstractSelect# and is not a field, but has its own selection API. [methodname]#addSelectionListener()# is called to define a [interfacename]#SelectionListener#. The listener also receives a collection of deselected items. -* Grid does not support having all cells in editable mode, it only supports row-based editing, with a row mini-editor that allows saving or discarding the changes. -* Grid has no generated columns. Instead, the container data source can be wrapped around a [classname]#GeneratedPropertyContainer#. -* No column icons; you can implement them in a column with an [classname]#ImageRenderer#. -* Components can not be shown in Grid cells; instead the much more efficient renderers can be used for the most common cases, and row editor for editing values. -* No support for drag and drop currently. -* No support for column resizing by dragging from column header boundaries. -* Focusing with [methodname]#focus()# is currently not supported. - -In addition, Grid has the following visual changes: - -* Multiple selection is indicated with check boxes in addition to highlighting. -* Grid does not show the row loading indicator like Table does. - - - -[[components.grid.data]] -== Binding to Data - -[classname]#Grid# is normally used by binding it to a container data source, -described in -<<dummy/../../../framework/datamodel/datamodel-container#datamodel.container,"Collecting -Items in Containers">>. The container must implement -[interfacename]#Container.Indexed# interface. By default, it is bound to an -[classname]#IndexedContainer#; Grid offers some shorthand methods to operate on -the default container, as described later. - -You can set the container in the constructor or with -[methodname]#setContainerDataSource()#. - -For example, if you have a collection of beans, you could wrap them in a Vaadin -[classname]#BeanItemContainer#, and bind to a [classname]#Grid# as follows - - -[source, java] ----- -// Have some data -Collection<Person> people = Lists.newArrayList( - new Person("Nicolaus Copernicus", 1543), - new Person("Galileo Galilei", 1564), - new Person("Johannes Kepler", 1571)); - -// Have a container of some type to contain the data -BeanItemContainer<Person> container = - new BeanItemContainer<Person>(Person.class, people); - -// Create a grid bound to the container -Grid grid = new Grid(container); -grid.setColumnOrder("name", "born"); -layout.addComponent(grid); ----- - -[[components.grid.basic.manual]] -=== Default Data Source and Shorthands - -Sometimes, when you have just a few fixed items that you want to display, you -can define the grid columns and add data rows manually. [classname]#Grid# is by -default bound to a [classname]#IndexedContainer#. You can define new columns -(container properties) with [methodname]#addColumn()# and then add rows (items) -with [methodname]#addRow()#. The types in the row data must match the defined -column types. - -For example: - - -[source, java] ----- -// Create a grid -Grid grid = new Grid(); - -// Define some columns -grid.addColumn("name", String.class); -grid.addColumn("born", Integer.class); - -// Add some data rows -grid.addRow("Nicolaus Copernicus", 1543); -grid.addRow("Galileo Galilei", 1564); -grid.addRow("Johannes Kepler", 1571); - -layout.addComponent(grid); ----- - -Or, if you have the data in an array: - - -[source, java] ----- -// Have some data -Object[][] people = { {"Nicolaus Copernicus", 1543}, - {"Galileo Galilei", 1564}, - {"Johannes Kepler", 1571}}; -for (Object[] person: people) - grid.addRow(person); ----- - -Note that you can not use [methodname]#addRow()# to add items if the container -is read-only or has read-only columns, such as generated columns. - - - -[[components.grid.selection]] -== Handling Selection Changes - -Selection in [classname]#Grid# is handled a bit differently from other selection -components, as it is not an [classname]#AbstractSelect#. Grid supports both -single and multiple selection, defined by the __selection mode__. Selection -events can be handled with a [interfacename]#SelectionListener#. - -[[components.grid.selection.mode]] -=== Selection Mode - -A [classname]#Grid# can be set to be in [literal]#++SINGLE++# (default), -[literal]#++MULTI++#, or [literal]#++NONE++# selection mode, defined in the -[classname]#Grid.SelectionMode# enum. - - -[source, java] ----- -// Use single-selection mode (default) -grid.setSelectionMode(SelectionMode.SINGLE); ----- - -Empty (null) selection is allowed in multi-selection mode, but not in single -selection. - -The selection is handled with a different selection model object in each -respective selection mode: [classname]#SingleSelectionModel#, -[classname]#MultiSelectionModel#, and [classname]#NoSelectionModel# (in which -selection is always empty). - - -[source, java] ----- -// Pre-select an item -SingleSelectionModel selection = - (SingleSelectionModel) grid.getSelectionModel(); -selection.select( // Select 3rd item - grid.getContainerDataSource().getIdByIndex(2)); ----- - - -[[components.grid.selection.single]] -=== Handling Selection - -Changes in the selection can be handled with a -[interfacename]#SelectionListener#. You need to implement the -[methodname]#select()# method, which gets a [classname]#SelectionEvent# as -parameter. In addition to selection, you can handle clicks on rows or cells with -a [interfacename]#ItemClickListener#. - -You can get the new selection from the selection event with -[methodname]#getSelected()#, which returns a set of item IDs, or more simply -from the grid or the selection model with [methodname]#getSelectedRow()#, which -returns the single selected item ID. - -For example: - - -[source, java] ----- -grid.addSelectionListener(selectionEvent -> { // Java 8 - // Get selection from the selection model - Object selected = ((SingleSelectionModel) - grid.getSelectionModel()).getSelectedRow(); - - if (selected != null) - Notification.show("Selected " + - grid.getContainerDataSource().getItem(selected) - .getItemProperty("name")); - else - Notification.show("Nothing selected"); -}); ----- - -The current selection can be obtained from the [classname]#Grid# object by -[methodname]#getSelectedRow()# or [methodname]#getSelectedRows()#, which return -one (in single-selection mode) or all (in multi-selection mode) selected items. - - -[WARNING] -==== -Note that changes to the item set of the container data source are not -automatically reflected in the selection model and may cause the selection model -to refer to stale item IDs. This always occurs, for example, when you delete the -selected item or items. So, if you modify the item set of the container, you -should synchronize or reset the selection with the container, such as by calling -[methodname]#reset()# on the selection model. - -==== - - - - -[[components.grid.selection.multi]] -=== Multiple Selection - -In the multiple selection mode, a user can select multiple items by clicking on -the checkboxes in the leftmost column. - -[[figure.components.grid.selection.multi]] -.Multiple Selection in [classname]#Grid# -image::img/grid-selection-multi.png[] - -The selection is managed through the [classname]#MultiSelectionMode# class. The -currently selected rows can be set with [methodname]#setSelected()# by a -collection of item IDs, or you can use [methodname]#select()# to add items to -the selection. - - -[source, java] ----- -// Grid in multi-selection mode -Grid grid = new Grid(exampleDataSource()); -grid.setSelectionMode(SelectionMode.MULTI); - -// Pre-select some items -MultiSelectionModel selection = - (MultiSelectionModel) grid.getSelectionModel(); -selection.setSelected( // Items 2-4 - grid.getContainerDataSource().getItemIds(2, 3)); - ----- - -The current selection can be read with [methodname]#getSelectedRows()#; either -in the [classname]#MultiSelectionMode# object or in the [classname]#Grid#. - - -[source, java] ----- -// Allow deleting the selected items -Button delSelected = new Button("Delete Selected", e -> { - // Delete all selected data items - for (Object itemId: selection.getSelectedRows()) - grid.getContainerDataSource().removeItem(itemId); - - // Otherwise out of sync with container - grid.getSelectionModel().reset(); - - // Disable after deleting - e.getButton().setEnabled(false); -}); -delSelected.setEnabled(grid.getSelectedRows().size() > 0); ----- - -Changes in the selection can be handled with a -[interfacename]#SelectionListener#. The selection event object provides -[methodname]#getAdded()# and [methodname]#getRemove()# to allow determining the -differences in the selection change. When [classname]#Grid# is in immediate -mode, the difference is one item, but in non-immediate mode can be more. - - -[source, java] ----- -// Handle selection changes -grid.addSelectionListener(selection -> { // Java 8 - Notification.show(selection.getAdded().size() + - " items added, " + - selection.getRemoved().size() + - " removed."); - - // Allow deleting only if there's any selected - deleteSelected.setEnabled( - grid.getSelectedRows().size() > 0); -}); ----- - - -[[components.grid.selection.clicks]] -=== Focus and Clicks - -In addition to selecting rows, you can focus individual cells. The focus can be -moved with arrow keys and, if editing is enabled, pressing Enter opens the -editor. Pressing Tab or ShiftTab moves the focus to another component, as usual. - -With mouse, you can focus a cell by clicking on it. The clicks can be handled -with an [interfacename]#ItemClickListener#. The [classname]#ItemClickEvent# -object contains various information, most importantly the ID of the clicked row -and column. - - -[source, java] ----- -grid.addItemClickListener(event -> // Java 8 - Notification.show("Value: " + - container.getContainerProperty(event.getItemId(), - event.getPropertyId()).getValue().toString())); ----- - -The clicked grid cell is also automatically focused. - -The focus indication is themed so that the focused cell has a visible focus -indicator style by default, while the row doesn't. You can enable row focus, as -well as disable cell focus, in a custom theme. See <<components.grid.css>>. - - - -[[components.grid.columns]] -== Configuring Columns - -Columns are normally defined in the container data source. The -[methodname]#addColumn()# method can be used to add columns to a container that -supports it, such as the default [classname]#IndexedContainer#. - -Column configuration is defined in [classname]#Grid.Column# objects, which can -be obtained from the grid with [methodname]#getColumn()# by the column -(property) ID. - - -[source, java] ----- -Grid.Column bornColumn = grid.getColumn("born"); -bornColumn.setHeaderCaption("Born"); ----- - -In the following, we describe the basic column configuration. - -[[components.grid.columns.order]] -=== Column Order - -You can set the order of columns with [methodname]#setColumnOrder()# for the -grid. Columns that are not given for the method are placed after the specified -columns in their natural order. - - -[source, java] ----- -grid.setColumnOrder("firstname", "lastname", "born", - "birthplace", "died"); ----- - -Note that the method can not be used to hide columns. You can hide columns with -the [methodname]#removeColumn()#, as described later, or by hiding them in a -[classname]#GeneratedPropertyContainer#. - - -[[components.grid.columns.removing]] -=== Hiding Columns - -Columns can be hidden by removing them with [methodname]#removeColumn()#. You -can remove all columns with [methodname]#removeAllColumn()#. The removed columns -are only removed from the grid, not from the container data source. - -To restore a previously removed column, you can call [methodname]#addColumn()# -with the property ID. Instead of actually adding another column to the data -source, it merely restores the previously removed one. However, column settings -such as header or editor are not restored, but must be redone. - -You can also hide columns at container-level. At least -[classname]#GeneratedpropertyContainer# allows doing so, as described in -<<dummy/../../../framework/datamodel/datamodel-container#datamodel.container.gpc,"GeneratedPropertyContainer">>. - - -[[components.grid.columns.captions]] -=== Column Captions - -Column captions are displayed in the grid header. The default captions are -generated automatically from the property ID. You can set the header caption -explicitly through the column object with [methodname]#setHeaderCaption()#. - - -[source, java] ----- -Grid.Column bornColumn = grid.getColumn("born"); -bornColumn.setHeaderCaption("Born"); ----- - -This is equivalent to setting it with [methodname]#setText()# for the header -cell; the [classname]#HeaderCell# also allows setting the caption in HTML or as -a component, as well as styling it, as described later in -<<components.grid.headerfooter>>. - - -[[components.grid.columns.width]] -=== Column Widths - -Columns have by default undefined width, which causes automatic sizing based on -the widths of the displayed data. You can set column widths explicitly by pixel -value with [methodname]#setWidth()#, or relatively using expand ratios with -[methodname]#setExpandRatio()#. - -When using expand ratios, the columns with a non-zero expand ratio use the extra -space remaining from other columns, in proportion to the defined ratios. - -You can specify minimum and maximum widths for the expanding columns with -[methodname]#setMinimumWidth()# and [methodname]#setMaximumWidth()#, -respectively. - - -[[components.grid.columns.frozen]] -=== Frozen Columns - -You can set the number of columns to be frozen with -[methodname]#setFrozenColumnCount()#, so that they are not scrolled off when -scrolling horizontally. - - -[source, java] ----- -grid.setFrozenColumnCount(2); ----- - -Setting the count to [parameter]#0# disables frozen data columns; setting it to -[parameter]#-1# also disables the selection column in multi-selection mode. - - - -[[components.grid.generatedcolumns]] -== Generating Columns - -Columns with values computed from other columns or in some other way can be -generated with a container or data model that generates the property values. The -[classname]#GeneratedPropertyContainer# can be used for this purpose. It wraps -around any indexed container to extend its properties with read-only generated -properties. The generated properties can have same IDs as the original ones, -thereby replacing them with formatted or converted values. See -<<dummy/../../../framework/datamodel/datamodel-container#datamodel.container.gpc,"GeneratedPropertyContainer">> -for a detailed description of using it. - -Generated columns are read-only, so you can not add grid rows with -[methodname]#addRow()#. In editable mode, editor fields are not generated for -generated columns. - -Note that, while [classname]#GeneratedPropertyContainer# implements -[interfacename]#Container.Sortable#, the wrapped container might not, and also -sorting on the generated properties requires special handling. In such cases, -generated properties or the entire container might not actually be sortable. - - -[[components.grid.renderer]] -== Column Renderers - -A __renderer__ is a feature that draws the client-side representation of a data -value. This allows having images, HTML, and buttons in grid cells. - -[[figure.components.grid.renderer]] -.Column Renderers: Image, Date, HTML, and Button -image::img/grid-renderers.png[] - -Renderers implement the [interfacename]#Renderer# interface. You set the column -renderer in the [classname]#Grid.Column# object as follows: - - -[source, java] ----- -grid.addColumn("born", Integer.class); -... -Grid.Column bornColumn = grid.getColumn("born"); -bornColumn.setRenderer(new NumberRenderer("born in %d AD")); ----- - -Renderers require a specific data type for the column. To convert to a property -type to a type required by a renderer, you can pass an optional -[interfacename]#Converter# to [methodname]#setRenderer()#, as described later in -this section. A converter can also be used to (pre)format the property values. -The converter is run on the server-side, before sending the values to the -client-side to be rendered with the renderer. - -The following renderers are available, as defined in the server-side -[package]#com.vaadin.ui.renderer# package: - -[classname]#ButtonRenderer#:: Renders the data value as the caption of a button. A -[interfacename]#RendererClickListener# can be given to handle the button clicks. - -ifdef::web[] -Typically, a button renderer is used to display buttons for operating on a data -item, such as edit, view, delete, etc. It is not meaningful to store the button -captions in the data source, rather you want to generate them, and they are -usually all identical. - - -+ -[source, java] ----- -BeanItemContainer<Person> people = - new BeanItemContainer<>(Person.class); - -people.addBean(new Person("Nicolaus Copernicus", 1473)); -people.addBean(new Person("Galileo Galilei", 1564)); -people.addBean(new Person("Johannes Kepler", 1571)); - -// Generate button caption column -GeneratedPropertyContainer gpc = - new GeneratedPropertyContainer(people); -gpc.addGeneratedProperty("delete", - new PropertyValueGenerator<String>() { - - @Override - public String getValue(Item item, Object itemId, - Object propertyId) { - return "Delete"; // The caption - } - - @Override - public Class<String> getType() { - return String.class; - } -}); - -// Create a grid -Grid grid = new Grid(gpc); - -// Render a button that deletes the data row (item) -grid.getColumn("delete") - .setRenderer(new ButtonRenderer(e -> // Java 8 - grid.getContainerDataSource() - .removeItem(e.getItemId()))); ----- -endif::web[] -[classname]#ImageRenderer#:: Renders the cell as an image. The column type must be a -[interfacename]#Resource#, as described in -<<dummy/../../../framework/application/application-resources#application.resources,"Images -and Other Resources">>; only [classname]#ThemeResource# and -[classname]#ExternalResource# are currently supported for images in -[classname]#Grid#. - -ifdef::web[] - -[source, java] ----- -grid.addColumn("picture", Resource.class) - .setRenderer(new ImageRenderer()); -... -// Add some data rows -grid.addRow(new ThemeResource("img/copernicus-128px.jpg"), - "Nicolaus Copernicus", 1543); -grid.addRow(new ThemeResource("img/galileo-128px.jpg"), - "Galileo Galilei", 1564); ----- - -+ -Instead of creating the resource objects explicitly, as was done above, you -could generate them dynamically from file name strings using a -[interfacename]#Converter# for the column. - - -+ -[source, java] ----- -// Define some columns -grid.addColumn("picture", String.class); // Filename -grid.addColumn("name", String.class); - -// Set the image renderer -grid.getColumn("picture").setRenderer(new ImageRenderer(), - new Converter<Resource, String>() { - @Override - public String convertToModel(Resource value, - Class<? extends String> targetType, Locale l) - throws Converter.ConversionException { - return "not needed"; - } - - @Override - public Resource convertToPresentation(String value, - Class<? extends Resource> targetType, Locale l) - throws Converter.ConversionException { - return new ThemeResource("img/" + value); - } - - @Override - public Class<String> getModelType() { - return String.class; - } - - @Override - public Class<Resource> getPresentationType() { - return Resource.class; - } -}); - -// Add some data rows -grid.addRow("copernicus-128px.jpg", "Nicolaus Copernicus"); -grid.addRow("galileo-128px.jpg", "Galileo Galilei"); -grid.addRow("kepler-128px.jpg", "Johannes Kepler"); ----- -+ -You also need to define the row heights so that the images fit there. You can -set it in the theme for all data cells or for the column containing the images. - -+ -For the latter way, first define a CSS style name for grid and the column: - - -+ -[source, java] ----- -grid.setStyleName("gridwithpics128px"); -grid.setCellStyleGenerator(cell -> - "picture".equals(cell.getPropertyId())? - "imagecol" : null); ----- -ifdef::web[] -+ -Then, define the style in CSS (Sass): -endif::web[] - - -+ -[source, css] ----- -.gridwithpics128px .imagecol { - height: 128px; - background: black; - text-align: center; -} ----- -endif::web[] -[classname]#DateRenderer#:: Formats a column with a [classname]#Date# type using string formatter. The -format string is same as for [methodname]#String.format()# in Java API. The date -is passed in the parameter index 1, which can be omitted if there is only one -format specifier, such as " [literal]#++%tF++#". - -ifdef::web[] - -[source, java] ----- -Grid.Column bornColumn = grid.getColumn("born"); -bornColumn.setRenderer( - new DateRenderer("%1$tB %1$te, %1$tY", - Locale.ENGLISH)); ----- - -+ -Optionally, a locale can be given. Otherwise, the default locale (in the -component tree) is used. - -endif::web[] -[classname]#HTMLRenderer#:: Renders the cell as HTML. This allows formatting cell content, as well as using -HTML features such as hyperlinks. - -ifdef::web[] -First, set the renderer in the [classname]#Grid.Column# object: - - -+ -[source, java] ----- -grid.addColumn("link", String.class) - .setRenderer(new HtmlRenderer()); ----- -ifdef::web[] -+ -Then, in the grid data, give the cell content: -endif::web[] - - -+ -[source, java] ----- -grid.addRow("Nicolaus Copernicus", 1543, - "<a href='http://en.wikipedia.org/wiki/" + - "Nicolaus_Copernicus' target='_top'>info</a>"); ----- -+ -You could also use a [interfacename]#PropertyFormatter# or a generated column to -generate the HTML for the links. - -endif::web[] -[classname]#NumberRenderer#:: Formats column values with a numeric type extending [classname]#Number#: -[classname]#Integer#, [classname]#Double#, etc. The format can be specified -either by the subclasses of [classname]#java.text.NumberFormat#, namely -[classname]#DecimalFormat# and [classname]#ChoiceFormat#, or by -[methodname]#String.format()#. - -ifdef::web[] -For example: - - -+ -[source, java] ----- -// Define some columns -grid.addColumn("name", String.class); -grid.addColumn("born", Integer.class); -grid.addColumn("sletters", Integer.class); -grid.addColumn("rating", Double.class); - -// Use decimal format -grid.getColumn("born").setRenderer(new NumberRenderer( - new DecimalFormat("in #### AD"))); - -// Use textual formatting on numeric ranges -grid.getColumn("sletters").setRenderer(new NumberRenderer( - new ChoiceFormat("0#none|1#one|2#multiple"))); - -// Use String.format() formatting -grid.getColumn("rating").setRenderer(new NumberRenderer( - "%02.4f", Locale.ENGLISH)); - -// Add some data rows -grid.addRow("Nicolaus Copernicus", 1473, 2, 0.4); -grid.addRow("Galileo Galilei", 1564, 0, 4.2); -grid.addRow("Johannes Kepler", 1571, 1, 2.3); ----- -endif::web[] -[classname]#ProgressBarRenderer#:: Renders a progress bar in a column with a [classname]#Double# type. The value -must be between 0.0 and 1.0. - -ifdef::web[] -For example: - - -+ -[source, java] ----- -// Define some columns -grid.addColumn("name", String.class); -grid.addColumn("rating", Double.class) - .setRenderer(new ProgressBarRenderer()); - -// Add some data rows -grid.addRow("Nicolaus Copernicus", 0.1); -grid.addRow("Galileo Galilei", 0.42); -grid.addRow("Johannes Kepler", 1.0); ----- -endif::web[] -[classname]#TextRenderer#:: Displays plain text as is. Any HTML markup is quoted. - - - -[[components.grid.renderer.custom]] -=== Custom Renderers - -Renderers are component extensions that require a client-side counterpart. See -<<dummy/../../../framework/clientsidewidgets/clientsidewidgets-grid#clientsidewidgets.grid.renderers,"Renderers">> -for information on implementing custom renderers. - - -[[components.grid.renderer.converter]] -=== Converting for Rendering - -Optionally, you can give a [interfacename]#Converter# in the -[methodname]#setRenderer()#, or define it for the column, to convert the data -value to an intermediary representation that is rendered by the renderer. For -example, when using an [classname]#ImageRenderer#, you could the image file name -in the data column, which the converter would convert to a resource, which would -then be rendered by the renderer. - -In the following example, we use a converter to format URL paths to complete -HTML hyperlinks with [classname]#HTMLRenderer#: - - -[source, java] ----- -// Have a column for hyperlink paths to Wikipedia -grid.addColumn("link", String.class); - -Grid.Column linkColumn = grid.getColumn("link"); -linkColumn.setRenderer(new HtmlRenderer(), - new Converter<String,String>(){ - @Override - public String convertToModel(String value, - Class<? extends String> targetType, Locale locale) - throws Converter.ConversionException { - return "not implemented"; - } - - @Override - public String convertToPresentation(String value, - Class<? extends String> targetType, Locale locale) - throws Converter.ConversionException { - return "<a href='http://en.wikipedia.org/wiki/" + - value + "' target='_blank'>more info</a>"; - } - - @Override - public Class<String> getModelType() { - return String.class; - } - - @Override - public Class<String> getPresentationType() { - return String.class; - } -}); - -// Data with a hyperlink path in the third column -grid.addRow("Nicolaus Copernicus", 1473, - "Nicolaus_Copernicus"); -... ----- - -A [classname]#GeneratedPropertyContainer# could be used for much the same -purpose. - - - -[[components.grid.headerfooter]] -== Header and Footer - -A grid by default has a header, which displays column names, and can have a -footer. Both can have multiple rows and neighbouring header row cells can be -joined to feature column groups. - -[[components.grid.headerfooter.adding]] -=== Adding and Removing Header and Footer Rows - -A new header row is added with [methodname]#prependHeaderRow()#, which adds it -at the top of the header, [methodname]#appendHeaderRow()#, which adds it at the -bottom of the header, or with [methodname]#addHeaderRowAt()#, which inserts it -at the specified 0-base index. All of the methods return a -[classname]#HeaderRow# object, which you can use to work on the header further. - - -[source, java] ----- -// Group headers by joining the cells -HeaderRow groupingHeader = grid.prependHeaderRow(); -... - -// Create a header row to hold column filters -HeaderRow filterRow = grid.appendHeaderRow(); -... ----- - -Similarly, you can add footer rows with [methodname]#appendFooterRow()#, -[methodname]#prependFooterRow()#, and [methodname]#addFooterRowAt()#. - - -[[components.grid.headerfooter.joining]] -=== Joining Header and Footer Cells - -You can join two or more header or footer cells with the [methodname]#join()# -method. For header cells, the intention is usually to create column grouping, -while for footer cells, you typically calculate sums or averates. - - -[source, java] ----- -// Group headers by joining the cells -HeaderRow groupingHeader = grid.prependHeaderRow(); -HeaderCell namesCell = groupingHeader.join( - groupingHeader.getCell("firstname"), - groupingHeader.getCell("lastname")); -HeaderCell yearsCell = groupingHeader.join( - groupingHeader.getCell("born"), - groupingHeader.getCell("died"), - groupingHeader.getCell("lived")); ----- - - -[[components.grid.headerfooter.content]] -=== Text and HTML Content - -You can set the header caption with [methodname]#setText()#, in which case any -HTML formatting characters are quoted to ensure security. - - -[source, java] ----- -HeaderRow mainHeader = grid.getDefaultHeaderRow(); -mainHeader.getCell("firstname").setText("First Name"); -mainHeader.getCell("lastname").setText("Last Name"); -mainHeader.getCell("born").setText("Born In"); -mainHeader.getCell("died").setText("Died In"); -mainHeader.getCell("lived").setText("Lived For"); ----- - -To use raw HTML in the captions, you can use [methodname]#setHTML()#. - - -[source, java] ----- -namesCell.setHtml("<b>Names</b>"); -yearsCell.setHtml("<b>Years</b>"); ----- - - -[[components.grid.headerfooter.components]] -=== Components in Header or Footer - -You can set a component in a header or footer cell with -[methodname]#setComponent()#. Often, this feature is used to allow filtering, as -described in <<components.grid.filtering>>, which also gives an example of the -use. - - - -[[components.grid.filtering]] -== Filtering - -The ability to include components in the grid header can be used to create -filters for the grid data. Filtering is done in the container data source, so -the container must be of type that implements -[interfacename]#Container.Filterable#. - -[[figure.components.grid.filtering]] -.Filtering Grid -image::img/grid-filtering.png[] - -The filtering illustrated in <<figure.components.grid.filtering>> can be created -as follows: - - -[source, java] ----- -// Have a filterable container -IndexedContainer container = exampleDataSource(); - -// Create a grid bound to it -Grid grid = new Grid(container); -grid.setSelectionMode(SelectionMode.NONE); -grid.setWidth("500px"); -grid.setHeight("300px"); - -// Create a header row to hold column filters -HeaderRow filterRow = grid.appendHeaderRow(); - -// Set up a filter for all columns -for (Object pid: grid.getContainerDataSource() - .getContainerPropertyIds()) { - HeaderCell cell = filterRow.getCell(pid); - - // Have an input field to use for filter - TextField filterField = new TextField(); - filterField.setColumns(8); - - // Update filter When the filter input is changed - filterField.addTextChangeListener(change -> { - // Can't modify filters so need to replace - container.removeContainerFilters(pid); - - // (Re)create the filter if necessary - if (! change.getText().isEmpty()) - container.addContainerFilter( - new SimpleStringFilter(pid, - change.getText(), true, false)); - }); - cell.setComponent(filterField); -} ----- - - -[[components.grid.sorting]] -== Sorting - -A user can sort the data in a grid on a column by clicking the column header. -Clicking another time on the current sort column reverses the sort direction. -Clicking on other column headers while keeping the Shift key pressed adds a -secondary or more sort criteria. - -[[figure.components.grid.sorting]] -.Sorting Grid on Multiple Columns -image::img/grid-sorting.png[] - -Defining sort criteria programmatically can be done with the various -alternatives of the [methodname]#sort()# method. You can sort on a specific -column with [methodname]#sort(Object propertyId)#, which defaults to ascending -sorting order, or [methodname]#sort(Object propertyId, SortDirection -direction)#, which allows specifying the sort direction. - - -[source, java] ----- -grid.sort("name", SortDirection.DESCENDING); ----- - -To sort on multiple columns, you need to use the fluid sort API with -[methodname]#sort(Sort)#, which allows chaining sorting rules. Sorting rules are -created with the static [methodname]#by()# method, which defines the primary -sort column, and [methodname]#then()#, which can be used to specify any -secondary sort columns. They default to ascending sort order, but the sort -direction can be given with an optional parameter. - - -[source, java] ----- -// Sort first by city and then by name -grid.sort(Sort.by("city", SortDirection.ASCENDING) - .then("name", SortDirection.DESCENDING)); ----- - -The container data source must support sorting. At least, it must implement -[interfacename]#Container.Sortable#. Note that when using -[classname]#GeneratedPropertyContainer#, as described in -<<components.grid.generatedcolumns>>, even though the container implements the -interface, the wrapped container must also support it. Also, the generated -properties are not normally sortable, but require special handling to enable -sorting. - - -[[components.grid.editing]] -== Editing - -Grid supports line-based editing, where double-clicking a row opens the row -editor. In the editor, the input fields can be edited, as well as navigated with -Tab and ShiftTab keys. The editor has a [guibutton]#Save# button that commits -the data item to the container data source and closes the editor. If validation -fails, an error is displayed and the user can correct the inputs. A -[guibutton]#Cancel# button discards the changes and exits the editor. - -To enable editing, you need to call [methodname]#setEditorEnabled(true)# for the -grid. - - -[source, java] ----- -Grid grid = new Grid(GridExample.exampleDataSource()); -grid.setEditorEnabled(true); ----- - -A row under editing is illustrated in <<figure.components.grid.editing>>. - -[[figure.components.grid.editing]] -.Editing a Grid Row -image::img/grid-editor-basic.png[] - -The editor fields are by default generated with a [interfacename]#FieldFactory# -and bound to the container data source with a [classname]#FieldGroup#, which -also handles tasks such as validation, as explained later. - -To disable editing in a particular column, you can call -[methodname]#setEditable()# in the [classname]#Column# object with -[parameter]#false# parameter. - -[[components.grid.editing.editorfields]] -=== Customizing Editor Fields - -Te editor fields are normally created by the field factory of the editor's field -group, which creates the fields according to the data types of their respective -columns. To customize the editor fields of specific properties, such as to style -them or to set up validation, you can provide them with -[methodname]#setEditorField()# in the respective columns. - -In the following example, we configure a field with validation and styling: - - -[source, java] ----- -TextField nameEditor = new TextField(); - -// Custom CSS style -nameEditor.addStyleName("nameeditor"); - -// Custom validation -nameEditor.addValidator(new RegexpValidator( - "^\\p{Alpha}+ \\p{Alpha}+$", - "Need first and last name")); - -grid.getColumn("name").setEditorField(nameEditor); ----- - -Setting an editor field to [parameter]#null# deletes the currently existing -editor field, whether it was automatically generated or set explicitly with the -setter. It will be regenerated with the factory the next time it is needed. - - -ifdef::web[] -[[components.grid.editing.captions]] -=== Customizing Editor Buttons - -The editor has two buttons: [guibutton]#Save# and [guibutton]#Cancel#. You can -set their captions with [methodname]#setEditorSaveCaption()# and -[methodname]#setEditorCancelCaption()#, respectively. - -In the following example, we demonstrate one way to translate the captions: - - -[source, java] ----- -// Captions are stored in a resource bundle -ResourceBundle bundle = ResourceBundle.getBundle( - MyAppCaptions.class.getName(), - Locale.forLanguageTag("fi")); // Finnish - -// Localize the editor button captions -grid.setEditorSaveCaption( - bundle.getString(MyAppCaptions.SaveKey)); -grid.setEditorCancelCaption( - bundle.getString(MyAppCaptions.CancelKey)); ----- - -endif::web[] - -[[components.grid.editing.fieldgroup]] -=== Binding to Data with a Field Group - -Data binding to the item under editing is handled with a -[classname]#FieldGroup#, which you need to set with -[methodname]#setEditorFieldGroup#. This is mostly useful when using -special-purpose field groups, such as [classname]#BeanFieldGroup# to enable bean -validation. - -For example, assuming that we want to enable bean validation for a bean such as -the following: - - -[source, java] ----- -public class Person implements Serializable { - @NotNull - @Size(min=2, max=10) - private String name; - - @Min(1) - @Max(130) - private int age; - ...] ----- - -We can now use a [classname]#BeanFieldGroup# in the [classname]#Grid# as -follows: - - -[source, java] ----- -Grid grid = new Grid(exampleBeanDataSource()); -grid.setColumnOrder("name", "age"); -grid.setEditorEnabled(true); - -// Enable bean validation for the data -grid.setEditorFieldGroup( - new BeanFieldGroup<Person>(Person.class)); - -// Have some extra validation in a field -TextField nameEditor = new TextField(); -nameEditor.addValidator(new RegexpValidator( - "^\\p{Alpha}+ \\p{Alpha}+$", - "Need first and last name")); -grid.setEditorField("name", nameEditor); ----- - -To use bean validation as in the example above, you need to include an -implementation of the Bean Validation API in the classpath, as described in -<<dummy/../../../framework/datamodel/datamodel-itembinding#datamodel.itembinding.beanvalidation,"Bean -Validation">>. - - -ifdef::web[] -[[components.grid.editing.validation]] -=== Handling Validation Errors - -The input fields are validated when the save button is clicked. The default -error handler displays error indicators in the invalid fields, as well as the -first error in the editor. - -[[figure.components.grid.errors]] -.Editing a Grid Row -image::img/grid-editor-errors.png[] - -You can modify the error handling by implementing a custom -[interfacename]#EditorErrorHandler# or by extending the -[classname]#DefaultEditorErrorHandler#. - -endif::web[] - -[[components.grid.editing.fieldfactory]] -=== Editor Field Factory - -The fields are generated by the [classname]#FieldFactory# of the field group; -you can also set it with [methodname]#setEditorFieldFactory()#. Alternatively, -you can create the editor fields explicitly with [methodname]#setEditorField()#. - - - -[[components.grid.scrolling]] -== Programmatic Scrolling - -You can scroll to first item with [methodname]#scrollToStart()#, to end with -[methodname]#scrollToEnd()#, or to a specific row with [methodname]#scrollTo()#. - - -[[components.grid.stylegeneration]] -== Generating Row or Cell Styles - -You can style entire rows with a [interfacename]#RowStyleGenerator# or -individual cells with a [interfacename]#CellStyleGenerator#. - -[[components.grid.stylegeneration.row]] -=== Generating Row Styles - -You set a [interfacename]#RowStyleGenerator# to a grid with -[methodname]#setRowStyleGenerator()#. The [methodname]#getStyle()# method gets a -[classname]#RowReference#, which contains various information about the row and -a reference to the grid, and should return a style name or [parameter]#null# if -no style is generated. - -For example, to add a style names to rows having certain values in one column, -you can style them as follows: - - -[source, java] ----- -grid.setRowStyleGenerator(rowRef -> {// Java 8 - if (! ((Boolean) rowRef.getItem() - .getItemProperty("alive") - .getValue()).booleanValue()) - return "grayed"; - else - return null; -}); ----- - -You could then style the rows with CSS as follows: - - -[source, css] ----- -.v-grid-row.grayed { - color: gray; -} ----- - - -[[components.grid.stylegeneration.cell]] -=== Generating Cell Styles - -You set a [interfacename]#CellStyleGenerator# to a grid with -[methodname]#setCellStyleGenerator()#. The [methodname]#getStyle()# method gets -a [classname]#CellReference#, which contains various information about the cell -and a reference to the grid, and should return a style name or [parameter]#null# -if no style is generated. - -For example, to add a style name to a specific column, you can match on the -property ID of the column as follows: - - -[source, java] ----- -grid.setCellStyleGenerator(cellRef -> // Java 8 - "born".equals(cellRef.getPropertyId())? - "rightalign" : null); ----- - -You could then style the cells with a CSS rule as follows: - - -[source, css] ----- -.v-grid-cell.rightalign { - text-align: right; -} ----- - - - -[[components.grid.css]] -== Styling with CSS - - -[source, css] ----- -.v-grid { - .v-grid-scroller, .v-grid-scroller-horizontal { } - .v-grid-tablewrapper { - .v-grid-header { - .v-grid-row { - .v-grid-cell, .frozen, .v-grid-cell-focused { } - } - } - .v-grid-body { - .v-grid-row, - .v-grid-row-stripe, - .v-grid-row-has-data { - .v-grid-cell, .frozen, .v-grid-cell-focused { } - } - } - .v-grid-footer { - .v-grid-row { - .v-grid-cell, .frozen, .v-grid-cell-focused { } - } - } - } - .v-grid-header-deco { } - .v-grid-footer-deco { } - .v-grid-horizontal-scrollbar-deco { } - .v-grid-editor { - .v-grid-editor-cells { } - .v-grid-editor-footer { - .v-grid-editor-message { } - .v-grid-editor-buttons { - .v-grid-editor-save { } - .v-grid-editor-cancel { } - } - } - } -} ----- - -A [classname]#Grid# has an overall [literal]#++v-grid++# style. The actual grid -has three parts: a header, a body, and a footer. The scrollbar is a custom -element with [literal]#++v-grid-scroller++# style. In addition, there are some -decoration elements. - -Grid cells, whether thay are in the header, body, or footer, have a basic -[literal]#++v-grid-cell++# style. Cells in a frozen column additionally have a -[literal]#++frozen++# style. Rows have [literal]#++v-grid-row++# style, and -every other row has additionally a [literal]#++v-grid-row-stripe++# style. - -The focused row has additionally [literal]#++v-grid-row-focused++# style and -focused cell [literal]#++v-grid-cell-focused++#. By default, cell focus is -visible, with the border stylable with [parameter]#$v-grid-cell-focused-border# -parameter in Sass. Row focus has no visible styling, but can be made visible -with the [parameter]#$v-grid-row-focused-background-color# parameter or with a -custom style rule. - -In editing mode, a [literal]#++v-grid-editor++# overlay is placed on the row -under editing. In addition to the editor field cells, it has an error message -element, as well as the buttons. - - -((())) - - diff --git a/documentation/components/components-interfaces.asciidoc b/documentation/components/components-interfaces.asciidoc deleted file mode 100644 index 4801ec52b1..0000000000 --- a/documentation/components/components-interfaces.asciidoc +++ /dev/null @@ -1,117 +0,0 @@ ---- -title: Interfaces and Abstractions -order: 2 -layout: page ---- - -[[components.interfaces]] -= Interfaces and Abstractions - -((("interfaces"))) -Vaadin user interface components are built on a skeleton of interfaces and -abstract classes that define and implement the features common to all components -and the basic logic how the component states are serialized between the server -and the client. - -This section gives details on the basic component interfaces and abstractions. -The layout and other component container abstractions are described in -<<dummy/../../../framework/layout/layout-overview.asciidoc#layout.overview,"Managing -Layout">>. The interfaces that define the Vaadin data model are described in -<<dummy/../../../framework/datamodel/datamodel-overview.asciidoc#datamodel.overview,"Binding -Components to Data">>. - -[[figure.components.interfaces]] -.Component Interfaces and Abstractions -image::img/component-abstractions-hi.png[] - -((("[classname]#Paintable#"))) -((("[classname]#VariableOwner#"))) -All components also implement the [classname]#Paintable# interface, which is -used for serializing ("painting") the components to the client, and the reverse -[classname]#VariableOwner# interface, which is needed for deserializing -component state or user interaction from the client. - -((("[classname]#Serializable#"))) -In addition to the interfaces defined within the Vaadin framework, all -components implement the [classname]#java.io.Serializable# interface to allow -serialization. Serialization is needed in many clustering and cloud computing -solutions. - -[[components.interfaces.component]] -== [classname]#Component# Interface - -((("[interfacename]#Component# interface"))) -The [interfacename]#Component# interface is paired with the -[classname]#AbstractComponent# class, which implements all the methods defined -in the interface. - -=== Component Tree Management - -Components are laid out in the user interface hierarchically. The layout is -managed by layout components, or more generally components that implement the -[classname]#ComponentContainer# interface. Such a container is the parent of the -contained components. - -The [methodname]#getParent()# method allows retrieving the parent component of a -component. While there is a [methodname]#setParent()#, you rarely need it as you -usually add components with the [methodname]#addComponent()# method of the -[classname]#ComponentContainer# interface, which automatically sets the parent. - -A component does not know its parent when the component is still being created, -so you can not refer to the parent in the constructor with -[methodname]#getParent()#. - -Attaching a component to an UI triggers a call to its [methodname]#attach()# -method. Correspondingly, removing a component from a container triggers calling -the [methodname]#detach()# method. If the parent of an added component is -already connected to the UI, the [methodname]#attach()# is called immediately -from [methodname]#setParent()#. - - -[source, java] ----- -public class AttachExample extends CustomComponent { - public AttachExample() { - } - - @Override - public void attach() { - super.attach(); // Must call. - - // Now we know who ultimately owns us. - ClassResource r = new ClassResource("smiley.jpg"); - Image image = new Image("Image:", r); - setCompositionRoot(image); - } -} ----- - -The attachment logic is implemented in [classname]#AbstractComponent#, as -described in <<components.interfaces.abstractcomponent>>. - - -((("[classname]#Component# interface"))) - -[[components.interfaces.abstractcomponent]] -== [classname]#AbstractComponent# - -((("[classname]#AbstractComponent#", id="term.components.interfaces.abstractcomponent", range="startofrange"))) - - -[classname]#AbstractComponent# is the base class for all user interface -components. It is the (only) implementation of the [classname]#Component# -interface, implementing all the methods defined in the interface. - -[classname]#AbstractComponent# has a single abstract method, -[methodname]#getTag()#, which returns the serialization identifier of a -particular component class. It needs to be implemented when (and only when) -creating entirely new components. [classname]#AbstractComponent# manages much of -the serialization of component states between the client and the server. -Creation of new components and serialization is described in -<<dummy/../../../framework/gwt/gwt-overview.asciidoc#gwt.overview,"Integrating -with the Server-Side">>. - -(((range="endofrange", startref="term.components.interfaces.abstractcomponent"))) - - - diff --git a/documentation/components/components-label.asciidoc b/documentation/components/components-label.asciidoc deleted file mode 100644 index 9de3fc47da..0000000000 --- a/documentation/components/components-label.asciidoc +++ /dev/null @@ -1,306 +0,0 @@ ---- -title: Label -order: 7 -layout: page ---- - -[[components.label]] -= [classname]#Label# - -[classname]#Label# component displays non-editable text. This text can be used -for short simple labels or for displaying long text, such as paragraphs. The -text can be formatted in HTML or as preformatted text, depending on the -__content mode__ of the label. - -You can give the label text most conviniently in the constructor, as is done in -the following. Label has 100% default width, so the containing layout must also -have defined width. - - -[source, java] ----- -// A container that is 100% wide by default -VerticalLayout layout = new VerticalLayout(); - -Label label = new Label("Labeling can be dangerous"); -layout.addComponent(label); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.label.basic[on-line example, window="_blank"]. - -[classname]#Label# implements the [interfacename]#Property# interface to allow -accessing the text value, so you can get and set the text with -[methodname]#getValue()# and [methodname]#setValue()#. - - -[source, java] ----- -// Get the label's text to initialize a field -TextField editor = new TextField(null, // No caption - label.getValue()); - -// Change the label's text -editor.addValueChangeListener(event -> // Java 8 - label.setValue(editor.getValue())); -editor.setImmediate(true); // Send on Enter ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.label.basic[on-line example, window="_blank"]. - -Label also supports data binding to a property data source, as described later -in <<components.label.databinding>>. However, in that case the value can not be -set through the label, as [classname]#Label# is not a -[interfacename]#Property.Editor# and is not allowed to write to a bound -property. - -Even though [classname]#Label# is text and is often used as a caption, it is a -normal component and therefore also has a caption that you can set with -[methodname]#setCaption()#. As with most other components, the caption is -managed by the containing layout. - -[[components.label.wrap]] -== Text Width and Wrapping - -[classname]#Label# has 100% default width, so the containing layout must also -have a defined width. If the width of the label's text exceeds the width of the -label, the text will wrap around and continue on the next line. Some layout -components have undefined width by default, such as -[classname]#HorizontalLayout#, so you need to pay special care with them. - - -[source, java] ----- -// A container with a defined width. -Panel panel = new Panel("Panel Containing a Label"); -panel.setWidth("300px"); - -panel.setContent( - new Label("This is a Label inside a Panel. There is " + - "enough text in the label to make the text " + - "wrap when it exceeds the width of the panel.")); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.label.wrap[on-line example, window="_blank"]. - -As the size of the [classname]#Panel# in the above example is fixed and the -width of [classname]#Label# is the default 100%, the text in the -[classname]#Label# will wrap to fit the panel, as shown in -<<figure.components.label>>. - -[[figure.components.label]] -.The Label Component -image::img/label-example1.png[] - -Setting [classname]#Label# to undefined width will cause it to not wrap at the -end of the line, as the width of the content defines the width. If placed inside -a layout with defined width, the [classname]#Label# will overflow the layout -horizontally and, normally, be truncated. - - -[[components.label.content-mode]] -== Content Mode - -The content of a label is formatted depending on a __content mode__. By default, -the text is assumed to be plain text and any contained XML-specific characters -will be quoted appropriately to allow rendering the contents of a label in HTML -in a web browser. The content mode can be set in the constructor or with -[methodname]#setContentMode()#, and can have the values defined in the -[classname]#ContentMode# enumeration type in -[package]#com.vaadin.shared.ui.label# package: - -TEXT:: The default content mode where the label contains only plain text. All -characters are allowed, including the special [literal]#++<++#, -[literal]#++>++#, and [literal]#++&++# characters in XML or HTML, which are -quoted properly in HTML while rendering the component. This is the default mode. - -PREFORMATTED:: Content mode where the label contains preformatted text. It will be, by default, -rendered with a fixed-width typewriter font. Preformatted text can contain line -breaks, written in Java with the [literal]#++\n++# escape sequence for a newline -character (ASCII 0x0a), or tabulator characters written with [literal]#++\t++# -(ASCII 0x09). - -HTML:: Content mode where the label contains HTML. - -+ -Please note the following security and validity warnings regarding the HTML -content mode. - - - - -[WARNING] -.Cross-Site Scripting Warning -==== -Having [classname]#Label# in HTML content mode allows pure HTML content. If the -content comes from user input, you should always carefully sanitize it to -prevent cross-site scripting (XSS) attacks. Please see -<<dummy/../../../framework/advanced/advanced-security#advanced.security.sanitizing,"Sanitizing -User Input to Prevent Cross-Site Scripting">>. - -Also, the validity of the HTML content is not checked when rendering the -component and any errors can result in an error in the browser. If the content -comes from an uncertain source, you should always validate it before displaying -it in the component. - -==== - - - -The following example demonstrates the use of [classname]#Label# in different -modes. - - -[source, java] ----- -Label textLabel = new Label( - "Text where formatting characters, such as \\n, " + - "and HTML, such as <b>here</b>, are quoted.", - ContentMode.TEXT); - -Label preLabel = new Label( - "Preformatted text is shown in an HTML <pre> tag.\n" + - "Formatting such as\n" + - " * newlines\n" + - " * whitespace\n" + - "and such are preserved. HTML tags, \n"+ - "such as <b>bold</b>, are quoted.", - ContentMode.PREFORMATTED); - -Label htmlLabel = new Label( - "In HTML mode, all HTML formatting tags, such as \n" + - "<ul>"+ - " <li><b>bold</b></li>"+ - " <li>itemized lists</li>"+ - " <li>etc.</li>"+ - "</ul> "+ - "are preserved.", - ContentMode.HTML); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.label.content-modes.contentmodes[on-line example, window="_blank"]. - -The rendering will look as shown in <<figure.components.label.content-mode>>. - -[[figure.components.label.content-mode]] -.Label Content Modes -image::img/label-modes.png[] - - -ifdef::web[] -[[components.label.spacing]] -== Spacing with a [classname]#Label# - -You can use a [classname]#Label# to create vertical or horizontal space in a -layout. If you need a empty "line" in a vertical layout, having just a label -with empty text is not enough, as it will collapse to zero height. The same goes -for a label with only whitespace as the label text. You need to use a -non-breaking space character, either [literal]#++ ++# or -[literal]#++ ++#: - - -[source, java] ----- -layout.addComponent(new Label(" ", ContentMode.HTML)); ----- - -Using the [parameter]#ContentMode.PREFORMATTED# mode has the same effect; -preformatted spaces do not collapse in a vertical layout. In a -[classname]#HorizontalLayout#, the width of a space character may be -unpredictable if the label font is proportional, so you can use the preformatted -mode to add em-width wide spaces. - -If you want a gap that has adjustable width or height, you can use an empty -label if you specify a height or width for it. For example, to create vertical -space in a [classname]#VerticalLayout#: - - -[source, java] ----- -Label gap = new Label(); -gap.setHeight("1em"); -verticalLayout.addComponent(gap); ----- - -You can make a flexible expanding spacer by having a relatively sized empty -label with [literal]#++100%++# height or width and setting the label as -expanding in the layout. - - -[source, java] ----- -// A wide component bar -HorizontalLayout horizontal = new HorizontalLayout(); -horizontal.setWidth("100%"); - -// Have a component before the gap (a collapsing cell) -Button button1 = new Button("I'm on the left"); -horizontal.addComponent(button1); - -// An expanding gap spacer -Label expandingGap = new Label(); -expandingGap.setWidth("100%"); -horizontal.addComponent(expandingGap); -horizontal.setExpandRatio(expandingGap, 1.0f); - -// A component after the gap (a collapsing cell) -Button button2 = new Button("I'm on the right"); -horizontal.addComponent(button2); ----- - -endif::web[] - -[[components.label.databinding]] -== Data Binding - -While [classname]#Label# is not a field component, it is a -[interfacename]#Property.Viewer# and can be bound to a property data source, -described in -<<dummy/../../../framework/datamodel/datamodel-properties#datamodel.properties,"Properties">>. -You can specify the data source either in the constructor or by the -[methodname]#setPropertyDataSource()# method. - - -[source, java] ----- -// Some property -ObjectProperty<String> property = - new ObjectProperty<String>("some value"); - -// Label that is bound to the property -Label label = new Label(property); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.label.binding[on-line example, window="_blank"]. - -Further, as [classname]#Label# is a [interfacename]#Property#, you can edit its -value with a property editor, such as a field: - - -[source, java] ----- -Label label = new Label("some value"); -TextField editor = new TextField(); -editor.setPropertyDataSource(label); -editor.setImmediate(true); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.label.delegation[on-line example, window="_blank"]. - -However, [classname]#Label# is __not__ a [interfacename]#Property.Editor#, so it -is read-only when bound to a data source. Therefore, you can not use -[methodname]#setValue()# to set the value of a connected data source through a -[classname]#Label# nor bind the label to an editor field, in which case writes -would be delegated through the label. - - -[[components.label.css]] -== CSS Style Rules - - -[source, css] ----- -.v-label { } - pre { } /* In PREFORMATTED content mode */ ----- - -The [classname]#Label# component has a [literal]#++v-label++# overall style. In -the [parameter]#PREFORMATTED# content mode, the text is wrapped inside a -[literal]#++<pre>++# element. - - - - diff --git a/documentation/components/components-link.asciidoc b/documentation/components/components-link.asciidoc deleted file mode 100644 index 35012212b6..0000000000 --- a/documentation/components/components-link.asciidoc +++ /dev/null @@ -1,156 +0,0 @@ ---- -title: Link -order: 8 -layout: page ---- - -[[components.link]] -= [classname]#Link# - -The [classname]#Link# component allows making hyperlinks. References to -locations are represented as resource objects, explained in -<<dummy/../../../framework/application/application-resources#application.resources,"Images -and Other Resources">>. The [classname]#Link# is a regular HTML hyperlink, that -is, an [literal]#++<a href>++# anchor element that is handled natively by the -browser. Unlike when clicking a [classname]#Button#, clicking a -[classname]#Link# does not cause an event on the server-side. - -Links to an arbitrary URL can be made by using an [classname]#ExternalResource# -as follows: - - -[source, java] ----- -// Textual link -Link link = new Link("Click Me!", - new ExternalResource("http://vaadin.com/")); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.link.basic[on-line example, window="_blank"]. - -You can use [methodname]#setIcon()# to make image links as follows: - - -[source, java] ----- -// Image link -Link iconic = new Link(null, - new ExternalResource("http://vaadin.com/")); -iconic.setIcon(new ThemeResource("img/nicubunu_Chain.png")); - -// Image + caption -Link combo = new Link("To appease both literal and visual", - new ExternalResource("http://vaadin.com/")); -combo.setIcon(new ThemeResource("img/nicubunu_Chain.png")); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.link.basic[on-line example, window="_blank"]. - -The resulting links are shown in <<figure.components.link.basic>>. You could add -a " [literal]#++display: block++#" style for the icon element to place the -caption below it. - -[[figure.components.link.basic]] -.[classname]#Link# Example -image::img/link.png[] - -With the simple constructor used in the above example, the resource is opened in -the current window. Using the constructor that takes the target window as a -parameter, or by setting the target window with [methodname]#setTargetName()#, -you can open the resource in another window, such as a popup browser window/tab. -As the target name is an HTML [literal]#++target++# string managed by the -browser, the target can be any window, including windows not managed by the -application itself. You can use the special underscored target names, such as -[literal]#++_blank++# to open the link to a new browser window or tab. - - -[source, java] ----- -// Hyperlink to a given URL -Link link = new Link("Take me a away to a faraway land", - new ExternalResource("http://vaadin.com/")); - -// Open the URL in a new window/tab -link.setTargetName("_blank"); - -// Indicate visually that it opens in a new window/tab -link.setIcon(new ThemeResource("icons/external-link.png")); -link.addStyleName("icon-after-caption"); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.link.target[on-line example, window="_blank"]. - -Normally, the link icon is before the caption. You can have it right of the -caption by reversing the text direction in the containing element. - - -[source, css] ----- -/* Position icon right of the link caption. */ -.icon-after-caption { - direction: rtl; -} -/* Add some padding around the icon. */ -.icon-after-caption .v-icon { - padding: 0 3px; -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.link.target[on-line example, window="_blank"]. - -The resulting link is shown in <<figure.components.link.new-window>>. - -[[figure.components.link.new-window]] -.Link That Opens a New Window -image::img/link-new.png[] - -With the [literal]#++_blank++# target, a normal new browser window is opened. If -you wish to open it in a popup window (or tab), you need to give a size for the -window with [methodname]#setTargetWidth()# and [methodname]#setTargetHeight()#. -You can control the window border style with [methodname]#setTargetBorder()#, -which takes any of the defined border styles [parameter]#TARGET_BORDER_DEFAULT#, -[parameter]#TARGET_BORDER_MINIMAL#, and [parameter]#TARGET_BORDER_NONE#. The -exact result depends on the browser. - - -[source, java] ----- -// Open the URL in a popup -link.setTargetName("_blank"); -link.setTargetBorder(Link.TARGET_BORDER_NONE); -link.setTargetHeight(300); -link.setTargetWidth(400); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.link.target[on-line example, window="_blank"]. - -In addition to the [classname]#Link# component, Vaadin allows alternative ways -to make hyperlinks. The [classname]#Button# component has a -[parameter]#Reindeer.BUTTON_LINK# style name that makes it look like a -hyperlink, while handling clicks in a server-side click listener instead of in -the browser. Also, you can make hyperlinks (or any other HTML) in a -[classname]#Label# in HTML content mode. - -== CSS Style Rules - - -[source, css] ----- -.v-link { } - a { } - .v-icon {} - span {} ----- - -The overall style for the [classname]#Link# component is [literal]#++v-link++#. -The root element contains the [literal]#++<a href>++# hyperlink anchor. Inside -the anchor are the icon, with [literal]#++v-icon++# style, and the caption in a -text span. - -Hyperlink anchors have a number of __pseudo-classes__ that are active at -different times. An unvisited link has [literal]#++a:link++# class and a visited -link [literal]#++a:visited++#. When the mouse pointer hovers over the link, it -will have a:hover, and when the mouse button is being pressed over the link, the -[literal]#++a:active++# class. When combining the pseudo-classes in a selector, -please notice that [literal]#++a:hover++# must come after an -[literal]#++a:link++# and [literal]#++a:visited++#, and [literal]#++a:active++# -after the [literal]#++a:hover++#. - - - - diff --git a/documentation/components/components-listselect.asciidoc b/documentation/components/components-listselect.asciidoc deleted file mode 100644 index 900147ef1c..0000000000 --- a/documentation/components/components-listselect.asciidoc +++ /dev/null @@ -1,57 +0,0 @@ ---- -title: ListSelect -order: 17 -layout: page ---- - -[[components.listselect]] -= [classname]#ListSelect# - -The [classname]#ListSelect# component is list box that shows the selectable -items in a vertical list. If the number of items exceeds the height of the -component, a scrollbar is shown. The component allows both single and multiple -selection modes, which you can set with [methodname]#setMultiSelect()#. It is -visually identical in both modes. - - -[source, java] ----- -// Create the selection component -ListSelect select = new ListSelect("The List"); - -// Add some items (here by the item ID as the caption) -select.addItems("Mercury", "Venus", "Earth", ...); - -select.setNullSelectionAllowed(false); - -// Show 5 items and a scrollbar if there are more -select.setRows(5); ----- - -The number of visible items is set with [methodname]#setRows()#. - -[[figure.components.listselect.basic]] -.The [classname]#ListSelect# Component -image::img/listselect-basic.png[] - -Common selection component features are described in -<<dummy/../../../framework/components/components-selection#components.selection,"Selection -Components">>. - -== CSS Style Rules - - -[source, css] ----- -.v-select {} - .v-select-select {} - option {} ----- - -The component has an overall [literal]#++v-select++# style. The native -[literal]#++<select>++# element has [literal]#++v-select-select++# style. The -items are represented as [literal]#++<option>++# elements. - - - - diff --git a/documentation/components/components-menubar.asciidoc b/documentation/components/components-menubar.asciidoc deleted file mode 100644 index ea984dc0e0..0000000000 --- a/documentation/components/components-menubar.asciidoc +++ /dev/null @@ -1,218 +0,0 @@ ---- -title: MenuBar -order: 25 -layout: page ---- - -[[components.menubar]] -= [classname]#MenuBar# - -The [classname]#MenuBar# component allows creating horizontal dropdown menus, -much like the main menu in desktop applications. - -[[figure.components.menubar]] -.Menu Bar -image::img/menubar-example1.png[] - -[[components.menubar.creation]] -== Creating a Menu - -The actual menu bar component is first created as follows: - - -[source, java] ----- -MenuBar barmenu = new MenuBar(); -main.addComponent(barmenu); ----- - -You insert the top-level menu items to the [classname]#MenuBar# object with the -[methodname]#addItem()# method. It takes a string label, an icon resource, and a -command as its parameters. The icon and command are not required and can be -[parameter]#null#. The [methodname]#addItem()# method returns a -[classname]#MenuBar.MenuItem# object, which you can use to add sub-menu items. -The [classname]#MenuItem# has an identical [methodname]#addItem()# method. - -For example (the command is explained later): - - -[source, java] ----- -// A top-level menu item that opens a submenu -MenuItem drinks = barmenu.addItem("Beverages", null, null); - -// Submenu item with a sub-submenu -MenuItem hots = drinks.addItem("Hot", null, null); -hots.addItem("Tea", - new ThemeResource("icons/tea-16px.png"), mycommand); -hots.addItem("Coffee", - new ThemeResource("icons/coffee-16px.png"), mycommand); - -// Another submenu item with a sub-submenu -MenuItem colds = drinks.addItem("Cold", null, null); -colds.addItem("Milk", null, mycommand); -colds.addItem("Weissbier", null, mycommand); - -// Another top-level item -MenuItem snacks = barmenu.addItem("Snacks", null, null); -snacks.addItem("Weisswurst", null, mycommand); -snacks.addItem("Bratwurst", null, mycommand); -snacks.addItem("Currywurst", null, mycommand); - -// Yet another top-level item -MenuItem servs = barmenu.addItem("Services", null, null); -servs.addItem("Car Service", null, mycommand); ----- - - -[[components.menubar.commands]] -== Handling Menu Selection - -Menu selection is handled by executing a __command__ when the user selects an -item from the menu. A command is a call-back class that implements the -[classname]#MenuBar.Command# interface. - - -[source, java] ----- -// A feedback component -final Label selection = new Label("-"); -main.addComponent(selection); - -// Define a common menu command for all the menu items. -MenuBar.Command mycommand = new MenuBar.Command() { - public void menuSelected(MenuItem selectedItem) { - selection.setValue("Ordered a " + - selectedItem.getText() + - " from menu."); - } -}; ----- - - -ifdef::web[] -[[components.menubar.menuitem]] -== Menu Items - -Menu items have properties such as a caption, icon, enabled, visible, and -description (tooltip). The meaning of these is the same as for components. - -Submenus are created by adding sub-items to an item with [methodname]#addItem()# -or [methodname]#addItemBefore()#. - -The __command__ property is a [classname]#MenuBar.Command# that is called when -the particular menu item is selected. The [methodname]#menuSelected()# callback -gets the clicked menu item as its parameter. - -Menus can have __separators__, which are defined before or after an item with -[methodname]#addSeparatorBefore()# or [methodname]#addSeparator()# on the item, -respectively. - - -[source, java] ----- -MenuItem drinks = barmenu.addItem("Beverages", null, null); -... - -// A sub-menu item after a separator -drinks.addSeparator(); -drinks.addItem("Quit Drinking", null, null); ----- - -Enabling __checkable__ on an menu item with [methodname]#setCheckable()# allows -the user to switch between checked and unchecked state by clicking on the item. -You can set the checked state with [methodname]#setChecked()#. Note that if such -an item has a command, the checked state is not flipped automatically, but you -need to do it explicitly. - -Menu items have various other properties as well, see the API documentation for -more details. - -endif::web[] - -[[components.menubar.css]] -== CSS Style Rules - - -[source, css] ----- -.v-menubar { } - .v-menubar-submenu { } - .v-menubar-menuitem { } - .v-menubar-menuitem-caption { } - .v-menubar-menuitem-selected { } - .v-menubar-submenu-indicator { } ----- - -The menu bar has the overall style name [literal]#++.v-menubar++#. Each menu -item has [literal]#++.v-menubar-menuitem++# style normally and additionally -[literal]#++.v-menubar-selected++# when the item is selected, that is, when the -mouse pointer hovers over it. The item caption is inside a -[literal]#++v-menubar-menuitem-caption++#. In the top-level menu bar, the items -are directly under the component element. - -Submenus are floating [literal]#++v-menubar-submenu++# elements outside the menu -bar element. Therefore, you should not try to match on the component element for -the submenu popups. In submenus, any further submenu levels are indicated with a -[literal]#++v-menubar-submenu-indicator++#. - -ifdef::web[] -[[components.menubar.css.menuitems]] -=== Styling Menu Items - -You can set the CSS style name for the menu items with -[methodname]#setStyleName()#, just like for components. The style name will be -prepended with [literal]#++v-menubar-menuitem-++#. As [classname]#MenuBar# does -not indicate the previous selection in any way, you can do that by highlighting -the previously selected item. However, beware that the [literal]#++selected++# -style for menu items, that is, [literal]#++v-menubar-menuitem-selected++#, is -reserved for mouse-hover indication. - - -[source, java] ----- -MenuBar barmenu = new MenuBar(); -barmenu.addStyleName("mybarmenu"); -layout.addComponent(barmenu); - -// A feedback component -final Label selection = new Label("-"); -layout.addComponent(selection); - -// Define a common menu command for all the menu items -MenuBar.Command mycommand = new MenuBar.Command() { - MenuItem previous = null; - - public void menuSelected(MenuItem selectedItem) { - selection.setValue("Ordered a " + - selectedItem.getText() + - " from menu."); - - if (previous != null) - previous.setStyleName(null); - selectedItem.setStyleName("highlight"); - previous = selectedItem; - } -}; - -// Put some items in the menu -barmenu.addItem("Beverages", null, mycommand); -barmenu.addItem("Snacks", null, mycommand); -barmenu.addItem("Services", null, mycommand); ----- - -You could then style the highlighting in CSS as follows: - - -[source, css] ----- -.mybarmenu .v-menubar-menuitem-highlight { - background: #000040; /* Dark blue */ -} ----- - -endif::web[] - - - - diff --git a/documentation/components/components-nativeselect.asciidoc b/documentation/components/components-nativeselect.asciidoc deleted file mode 100644 index f27c797eb9..0000000000 --- a/documentation/components/components-nativeselect.asciidoc +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: NativeSelect -order: 18 -layout: page ---- - -[[components.nativeselect]] -= [classname]#NativeSelect# - -[classname]#NativeSelect# is a drop-down selection component implemented with -the native selection input of web browsers, using the HTML -[literal]#++<select>++# element. - - -[source, java] ----- -// Create the selection component -NativeSelect select = new NativeSelect("Native Selection"); - -// Add some items -select.addItems("Mercury", "Venus", ...); ----- - -The [methodname]#setColumns()# allows setting the width of the list as -"columns", which is a measure that depends on the browser. - -[[figure.components.nativeselect.basic]] -.The [classname]#NativeSelect# Component -image::img/nativeselect-basic.png[] - -Common selection component features are described in -<<dummy/../../../framework/components/components-selection#components.selection,"Selection -Components">>. - -== CSS Style Rules - - -[source, css] ----- -.v-select {} - .v-select-select {} ----- - -The component has a [literal]#++v-select++# overall style. The native -[literal]#++select++# element has [literal]#++v-select-select++# style. - - - - diff --git a/documentation/components/components-optiongroup.asciidoc b/documentation/components/components-optiongroup.asciidoc deleted file mode 100644 index 8c66db64c4..0000000000 --- a/documentation/components/components-optiongroup.asciidoc +++ /dev/null @@ -1,141 +0,0 @@ ---- -title: OptionGroup -order: 19 -layout: page ---- - -[[components.optiongroup]] -= [classname]#OptionGroup# - -[classname]#OptionGroup# is a selection component that allows selection from a -group of radio buttons in single selection mode. In multiple selection mode, the -items show up as check boxes. The common selection component features are -described in -<<dummy/../../../framework/components/components-selection#components.selection,"Selection -Components">>. - -[[figure.components.optiongroup]] -.Option Button Group in Single and Multiple Selection Mode -image::img/optiongroup-basic.png[] - -Option group is by default in single selection mode. Multiple selection is -enabled with [methodname]#setMultiSelect()#. - - -[source, java] ----- -// A single-select radio button group -OptionGroup single = new OptionGroup("Single Selection"); -single.addItems("Single", "Sola", "Yksi"); - -// A multi-select check box group -OptionGroup multi = new OptionGroup("Multiple Selection"); -multi.setMultiSelect(true); -multi.addItems("Many", "Muchos", "Monta"); ----- - -<<figure.components.optiongroup>> shows the [classname]#OptionGroup# in both -single and multiple selection mode. - -You can also create check boxes individually using the [classname]#CheckBox# -class, as described in -<<dummy/../../../framework/components/components-checkbox#components.checkbox,"CheckBox">>. -The advantages of the [classname]#OptionGroup# component are that as it -maintains the individual check box objects, you can get an array of the -currently selected items easily, and that you can easily change the appearance -of a single component. - -[[components.optiongroup.disabling]] -== Disabling Items - -You can disable individual items in an [classname]#OptionGroup# with -[methodname]#setItemEnabled()#. The user can not select or deselect disabled -items in multi-select mode, but in single-select mode the use can change the -selection from a disabled to an enabled item. The selections can be changed -programmatically regardless of whether an item is enabled or disabled. You can -find out whether an item is enabled with [methodname]#isItemEnabled()#. - -The [methodname]#setItemEnabled()# identifies the item to be disabled by its -item ID. - - -[source, java] ----- -// Have an option group with some items -OptionGroup group = new OptionGroup("My Disabled Group"); -group.addItems("One", "Two", "Three"); - -// Disable one item by its item ID -group.setItemEnabled("Two", false); ----- - -The item IDs are also used for the captions in this example. The result is shown -in <<figure.components.optiongroup.disabling>>. - -[[figure.components.optiongroup.disabling]] -.[classname]#OptionGroup# with a Disabled Item -image::img/optiongroup-disabling.png[] - -Setting an item as disabled turns on the [literal]#++v-disabled++# style for it. - - -[[components.optiongroup.css]] -== CSS Style Rules - - -[source, css] ----- -.v-select-optiongroup {} - .v-select-option.v-checkbox {} - .v-select-option.v-radiobutton {} ----- - -The [literal]#++v-select-optiongroup++# is the overall style for the component. -Each check box will have the [literal]#++v-checkbox++# style, borrowed from the -[classname]#CheckBox# component, and each radio button the -[literal]#++v-radiobutton++# style. Both the radio buttons and check boxes will -also have the [literal]#++v-select-option++# style that allows styling -regardless of the option type. Disabled items have additionally the -[literal]#++v-disabled++# style. - -[[components.optiongroup.css.horizontal]] -=== Horizontal Layout - -The options are normally laid out vertically. You can use horizontal layout by -setting [literal]#++display: inline-block++# for the options. The -[literal]#++nowrap++# setting for the overall element prevents wrapping if there -is not enough horizontal space in the layout, or if the horizontal width is -undefined. - - -[source, css] ----- -/* Lay the options horizontally */ -.v-select-optiongroup-horizontal .v-select-option { - display: inline-block; -} - -/* Avoid wrapping if the layout is too tight */ -.v-select-optiongroup-horizontal { - white-space: nowrap; -} - -/* Some extra spacing is needed */ -.v-select-optiongroup-horizontal - .v-select-option.v-radiobutton { - padding-right: 10px; -} ----- - -Use of the above rules requires setting a custom [literal]#++horizontal++# style -name for the component. The result is shown in -<<figure.components.optiongroup.horizontal>>. - -[[figure.components.optiongroup.horizontal]] -.Horizontal [classname]#OptionGroup# -image::img/optiongroup-horizontal.png[] - - - - - diff --git a/documentation/components/components-overview.asciidoc b/documentation/components/components-overview.asciidoc deleted file mode 100644 index c1d133f9f9..0000000000 --- a/documentation/components/components-overview.asciidoc +++ /dev/null @@ -1,81 +0,0 @@ ---- -title: Overview -order: 1 -layout: page ---- - -[[components.overview]] -= Overview - -Vaadin provides a comprehensive set of user interface components and allows you -to define custom components. <<figure.uicomponents>> illustrates the inheritance -hierarchy of the UI component classes and interfaces. Interfaces are displayed -in gray, abstract classes in orange, and regular classes in blue. An annotated -version of the diagram is featured in the __Vaadin Cheat Sheet__. - -[[figure.uicomponents]] -.User Interface Component Class Hierarchy -image::img/component-diagram-hi.png[] - -((("[classname]#Component#"))) -At the top of the interface hierarchy, we have the [classname]#Component# -interface. -((("[classname]#AbstractComponent#"))) -At the top of the class hierarchy, we have the [classname]#AbstractComponent# -class. -((("[classname]#AbstractField#"))) -((("[classname]#AbstractComponentContainer#"))) -It is inherited by two other abstract classes: [classname]#AbstractField#, -inherited further by field components, and -[classname]#AbstractComponentContainer#, inherited by various container and -layout components. Components that are not bound to a content data model, such -as labels and links, inherit [classname]#AbstractComponent# directly. - -((("layout"))) -((("[classname]#Layout#"))) -The layout of the various components in a window is controlled, logically, by -layout components, just like in conventional Java UI toolkits for desktop -applications. In addition, with the [classname]#CustomLayout# component, you can -write a custom layout as an HTML template that includes the locations of any -contained components. Looking at the inheritance diagram, we can see that layout -components inherit the [classname]#AbstractComponentContainer# and the -[classname]#Layout# interface. Layout components are described in detail in -<<dummy/../../../framework/layout/layout-overview.asciidoc#layout.overview,"Managing -Layout">>. - -((("[classname]#Window#"))) -Looking at it from the perspective of an object hierarchy, we would have a -[classname]#Window# object, which contains a hierachy of layout components, -which again contain other layout components, field components, and other visible -components. - -((("Sampler"))) -((("JavaDoc"))) -You can browse the built-in UI components of Vaadin library in the Sampler -application of the Vaadin Demo. The Sampler shows a description, JavaDoc -documentation, and a code samples for each of the components. - -In addition to the built-in components, many components are available as -add-ons, either from the Vaadin Directory or from independent sources. Both -commercial and free components exist. The installation of add-ons is described -in -<<dummy/../../../framework/addons/addons-overview.asciidoc#addons.overview,"Using -Vaadin Add-ons">>. - - -[NOTE] -.Vaadin Cheat Sheet and Refcard -==== -<<figure.uicomponents>> is included in the Vaadin Cheat Sheet that illustrates -the basic relationship hierarchy of the user interface components and data -binding classes and interfaces. You can download it at http://vaadin.com/book. - -The diagram is also included in the six-page DZone Refcard, which you can find -at https://vaadin.com/refcard. - -==== - - - - - diff --git a/documentation/components/components-passwordfield.asciidoc b/documentation/components/components-passwordfield.asciidoc deleted file mode 100644 index c8a8c220ba..0000000000 --- a/documentation/components/components-passwordfield.asciidoc +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: PasswordField -order: 11 -layout: page ---- - -[[components.passwordfield]] -= [classname]#PasswordField# - -The [classname]#PasswordField# is a variant of [classname]#TextField# that hides -the typed input from visual inspection. - - -[source, java] ----- -PasswordField tf = new PasswordField("Keep it secret"); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.passwordfield.basic[on-line example, window="_blank"]. - -The result is shown in <<figure.components.passwordfield.basic>>. - -[[figure.components.passwordfield.basic]] -.[classname]#PasswordField# -image::img/passwordfield-basic.png[] - -You should note that the [classname]#PasswordField# hides the input only from -"over the shoulder" visual observation. Unless the server connection is -encrypted with a secure connection, such as HTTPS, the input is transmitted in -clear text and may be intercepted by anyone with low-level access to the -network. Also phishing attacks that intercept the input in the browser may be -possible by exploiting JavaScript execution security holes in the browser. - -[[components.passwordfield.css]] -== CSS Style Rules - - -[source, css] ----- -.v-textfield { } ----- - -The [classname]#PasswordField# does not have its own CSS style name but uses the -same [literal]#++v-textfield++# style as the regular [classname]#TextField#. See -<<dummy/../../../framework/components/components-textfield#components.textfield.css,"CSS -Style Rules">> for information on styling it. - -CSS Styling - - diff --git a/documentation/components/components-popupview.asciidoc b/documentation/components/components-popupview.asciidoc deleted file mode 100644 index a26d15d951..0000000000 --- a/documentation/components/components-popupview.asciidoc +++ /dev/null @@ -1,87 +0,0 @@ ---- -title: PopupView -order: 29 -layout: page ---- - -[[components.popupview]] -= [classname]#PopupView# - -The [classname]#PopupView# component allows opening a pop-up view either by -clicking on a link or programmatically. The component has two representations: a -minimized textual representation and the popped-up content. The view can contain -any components. The view closes automatically when the mouse pointer moves -outside the view. - -In the following, we have a popup view with a text field and a button that opens -automatically when the user clicks on a "Open the popup" link: - - -[source, java] ----- -// Content for the PopupView -VerticalLayout popupContent = new VerticalLayout(); -popupContent.addComponent(new TextField("Textfield")); -popupContent.addComponent(new Button("Button")); - -// The component itself -PopupView popup = new PopupView("Pop it up", popupContent); -layout.addComponent(popup); ----- - -If the textual minimized representation is not given (a null is given), the -component is invisible in the minimized state. The pop-up can be opened -programmatically by calling [methodname]#setPopupVisible(true)#. For example: - - -[source, java] ----- -// A pop-up view without minimalized representation -PopupView popup = new PopupView(null, - new Table(null, TableExample.generateContent())); - -// A component to open the view -Button button = new Button("Show table", click -> // Java 8 - popup.setPopupVisible(true)); - -layout.addComponents(button, popup); ----- - -When the pop-up is opened or closed, a [classname]#PopupVisibilityEvent# is -fired, which can be handled with a [interfacename]#PopupVisibilityListener# -added with [methodname]#setPopupVisibilityListener()#. - - -[source, java] ----- -// Fill the pop-up content when it's popped up -popup.addPopupVisibilityListener(event -> { - if (event.isPopupVisible()) { - popupContent.removeAllComponents(); - popupContent.addComponent(new Table(null, - TableExample.generateContent())); - }}); ----- - -[[components.popupview.css]] -== CSS Style Rules - - -[source, css] ----- -.v-popupview {} -.v-overlay-container { - .v-popupview-popup { - .popupContent { } - } -} ----- - -In minimalized state, the component has [literal]#++v-popupview++# style. When -popped up, the pop-up content is shown in a [literal]#++v-popupview-popup++# -overlay element under the [literal]#++v-overlay-container++#, which is contains -all floating overlays outside the component hierarchy. - - - - diff --git a/documentation/components/components-progressbar.asciidoc b/documentation/components/components-progressbar.asciidoc deleted file mode 100644 index 4e50ae1b43..0000000000 --- a/documentation/components/components-progressbar.asciidoc +++ /dev/null @@ -1,209 +0,0 @@ ---- -title: ProgressBar -order: 27 -layout: page ---- - -[[components.progressbar]] -= [classname]#ProgressBar# - -The [classname]#ProgressBar# component allows displaying the progress of a task -graphically. The progress is specified as a floating-point value between 0.0 and -1.0. - -[[figure.components.progressbar.basic]] -.The Progress Bar Component -image::img/progressbar-basic.png[] - -To display upload progress with the [classname]#Upload# component, you can -update the progress bar in a [interfacename]#ProgressListener#. - -When the position of a progress bar is done in a background thread, the change -is not shown in the browser immediately. You need to use either polling or -server push to update the browser. You can enable polling with -[methodname]#setPollInterval()# in the current UI instance. See -<<dummy/../../../framework/advanced/advanced-push#advanced.push,"Server Push">> -for instructions about using server push. Whichever method you use to update the -UI, it is important to lock the user session by modifying the progress bar value -inside [methodname]#access()# call, as illustrated in the following example and -described in -<<dummy/../../../framework/advanced/advanced-push#advanced.push.running,"Accessing -UI from Another Thread">>. - - -[source, java] ----- -final ProgressBar bar = new ProgressBar(0.0f); -layout.addComponent(bar); - -layout.addComponent(new Button("Increase", - new ClickListener() { - @Override - public void buttonClick(ClickEvent event) { - float current = bar.getValue(); - if (current < 1.0f) - bar.setValue(current + 0.10f); - } -})); ----- - -[[components.progressbar.indeterminate]] -== Indeterminate Mode - -In the indeterminate mode, a non-progressive indicator is displayed -continuously. The indeterminate indicator is a circular wheel in the built-in -themes. The progress value has no meaning in the indeterminate mode. - - -[source, java] ----- -ProgressBar bar = new ProgressBar(); -bar.setIndeterminate(true); ----- - -[[figure.components.progressbar.indeterminate]] -.Indeterminate Progress Bar -image::img/progressbar-indeterminate.png[] - - -ifdef::web[] -[[components.progressbar.thread]] -== Doing Heavy Computation - -The progress indicator is often used to display the progress of a heavy -server-side computation task, often running in a background thread. The UI, -including the progress bar, can be updated either with polling or by using -server push. When doing so, you must ensure thread-safety, most easily by -updating the UI inside a [methodname]#UI.access()# call in a -[interfacename]#Runnable#, as described in -<<dummy/../../../framework/advanced/advanced-push#advanced.push.running,"Accessing -UI from Another Thread">>. - -In the following example, we create a thread in the server to do some "heavy -work" and use polling to update the UI. All the thread needs to do is to set the -value of the progress bar with [methodname]#setValue()# and the current progress -is displayed automatically when the browser polls the server. - - -[source, java] ----- -HorizontalLayout barbar = new HorizontalLayout(); -layout.addComponent(barbar); - -// Create the indicator, disabled until progress is started -final ProgressBar progress = new ProgressBar(new Float(0.0)); -progress.setEnabled(false); -barbar.addComponent(progress); - -final Label status = new Label("not running"); -barbar.addComponent(status); - -// A button to start progress -final Button button = new Button("Click to start"); -layout.addComponent(button); - -// A thread to do some work -class WorkThread extends Thread { - // Volatile because read in another thread in access() - volatile double current = 0.0; - - @Override - public void run() { - // Count up until 1.0 is reached - while (current < 1.0) { - current += 0.01; - - // Do some "heavy work" - try { - sleep(50); // Sleep for 50 milliseconds - } catch (InterruptedException e) {} - - // Update the UI thread-safely - UI.getCurrent().access(new Runnable() { - @Override - public void run() { - progress.setValue(new Float(current)); - if (current < 1.0) - status.setValue("" + - ((int)(current*100)) + "% done"); - else - status.setValue("all done"); - } - }); - } - - // Show the "all done" for a while - try { - sleep(2000); // Sleep for 2 seconds - } catch (InterruptedException e) {} - - // Update the UI thread-safely - UI.getCurrent().access(new Runnable() { - @Override - public void run() { - // Restore the state to initial - progress.setValue(new Float(0.0)); - progress.setEnabled(false); - - // Stop polling - UI.getCurrent().setPollInterval(-1); - - button.setEnabled(true); - status.setValue("not running"); - } - }); - } -} - -// Clicking the button creates and runs a work thread -button.addClickListener(new Button.ClickListener() { - public void buttonClick(ClickEvent event) { - final WorkThread thread = new WorkThread(); - thread.start(); - - // Enable polling and set frequency to 0.5 seconds - UI.getCurrent().setPollInterval(500); - - // Disable the button until the work is done - progress.setEnabled(true); - button.setEnabled(false); - - status.setValue("running..."); - } -}); ----- - -The example is illustrated in <<figure.components.progressbar.thread>>. - -[[figure.components.progressbar.thread]] -.Doing Heavy Work -image::img/progressbar-thread.png[] - -endif::web[] - -[[components.progressbar.css]] -== CSS Style Rules - - -[source, css] ----- -.v-progressbar, v-progressbar-indeterminate {} - .v-progressbar-wrapper {} - .v-progressbar-indicator {} ----- - -The progress bar has a [literal]#++v-progressbar++# base style. The animation is -the background of the element with [literal]#++v-progressbar-wrapper++# style, -by default an animated GIF image. The progress is an element with -[literal]#++v-progressbar-indicator++# style inside the wrapper, and therefore -displayed on top of it. When the progress element grows, it covers more and more -of the animated background. - -In the indeterminate mode, the top element also has the -[literal]#++v-progressbar-indeterminate++# style. The built-in themes simply -display the animated GIF in the top element and have the inner elements -disabled. - - - - diff --git a/documentation/components/components-richtextarea.asciidoc b/documentation/components/components-richtextarea.asciidoc deleted file mode 100644 index 6d71757c9c..0000000000 --- a/documentation/components/components-richtextarea.asciidoc +++ /dev/null @@ -1,123 +0,0 @@ ---- -title: RichTextArea -order: 12 -layout: page ---- - -[[components.richtextarea]] -= [classname]#RichTextArea# - -The [classname]#RichTextArea# field allows entering or editing formatted text. -The toolbar provides all basic editing functionalities. The text content of -[classname]#RichTextArea# is represented in HTML format. -[classname]#RichTextArea# inherits [classname]#TextField# and does not add any -API functionality over it. You can add new functionality by extending the -client-side components [classname]#VRichTextArea# and -[classname]#VRichTextToolbar#. - -As with [classname]#TextField#, the textual content of the rich text area is the -[classname]#Property# of the field and can be set with [methodname]#setValue()# -and read with [methodname]#getValue()#. - - -[source, java] ----- -// Create a rich text area -final RichTextArea rtarea = new RichTextArea(); -rtarea.setCaption("My Rich Text Area"); - -// Set initial content as HTML -rtarea.setValue("<h1>Hello</h1>\n" + - "<p>This rich text area contains some text.</p>"); ----- - -.Rich Text Area Component -image::img/richtextarea-example1.png[] - -Above, we used context-specific tags such as [literal]#++<h1>++# in the initial -HTML content. The rich text area component does not allow creating such tags, -only formatting tags, but it does preserve them unless the user edits them away. -Any non-visible whitespace such as the new line character ( [literal]#++\n++#) -are removed from the content. For example, the value set above will be as -follows when read from the field with [methodname]#getValue()#: - - -[source, html] ----- -<h1>Hello</h1> <p>This rich text area contains some text.</p> ----- - - -[WARNING] -.Cross-Site Scripting Warning -==== -The user input from a [classname]#RichTextArea# is transmitted as HTML from the -browser to server-side and is not sanitized. As the entire purpose of the -[classname]#RichTextArea# component is to allow input of formatted text, you can -not sanitize it just by removing all HTML tags. Also many attributes, such as -[parameter]#style#, should pass through the sanitization. - -See -<<dummy/../../../framework/advanced/advanced-security#advanced.security.sanitizing,"Sanitizing -User Input to Prevent Cross-Site Scripting">> for more details on Cross-Site -scripting vulnerabilities and sanitization of user input. - -==== - - - -ifdef::web[] -[[components.richtextarea.localization]] -== Localizing RichTextArea Toolbars - -The rich text area is one of the few components in Vaadin that contain textual -labels. The selection boxes in the toolbar are in English and currently can not -be localized in any other way than by inheriting or reimplementing the -client-side [classname]#VRichTextToolbar# widget. The buttons can be localized -simply with CSS by downloading a copy of the toolbar background image, editing -it, and replacing the default toolbar. The toolbar is a single image file from -which the individual button icons are picked, so the order of the icons is -different from the rendered. The image file depends on the client-side -implementation of the toolbar. - - -[source, css] ----- -.v-richtextarea-richtextexample .gwt-ToggleButton -.gwt-Image { - background-image: url(img/richtextarea-toolbar-fi.png) - !important; -} ----- - -.Regular English and a Localized Rich Text Area Toolbar -image::img/richtextarea-toolbar-whitebg.png[] - -endif::web[] - -== CSS Style Rules - - -[source, css] ----- -.v-richtextarea { } -.v-richtextarea .gwt-RichTextToolbar { } -.v-richtextarea .gwt-RichTextArea { } ----- - -The rich text area consists of two main parts: the toolbar with overall style -[literal]#++.gwt-RichTextToolbar++# and the editor area with style -[literal]#++.gwt-RichTextArea++#. The editor area obviously contains all the -elements and their styles that the HTML content contains. The toolbar contains -buttons and drop-down list boxes with the following respective style names: - - -[source, css] ----- -.gwt-ToggleButton { } -.gwt-ListBox { } ----- - - - - diff --git a/documentation/components/components-selection.asciidoc b/documentation/components/components-selection.asciidoc deleted file mode 100644 index 5c27ac3936..0000000000 --- a/documentation/components/components-selection.asciidoc +++ /dev/null @@ -1,468 +0,0 @@ ---- -title: Selection Components -order: 5 -layout: page ---- - -[[components.selection]] -= Selection Components - -Vaadin offers many alternative ways for selecting one or more items. The core -library includes the following selection components, all based on the -[classname]#AbstractSelect# class: - -[classname]#ComboBox# (Section <<dummy/../../../framework/components/components-combobox#components.combobox,"ComboBox">>):: A drop-down list with a text box, where the user can type text to find matching items. The component also provides an input prompt and the user can enter new items. -[classname]#ListSelect# (Section <<dummy/../../../framework/components/components-listselect#components.listselect,"ListSelect">>):: A vertical list box for selecting items in either single or multiple selection mode. -[classname]#NativeSelect# (Section<<dummy/../../../framework/components/components-nativeselect#components.nativeselect,"NativeSelect">>):: Provides selection using the native selection component of the browser, typically a drop-down list for single selection and a multi-line list in multiselect mode. This uses the [literal]#++<select>++# element in HTML. -[classname]#OptionGroup# (Section <<dummy/../../../framework/components/components-optiongroup#components.optiongroup,"OptionGroup">>):: Shows the items as a vertically arranged group of radio buttons in the single selection mode and of check boxes in multiple selection mode. -[classname]#TwinColSelect# (Section <<dummy/../../../framework/components/components-twincolselect#components.twincolselect,"TwinColSelect">>):: Shows two list boxes side by side where the user can select items from a list of available items and move them to a list of selected items using control buttons. - - -In addition, the [classname]#Tree#, [classname]#Table#, and -[classname]#TreeTable# components allow special forms of selection. They also -inherit the [classname]#AbstractSelect#. - -[[components.selection.databinding]] -== Binding Selection Components to Data - -The selection components are strongly coupled with the Vaadin Data Model, -described in -<<dummy/../../../framework/datamodel/datamodel-overview.asciidoc#datamodel.overview,"Binding -Components to Data">>. The selectable items in all selection components are -objects that implement the [classname]#Item# interface. The items are contained -in a [classname]#Container#. - -All selection components are containers themselves and simply forward all -container operations to the underlying container data source. You can give the -container in the constructor or set it set -[methodname]#setContainerDataSource()#. This is further described in -<<dummy/../../../framework/datamodel/datamodel-container#datamodel.container.intro,"Basic -Use of Containers">>. - - -[source, java] ----- -// Have a container data source of some kind -IndexedContainer container = new IndexedContainer(); -container.addContainerProperty("name", String.class, null); -... - -// Create a selection component bound to the container -OptionGroup group = new OptionGroup("My Select", container); ----- - -If you do not bind a selection component to a container data source, a default -container is used. It is usually either an [classname]#IndexedContainer# or a -[classname]#HierarchicalContainer#. - -The current selection of a selection component is bound to the -[classname]#Property# interface, so you can get the current selection as the -value of the selection component. Also selection changes are handled as value -change events, as is described later. - - -[[components.selection.adding]] -== Adding New Items - -New items are added with the [methodname]#addItem()# method defined in the -[classname]#Container# interface, described in -<<dummy/../../../framework/datamodel/datamodel-container#datamodel.container.intro,"Basic -Use of Containers">>. - - -[source, java] ----- -// Create a selection component -ComboBox select = new ComboBox("My ComboBox"); - -// Add items with given item IDs -select.addItem("Mercury"); -select.addItem("Venus"); -select.addItem("Earth"); ----- - -The [methodname]#addItem()# method creates an empty [classname]#Item#, which is -identified by its __item identifier__ (IID) object, given as the parameter. This -item ID is by default used also as the caption of the item, as described in more -detail later. - -We emphasize that [methodname]#addItem()# is a factory method that __takes an -item ID, not the actual item__ as the parameter - the item is returned by the -method. The item is of a type that is specific to the container and has itself -little relevance for most selection components, as the properties of an item may -not be used in any way (except in [classname]#Table#), only the item ID. - -The item identifier is typically a string, in which case it can be used as the -caption, but can be any object type. We could as well have given integers for -the item identifiers and set the captions explicitly with -[methodname]#setItemCaption()#. You could also add an item with the -parameterless [methodname]#addItem()#, which returns an automatically generated -item ID. - - -[source, java] ----- -// Create a selection component -ComboBox select = new ComboBox("My Select"); - -// Add an item with a generated ID -Object itemId = select.addItem(); -select.setItemCaption(itemId, "The Sun"); - -// Select the item -select.setValue(itemId); ----- - -Some container types may support passing the actual data object to the add -method. For example, you can add items to a [classname]#BeanItemContainer# with -[methodname]#addBean()#. Such implementations can use a separate item ID object, -or the data object itself as the item ID, as is done in [methodname]#addBean()#. -In the latter case you can not depend on the default way of acquiring the item -caption; see the description of the different caption modes later. - -The next section describes the different options for determining the item -captions. - - -[[components.selection.captions]] -== Item Captions - -The displayed captions of items in a selection component can be set explicitly -with [methodname]#setItemCaption()# or determined from the item IDs or item -properties. The caption determination is defined with the __caption mode__, any -of the modes in the [classname]#AbstractSelect.ItemCaptionMode# enum, which you -can set with [methodname]#setItemCaptionMode()#. The default mode is -[parameter]#EXPLICIT_DEFAULTS_ID#, which uses the item identifiers for the -captions, unless given explicitly. - -In addition to a caption, an item can have an icon. The icon is set with -[methodname]#setItemIcon()#. - -The caption modes defined in [classname]#ItemCaptionMode# are the following: - -EXPLICIT_DEFAULTS_ID:: This is the default caption mode and its flexibility allows using it in most -cases. By default, the item identifier will be used as the caption. The -identifier object does not necessarily have to be a string; the caption is -retrieved with [methodname]#toString()# method. If the caption is specified -explicitly with [methodname]#setItemCaption()#, it overrides the item -identifier. - - -+ -[source, java] ----- -// Create a selection component -ComboBox select = new ComboBox("Moons of Mars"); -select.setItemCaptionMode(ItemCaptionMode.EXPLICIT_DEFAULTS_ID); - -// Use the item ID also as the caption of this item -select.addItem(new Integer(1)); - -// Set item caption for this item explicitly -select.addItem(2); // same as "new Integer(2)" -select.setItemCaption(2, "Deimos"); ----- -EXPLICIT:: Captions must be explicitly specified with [methodname]#setItemCaption()#. If -they are not, the caption will be empty. Such items with empty captions will -nevertheless be displayed in the selection component as empty items. If they -have an icon, they will be visible. - -ICON_ONLY:: Only icons are shown, captions are hidden. - -ID:: String representation of the item identifier object is used as caption. This is -useful when the identifier is a string, and also when the identifier is an -complex object that has a string representation. For example: - - -+ -[source, java] ----- -ComboBox select = new ComboBox("Inner Planets"); -select.setItemCaptionMode(ItemCaptionMode.ID); - -// A class that implements toString() -class PlanetId extends Object implements Serializable { - String planetName; - - PlanetId (String name) { - planetName = name; - } - public String toString () { - return "The Planet " + planetName; - } -} - -// Use such objects as item identifiers -String planets[] = {"Mercury", "Venus", "Earth", "Mars"}; -for (int i=0; i<planets.length; i++) - select.addItem(new PlanetId(planets[i])); ----- -INDEX:: Index number of item is used as caption. This caption mode is applicable only to -data sources that implement the [classname]#Container.Indexed# interface. If the -interface is not available, the component will throw a -[classname]#ClassCastException#. The [classname]#AbstractSelect# itself does not -implement this interface, so the mode is not usable without a separate data -source. An [classname]#IndexedContainer#, for example, would work. - -ITEM:: [classname]#String# representation of item, acquired with -[methodname]#toString()#, is used as the caption. This is applicable mainly when -using a custom [classname]#Item# class, which also requires using a custom -[classname]#Container# that is used as a data source for the selection -component. - -PROPERTY:: Item captions are read from the [classname]#String# representation of the -property with the identifier specified with -[methodname]#setItemCaptionPropertyId()#. This is useful, for example, when you -have a container that you use as the data source for the selection component, -and you want to use a specific property for caption. - -+ -In the example below, we bind a selection component to a bean container and use -a property of the bean as the caption. - - -+ -[source, java] ----- -/** A bean with a "name" property. */ -public class Planet implements Serializable { - int id; - String name; - - public Planet(int id, String name) { - this.id = id; - this.name = name; - } - - ... setters and getters ... -} - -public void captionproperty(VerticalLayout layout) { - // Have a bean container to put the beans in - BeanItemContainer<Planet> container = - new BeanItemContainer<Planet>(Planet.class); - - // Put some example data in it - container.addItem(new Planet(1, "Mercury")); - container.addItem(new Planet(2, "Venus")); - container.addItem(new Planet(3, "Earth")); - container.addItem(new Planet(4, "Mars")); - - // Create a selection component bound to the container - ComboBox select = new ComboBox("Planets", container); - - // Set the caption mode to read the caption directly - // from the 'name' property of the bean - select.setItemCaptionMode(ItemCaptionMode.PROPERTY); - select.setItemCaptionPropertyId("name"); - - ... ----- - - - -[[components.selection.getset]] -== Getting and Setting Selection - -A selection component provides the current selection as the property of the -component (with the [classname]#Property# interface). The property value is an -item identifier object that identifies the selected item. You can get the -identifier with [methodname]#getValue()# of the [classname]#Property# interface. - -You can select an item with the corresponding [methodname]#setValue()# method. -In multiselect mode, the property will be an unmodifiable set of item -identifiers. If no item is selected, the property will be [parameter]#null# in -single selection mode or an empty collection in multiselect mode. - -The [classname]#ComboBox# and [classname]#NativeSelect# will show empty -selection when no actual item is selected. This is the __null selection item -identifier__. You can set an alternative ID with -[methodname]#setNullSelectionItemId()#. Setting the alternative null ID is -merely a visual text; the [methodname]#getValue()# will still return -[parameter]#null# value if no item is selected, or an empty set in multiselect -mode. - - -[[components.selection.valuechange]] -== Handling Selection Changes - -The item identifier of the currently selected item will be set as the property -of the selection component. You can access it with the [methodname]#getValue()# -method of the [classname]#Property# interface of the component. Also, when -handling selection changes with a [classname]#Property.ValueChangeListener#, the -[classname]#ValueChangeEvent# will have the selected item as the property of the -event, accessible with the [methodname]#getProperty()# method. - - -[source, java] ----- -// Create a selection component with some items -ComboBox select = new ComboBox("My Select"); -select.addItems("Io", "Europa", "Ganymedes", "Callisto"); - -// Handle selection change -select.addValueChangeListener(event -> // Java 8 - layout.addComponent(new Label("Selected " + - event.getProperty().getValue()))); ----- - -The result of user interaction is shown in -<<figure.components.selection.valuechange>>. - -[[figure.components.selection.valuechange]] -.Selected Item -image::img/select-selected1.png[] - - -[[components.selection.newitems]] -== Allowing Adding New Items - -Some selection components can allow the user to add new items. Currently, only -[classname]#ComboBox# allows it, when the user types in a value and presses -Enter. You need to enable the mode with [methodname]#setNewItemsAllowed(true)#. -Setting the component also in immediate mode may be necessary, as otherwise the -item would not be added immediately when the user interacts with the component, -but after some other component causes a server -request.//// -TODO This could be a -bug -//// - - -[source, java] ----- -myselect.setNewItemsAllowed(true); -myselect.setImmediate(true); ----- - -The user interface for adding new items depends on the selection component. The -regular [classname]#ComboBox# component allows you to simply type the new item -in the combo box and hit Enter to add it. - -Adding new items is not possible if the selection component is read-only or is -bound to a [classname]#Container# that does not allow adding new items. An -attempt to do so may result in an exception. - -[[components.selection.newitems.handling]] -=== Handling New Items - -Adding new items is handled by a [interfacename]#NewItemHandler#, which gets the -item caption string as parameter for the [methodname]#addNewItem()# method. The -default implementation, [classname]#DefaultNewItemHandler#, checks for read-only -state, adds the item using the entered caption as the item ID, and if the -selection component gets the captions from a property, copies the caption to -that property. It also selects the item. The default implementation may not be -suitable for all container types, in which case you need to define a custom -handler. For example, a [classname]#BeanItemContainer# expects the items to have -the bean object itself as the ID, not a string. - -ifdef::web[] - -[source, java] ----- -// Have a bean container to put the beans in -final BeanItemContainer<Planet> container = - new BeanItemContainer<Planet>(Planet.class); - -// Put some example data in it -container.addItem(new Planet(1, "Mercury")); -container.addItem(new Planet(2, "Venus")); -container.addItem(new Planet(3, "Earth")); -container.addItem(new Planet(4, "Mars")); - -final ComboBox select = - new ComboBox("Select or Add a Planet", container); -select.setNullSelectionAllowed(false); - -// Use the name property for item captions -select.setItemCaptionPropertyId("name"); - -// Allow adding new items -select.setNewItemsAllowed(true); -select.setImmediate(true); - -// Custom handling for new items -select.setNewItemHandler(new NewItemHandler() { - @Override - public void addNewItem(String newItemCaption) { - // Create a new bean - can't set all properties - Planet newPlanet = new Planet(0, newItemCaption); - container.addBean(newPlanet); - - // Remember to set the selection to the new item - select.select(newPlanet); - - Notification.show("Added new planet called " + - newItemCaption); - } -}); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.select.combobox.newitemhandler[on-line example, window="_blank"]. -endif::web[] - - - -[[components.selection.multiple]] -== Multiple Selection - -Some selection components, such as [classname]#OptionGroup# and -[classname]#ListSelect# support a multiple selection mode, which you can enable -with [methodname]#setMultiSelect()#. For [classname]#TwinColSelect#, which is -especially intended for multiple selection, it is enabled by default. - - -[source, java] ----- -myselect.setMultiSelect(true); ----- - -As in single selection mode, the property value of the component indicates the -selection. In multiple selection mode, however, the property value is a -[classname]#Collection# of the item IDs of the currently selected items. You can -get and set the property with the [methodname]#getValue()# and -[methodname]#setValue()# methods as usual. - -A change in the selection will trigger a [classname]#ValueChangeEvent#, which -you can handle with a [classname]#Propery.ValueChangeListener#. As usual, you -should use [methodname]#setImmediate(true)# to trigger the event immediately -when the user changes the selection. The following example shows how to handle -selection changes with a listener. - - -[source, java] ----- -// A selection component with some items -ListSelect select = new ListSelect("My Selection"); -select.addItems("Mercury", "Venus", "Earth", - "Mars", "Jupiter", "Saturn", "Uranus", "Neptune"); - -// Multiple selection mode -select.setMultiSelect(true); - -// Feedback on value changes -select.addValueChangeListener( - new Property.ValueChangeListener() { - public void valueChange(ValueChangeEvent event) { - // Some feedback - layout.addComponent(new Label("Selected: " + - event.getProperty().getValue().toString())); - } -}); -select.setImmediate(true); ----- - - -[[components.selection.item-icons]] -== Item Icons - -You can set an icon for each item with [methodname]#setItemIcon()#, or define an -item property that provides the icon resource with -[methodname]#setItemIconPropertyId()#, in a fashion similar to captions. Notice, -however, that icons are not supported in [classname]#NativeSelect#, -[classname]#TwinColSelect#, and some other selection components and modes. This -is because HTML does not support images inside the native [literal]#++select++# -elements. Icons are also not really visually applicable. - - - - diff --git a/documentation/components/components-slider.asciidoc b/documentation/components/components-slider.asciidoc deleted file mode 100644 index cc0198baa5..0000000000 --- a/documentation/components/components-slider.asciidoc +++ /dev/null @@ -1,112 +0,0 @@ ---- -title: Slider -order: 28 -layout: page ---- - -[[components.slider]] -= [classname]#Slider# - -The [classname]#Slider# is a vertical or horizontal bar that allows setting a -numeric value within a defined range by dragging a bar handle with the mouse. -The value is shown when dragging the handle. - -[classname]#Slider# has a number of different constructors that take a -combination of the caption, __minimum__ and __maximum__ value, __resolution__, -and the __orientation__ of the slider. - - -[source, java] ----- -// Create a vertical slider -final Slider vertslider = new Slider(1, 100); -vertslider.setOrientation(SliderOrientation.VERTICAL); ----- - -__min__:: Minimum value of the slider range. The default is 0.0. - -__max__:: Maximum value of the slider range. The default is 100.0. - -__resolution__:: The number of digits after the decimal point. The default is 0. - -__orientation__:: The orientation can be either horizontal ( -[parameter]#SliderOrientation.HORIZONTAL#) or vertical ( -[parameter]#SliderOrientation.VERTICAL#). The default is horizontal. - - - -As the [classname]#Slider# is a field component, you can handle value changes -with a [classname]#ValueChangeListener#. The value of the [classname]#Slider# -field is a [classname]#Double# object. - - -[source, java] ----- -// Shows the value of the vertical slider -final Label vertvalue = new Label(); -vertvalue.setSizeUndefined(); - -// Handle changes in slider value. -vertslider.addValueChangeListener( - new Property.ValueChangeListener() { - public void valueChange(ValueChangeEvent event) { - double value = (Double) vertslider.getValue(); - - // Use the value - box.setHeight((float) value, Sizeable.UNITS_PERCENTAGE); - vertvalue.setValue(String.valueOf(value)); - } -}); - -// The slider has to be immediate to send the changes -// immediately after the user drags the handle. -vertslider.setImmediate(true); ----- - -You can set the value with the [methodname]#setValue()# method defined in -[classname]#Slider# that takes the value as a native double value. The setter -can throw a [classname]#ValueOutOfBoundsException#, which you must handle. - - -[source, java] ----- -// Set the initial value. This has to be set after the -// listener is added if we want the listener to handle -// also this value change. -try { - vertslider.setValue(50.0); -} catch (ValueOutOfBoundsException e) { -} ----- - -Alternatively, you can use the regular [methodname]#setValue(Object)#, which -does not do bounds checking. - -<<figure.components.slider.example1>> shows both vertical (from the code -examples) and horizontal sliders that control the size of a box. The slider -values are displayed also in separate labels. - -[[figure.components.slider.example1]] -.The [classname]#Slider# Component -image::img/slider-example1-hi.png[] - -== CSS Style Rules - - -[source, css] ----- -.v-slider {} -.v-slider-base {} -.v-slider-handle {} ----- - -The enclosing style for the [classname]#Slider# is [literal]#++v-slider++#. The -slider bar has style [literal]#++v-slider-base++#. Even though the handle is -higher (for horizontal slider) or wider (for vertical slider) than the bar, the -handle element is nevertheless contained within the slider bar element. The -appearance of the handle comes from a background image defined in the -__background__ CSS property. - - - - diff --git a/documentation/components/components-table.asciidoc b/documentation/components/components-table.asciidoc deleted file mode 100644 index 7ef31e29fb..0000000000 --- a/documentation/components/components-table.asciidoc +++ /dev/null @@ -1,1164 +0,0 @@ ---- -title: Table -order: 21 -layout: page ---- - -[[components.table]] -= [classname]#Table# - -((("[classname]#Table#", id="term.components.table", range="startofrange"))) - - -The [classname]#Table# component is intended for presenting tabular data -organized in rows and columns. The [classname]#Table# is one of the most -versatile components in Vaadin. Table cells can include text or arbitrary UI -components. You can easily implement editing of the table data, for example -clicking on a cell could change it to a text field for editing. - -The data contained in a [classname]#Table# is managed using the Data Model of -Vaadin (see -<<dummy/../../../framework/datamodel/datamodel-overview.asciidoc#datamodel.overview,"Binding -Components to Data">>), through the [classname]#Container# interface of the -[classname]#Table#. This makes it possible to bind a table directly to a data -source, such as a database query. Only the visible part of the table is loaded -into the browser and moving the visible window with the scrollbar loads content -from the server. While the data is being loaded, a tooltip will be displayed -that shows the current range and total number of items in the table. The rows of -the table are __items__ in the container and the columns are __properties__. -Each table row (item) is identified with an __item identifier__ (IID), and each -column (property) with a __property identifier__ (PID). - -When creating a table, you first need to define columns with -[methodname]#addContainerProperty()#. This method comes in two flavors. The -simpler one takes the property ID of the column and uses it also as the caption -of the column. The more complex one allows differing PID and header for the -column. This may make, for example, internationalization of table headers -easier, because if a PID is internationalized, the internationalization has to -be used everywhere where the PID is used. The complex form of the method also -allows defining an icon for the column from a resource. The "default value" -parameter is used when new properties (columns) are added to the table, to fill -in the missing values. (This default has no meaning in the usual case, such as -below, where we add items after defining the properties.) - - -[source, java] ----- -Table table = new Table("The Brightest Stars"); - -// Define two columns for the built-in container -table.addContainerProperty("Name", String.class, null); -table.addContainerProperty("Mag", Float.class, null); - -// Add a row the hard way -Object newItemId = table.addItem(); -Item row1 = table.getItem(newItemId); -row1.getItemProperty("Name").setValue("Sirius"); -row1.getItemProperty("Mag").setValue(-1.46f); - -// Add a few other rows using shorthand addItem() -table.addItem(new Object[]{"Canopus", -0.72f}, 2); -table.addItem(new Object[]{"Arcturus", -0.04f}, 3); -table.addItem(new Object[]{"Alpha Centauri", -0.01f}, 4); - -// Show exactly the currently contained rows (items) -table.setPageLength(table.size()); ----- - -In this example, we used an increasing [classname]#Integer# object as the Item -Identifier, given as the second parameter to [methodname]#addItem()#. The actual -rows are given simply as object arrays, in the same order in which the -properties were added. The objects must be of the correct class, as defined in -the [methodname]#addContainerProperty()# calls. - -.Basic Table Example -image::img/table-example1.png[] - -Scalability of the [classname]#Table# is largely dictated by the container. The -default [classname]#IndexedContainer# is relatively heavy and can cause -scalability problems, for example, when updating the values. Use of an optimized -application-specific container is recommended. Table does not have a limit for -the number of items and is just as fast with hundreds of thousands of items as -with just a few. With the current implementation of scrolling, there is a limit -of around 500 000 rows, depending on the browser and the pixel height of rows. - -Common selection component features are described in -<<dummy/../../../framework/components/components-selection#components.selection,"Selection -Components">>. - -[[components.table.selecting]] -== Selecting Items in a Table - -The [classname]#Table# allows selecting one or more items by clicking them with -the mouse. When the user selects an item, the IID of the item will be set as the -property of the table and a [classname]#ValueChangeEvent# is triggered. To -enable selection, you need to set the table __selectable__. You will also need -to set it as __immediate__ in most cases, as we do below, because without it, -the change in the property will not be communicated immediately to the server. - -The following example shows how to enable the selection of items in a -[classname]#Table# and how to handle [classname]#ValueChangeEvent# events that -are caused by changes in selection. You need to handle the event with the -[methodname]#valueChange()# method of the -[classname]#Property.ValueChangeListener# interface. - - -[source, java] ----- -// Allow selecting items from the table. -table.setSelectable(true); - -// Send changes in selection immediately to server. -table.setImmediate(true); - -// Shows feedback from selection. -final Label current = new Label("Selected: -"); - -// Handle selection change. -table.addValueChangeListener(new Property.ValueChangeListener() { - public void valueChange(ValueChangeEvent event) { - current.setValue("Selected: " + table.getValue()); - } -}); ----- - -.Table Selection Example -image::img/table-example2.png[] - -If the user clicks on an already selected item, the selection will deselected -and the table property will have [parameter]#null# value. You can disable this -behaviour by setting [methodname]#setNullSelectionAllowed(false)# for the table. - -The selection is the value of the table's property, so you can get it with -[methodname]#getValue()#. You can get it also from a reference to the table -itself. In single selection mode, the value is the item identifier of the -selected item or [parameter]#null# if no item is selected. In multiple selection -mode (see below), the value is a [classname]#Set# of item identifiers. Notice -that the set is unmodifiable, so you can not simply change it to change the -selection. - -=== Multiple Selection Mode - -A table can also be in __multiselect__ mode, where a user can select multiple -items by clicking them with left mouse button while holding the Ctrl key (or -Meta key) pressed. If Ctrl is not held, clicking an item will select it and -other selected items are deselected. The user can select a range by selecting an -item, holding the Shift key pressed, and clicking another item, in which case -all the items between the two are also selected. Multiple ranges can be selected -by first selecting a range, then selecting an item while holding Ctrl, and then -selecting another item with both Ctrl and Shift pressed. - -The multiselect mode is enabled with the [methodname]#setMultiSelect()# method -of the [classname]#AbstractSelect# superclass of [classname]#Table#. Setting -table in multiselect mode does not implicitly set it as __selectable__, so it -must be set separately. - -The [methodname]#setMultiSelectMode()# property affects the control of multiple -selection: [parameter]#MultiSelectMode.DEFAULT# is the default behaviour, which -requires holding the Ctrl (or Meta) key pressed while selecting items, while in -[parameter]#MultiSelectMode.SIMPLE# holding the Ctrl key is not needed. In the -simple mode, items can only be deselected by clicking them. - - - -[[components.table.features]] -== Table Features - -=== Page Length and Scrollbar - -The default style for [classname]#Table# provides a table with a scrollbar. The -scrollbar is located at the right side of the table and becomes visible when the -number of items in the table exceeds the page length, that is, the number of -visible items. You can set the page length with [methodname]#setPageLength()#. - -Setting the page length to zero makes all the rows in a table visible, no matter -how many rows there are. Notice that this also effectively disables buffering, -as all the entire table is loaded to the browser at once. Using such tables to -generate reports does not scale up very well, as there is some inevitable -overhead in rendering a table with Ajax. For very large reports, generating HTML -directly is a more scalable solution. - - -[[components.table.features.resizing]] -=== Resizing Columns - -You can set the width of a column programmatically from the server-side with -[methodname]#setColumnWidth()#. The column is identified by the property ID and -the width is given in pixels. - -The user can resize table columns by dragging the resize handle between two -columns. Resizing a table column causes a [classname]#ColumnResizeEvent#, which -you can handle with a [classname]#Table.ColumnResizeListener#. The table must be -set in immediate mode if you want to receive the resize events immediately, -which is typical. - - -[source, java] ----- -table.addColumnResizeListener(new Table.ColumnResizeListener(){ - public void columnResize(ColumnResizeEvent event) { - // Get the new width of the resized column - int width = event.getCurrentWidth(); - - // Get the property ID of the resized column - String column = (String) event.getPropertyId(); - - // Do something with the information - table.setColumnFooter(column, String.valueOf(width) + "px"); - } -}); - -// Must be immediate to send the resize events immediately -table.setImmediate(true); ----- - -See <<figure.component.table.columnresize>> for a result after the columns of a -table has been resized. - -[[figure.component.table.columnresize]] -.Resizing Columns -image::img/table-column-resize.png[] - - -[[components.table.features.reordering]] -=== Reordering Columns - -If [methodname]#setColumnReorderingAllowed(true)# is set, the user can reorder -table columns by dragging them with the mouse from the column header, - - -[[components.table.features.collapsing]] -=== Collapsing Columns - -When [methodname]#setColumnCollapsingAllowed(true)# is set, the right side of -the table header shows a drop-down list that allows selecting which columns are -shown. Collapsing columns is different than hiding columns with -[methodname]#setVisibleColumns()#, which hides the columns completely so that -they can not be made visible (uncollapsed) from the user interface. - -You can collapse columns programmatically with -[methodname]#setColumnCollapsed()#. Collapsing must be enabled before collapsing -columns with the method or it will throw an [classname]#IllegalAccessException#. - - -[source, java] ----- -// Allow the user to collapse and uncollapse columns -table.setColumnCollapsingAllowed(true); - -// Collapse this column programmatically -try { - table.setColumnCollapsed("born", true); -} catch (IllegalAccessException e) { - // Can't occur - collapsing was allowed above - System.err.println("Something horrible occurred"); -} - -// Give enough width for the table to accommodate the -// initially collapsed column later -table.setWidth("250px"); ----- - -See <<figure.component.table.columncollapsing>>. - -[[figure.component.table.columncollapsing]] -.Collapsing Columns -image::img/table-column-collapsing.png[] - -If the table has undefined width, it minimizes its width to fit the width of the -visible columns. If some columns are initially collapsed, the width of the table -may not be enough to accomodate them later, which will result in an ugly -horizontal scrollbar. You should consider giving the table enough width to -accomodate columns uncollapsed by the user. - - -[[components.table.features.components]] -=== Components Inside a Table - -The cells of a [classname]#Table# can contain any user interface components, not -just strings. If the rows are higher than the row height defined in the default -theme, you have to define the proper row height in a custom theme. - -When handling events for components inside a [classname]#Table#, such as for the -[classname]#Button# in the example below, you usually need to know the item the -component belongs to. Components do not themselves know about the table or the -specific item in which a component is contained. Therefore, the handling method -must use some other means for finding out the Item ID of the item. There are a -few possibilities. Usually the easiest way is to use the [methodname]#setData()# -method to attach an arbitrary object to a component. You can subclass the -component and include the identity information there. You can also simply search -the entire table for the item with the component, although that solution may not -be so scalable. - -The example below includes table rows with a [classname]#Label# in HTML content -mode, a multiline [classname]#TextField#, a [classname]#CheckBox#, and a -[classname]#Button# that shows as a link. - - -[source, java] ----- -// Create a table and add a style to allow setting the row height in theme. -final Table table = new Table(); -table.addStyleName("components-inside"); - -/* Define the names and data types of columns. - * The "default value" parameter is meaningless here. */ -table.addContainerProperty("Sum", Label.class, null); -table.addContainerProperty("Is Transferred", CheckBox.class, null); -table.addContainerProperty("Comments", TextField.class, null); -table.addContainerProperty("Details", Button.class, null); - -/* Add a few items in the table. */ -for (int i=0; i<100; i++) { - // Create the fields for the current table row - Label sumField = new Label(String.format( - "Sum is <b>$%04.2f</b><br/><i>(VAT incl.)</i>", - new Object[] {new Double(Math.random()*1000)}), - ContentMode.HTML); - CheckBox transferredField = new CheckBox("is transferred"); - - // Multiline text field. This required modifying the - // height of the table row. - TextField commentsField = new TextField(); - commentsField.setRows(3); - - // The Table item identifier for the row. - Integer itemId = new Integer(i); - - // Create a button and handle its click. A Button does not - // know the item it is contained in, so we have to store the - // item ID as user-defined data. - Button detailsField = new Button("show details"); - detailsField.setData(itemId); - detailsField.addClickListener(new Button.ClickListener() { - public void buttonClick(ClickEvent event) { - // Get the item identifier from the user-defined data. - Integer iid = (Integer)event.getButton().getData(); - Notification.show("Link " + - iid.intValue() + " clicked."); - } - }); - detailsField.addStyleName("link"); - - // Create the table row. - table.addItem(new Object[] {sumField, transferredField, - commentsField, detailsField}, - itemId); -} - -// Show just three rows because they are so high. -table.setPageLength(3); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.table.components.components2[on-line example, window="_blank"]. - -The row height has to be set higher than the default with a style rule such as -the following: - - -[source, css] ----- -/* Table rows contain three-row TextField components. */ -.v-table-components-inside .v-table-cell-content { - height: 54px; -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.table.components.components2[on-line example, window="_blank"]. - -The table will look as shown in <<figure.components.table.components-inside>>. - -[[figure.components.table.components-inside]] -.Components in a Table -image::img/table-components.png[] - - -[[components.table.features.iterating]] -=== Iterating Over a Table - -As the items in a [classname]#Table# are not indexed, iterating over the items -has to be done using an iterator. The [methodname]#getItemIds()# method of the -[classname]#Container# interface of [classname]#Table# returns a -[classname]#Collection# of item identifiers over which you can iterate using an -[classname]#Iterator#. For an example about iterating over a [classname]#Table#, -please see -<<dummy/../../../framework/datamodel/datamodel-container#datamodel.container,"Collecting -Items in Containers">>. Notice that you may not modify the [classname]#Table# -during iteration, that is, add or remove items. Changing the data is allowed. - - -[[components.table.features.filtering]] -=== Filtering Table Contents - -A table can be filtered if its container data source implements the -[classname]#Filterable# interface, as the default [classname]#IndexedContainer# -does. See -<<dummy/../../../framework/datamodel/datamodel-container#datamodel.container.filtered,"Filterable -Containers">>. ((("Container", -"Filterable"))) - - - -[[components.table.editing]] -== Editing the Values in a Table - -Normally, a [classname]#Table# simply displays the items and their fields as -text. If you want to allow the user to edit the values, you can either put them -inside components as we did earlier or simply call -[methodname]#setEditable(true)#, in which case the cells are automatically -turned into editable fields. - -Let us begin with a regular table with a some columns with usual Java types, -namely a [classname]#Date#, [classname]#Boolean#, and a [classname]#String#. - - -[source, java] ----- -// Create a table. It is by default not editable. -Table table = new Table(); - -// Define the names and data types of columns. -table.addContainerProperty("Date", Date.class, null); -table.addContainerProperty("Work", Boolean.class, null); -table.addContainerProperty("Comments", String.class, null); - -... ----- - -You could put the table in editable mode right away. We continue the example by -adding a check box to switch the table between normal and editable modes: - - -[source, java] ----- -CheckBox editable = new CheckBox("Editable", true); -editable.addValueChangeListener(valueChange -> // Java 8 - table.setEditable((Boolean) editable.getValue())); ----- - -Now, when you check to checkbox, the components in the table turn into editable -fields, as shown in <<figure.component.table.editable>>. - -[[figure.component.table.editable]] -.A Table in Normal and Editable Mode -image::img/table-editable3.png[] - -[[components.table.editing.fieldfactories]] -=== Field Factories - -The field components that allow editing the values of particular types in a -table are defined in a field factory that implements the -[classname]#TableFieldFactory# interface. The default implementation is -[classname]#DefaultFieldFactory#, which offers the following crude mappings: - -.Type to Field Mappings in [classname]#DefaultFieldFactory# -[options="header"] -|=============== -|Property Type|Mapped to Field Class -|[classname]#Date#|A[classname]#DateField#. -|[classname]#Boolean#|A[classname]#CheckBox#. -|[classname]#Item#|A[classname]#Form#(deprecated in Vaadin 7). The fields of the form are automatically created from the item's properties using a[classname]#FormFieldFactory#. The normal use for this property type is inside a[classname]#Form#and is less useful inside a[classname]#Table#. -|__other__|A[classname]#TextField#. The text field manages conversions from the basic types, if possible. - -|=============== - - - -Field factories are covered with more detail in -<<dummy/../../../framework/datamodel/datamodel-itembinding#datamodel.itembinding,"Creating -Forms by Binding Fields to Items">>. You could just implement the -[classname]#TableFieldFactory# interface, but we recommend that you extend the -[classname]#DefaultFieldFactory# according to your needs. In the default -implementation, the mappings are defined in the -[methodname]#createFieldByPropertyType()# method (you might want to look at the -source code) both for tables and forms. - - -ifdef::web[] -[[components.table.editing.navigation]] -=== Navigation in Editable Mode - -In the editable mode, the editor fields can have focus. Pressing Tab moves the -focus to next column or, at the last column, to the first column of the next -item. Respectively, pressing ShiftTab moves the focus backward. If the focus is -in the last column of the last visible item, the pressing Tab moves the focus -outside the table. Moving backward from the first column of the first item moves -the focus to the table itself. Some updates to the table, such as changing the -headers or footers or regenerating a column, can move the focus from an editor -component to the table itself. - -The default behaviour may be undesirable in many cases. For example, the focus -also goes through any read-only editor fields and can move out of the table -inappropriately. You can provide better navigation is to use event handler for -shortcut keys such as Tab, Arrow Up, Arrow Down, and Enter. - - -[source, java] ----- -// Keyboard navigation -class KbdHandler implements Handler { - Action tab_next = new ShortcutAction("Tab", - ShortcutAction.KeyCode.TAB, null); - Action tab_prev = new ShortcutAction("Shift+Tab", - ShortcutAction.KeyCode.TAB, - new int[] {ShortcutAction.ModifierKey.SHIFT}); - Action cur_down = new ShortcutAction("Down", - ShortcutAction.KeyCode.ARROW_DOWN, null); - Action cur_up = new ShortcutAction("Up", - ShortcutAction.KeyCode.ARROW_UP, null); - Action enter = new ShortcutAction("Enter", - ShortcutAction.KeyCode.ENTER, null); - public Action[] getActions(Object target, Object sender) { - return new Action[] {tab_next, tab_prev, cur_down, - cur_up, enter}; - } - - public void handleAction(Action action, Object sender, - Object target) { - if (target instanceof TextField) { - // Move according to keypress - int itemid = (Integer) ((TextField) target).getData(); - if (action == tab_next || action == cur_down) - itemid++; - else if (action == tab_prev || action == cur_up) - itemid--; - // On enter, just stay where you were. If we did - // not catch the enter action, the focus would be - // moved to wrong place. - - if (itemid >= 0 && itemid < table.size()) { - TextField newTF = valueFields.get(itemid); - if (newTF != null) - newTF.focus(); - } - } - } -} - -// Panel that handles keyboard navigation -Panel navigator = new Panel(); -navigator.addStyleName(Reindeer.PANEL_LIGHT); -navigator.addComponent(table); -navigator.addActionHandler(new KbdHandler()); ----- - -The main issue in implementing keyboard navigation in an editable table is that -the editor fields do not know the table they are in. To find the parent table, -you can either look up in the component container hierarchy or simply store a -reference to the table with [methodname]#setData()# in the field component. The -other issue is that you can not acquire a reference to an editor field from the -[classname]#Table# component. One solution is to use some external collection, -such as a [classname]#HashMap#, to map item IDs to the editor fields. - - -[source, java] ----- -// Can't access the editable components from the table so -// must store the information -final HashMap<Integer,TextField> valueFields = - new HashMap<Integer,TextField>(); ----- - -The map has to be filled in a [classname]#TableFieldFactory#, such as in the -following. You also need to set the reference to the table there and you can -also set the initial focus there. - - -[source, java] ----- -table.setTableFieldFactory(new TableFieldFactory () { - public Field createField(Container container, Object itemId, - Object propertyId, Component uiContext) { - TextField field = new TextField((String) propertyId); - - // User can only edit the numeric column - if ("Source of Fear".equals(propertyId)) - field.setReadOnly(true); - else { // The numeric column - // The field needs to know the item it is in - field.setData(itemId); - - // Remember the field - valueFields.put((Integer) itemId, field); - - // Focus the first editable value - if (((Integer)itemId) == 0) - field.focus(); - } - return field; - } -}); ----- - -The issues are complicated by the fact that the editor fields are not generated -for the entire table, but only for a cache window that includes the visible -items and some items above and below it. For example, if the beginning of a big -scrollable table is visible, the editor component for the last item does not -exist. This issue is relevant mostly if you want to have wrap-around navigation -that jumps from the last to first item and vice versa. - -endif::web[] - - -[[components.table.headersfooters]] -== Column Headers and Footers - -[classname]#Table# supports both column headers and footers; the headers are -enabled by default. - -[[components.table.headersfooters.headers]] -=== Headers - -The table header displays the column headers at the top of the table. You can -use the column headers to reorder or resize the columns, as described earlier. -By default, the header of a column is the property ID of the column, unless -given explicitly with [methodname]#setColumnHeader()#. - - -[source, java] ----- -// Define the properties -table.addContainerProperty("lastname", String.class, null); -table.addContainerProperty("born", Integer.class, null); -table.addContainerProperty("died", Integer.class, null); - -// Set nicer header names -table.setColumnHeader("lastname", "Name"); -table.setColumnHeader("born", "Born"); -table.setColumnHeader("died", "Died"); ----- - -The text of the column headers and the visibility of the header depends on the -__column header mode__. The header is visible by default, but you can disable it -with [methodname]#setColumnHeaderMode(Table.COLUMN_HEADER_MODE_HIDDEN)#. - - -[[components.table.headersfooters.footers]] -=== Footers - -The table footer can be useful for displaying sums or averages of values in a -column, and so on. The footer is not visible by default; you can enable it with -[methodname]#setFooterVisible(true)#. Unlike in the header, the column headers -are empty by default. You can set their value with -[methodname]#setColumnFooter()#. The columns are identified by their property -ID. - -The following example shows how to calculate average of the values in a column: - - -[source, java] ----- -// Have a table with a numeric column -Table table = new Table("Custom Table Footer"); -table.addContainerProperty("Name", String.class, null); -table.addContainerProperty("Died At Age", Integer.class, null); - -// Insert some data -Object people[][] = { {"Galileo", 77}, - {"Monnier", 83}, - {"Vaisala", 79}, - {"Oterma", 86}}; -for (int i=0; i<people.length; i++) - table.addItem(people[i], new Integer(i)); - -// Calculate the average of the numeric column -double avgAge = 0; -for (int i=0; i<people.length; i++) - avgAge += (Integer) people[i][1]; -avgAge /= people.length; - -// Set the footers -table.setFooterVisible(true); -table.setColumnFooter("Name", "Average"); -table.setColumnFooter("Died At Age", String.valueOf(avgAge)); - -// Adjust the table height a bit -table.setPageLength(table.size()); ----- - -The resulting table is shown in -<<figure.components.table.headersfooters.footer>>. - -[[figure.components.table.headersfooters.footer]] -.A Table with a Footer -image::img/table-footer.png[] - - -[[components.table.headersfooters.clicks]] -=== Handling Mouse Clicks on Headers and Footers - -Normally, when the user clicks a column header, the table will be sorted by the -column, assuming that the data source is [classname]#Sortable# and sorting is -not disabled. In some cases, you might want some other functionality when the -user clicks the column header, such as selecting the column in some way. - -Clicks in the header cause a [classname]#HeaderClickEvent#, which you can handle -with a [classname]#Table.HeaderClickListener#. Click events on the table header -(and footer) are, like button clicks, sent immediately to server, so there is no -need to set [methodname]#setImmediate()#. - - -[source, java] ----- -// Handle the header clicks -table.addHeaderClickListener(new Table.HeaderClickListener() { - public void headerClick(HeaderClickEvent event) { - String column = (String) event.getPropertyId(); - Notification.show("Clicked " + column + - "with " + event.getButtonName()); - } -}); - -// Disable the default sorting behavior -table.setSortDisabled(true); ----- - -Setting a click handler does not automatically disable the sorting behavior of -the header; you need to disable it explicitly with -[methodname]#setSortDisabled(true)#. Header click events are not sent when the -user clicks the column resize handlers to drag them. - -The [classname]#HeaderClickEvent# object provides the identity of the clicked -column with [methodname]#getPropertyId()#. The [methodname]#getButton()# reports -the mouse button with which the click was made: [parameter]#BUTTON_LEFT#, -[parameter]#BUTTON_RIGHT#, or [parameter]#BUTTON_MIDDLE#. The -[methodname]#getButtonName()# a human-readable button name in English: " -[parameter]#left#", " [parameter]#right#", or " [parameter]#middle#". The -[methodname]#isShiftKey()#, [methodname]#isCtrlKey()#, etc., methods indicate if -the Shift, Ctrl, Alt or other modifier keys were pressed during the click. - -Clicks in the footer cause a [classname]#FooterClickEvent#, which you can handle -with a [classname]#Table.FooterClickListener#. Footers do not have any default -click behavior, like the sorting in the header. Otherwise, handling clicks in -the footer is equivalent to handling clicks in the header. - - - -[[components.table.columngenerator]] -== Generated Table Columns - -A table can have generated columns which values can be calculated based on the -values in other columns. The columns are generated with a class implementing the -[interfacename]#Table.ColumnGenerator# interface. - -The [classname]#GeneratedPropertyContainer# described in -<<dummy/../../../framework/datamodel/datamodel-container#datamodel.container.gpc,"GeneratedPropertyContainer">> -is another way to accomplish the same task at container level. In addition to -generating values, you can also use the feature for formatting or styling -columns. - -ifdef::web[] -[[components.table.columngenerator.generator]] -=== Defining a Column Generator - -Column generators are objects that implement the -[classname]#Table.ColumnGenerator# interface and its -[methodname]#generateCell()# method. The method gets the identity of the item -and column as its parameters, in addition to the table object, and has to return -a component. The interface is functional, so you can also define it by a lambda -expression or a method reference in Java 8. - -The following example defines a generator for formatting [classname]#Double# -valued fields according to a format string (as in -[classname]#java.util.Formatter#). - - -[source, java] ----- -/** Formats the value in a column containing Double objects. */ -class ValueColumnGenerator implements Table.ColumnGenerator { - String format; /* Format string for the Double values. */ - - /** - * Creates double value column formatter with the given - * format string. - */ - public ValueColumnGenerator(String format) { - this.format = format; - } - - /** - * Generates the cell containing the Double value. - * The column is irrelevant in this use case. - */ - public Component generateCell(Table source, Object itemId, - Object columnId) { - // Get the object stored in the cell as a property - Property prop = - source.getItem(itemId).getItemProperty(columnId); - if (prop.getType().equals(Double.class)) { - Label label = new Label(String.format(format, - new Object[] { (Double) prop.getValue() })); - - // Set styles for the column: one indicating that it's - // a value and a more specific one with the column - // name in it. This assumes that the column name - // is proper for CSS. - label.addStyleName("column-type-value"); - label.addStyleName("column-" + (String) columnId); - return label; - } - return null; - } -} ----- - -The column generator is called for all the visible (or more accurately cached) -items in a table. If the user scrolls the table to another position in the -table, the columns of the new visible rows are generated dynamically. - -Generated column cells are automatically updated when a property value in the -table row changes. Note that a generated cell, even if it is a field, does not -normally have a property value bound to the table's container, so changes in -generated columns do not trigger updates in other generated columns. It should -also be noted that if a generated column cell depends on values in other rows, -changes in the other rows do not trigger automatic update. You can get notified -of such value changes by listening for them with a -[interfacename]#ValueChangeListener# in the generated components. If you do so, -you must remove such listeners when the generated components are detached from -the UI or otherwise the listeners will accumulate in the container when the -table is scrolled back and forth, causing possibly severe memory leak. - -endif::web[] - -ifdef::web[] -[[components.table.columngenerator.adding]] -=== Adding Generated Columns - -You add new generated columns to a [classname]#Table# with -[methodname]#addGeneratedColumn()#. It takes a property ID of the generated -column as the first parameter and the generator as the second. - - -[source, java] ----- -// Define the generated columns and their generators -table.addGeneratedColumn("date", // Java 8: - this::generateNonEditableCell); -table.addGeneratedColumn("price", - new PriceColumnGenerator()); -table.addGeneratedColumn("consumption", - new ConsumptionColumnGenerator()); -table.addGeneratedColumn("dailycost", - new DailyCostColumnGenerator()); ----- - -Notice that the [methodname]#addGeneratedColumn()# always places the generated -columns as the last column, even if you defined some other order previously. You -will have to set the proper order with [methodname]#setVisibleColumns()#. - - -[source, java] ----- -table.setVisibleColumns("date", "quantity", "price", "total"); ----- - -endif::web[] - -ifdef::web[] -[[components.table.columngenerator.editable]] -=== Generators in Editable Table - -When you set a table as [parameter]#editable#, table cells change to editable -fields. When the user changes the values in the fields, the generated cells in -the same row are updated automatically. However, putting a table with generated -columns in editable mode has a few quirks. One is that the editable mode does -not affect generated columns. You have two alternatives: either you generate the -editing fields in the generator or, in case of formatter generators, remove the -generators in the editable mode to allow editing the values. The following -example uses the latter approach. - - -[source, java] ----- -// Have a check box that allows the user -// to make the quantity and total columns editable. -final CheckBox editable = new CheckBox( - "Edit the input values - calculated columns are regenerated"); - -editable.setImmediate(true); -editable.addClickListener(new ClickListener() { - public void buttonClick(ClickEvent event) { - table.setEditable(editable.booleanValue()); - - // The columns may not be generated when we want to - // have them editable. - if (editable.booleanValue()) { - table.removeGeneratedColumn("quantity"); - table.removeGeneratedColumn("total"); - } else { // Not editable - // Show the formatted values. - table.addGeneratedColumn("quantity", - new ValueColumnGenerator("%.2f l")); - table.addGeneratedColumn("total", - new ValueColumnGenerator("%.2f e")); - } - // The visible columns are affected by removal - // and addition of generated columns so we have - // to redefine them. - table.setVisibleColumns("date", "quantity", - "price", "total", "consumption", "dailycost"); - } -}); ----- - -You will also have to set the editing fields in [parameter]#immediate# mode to -have the update occur immediately when an edit field loses the focus. You can -set the fields in [parameter]#immediate# mode with the a custom -[classname]#TableFieldFactory#, such as the one given below, that just extends -the default implementation to set the mode: - - -[source, java] ----- -public class ImmediateFieldFactory extends DefaultFieldFactory { - public Field createField(Container container, - Object itemId, - Object propertyId, - Component uiContext) { - // Let the DefaultFieldFactory create the fields... - Field field = super.createField(container, itemId, - propertyId, uiContext); - - // ...and just set them as immediate. - ((AbstractField)field).setImmediate(true); - - return field; - } -} -... -table.setTableFieldFactory(new ImmediateFieldFactory()); ----- - -If you generate the editing fields with the column generator, you avoid having -to use such a field factory, but of course have to generate the fields for both -normal and editable modes. - -<<figure.ui.table.generated>> shows a table with columns calculated (blue) and -simply formatted (black) with column generators. - -[[figure.ui.table.generated]] -.Table with Generated Columns in Normal and Editable Mode -image::img/table-generatedcolumns1.png[] - -endif::web[] - - -[[components.table.columnformatting]] -== Formatting Table Columns - -The displayed values of properties shown in a table are normally formatted using -the [methodname]#toString()# method of each property. Customizing the format in -a table column can be done in several ways: - -* Using [classname]#ColumnGenerator# to generate a second column that is formatted. The original column needs to be set invisible. See <<components.table.columngenerator>>. -* Using a [classname]#Converter# to convert between the property data model and its representation in the table. -* Using a [classname]#GeneratedPropertyContainer# as a wrapper around the actual container to provide formatting. -* Overriding the default [methodname]#formatPropertyValue()# in [classname]#Table#. - -As using a [classname]#PropertyFormatter# is generally much more awkward than -overriding the [methodname]#formatPropertyValue()#, its use is not described -here. - -You can override [methodname]#formatPropertyValue()# as is done in the following -example: - - -[source, java] ----- -// Create a table that overrides the default -// property (column) format -final Table table = new Table("Formatted Table") { - @Override - protected String formatPropertyValue(Object rowId, - Object colId, Property property) { - // Format by property type - if (property.getType() == Date.class) { - SimpleDateFormat df = - new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); - return df.format((Date)property.getValue()); - } - - return super.formatPropertyValue(rowId, colId, property); - } -}; - -// The table has some columns -table.addContainerProperty("Time", Date.class, null); - -... Fill the table with data ... ----- - -You can also distinguish between columns by the [parameter]#colId# parameter, -which is the property ID of the column. [classname]#DecimalFormat# is useful for -formatting decimal values. - - -[source, java] ----- -... in formatPropertyValue() ... -} else if ("Value".equals(pid)) { - // Format a decimal value for a specific locale - DecimalFormat df = new DecimalFormat("#.00", - new DecimalFormatSymbols(locale)); - return df.format((Double) property.getValue()); -} -... -table.addContainerProperty("Value", Double.class, null); ----- - -A table with the formatted date and decimal value columns is shown in -<<figure.components.table.columnformatting>>. - -[[figure.components.table.columnformatting]] -.Formatted Table Columns -image::img/table-columnformatting.png[] - -You can use CSS for further styling of table rows, columns, and individual cells -by using a [classname]#CellStyleGenerator#. It is described in -<<components.table.css>>. - - -[[components.table.css]] -== CSS Style Rules - -Styling the overall style of a [classname]#Table# can be done with the following -CSS rules. - - -[source, css] ----- -.v-table {} - .v-table-header-wrap {} - .v-table-header {} - .v-table-header-cell {} - .v-table-resizer {} /* Column resizer handle. */ - .v-table-caption-container {} - .v-table-body {} - .v-table-row-spacer {} - .v-table-table {} - .v-table-row {} - .v-table-cell-content {} ----- - -Notice that some of the widths and heights in a table are calculated dynamically -and can not be set in CSS. - -ifdef::web[] -[[components.table.css.cellstylegenerator]] -=== Generating Cell Styles With [interfacename]#CellStyleGenerator# - -The [classname]#Table.CellStyleGenerator# interface allows you to set the CSS -style for each individual cell in a table. You need to implement the -[methodname]#getStyle()#, which gets the row (item) and column (property) -identifiers as parameters and can return a style name for the cell. The returned -style name will be concatenated to prefix " -[literal]#++v-table-cell-content-++#". - -The [methodname]#getStyle()# is called also for each row, so that the -[parameter]#propertyId# parameter is [literal]#++null++#. This allows setting a -row style. - -Alternatively, you can use a [classname]#Table.ColumnGenerator# (see -<<components.table.columngenerator>>) to generate the actual UI components of -the cells and add style names to them. - - -[source, java] ----- -Table table = new Table("Table with Cell Styles"); -table.addStyleName("checkerboard"); - -// Add some columns in the table. In this example, the property -// IDs of the container are integers so we can determine the -// column number easily. -table.addContainerProperty("0", String.class, null, "", null, null); -for (int i=0; i<8; i++) - table.addContainerProperty(""+(i+1), String.class, null, - String.valueOf((char) (65+i)), null, null); - -// Add some items in the table. -table.addItem(new Object[]{ - "1", "R", "N", "B", "Q", "K", "B", "N", "R"}, new Integer(0)); -table.addItem(new Object[]{ - "2", "P", "P", "P", "P", "P", "P", "P", "P"}, new Integer(1)); -for (int i=2; i<6; i++) - table.addItem(new Object[]{String.valueOf(i+1), - "", "", "", "", "", "", "", ""}, new Integer(i)); -table.addItem(new Object[]{ - "7", "P", "P", "P", "P", "P", "P", "P", "P"}, new Integer(6)); -table.addItem(new Object[]{ - "8", "R", "N", "B", "Q", "K", "B", "N", "R"}, new Integer(7)); -table.setPageLength(8); - -// Set cell style generator -table.setCellStyleGenerator(new Table.CellStyleGenerator() { - public String getStyle(Object itemId, Object propertyId) { - // Row style setting, not relevant in this example. - if (propertyId == null) - return "green"; // Will not actually be visible - - int row = ((Integer)itemId).intValue(); - int col = Integer.parseInt((String)propertyId); - - // The first column. - if (col == 0) - return "rowheader"; - - // Other cells. - if ((row+col)%2 == 0) - return "black"; - else - return "white"; - } -}); ----- - -You can then style the cells, for example, as follows: - - -[source, css] ----- -/* Center the text in header. */ -.v-table-header-cell { - text-align: center; -} - -/* Basic style for all cells. */ -.v-table-checkerboard .v-table-cell-content { - text-align: center; - vertical-align: middle; - padding-top: 12px; - width: 20px; - height: 28px; -} - -/* Style specifically for the row header cells. */ -.v-table-cell-content-rowheader { - background: #E7EDF3 - url(../default/table/img/header-bg.png) repeat-x scroll 0 0; -} - -/* Style specifically for the "white" cells. */ -.v-table-cell-content-white { - background: white; - color: black; -} - -/* Style specifically for the "black" cells. */ -.v-table-cell-content-black { - background: black; - color: white; -} ----- - -The table will look as shown in <<figure.components.table.cell-style>>. - -[[figure.components.table.cell-style]] -.Cell Style Generator for a Table -image::img/table-cellstylegenerator1.png[] - -endif::web[] - - -(((range="endofrange", startref="term.components.table"))) - - diff --git a/documentation/components/components-textarea.asciidoc b/documentation/components/components-textarea.asciidoc deleted file mode 100644 index 7811c7ba4b..0000000000 --- a/documentation/components/components-textarea.asciidoc +++ /dev/null @@ -1,91 +0,0 @@ ---- -title: TextArea -order: 10 -layout: page ---- - -[[components.textarea]] -= [classname]#TextArea# - -[classname]#TextArea# is a multi-line version of the [classname]#TextField# -component described in -<<dummy/../../../framework/components/components-textfield#components.textfield,"TextField">>. - -The following example creates a simple text area: - - -[source, java] ----- -// Create the area -TextArea area = new TextArea("Big Area"); - -// Put some content in it -area.setValue("A row\n"+ - "Another row\n"+ - "Yet another row"); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.textarea.basic[on-line example, window="_blank"]. - -The result is shown in <<figure.components.textarea>>. - -[[figure.components.textarea]] -.[classname]#TextArea# Example -image::img/textarea-basic.png[] - -You can set the number of visible rows with [methodname]#setRows()# or use the -regular [methodname]#setHeight()# to define the height in other units. If the -actual number of rows exceeds the number, a vertical scrollbar will appear. -Setting the height with [methodname]#setRows()# leaves space for a horizontal -scrollbar, so the actual number of visible rows may be one higher if the -scrollbar is not visible. - -You can set the width with the regular [methodname]#setWidth()# method. Setting -the size with the __em__ unit, which is relative to the used font size, is -recommended. - -[[components.textarea.wordwrap]] -== Word Wrap - -The [methodname]#setWordwrap()# sets whether long lines are wrapped ( -[literal]#++true++# - default) when the line length reaches the width of the -writing area. If the word wrap is disabled ( [literal]#++false++#), a vertical -scrollbar will appear instead. The word wrap is only a visual feature and -wrapping a long line does not insert line break characters in the field value; -shortening a wrapped line will undo the wrapping. - - -[source, java] ----- -TextArea area1 = new TextArea("Wrapping"); -area1.setWordwrap(true); // The default -area1.setValue("A quick brown fox jumps over the lazy dog"); - -TextArea area2 = new TextArea("Nonwrapping"); -area2.setWordwrap(false); -area2.setValue("Victor jagt zwölf Boxkämpfer quer "+ - "über den Sylter Deich"); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.textarea.wordwrap[on-line example, window="_blank"]. - -The result is shown in <<figure.components.textarea.wordwrap>>. - -[[figure.components.textarea.wordwrap]] -.Word Wrap in [classname]#TextArea# -image::img/textarea-wordwrap.png[] - - -[[components.textarea.css]] -== CSS Style Rules - - -[source, css] ----- -.v-textarea { } ----- - -The HTML structure of [classname]#TextArea# is extremely simple, consisting only -of an element with [literal]#++v-textarea++# style. - -CSS Styling - - diff --git a/documentation/components/components-textfield.asciidoc b/documentation/components/components-textfield.asciidoc deleted file mode 100644 index e59b38bbf7..0000000000 --- a/documentation/components/components-textfield.asciidoc +++ /dev/null @@ -1,323 +0,0 @@ ---- -title: TextField -order: 9 -layout: page ---- - -[[components.textfield]] -= [classname]#TextField# - -((("[classname]#TextField#", id="term.components.textfield", range="startofrange"))) - - -[classname]#TextField# is one of the most commonly used user interface -components. It is a [classname]#Field# component that allows entering textual -values using keyboard. - -The following example creates a simple text field: - - -[source, java] ----- -// Create a text field -TextField tf = new TextField("A Field"); - -// Put some initial content in it -tf.setValue("Stuff in the field"); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.textfield.basic[on-line example, window="_blank"]. - -The result is shown in <<figure.components.textfield.basic>>. - -[[figure.components.textfield.basic]] -.[classname]#TextField# Example -image::img/textfield-example.png[] - -Value changes are handled with a [classname]#Property.ValueChangeListener#, as -in most other fields. The value can be acquired with [methodname]#getValue()# -directly from the text field, as is done in the example below, or from the -property reference of the event. - - -[source, java] ----- -// Handle changes in the value -tf.addValueChangeListener(new Property.ValueChangeListener() { - public void valueChange(ValueChangeEvent event) { - // Assuming that the value type is a String - String value = (String) event.getProperty().getValue(); - - // Do something with the value - Notification.show("Value is: " + value); - } -}); - -// Fire value changes immediately when the field loses focus -tf.setImmediate(true); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.textfield.inputhandling[on-line example, window="_blank"]. - -As with other event listeners, you can use lambda expression with one parameter -to handle the events in Java 8. - -Much of the API of [classname]#TextField# is defined in -[classname]#AbstractTextField#, which allows different kinds of text input -fields, such as rich text editors, which do not share all the features of the -single-line text fields. - -[[figure.components.textfield.api]] -.Text Field Class Relationships -image::img/textfield-diagram-hi.png[] - -[[components.textfield.databinding]] -== Data Binding - -[classname]#TextField# edits [classname]#String# values, but you can bind it to -any property type that has a proper converter, as described in -<<dummy/../../../framework/datamodel/datamodel-properties#datamodel.properties.converter,"Converting -Between Property Type and Representation">>. - - -[source, java] ----- -// Have an initial data model. As Double is unmodificable and -// doesn't support assignment from String, the object is -// reconstructed in the wrapper when the value is changed. -Double trouble = 42.0; - -// Wrap it in a property data source -final ObjectProperty<Double> property = - new ObjectProperty<Double>(trouble); - -// Create a text field bound to it -// (StringToDoubleConverter is used automatically) -TextField tf = new TextField("The Answer", property); -tf.setImmediate(true); - -// Show that the value is really written back to the -// data source when edited by user. -Label feedback = new Label(property); -feedback.setCaption("The Value"); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.textfield.databinding[on-line example, window="_blank"]. - -When you put a [classname]#Table# in editable mode or create fields with a -[classname]#FieldGroup#, the [classname]#DefaultFieldFactory# creates a -[classname]#TextField# for almost every property type by default. You often need -to make a custom factory to customize the creation and to set the field tooltip, -validation, formatting, and so on. - -See -<<dummy/../../../framework/datamodel/datamodel-overview.asciidoc#datamodel.overview,"Binding -Components to Data">> for more details on data binding, field factories for -[classname]#Table# in -<<dummy/../../../framework/components/components-table#components.table.editing,"Editing -the Values in a Table">>, and -<<dummy/../../../framework/datamodel/datamodel-itembinding#datamodel.itembinding,"Creating -Forms by Binding Fields to Items">> regarding forms. - -Bean Binding -[[components.textfield.length]] -== String Length - -The [methodname]#setMaxLength()# method sets the maximum length of the input -string so that the browser prevents the user from entering a longer one. As a -security feature, the input value is automatically truncated on the server-side, -as the maximum length setting could be bypassed on the client-side. The maximum -length property is defined at [classname]#AbstractTextField# level. - -Notice that the maximum length setting does not affect the width of the field. -You can set the width with [methodname]#setWidth()#, as with other components. -Using __em__ widths is recommended to better approximate the proper width in -relation to the size of the used font. There is no standard way in HTML for -setting the width exactly to a number of letters (in a monospaced font). You can -trick your way around this restriction by putting the text field in an -undefined-width [classname]#VerticalLayout# together with an undefined-width -[classname]#Label# that contains a sample text, and setting the width of the -text field as 100%. The layout will get its width from the label, and the text -field will use that. - -Fitting TextField width to fixed input length -[[components.textfield.nullvalues]] -== Handling Null Values - -((("Null representation", id="term.components.textfield.nullvalues", range="startofrange"))) - - -((("[methodname]#setNullRepresentation()#"))) -As with any field, the value of a [classname]#TextField# can be set as -[parameter]#null#. This occurs most commonly when you create a new field without -setting a value for it or bind the field value to a data source that allows null -values. In such case, you might want to show a special value that stands for the -null value. You can set the null representation with the -[methodname]#setNullRepresentation()# method. Most typically, you use an empty -string for the null representation, unless you want to differentiate from a -string that is explicitly empty. The default null representation is " -[literal]#++null++#", which essentially warns that you may have forgotten to -initialize your data objects properly. - -((("[methodname]#setNullSettingAllowed()#"))) -The [methodname]#setNullSettingAllowed()# controls whether the user can actually -input a null value by using the null value representation. If the setting is -[literal]#++false++#, which is the default, inputting the null value -representation string sets the value as the literal value of the string, not -null. This default assumption is a safeguard for data sources that may not allow -null values. - - -[source, java] ----- -// Have a property with null value -ObjectProperty<Double> dataModel = - new ObjectProperty<Double>(new Double(0.0)); -dataModel.setValue(null); // Have to set it null here - -// Create a text field bound to the null data -TextField tf = new TextField("Field Energy (J)", dataModel); -tf.setNullRepresentation("-- null-point --"); - -// Allow user to input the null value by its representation -tf.setNullSettingAllowed(true); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.textfield.nullvaluerepresentation[on-line example, window="_blank"]. - -The [classname]#Label#, which is bound to the value of the -[classname]#TextField#, displays a null value as empty. The resulting user -interface is shown in <<figure.components.textfield.nullvalues>>. - -[[figure.components.textfield.nullvalues]] -.Null Value Representation -image::img/textfield-nullrepresentation.png[] - -(((range="endofrange", startref="term.components.textfield.nullvalues"))) - -[[components.textfield.textchangeevents]] -== Text Change Events - -((("[classname]#Text change events#", id="term.components.textfield.textchangeevents", range="startofrange"))) - - -Often you want to receive a change event immediately when the text field value -changes. The __immediate__ mode is not literally immediate, as the changes are -transmitted only after the field loses focus. In the other extreme, using -keyboard events for every keypress would make typing unbearably slow and also -processing the keypresses is too complicated for most purposes. __Text change -events__ are transmitted asynchronously soon after typing and do not block -typing while an event is being processed. - -((([classname]#TextChangeListener#))) -Text change events are received with a [classname]#TextChangeListener#, as is -done in the following example that demonstrates how to create a text length -counter: - - -[source, java] ----- -// Text field with maximum length -final TextField tf = new TextField("My Eventful Field"); -tf.setValue("Initial content"); -tf.setMaxLength(20); - -// Counter for input length -final Label counter = new Label(); -counter.setValue(tf.getValue().length() + - " of " + tf.getMaxLength()); - -// Display the current length interactively in the counter -tf.addTextChangeListener(new TextChangeListener() { - public void textChange(TextChangeEvent event) { - int len = event.getText().length(); - counter.setValue(len + " of " + tf.getMaxLength()); - } -}); - -// The lazy mode is actually the default -tf.setTextChangeEventMode(TextChangeEventMode.LAZY); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.textfield.textchangeevents.counter[on-line example, window="_blank"]. - -The result is shown in <<figure.components.textfield.textchangeevents>>. - -[[figure.components.textfield.textchangeevents]] -.Text Change Events -image::img/textfield-textchangeevents.png[] - -The __text change event mode__ defines how quickly the changes are transmitted -to the server and cause a server-side event. Lazier change events allow sending -larger changes in one event if the user is typing fast, thereby reducing server -requests. - -((([classname]#TextChangeEventMode#))) -You can set the text change event mode of a [classname]#TextField# with -[methodname]#setTextChangeEventMode()#. The allowed modes are defined in -[classname]#TextChangeEventMode# enum and are as follows: - -[parameter]#TextChangeEventMode.LAZY#(default):: An event is triggered when there is a pause in editing the text. The length of -the pause can be modified with [methodname]#setInputEventTimeout()#. As with the -[parameter]#TIMEOUT# mode, a text change event is forced before a possible -[classname]#ValueChangeEvent#, even if the user did not keep a pause while -entering the text. - -+ -This is the default mode. - -[parameter]#TextChangeEventMode.TIMEOUT#:: A text change in the user interface causes the event to be communicated to the -application after a timeout period. If more changes are made during this period, -the event sent to the server-side includes the changes made up to the last -change. The length of the timeout can be set with -[methodname]#setInputEventTimeout()#. - -+ -If a [classname]#ValueChangeEvent# would occur before the timeout period, a -[classname]#TextChangeEvent# is triggered before it, on the condition that the -text content has changed since the previous [classname]#TextChangeEvent#. - -[parameter]#TextChangeEventMode.EAGER#:: An event is triggered immediately for every change in the text content, -typically caused by a key press. The requests are separate and are processed -sequentially one after another. Change events are nevertheless communicated -asynchronously to the server, so further input can be typed while event requests -are being processed. - - - -(((range="endofrange", startref="term.components.textfield.textchangeevents"))) - -[[components.textfield.css]] -== CSS Style Rules - - -[source, css] ----- -.v-textfield { } ----- - -The HTML structure of [classname]#TextField# is extremely simple, consisting -only of an element with the [literal]#++v-textfield++# style. - -For example, the following custom style uses dashed border: - - -[source, css] ----- -.v-textfield-dashing { - border: thin dashed; - background: white; /* Has shading image by default */ -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.textfield.css[on-line example, window="_blank"]. - -The result is shown in <<figure.components.textfield.css>>. - -[[figure.components.textfield.css]] -.Styling TextField with CSS -image::img/textfield-css.png[] - -The style name for [classname]#TextField# is also used in several components -that contain a text input field, even if the text input is not an actual -[classname]#TextField#. This ensures that the style of different text input -boxes is similar. - - -(((range="endofrange", startref="term.components.textfield"))) - - diff --git a/documentation/components/components-tree.asciidoc b/documentation/components/components-tree.asciidoc deleted file mode 100644 index d32ce8d19b..0000000000 --- a/documentation/components/components-tree.asciidoc +++ /dev/null @@ -1,93 +0,0 @@ ---- -title: Tree -order: 22 -layout: page ---- - -[[components.tree]] -= [classname]#Tree# - -The [classname]#Tree# component allows a natural way to represent data that has -hierarchical relationships, such as filesystems or message threads. The -[classname]#Tree# component in Vaadin works much like the tree components of -most modern desktop user interface toolkits, for example in directory browsing. - -The typical use of the [classname]#Tree# component is for displaying a -hierachical menu, like a menu on the left side of the screen, as in -<<figure.components.tree>>, or for displaying filesystems or other hierarchical -datasets. The [parameter]#menu# style makes the appearance of the tree more -suitable for this purpose. - - -[source, java] ----- -final Object[][] planets = new Object[][]{ - new Object[]{"Mercury"}, - new Object[]{"Venus"}, - new Object[]{"Earth", "The Moon"}, - new Object[]{"Mars", "Phobos", "Deimos"}, - new Object[]{"Jupiter", "Io", "Europa", "Ganymedes", - "Callisto"}, - new Object[]{"Saturn", "Titan", "Tethys", "Dione", - "Rhea", "Iapetus"}, - new Object[]{"Uranus", "Miranda", "Ariel", "Umbriel", - "Titania", "Oberon"}, - new Object[]{"Neptune", "Triton", "Proteus", "Nereid", - "Larissa"}}; - -Tree tree = new Tree("The Planets and Major Moons"); - -/* Add planets as root items in the tree. */ -for (int i=0; i<planets.length; i++) { - String planet = (String) (planets[i][0]); - tree.addItem(planet); - - if (planets[i].length == 1) { - // The planet has no moons so make it a leaf. - tree.setChildrenAllowed(planet, false); - } else { - // Add children (moons) under the planets. - for (int j=1; j<planets[i].length; j++) { - String moon = (String) planets[i][j]; - - // Add the item as a regular item. - tree.addItem(moon); - - // Set it to be a child. - tree.setParent(moon, planet); - - // Make the moons look like leaves. - tree.setChildrenAllowed(moon, false); - } - - // Expand the subtree. - tree.expandItemsRecursively(planet); - } -} - -main.addComponent(tree); ----- - -<<figure.components.tree>> below shows the tree from the code example in a -practical situation. - -[[figure.components.tree]] -.A [classname]#Tree# Component as a Menu -image::img/tree-example1.png[] - -You can read or set the currently selected item by the value property of the -[classname]#Tree# component, that is, with [methodname]#getValue()# and -[methodname]#setValue()#. When the user clicks an item on a tree, the tree will -receive an [classname]#ValueChangeEvent#, which you can catch with a -[classname]#ValueChangeListener#. To receive the event immediately after the -click, you need to set the tree as [classname]#setImmediate(true)#. - -The [classname]#Tree# component uses [classname]#Container# data sources much -like the [classname]#Table# component, with the addition that it also utilizes -hierarchy information maintained by a [classname]#HierarchicalContainer#. The -contained items can be of any item type supported by the container. The default -container and its [methodname]#addItem()# assume that the items are strings and -the string value is used as the item ID. - - - diff --git a/documentation/components/components-treetable.asciidoc b/documentation/components/components-treetable.asciidoc deleted file mode 100644 index 97e53cdf76..0000000000 --- a/documentation/components/components-treetable.asciidoc +++ /dev/null @@ -1,96 +0,0 @@ ---- -title: TreeTable -order: 23 -layout: page ---- - -[[components.treetable]] -= [classname]#TreeTable# - -[classname]#TreeTable# is an extension of the [classname]#Table# component with -support for a tree-like hierarchy in the first column. As with -[classname]#Tree#, the hierarchy is determined by the parent-children -relationships defined in the [interfacename]#Container.Hierarchical# interface. -The default container is [classname]#HierarchicalContainer#, but you can bind -[classname]#TreeTable# to any container implementing the interface. - -[[figure.components.treetable.basic]] -.[classname]#TreeTable# Component -image::img/treetable-basic.png[] - -As with [classname]#Tree#, you can define the parent-child relationships with -[methodname]#setParent()#, as is shown in the following example with numeric -item IDs: - - -[source, java] ----- -TreeTable ttable = new TreeTable("My TreeTable"); -ttable.addContainerProperty("Name", String.class, null); -ttable.addContainerProperty("Number", Integer.class, null); - -// Create the tree nodes and set the hierarchy -ttable.addItem(new Object[]{"Menu", null}, 0); -ttable.addItem(new Object[]{"Beverages", null}, 1); -ttable.setParent(1, 0); -ttable.addItem(new Object[]{"Foods", null}, 2); -ttable.setParent(2, 0); -ttable.addItem(new Object[]{"Coffee", 23}, 3); -ttable.addItem(new Object[]{"Tea", 42}, 4); -ttable.setParent(3, 1); -ttable.setParent(4, 1); -ttable.addItem(new Object[]{"Bread", 13}, 5); -ttable.addItem(new Object[]{"Cake", 11}, 6); -ttable.setParent(5, 2); -ttable.setParent(6, 2); ----- - -Some container types may allow defining hierarchies if the container data -itself, without explicitly setting the parent-child relationships with -[methodname]#setParent()#. - -Unlike [classname]#Tree#, a [classname]#TreeTable# can have components in the -hierarchical column, both when the property type is a component type and when -the tree table is in editable mode. - -For other features, we refer you to documentation for [classname]#Table#, as -given in -<<dummy/../../../framework/components/components-table#components.table,"Table">>. - -[[components.treetable.collapsed]] -== Expanding and Collapsing Items - -As in [classname]#Tree#, you can set the expanded/collapsed state of an item -programmatically with [methodname]#setCollapsed()#. Note that if you want to -expand all items, there is no [methodname]#expandItemsRecursively()# like in -[classname]#Tree#. Moreover, the [methodname]#getItemIds()# only returns the IDs -of the currently visible items for ordinary [interfacename]#Hierarchical# (not -[interfacename]#Collapsible#) containers. Hence you can not use that to iterate -over all the items, but you need to get the IDs from the underlying container. - - -[source, java] ----- -// Expand the tree -for (Object itemId: ttable.getContainerDataSource() - .getItemIds()) { - ttable.setCollapsed(itemId, false); - - // As we're at it, also disallow children from - // the current leaves - if (! ttable.hasChildren(itemId)) - ttable.setChildrenAllowed(itemId, false); -} ----- - -In large tables, this explicit setting becomes infeasible, as it needs to be -stored in the [classname]#TreeTable# (more exactly, in the -[classname]#HierarchicalStrategy# object) for all the contained items. You can -use a [interfacename]#Collapsible# container to store the collapsed states in -the container, thereby avoiding the explicit settings and memory overhead. There -are no built-in collapsible containers in the Vaadin core framework, so you -either need to use an add-on container or implement it yourself. - - - - diff --git a/documentation/components/components-twincolselect.asciidoc b/documentation/components/components-twincolselect.asciidoc deleted file mode 100644 index ad0305970a..0000000000 --- a/documentation/components/components-twincolselect.asciidoc +++ /dev/null @@ -1,95 +0,0 @@ ---- -title: TwinColSelect -order: 20 -layout: page ---- - -[[components.twincolselect]] -= [classname]#TwinColSelect# - -The [classname]#TwinColSelect# field provides a multiple selection component -that shows two lists side by side, with the left column containing unselected -items and the right column the selected items. The user can select items from -the list on the left and click on the ">>" button to move them to the list on -the right. Items can be deselected by selecting them in the right list and -clicking on the "<<" button. - -[[figure.components.twincolselect.basic]] -.Twin Column Selection -image::img/twincolselect-basic.png[] - -[classname]#TwinColSelect# is always in multi-select mode, so its property value -is always a collection of the item IDs of the selected items, that is, the items -in the right column. - -The selection columns can have their own captions, separate from the overall -component caption, which is managed by the containing layout. You can set the -column captions with [methodname]#setLeftColumnCaption()# and -[methodname]#setRightColumnCaption()#. - - -[source, java] ----- -TwinColSelect select = new TwinColSelect("Select Targets"); - -// Put some items in the select -select.addItems("Mercury", "Venus", "Earth", "Mars", - "Jupiter", "Saturn", "Uranus", "Neptune"); - -// Few items, so we can set rows to match item count -select.setRows(select.size()); - -// Preselect a few items by creating a set -select.setValue(new HashSet<String>( - Arrays.asList("Venus", "Earth", "Mars"))); - -// Handle value changes -select.addValueChangeListener(event -> // Java 8 - layout.addComponent(new Label("Selected: " + - event.getProperty().getValue()))); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.select.twincolselect.captions[on-line example, window="_blank"]. - -The resulting component is shown in <<figure.components.twincolselect.basic>>. - -The [methodname]#setRows()# method sets the height of the component by the -number of visible items in the selection boxes. Setting the height with -[methodname]#setHeight()# to a defined value overrides the rows setting. - -Common selection component features are described in -<<dummy/../../../framework/components/components-selection#components.selection,"Selection -Components">>. - -== CSS Style Rules - - -[source, css] ----- -.v-select-twincol {} - .v-select-twincol-options-caption {} - .v-select-twincol-selections-caption {} - .v-select-twincol-options {} - .v-select-twincol-buttons {} - .v-button {} - .v-button-wrap {} - .v-button-caption {} - .v-select-twincol-deco {} - .v-select-twincol-selections {} ----- - -The [classname]#TwinColSelect# component has an overall -[literal]#++v-select-twincol++# style. If set, the left and right column -captions have [literal]#++v-select-twincol-options-caption++# and -[literal]#++v-select-twincol-options-caption++# style names, respectively. The -left box, which displays the unselected items, has -[literal]#++v-select-twincol-options-caption++# style and the right box, which -displays the selected items, has -[literal]#++v-select-twincol-options-selections++# style. Between them is the -button area, which has overall [literal]#++v-select-twincol-buttons++# style; -the actual buttons reuse the styles for the [classname]#Button# component. -Between the buttons is a divider element with -[literal]#++v-select-twincol-deco++# style. - - - - diff --git a/documentation/components/components-upload.asciidoc b/documentation/components/components-upload.asciidoc deleted file mode 100644 index d03b89fef9..0000000000 --- a/documentation/components/components-upload.asciidoc +++ /dev/null @@ -1,167 +0,0 @@ ---- -title: Upload -order: 26 -layout: page ---- - -[[components.upload]] -= [classname]#Upload# - -The [classname]#Upload# component allows a user to upload files to the server. -It displays a file name entry box, a file selection button, and an upload submit -button. The user can either write the filename in the text area or click the -[guibutton]#Browse# button to select a file. After the file is selected, the -user sends the file by clicking the upload submit button. - -Uploading requires a receiver that implements [interfacename]#Upload.Receiver# -to provide an output stream to which the upload is written by the server. - - -[source, java] ----- -Upload upload = new Upload("Upload it here", receiver); ----- - -[[figure.ui.upload]] -.Upload Component -image::img/upload.png[] - -You can set the text of the upload button with [methodname]#setButtonCaption()#. -Note that it is difficult to change the caption or look of the -[guibutton]#Browse# button. This is a security feature of web browsers. The -language of the [guibutton]#Browse# button is determined by the browser, so if -you wish to have the language of the [classname]#Upload# component consistent, -you will have to use the same language in your application. - - -[source, java] ----- -upload.setButtonCaption("Upload Now"); ----- - -You can also hide the upload button with [literal]#++.v-upload .v-button -{display: none}++# in theme, have custom logic for starting the upload, and call -[methodname]#startUpload()# to start it. If the upload component has -[methodname]#setImmediate(true)# enabled, uploading starts immediately after -choosing the file. - -[[components.upload.receiving]] -== Receiving Upload Data - -The uploaded files are typically stored as files in a file system, in a -database, or as temporary objects in memory. The upload component writes the -received data to an [classname]#java.io.OutputStream# so you have plenty of -freedom in how you can process the upload content. - -To use the [classname]#Upload# component, you need to implement the -[classname]#Upload.Receiver# interface. The [methodname]#receiveUpload()# method -of the receiver is called when the user clicks the submit button. The method -must return an [classname]#OutputStream#. To do this, it typically creates a -file or a memory buffer to which the stream is written. The method gets the file -name and MIME type of the file, as reported by the browser. - -While uploading, the upload progress can be monitored with an -[interfacename]#Upload.ProgressListener#. The [methodname]#updateProgress()# -method gets the number of read bytes and the content length as parameters. The -content length is reported by the browser, but the reported value is not -reliable, and can also be unknown, in which case the value is -1. It is -therefore recommended to follow the upload progress and check the allowed size -in a progress listener. Upload can be terminated by calling -[methodname]#interruptUpload()# on the upload component. You may want to use a -[classname]#ProgressBar# to visualize the progress, and in indeterminate mode if -the content length is not known. - -When an upload is finished, successfully or unsuccessfully, the -[classname]#Upload# component will emit the [classname]#Upload.FinishedEvent# -event, which you can handle with an [classname]#Upload.FinishedListener# added -to the upload component. The event object will include the file name, MIME type, -and final length of the file. More specific [classname]#Upload.FailedEvent# and -[classname]#Upload.SucceededEvent# events will be called in the cases where the -upload failed or succeeded, respectively. - -The following example uploads images to [filename]#/tmp/uploads# directory in -(UNIX) filesystem (the directory must exist or the upload fails). The component -displays the uploaded image in an [classname]#Image# component. - - -[source, java] ----- -// Show uploaded file in this placeholder -final Embedded image = new Embedded("Uploaded Image"); -image.setVisible(false); - -// Implement both receiver that saves upload in a file and -// listener for successful upload -class ImageUploader implements Receiver, SucceededListener { - public File file; - - public OutputStream receiveUpload(String filename, - String mimeType) { - // Create upload stream - FileOutputStream fos = null; // Stream to write to - try { - // Open the file for writing. - file = new File("/tmp/uploads/" + filename); - fos = new FileOutputStream(file); - } catch (final java.io.FileNotFoundException e) { - new Notification("Could not open file<br/>", - e.getMessage(), - Notification.Type.ERROR_MESSAGE) - .show(Page.getCurrent()); - return null; - } - return fos; // Return the output stream to write to - } - - public void uploadSucceeded(SucceededEvent event) { - // Show the uploaded file in the image viewer - image.setVisible(true); - image.setSource(new FileResource(file)); - } -}; -ImageUploader receiver = new ImageUploader(); - -// Create the upload with a caption and set receiver later -Upload upload = new Upload("Upload Image Here", receiver); -upload.setButtonCaption("Start Upload"); -upload.addSucceededListener(receiver); - -// Put the components in a panel -Panel panel = new Panel("Cool Image Storage"); -Layout panelContent = new VerticalLayout(); -panelContent.addComponents(upload, image); -panel.setContent(panelContent); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#component.upload.basic[on-line example, window="_blank"]. - -Note that the example does not check the type of the uploaded files in any way, -which will cause an error if the content is anything else but an image. The -program also assumes that the MIME type of the file is resolved correctly based -on the file name extension. After uploading an image, the component will look as -shown in <<figure.ui.upload.example>>. - -[[figure.ui.upload.example]] -.Image Upload Example -image::img/upload-example.png[] - - -[[components.upload.css]] -== CSS Style Rules - - -[source, css] ----- -.v-upload { } - .gwt-FileUpload { } - .v-button { } - .v-button-wrap { } - .v-button-caption { } ----- - -The [classname]#Upload# component has an overall [literal]#++v-upload++# style. -The upload button has the same structure and style as a regular -[classname]#Button# component. - - - - diff --git a/documentation/components/img/button-example1.png b/documentation/components/img/button-example1.png Binary files differdeleted file mode 100644 index e17d315f61..0000000000 --- a/documentation/components/img/button-example1.png +++ /dev/null diff --git a/documentation/components/img/calendar-monthly.png b/documentation/components/img/calendar-monthly.png Binary files differdeleted file mode 100644 index 1b9b1c5a33..0000000000 --- a/documentation/components/img/calendar-monthly.png +++ /dev/null diff --git a/documentation/components/img/calendar-weekly.png b/documentation/components/img/calendar-weekly.png Binary files differdeleted file mode 100644 index d3b60aa08a..0000000000 --- a/documentation/components/img/calendar-weekly.png +++ /dev/null diff --git a/documentation/components/img/checkbox-example1.png b/documentation/components/img/checkbox-example1.png Binary files differdeleted file mode 100644 index 998af7141c..0000000000 --- a/documentation/components/img/checkbox-example1.png +++ /dev/null diff --git a/documentation/components/img/combobox-basic.png b/documentation/components/img/combobox-basic.png Binary files differdeleted file mode 100644 index fbde2e28b2..0000000000 --- a/documentation/components/img/combobox-basic.png +++ /dev/null diff --git a/documentation/components/img/combobox-filtering.png b/documentation/components/img/combobox-filtering.png Binary files differdeleted file mode 100644 index cb57cce053..0000000000 --- a/documentation/components/img/combobox-filtering.png +++ /dev/null diff --git a/documentation/components/img/component-abstractions-hi.png b/documentation/components/img/component-abstractions-hi.png Binary files differdeleted file mode 100644 index 1967cd17f6..0000000000 --- a/documentation/components/img/component-abstractions-hi.png +++ /dev/null diff --git a/documentation/components/img/component-abstractions-lo.png b/documentation/components/img/component-abstractions-lo.png Binary files differdeleted file mode 100644 index 5f1987f97e..0000000000 --- a/documentation/components/img/component-abstractions-lo.png +++ /dev/null diff --git a/documentation/components/img/component-diagram-hi.png b/documentation/components/img/component-diagram-hi.png Binary files differdeleted file mode 100644 index 534d3dcdd8..0000000000 --- a/documentation/components/img/component-diagram-hi.png +++ /dev/null diff --git a/documentation/components/img/component-diagram-lo.png b/documentation/components/img/component-diagram-lo.png Binary files differdeleted file mode 100644 index dff74ec62d..0000000000 --- a/documentation/components/img/component-diagram-lo.png +++ /dev/null diff --git a/documentation/components/img/customcomponent-example1.png b/documentation/components/img/customcomponent-example1.png Binary files differdeleted file mode 100644 index e02459bdf7..0000000000 --- a/documentation/components/img/customcomponent-example1.png +++ /dev/null diff --git a/documentation/components/img/datefield-example1.png b/documentation/components/img/datefield-example1.png Binary files differdeleted file mode 100644 index 4141ae0185..0000000000 --- a/documentation/components/img/datefield-example1.png +++ /dev/null diff --git a/documentation/components/img/datefield-formatting.png b/documentation/components/img/datefield-formatting.png Binary files differdeleted file mode 100644 index 570df9d6ea..0000000000 --- a/documentation/components/img/datefield-formatting.png +++ /dev/null diff --git a/documentation/components/img/datefield-inlinedatefield.png b/documentation/components/img/datefield-inlinedatefield.png Binary files differdeleted file mode 100644 index b87b119eed..0000000000 --- a/documentation/components/img/datefield-inlinedatefield.png +++ /dev/null diff --git a/documentation/components/img/features-caption-layoutmanaged.png b/documentation/components/img/features-caption-layoutmanaged.png Binary files differdeleted file mode 100644 index eb5f4e3467..0000000000 --- a/documentation/components/img/features-caption-layoutmanaged.png +++ /dev/null diff --git a/documentation/components/img/features-enabled-simple.png b/documentation/components/img/features-enabled-simple.png Binary files differdeleted file mode 100644 index 9c2ac79796..0000000000 --- a/documentation/components/img/features-enabled-simple.png +++ /dev/null diff --git a/documentation/components/img/features-icon.png b/documentation/components/img/features-icon.png Binary files differdeleted file mode 100644 index 22298b6271..0000000000 --- a/documentation/components/img/features-icon.png +++ /dev/null diff --git a/documentation/components/img/features-locale-selection.png b/documentation/components/img/features-locale-selection.png Binary files differdeleted file mode 100644 index c791aa2cd8..0000000000 --- a/documentation/components/img/features-locale-selection.png +++ /dev/null diff --git a/documentation/components/img/features-locale-simple.png b/documentation/components/img/features-locale-simple.png Binary files differdeleted file mode 100644 index 8be3df72e1..0000000000 --- a/documentation/components/img/features-locale-simple.png +++ /dev/null diff --git a/documentation/components/img/features-readonly-simple.png b/documentation/components/img/features-readonly-simple.png Binary files differdeleted file mode 100644 index e79a3c065b..0000000000 --- a/documentation/components/img/features-readonly-simple.png +++ /dev/null diff --git a/documentation/components/img/features-stylename-simple.png b/documentation/components/img/features-stylename-simple.png Binary files differdeleted file mode 100644 index 921732f0ee..0000000000 --- a/documentation/components/img/features-stylename-simple.png +++ /dev/null diff --git a/documentation/components/img/features-visible-simple.png b/documentation/components/img/features-visible-simple.png Binary files differdeleted file mode 100644 index bb4efaf261..0000000000 --- a/documentation/components/img/features-visible-simple.png +++ /dev/null diff --git a/documentation/components/img/field-diagram-hi.png b/documentation/components/img/field-diagram-hi.png Binary files differdeleted file mode 100644 index d4da08dfa2..0000000000 --- a/documentation/components/img/field-diagram-hi.png +++ /dev/null diff --git a/documentation/components/img/field-diagram-lo.png b/documentation/components/img/field-diagram-lo.png Binary files differdeleted file mode 100644 index 540167b707..0000000000 --- a/documentation/components/img/field-diagram-lo.png +++ /dev/null diff --git a/documentation/components/img/field-interface-hi.png b/documentation/components/img/field-interface-hi.png Binary files differdeleted file mode 100644 index 1b6579b846..0000000000 --- a/documentation/components/img/field-interface-hi.png +++ /dev/null diff --git a/documentation/components/img/field-interface-lo.png b/documentation/components/img/field-interface-lo.png Binary files differdeleted file mode 100644 index 906dab7769..0000000000 --- a/documentation/components/img/field-interface-lo.png +++ /dev/null diff --git a/documentation/components/img/grid-editor-basic.png b/documentation/components/img/grid-editor-basic.png Binary files differdeleted file mode 100644 index 205832dc9a..0000000000 --- a/documentation/components/img/grid-editor-basic.png +++ /dev/null diff --git a/documentation/components/img/grid-editor-errors.png b/documentation/components/img/grid-editor-errors.png Binary files differdeleted file mode 100644 index 9f94903648..0000000000 --- a/documentation/components/img/grid-editor-errors.png +++ /dev/null diff --git a/documentation/components/img/grid-features.png b/documentation/components/img/grid-features.png Binary files differdeleted file mode 100644 index 3ba9456352..0000000000 --- a/documentation/components/img/grid-features.png +++ /dev/null diff --git a/documentation/components/img/grid-filtering.png b/documentation/components/img/grid-filtering.png Binary files differdeleted file mode 100644 index 921414135f..0000000000 --- a/documentation/components/img/grid-filtering.png +++ /dev/null diff --git a/documentation/components/img/grid-renderers.png b/documentation/components/img/grid-renderers.png Binary files differdeleted file mode 100644 index 9eb8157fa7..0000000000 --- a/documentation/components/img/grid-renderers.png +++ /dev/null diff --git a/documentation/components/img/grid-selection-multi.png b/documentation/components/img/grid-selection-multi.png Binary files differdeleted file mode 100644 index 59fbfe9a6b..0000000000 --- a/documentation/components/img/grid-selection-multi.png +++ /dev/null diff --git a/documentation/components/img/grid-sorting.png b/documentation/components/img/grid-sorting.png Binary files differdeleted file mode 100644 index b5846a74a1..0000000000 --- a/documentation/components/img/grid-sorting.png +++ /dev/null diff --git a/documentation/components/img/label-example1.png b/documentation/components/img/label-example1.png Binary files differdeleted file mode 100644 index 1c3493af63..0000000000 --- a/documentation/components/img/label-example1.png +++ /dev/null diff --git a/documentation/components/img/label-modes.png b/documentation/components/img/label-modes.png Binary files differdeleted file mode 100644 index ada3955ee0..0000000000 --- a/documentation/components/img/label-modes.png +++ /dev/null diff --git a/documentation/components/img/label-withimage.png b/documentation/components/img/label-withimage.png Binary files differdeleted file mode 100644 index fecd9ef2ee..0000000000 --- a/documentation/components/img/label-withimage.png +++ /dev/null diff --git a/documentation/components/img/link-new.png b/documentation/components/img/link-new.png Binary files differdeleted file mode 100644 index 04c4d37d02..0000000000 --- a/documentation/components/img/link-new.png +++ /dev/null diff --git a/documentation/components/img/link.png b/documentation/components/img/link.png Binary files differdeleted file mode 100644 index a903b60f3b..0000000000 --- a/documentation/components/img/link.png +++ /dev/null diff --git a/documentation/components/img/listselect-basic.png b/documentation/components/img/listselect-basic.png Binary files differdeleted file mode 100644 index 375fbd48c9..0000000000 --- a/documentation/components/img/listselect-basic.png +++ /dev/null diff --git a/documentation/components/img/menubar-example1.png b/documentation/components/img/menubar-example1.png Binary files differdeleted file mode 100644 index 939bbb27c1..0000000000 --- a/documentation/components/img/menubar-example1.png +++ /dev/null diff --git a/documentation/components/img/nativeselect-basic.png b/documentation/components/img/nativeselect-basic.png Binary files differdeleted file mode 100644 index 0a1a55927c..0000000000 --- a/documentation/components/img/nativeselect-basic.png +++ /dev/null diff --git a/documentation/components/img/optiongroup-basic.png b/documentation/components/img/optiongroup-basic.png Binary files differdeleted file mode 100644 index 946f4c484e..0000000000 --- a/documentation/components/img/optiongroup-basic.png +++ /dev/null diff --git a/documentation/components/img/optiongroup-disabling.png b/documentation/components/img/optiongroup-disabling.png Binary files differdeleted file mode 100644 index 0660032339..0000000000 --- a/documentation/components/img/optiongroup-disabling.png +++ /dev/null diff --git a/documentation/components/img/optiongroup-horizontal.png b/documentation/components/img/optiongroup-horizontal.png Binary files differdeleted file mode 100644 index 09d6e9d658..0000000000 --- a/documentation/components/img/optiongroup-horizontal.png +++ /dev/null diff --git a/documentation/components/img/passwordfield-basic.png b/documentation/components/img/passwordfield-basic.png Binary files differdeleted file mode 100644 index 7b1c4d32d9..0000000000 --- a/documentation/components/img/passwordfield-basic.png +++ /dev/null diff --git a/documentation/components/img/progressbar-basic.png b/documentation/components/img/progressbar-basic.png Binary files differdeleted file mode 100644 index 4db5657eda..0000000000 --- a/documentation/components/img/progressbar-basic.png +++ /dev/null diff --git a/documentation/components/img/progressbar-indeterminate.png b/documentation/components/img/progressbar-indeterminate.png Binary files differdeleted file mode 100644 index dd1bff5d98..0000000000 --- a/documentation/components/img/progressbar-indeterminate.png +++ /dev/null diff --git a/documentation/components/img/progressbar-thread.png b/documentation/components/img/progressbar-thread.png Binary files differdeleted file mode 100644 index 00bb619505..0000000000 --- a/documentation/components/img/progressbar-thread.png +++ /dev/null diff --git a/documentation/components/img/richtextarea-example1.png b/documentation/components/img/richtextarea-example1.png Binary files differdeleted file mode 100644 index 1f2b80ac8a..0000000000 --- a/documentation/components/img/richtextarea-example1.png +++ /dev/null diff --git a/documentation/components/img/richtextarea-toolbar-mod-whitebg.png b/documentation/components/img/richtextarea-toolbar-mod-whitebg.png Binary files differdeleted file mode 100644 index 6a89e49143..0000000000 --- a/documentation/components/img/richtextarea-toolbar-mod-whitebg.png +++ /dev/null diff --git a/documentation/components/img/richtextarea-toolbar-whitebg.png b/documentation/components/img/richtextarea-toolbar-whitebg.png Binary files differdeleted file mode 100644 index 571875a053..0000000000 --- a/documentation/components/img/richtextarea-toolbar-whitebg.png +++ /dev/null diff --git a/documentation/components/img/select-selected1.png b/documentation/components/img/select-selected1.png Binary files differdeleted file mode 100644 index c10e7855c9..0000000000 --- a/documentation/components/img/select-selected1.png +++ /dev/null diff --git a/documentation/components/img/slider-example1-hi.png b/documentation/components/img/slider-example1-hi.png Binary files differdeleted file mode 100644 index 2c4694f826..0000000000 --- a/documentation/components/img/slider-example1-hi.png +++ /dev/null diff --git a/documentation/components/img/slider-example1-lo.png b/documentation/components/img/slider-example1-lo.png Binary files differdeleted file mode 100644 index efdf876994..0000000000 --- a/documentation/components/img/slider-example1-lo.png +++ /dev/null diff --git a/documentation/components/img/slider-orig.png b/documentation/components/img/slider-orig.png Binary files differdeleted file mode 100644 index 2b135ce290..0000000000 --- a/documentation/components/img/slider-orig.png +++ /dev/null diff --git a/documentation/components/img/table-cellstylegenerator1.png b/documentation/components/img/table-cellstylegenerator1.png Binary files differdeleted file mode 100644 index a23bc6d38a..0000000000 --- a/documentation/components/img/table-cellstylegenerator1.png +++ /dev/null diff --git a/documentation/components/img/table-column-collapsing.png b/documentation/components/img/table-column-collapsing.png Binary files differdeleted file mode 100644 index 5142fe0b93..0000000000 --- a/documentation/components/img/table-column-collapsing.png +++ /dev/null diff --git a/documentation/components/img/table-column-resize.png b/documentation/components/img/table-column-resize.png Binary files differdeleted file mode 100644 index 86af196ae8..0000000000 --- a/documentation/components/img/table-column-resize.png +++ /dev/null diff --git a/documentation/components/img/table-columnformatting.png b/documentation/components/img/table-columnformatting.png Binary files differdeleted file mode 100644 index 3367e49fb1..0000000000 --- a/documentation/components/img/table-columnformatting.png +++ /dev/null diff --git a/documentation/components/img/table-components.png b/documentation/components/img/table-components.png Binary files differdeleted file mode 100644 index e0071f9ddc..0000000000 --- a/documentation/components/img/table-components.png +++ /dev/null diff --git a/documentation/components/img/table-editable3.png b/documentation/components/img/table-editable3.png Binary files differdeleted file mode 100644 index 610699e491..0000000000 --- a/documentation/components/img/table-editable3.png +++ /dev/null diff --git a/documentation/components/img/table-example1.png b/documentation/components/img/table-example1.png Binary files differdeleted file mode 100644 index 3d091cfacb..0000000000 --- a/documentation/components/img/table-example1.png +++ /dev/null diff --git a/documentation/components/img/table-example2.png b/documentation/components/img/table-example2.png Binary files differdeleted file mode 100644 index f6830ff67c..0000000000 --- a/documentation/components/img/table-example2.png +++ /dev/null diff --git a/documentation/components/img/table-footer.png b/documentation/components/img/table-footer.png Binary files differdeleted file mode 100644 index fdc2c09674..0000000000 --- a/documentation/components/img/table-footer.png +++ /dev/null diff --git a/documentation/components/img/table-generatedcolumns1.png b/documentation/components/img/table-generatedcolumns1.png Binary files differdeleted file mode 100644 index 11e7931624..0000000000 --- a/documentation/components/img/table-generatedcolumns1.png +++ /dev/null diff --git a/documentation/components/img/table-generatedcolumns2.png b/documentation/components/img/table-generatedcolumns2.png Binary files differdeleted file mode 100644 index 0e0b42e665..0000000000 --- a/documentation/components/img/table-generatedcolumns2.png +++ /dev/null diff --git a/documentation/components/img/textarea-basic.png b/documentation/components/img/textarea-basic.png Binary files differdeleted file mode 100644 index 2bd8e79d4b..0000000000 --- a/documentation/components/img/textarea-basic.png +++ /dev/null diff --git a/documentation/components/img/textarea-wordwrap.png b/documentation/components/img/textarea-wordwrap.png Binary files differdeleted file mode 100644 index c1515a7a64..0000000000 --- a/documentation/components/img/textarea-wordwrap.png +++ /dev/null diff --git a/documentation/components/img/textfield-css.png b/documentation/components/img/textfield-css.png Binary files differdeleted file mode 100644 index 820fdeb19b..0000000000 --- a/documentation/components/img/textfield-css.png +++ /dev/null diff --git a/documentation/components/img/textfield-diagram-hi.png b/documentation/components/img/textfield-diagram-hi.png Binary files differdeleted file mode 100644 index f7f160e212..0000000000 --- a/documentation/components/img/textfield-diagram-hi.png +++ /dev/null diff --git a/documentation/components/img/textfield-diagram-lo.png b/documentation/components/img/textfield-diagram-lo.png Binary files differdeleted file mode 100644 index 61f5dc03e7..0000000000 --- a/documentation/components/img/textfield-diagram-lo.png +++ /dev/null diff --git a/documentation/components/img/textfield-example.png b/documentation/components/img/textfield-example.png Binary files differdeleted file mode 100644 index e6fa2bfcc2..0000000000 --- a/documentation/components/img/textfield-example.png +++ /dev/null diff --git a/documentation/components/img/textfield-nullrepresentation.png b/documentation/components/img/textfield-nullrepresentation.png Binary files differdeleted file mode 100644 index 426e57001b..0000000000 --- a/documentation/components/img/textfield-nullrepresentation.png +++ /dev/null diff --git a/documentation/components/img/textfield-textchangeevents.png b/documentation/components/img/textfield-textchangeevents.png Binary files differdeleted file mode 100644 index 32003cf327..0000000000 --- a/documentation/components/img/textfield-textchangeevents.png +++ /dev/null diff --git a/documentation/components/img/tooltip-plain-withpointer-hi.png b/documentation/components/img/tooltip-plain-withpointer-hi.png Binary files differdeleted file mode 100644 index 9ee3981e0b..0000000000 --- a/documentation/components/img/tooltip-plain-withpointer-hi.png +++ /dev/null diff --git a/documentation/components/img/tooltip-plain-withpointer-lo.png b/documentation/components/img/tooltip-plain-withpointer-lo.png Binary files differdeleted file mode 100644 index f9f4bbdd54..0000000000 --- a/documentation/components/img/tooltip-plain-withpointer-lo.png +++ /dev/null diff --git a/documentation/components/img/tooltip-plain.png b/documentation/components/img/tooltip-plain.png Binary files differdeleted file mode 100644 index 601eb49e88..0000000000 --- a/documentation/components/img/tooltip-plain.png +++ /dev/null diff --git a/documentation/components/img/tooltip-richtext-withpointer-hi.png b/documentation/components/img/tooltip-richtext-withpointer-hi.png Binary files differdeleted file mode 100644 index d327a5fed8..0000000000 --- a/documentation/components/img/tooltip-richtext-withpointer-hi.png +++ /dev/null diff --git a/documentation/components/img/tooltip-richtext-withpointer-lo.png b/documentation/components/img/tooltip-richtext-withpointer-lo.png Binary files differdeleted file mode 100644 index f8893aa39b..0000000000 --- a/documentation/components/img/tooltip-richtext-withpointer-lo.png +++ /dev/null diff --git a/documentation/components/img/tooltip-richtext.png b/documentation/components/img/tooltip-richtext.png Binary files differdeleted file mode 100644 index de184fa20e..0000000000 --- a/documentation/components/img/tooltip-richtext.png +++ /dev/null diff --git a/documentation/components/img/tree-example1.png b/documentation/components/img/tree-example1.png Binary files differdeleted file mode 100644 index 33a1b34291..0000000000 --- a/documentation/components/img/tree-example1.png +++ /dev/null diff --git a/documentation/components/img/treetable-basic.png b/documentation/components/img/treetable-basic.png Binary files differdeleted file mode 100644 index 36caa81fcb..0000000000 --- a/documentation/components/img/treetable-basic.png +++ /dev/null diff --git a/documentation/components/img/twincolselect-basic.png b/documentation/components/img/twincolselect-basic.png Binary files differdeleted file mode 100644 index e3618b273a..0000000000 --- a/documentation/components/img/twincolselect-basic.png +++ /dev/null diff --git a/documentation/components/img/upload-example.png b/documentation/components/img/upload-example.png Binary files differdeleted file mode 100644 index 756246986d..0000000000 --- a/documentation/components/img/upload-example.png +++ /dev/null diff --git a/documentation/components/img/upload.png b/documentation/components/img/upload.png Binary files differdeleted file mode 100644 index b64c9990fc..0000000000 --- a/documentation/components/img/upload.png +++ /dev/null diff --git a/documentation/components/original-drawings/component-abstractions.svg b/documentation/components/original-drawings/component-abstractions.svg deleted file mode 100644 index 041bfd4596..0000000000 --- a/documentation/components/original-drawings/component-abstractions.svg +++ /dev/null @@ -1,1226 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- sodipodi:docname="component-abstractions.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="300.01001"
- inkscape:export-ydpi="300.01001"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="2.4"
- inkscape:cx="234.91691"
- inkscape:cy="504.24301"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1680"
- inkscape:window-height="1026"
- inkscape:window-x="1280"
- inkscape:window-y="0"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="true">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- </defs>
- <metadata
- id="metadata2480">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1">
- <path
- inkscape:connector-type="polyline"
- id="path6652"
- d="M 381.41871,676.33701 L 372.96626,661.4099"
- style="fill:#ff8080;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:2.83464575;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:2.83464575, 2.83464575;stroke-dashoffset:0;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g3796" />
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="translate(-3.5714286,23.214286)"
- id="g3178" />
- <g
- id="g2547"
- transform="translate(-95.25627,163.78482)">
- <rect
- ry="3.7880721"
- y="233.06555"
- x="166.12241"
- height="35.433075"
- width="85.039375"
- id="rect2549"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2551"
- transform="translate(-5.2378947,106.19782)"><flowRegion
- id="flowRegion2553"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use2555"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara2557">Sizeable</flowPara></flowRoot> </g>
- <path
- inkscape:connection-end="#g2547"
- inkscape:connector-type="polyline"
- id="path3599"
- d="M 184.43234,414.33305 L 155.90551,414.42695"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g2492" />
- <g
- id="g2492"
- transform="translate(21.259843,166.13857)">
- <rect
- ry="3.7880721"
- y="230.31496"
- x="163.1725"
- height="35.433071"
- width="99.032219"
- id="rect4654"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4664"
- transform="translate(-2.7125132,103.67242)"><flowRegion
- id="flowRegion4666"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use4668"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara4670">Component</flowPara></flowRoot> </g>
- <path
- inkscape:connector-type="polyline"
- id="path4676"
- d="M 233.79563,471.55301 L 233.90127,431.8866"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g2475"
- inkscape:connection-end="#g2492" />
- <g
- id="g2475"
- transform="translate(21.456693,262.49791)">
- <rect
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4622"
- width="141.11894"
- height="35.433071"
- x="141.73228"
- y="209.0551"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold Italic"
- id="flowRoot4636"
- transform="translate(-0.5922832,13.889135)"><flowRegion
- id="flowRegion4638"><use
- x="0"
- y="0"
- xlink:href="#rect4622"
- id="use4640"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara4642">AbstractComponent</flowPara></flowRoot> </g>
- <g
- id="g2834"
- transform="translate(-80.706041,295.00072)">
- <rect
- ry="3.7880721"
- y="225.8654"
- x="151.57219"
- height="35.433075"
- width="131.10236"
- id="rect2836"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="217.32076"
- y="248.13274"
- id="text2846"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan2848"
- x="217.32076"
- y="248.13274">ComponentContainer</tspan></text>
- </g>
- <path
- inkscape:connector-type="polyline"
- id="path2850"
- d="M 201.23647,574.01573 L 168.61468,556.2992"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g2814"
- inkscape:connection-end="#g2834" />
- <path
- inkscape:connector-type="polyline"
- id="path2852"
- d="M 233.83928,574.01573 L 233.76744,506.98608"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g2814"
- inkscape:connection-end="#g2475" />
- <g
- transform="translate(-10.317028,359.07199)"
- id="g2814">
- <rect
- ry="3.7880721"
- y="214.94374"
- x="144.96269"
- height="35.433071"
- width="198.4252"
- id="rect2816"
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="244.1588"
- y="236.17027"
- id="text2830"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan2832"
- x="244.1588"
- y="236.17027">AbstractComponentContainer</tspan></text>
- </g>
- <path
- inkscape:connector-type="polyline"
- id="path2866"
- d="M 348.38853,414.45941 L 283.46456,414.29526"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g2854"
- inkscape:connection-end="#g2492" />
- <path
- inkscape:connector-type="polyline"
- id="path2882"
- d="M 390.27242,396.85037 L 389.76378,382.67715"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:2.83464575;stroke-linecap:butt;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:2.83464575, 2.83464575;stroke-dashoffset:3.68503947;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g2854"
- sodipodi:nodetypes="cc" />
- <g
- id="g5034"
- transform="translate(67.015461,147.08619)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716537"
- width="62.31395"
- id="rect5036"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot5038"
- transform="translate(-0.8622551,101.2329)"><flowRegion
- id="flowRegion5040"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use5042"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara5044">Focusable</flowPara></flowRoot> </g>
- <path
- inkscape:connection-end="#g5034"
- inkscape:connection-start="#g2854"
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path5050"
- d="M 348.38853,405.68478 L 312.69685,398.22898"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
- <g
- id="g2854"
- transform="translate(182.26612,163.78482)">
- <rect
- ry="3.7880721"
- y="233.06555"
- x="166.12241"
- height="35.433075"
- width="85.039375"
- id="rect2856"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2858"
- transform="translate(-6.2480473,106.19782)"><flowRegion
- id="flowRegion2860"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use2862"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara2864">Field</flowPara></flowRoot> </g>
- <path
- inkscape:connection-end="#g2854"
- inkscape:connection-start="#g2802"
- inkscape:connector-type="polyline"
- id="path2868"
- d="M 391.60532,471.25982 L 391.12606,432.28345"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
- <path
- inkscape:connection-start="#g2802"
- inkscape:connector-type="polyline"
- id="path2639"
- d="M 336.61418,489.2431 L 304.30792,489.2514"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4.00039387;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-end="#g2475" />
- <g
- transform="translate(164.18713,262.7098)"
- id="g2802">
- <rect
- ry="3.7880721"
- y="208.55002"
- x="172.42705"
- height="35.93816"
- width="110.42418"
- id="rect2804"
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(14.774223,13.372598)"
- id="flowRoot2806"
- style="font-size:12px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold Italic"
- xml:space="preserve"><flowRegion
- id="flowRegion2808"><use
- height="1052.3622"
- width="744.09448"
- id="use2810"
- xlink:href="#rect4622"
- y="0"
- x="0" /></flowRegion><flowPara
- id="flowPara2812">AbstractField</flowPara></flowRoot> </g>
- <path
- inkscape:connection-end="#g2802"
- inkscape:connection-start="#g3796"
- inkscape:connector-type="polyline"
- id="path2641"
- d="M 391.59581,676.33701 L 391.80413,507.19798"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
- <g
- transform="translate(163.68204,467.71653)"
- id="g3796">
- <rect
- ry="3.7880721"
- y="208.62048"
- x="172.93213"
- height="35.867687"
- width="109.9191"
- id="rect3798"
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(15.007639,14.331827)"
- id="flowRoot3800"
- style="font-size:12px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold Italic"
- xml:space="preserve"><flowRegion
- id="flowRegion3802"><use
- height="1052.3622"
- width="744.09448"
- id="use3804"
- xlink:href="#rect4622"
- y="0"
- x="0" /></flowRegion><flowPara
- id="flowPara3806">AbstractSelect</flowPara></flowRoot> </g>
- <g
- id="g8538"
- transform="translate(-13.288701,186.94839)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716534"
- width="49.6063"
- id="rect8540"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot8542"
- transform="translate(-7.1061187,101.2329)"><flowRegion
- id="flowRegion8544"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use8546"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara8548">Event</flowPara></flowRoot> </g>
- <path
- inkscape:connection-start="#g8550"
- inkscape:connection-end="#g2814"
- inkscape:connector-type="polyline"
- id="path8562"
- d="M 233.85827,623.62203 L 233.85827,609.4488"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
- <g
- id="g8550"
- transform="translate(21.259839,414.56693)">
- <rect
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect8552"
- width="106.29921"
- height="35.433067"
- x="159.44882"
- y="209.0551"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold Italic"
- id="flowRoot8554"
- transform="translate(-0.2856121,13.205133)"><flowRegion
- id="flowRegion8556"><use
- x="0"
- y="0"
- xlink:href="#rect4622"
- id="use8558"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara8560">AbstractLayout</flowPara></flowRoot> </g>
- <path
- inkscape:connection-start="#g8564"
- inkscape:connection-end="#g8550"
- inkscape:connector-type="polyline"
- id="path8580"
- d="M 233.85827,676.77163 L 233.85827,659.0551"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
- <g
- transform="translate(-10.016579,461.82789)"
- id="g8564">
- <rect
- ry="3.7880721"
- y="214.94374"
- x="162.37878"
- height="35.433071"
- width="162.99213"
- id="rect8566"
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold Italic"
- x="243.28769"
- y="236.54228"
- id="text8568"
- sodipodi:linespacing="100%"><tspan
- sodipodi:role="line"
- id="tspan8570"
- x="243.28769"
- y="236.54228">AbstractOrderedLayout</tspan></text>
- </g>
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <text
- xml:space="preserve"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="361.58572"
- y="654.78394"
- id="text12159"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan12161"
- x="361.58572"
- y="654.78394">Container</tspan></text>
- <g
- transform="matrix(0.5,0,0,0.5,103.34299,0.7940752)"
- id="g18053" />
- <g
- id="g80473"
- transform="translate(-13.177371,204.30055)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716534"
- width="49.6063"
- id="rect80475"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot80477"
- transform="translate(-7.1061187,101.2329)"><flowRegion
- id="flowRegion80479"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use80481"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara80483">Listener</flowPara></flowRoot> </g>
- <g
- id="g84015"
- transform="translate(-95.25627,390.55647)">
- <rect
- ry="3.7880721"
- y="233.06555"
- x="166.12241"
- height="35.433075"
- width="85.039375"
- id="rect84017"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot84019"
- transform="translate(-6.2480473,106.19782)"><flowRegion
- id="flowRegion84021"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use84023"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara84025">Layout</flowPara></flowRoot> </g>
- <path
- inkscape:connector-type="polyline"
- id="path84027"
- d="M 180.70866,641.33856 L 155.90551,641.33856"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g8550"
- inkscape:connection-end="#g84015" />
- <path
- inkscape:connector-type="polyline"
- id="path84033"
- d="M 113.41139,623.62202 L 113.38583,556.29919"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- sodipodi:nodetypes="cc"
- inkscape:connection-start="#g84015" />
- <text
- xml:space="preserve"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="389.50186"
- y="372.04721"
- id="text3392"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan3394"
- x="389.50186"
- y="372.04721">Property</tspan></text>
- <g
- id="g4420"
- transform="translate(25.216177,100.00529)">
- <rect
- ry="3.7880721"
- y="233.06555"
- x="166.12241"
- height="35.433075"
- width="85.039375"
- id="rect4422"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4424"
- transform="translate(-5.2378947,106.19782)"><flowRegion
- id="flowRegion4426"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use4428"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara4430">Paintable</flowPara></flowRoot> </g>
- <g
- id="g4432"
- transform="translate(-88.23199,99.080106)">
- <rect
- ry="3.7880721"
- y="233.99074"
- x="159.09813"
- height="35.433071"
- width="99.212601"
- id="rect4434"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4436"
- transform="translate(-5.2378947,106.19782)"><flowRegion
- id="flowRegion4438"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use4440"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara4442">VariableOwner</flowPara></flowRoot> </g>
- <path
- inkscape:connector-type="polyline"
- id="path4445"
- d="M 233.92325,396.45353 L 233.88348,368.50392"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g2492"
- inkscape:connection-end="#g4420" />
- <path
- inkscape:connector-type="polyline"
- id="path4448"
- d="M 202.22998,396.45353 L 152.19091,368.50392"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g2492"
- inkscape:connection-end="#g4432" />
- </g>
-</svg>
diff --git a/documentation/components/original-drawings/component-diagram.svg b/documentation/components/original-drawings/component-diagram.svg deleted file mode 100644 index b6cca8813a..0000000000 --- a/documentation/components/original-drawings/component-diagram.svg +++ /dev/null @@ -1,2180 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- sodipodi:docname="component-diagram.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="300.01001"
- inkscape:export-ydpi="300.01001"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.6970563"
- inkscape:cx="424.16197"
- inkscape:cy="468.86332"
- inkscape:document-units="mm"
- inkscape:current-layer="g2814"
- showgrid="true"
- inkscape:window-width="1680"
- inkscape:window-height="1026"
- inkscape:window-x="1280"
- inkscape:window-y="0"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="true">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- </defs>
- <metadata
- id="metadata2480">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1">
- <g
- id="g8676"
- transform="translate(21.456674,439.66327)">
- <rect
- ry="3.7880721"
- y="237.40155"
- x="14.173247"
- height="35.139881"
- width="84.842522"
- id="rect8678"
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(-3.5898053,12.655528)"
- id="flowRoot8680"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion8682"><use
- height="1052.3622"
- width="744.09448"
- id="use8684"
- xlink:href="#rect28346"
- y="0"
- x="0" /></flowRegion><flowPara
- id="flowPara8686">Panel</flowPara></flowRoot> </g>
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="translate(-3.5714286,23.214286)"
- id="g3178" />
- <path
- inkscape:connector-type="polyline"
- id="path28387"
- d="M 191.53543,563.67899 L 190.15217,563.81168"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <g
- id="g2492"
- transform="translate(21.259843,162.59526)">
- <rect
- ry="3.7880721"
- y="230.31496"
- x="163.1725"
- height="35.433071"
- width="99.032219"
- id="rect4654"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4664"
- transform="translate(-2.7125132,103.67242)"><flowRegion
- id="flowRegion4666"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use4668"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara4670">Component</flowPara></flowRoot> </g>
- <path
- inkscape:connector-type="polyline"
- id="path4676"
- d="M 233.79351,471.55301 L 233.9034,428.34329"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g2475"
- inkscape:connection-end="#g2492" />
- <g
- id="g2475"
- transform="translate(21.456693,262.49791)">
- <rect
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4622"
- width="141.11894"
- height="35.433071"
- x="141.73228"
- y="209.0551"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold Italic"
- id="flowRoot4636"
- transform="translate(-1.2813438,13.082604)"><flowRegion
- id="flowRegion4638"><use
- x="0"
- y="0"
- xlink:href="#rect4622"
- id="use4640"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara4642">AbstractComponent</flowPara></flowRoot> </g>
- <path
- inkscape:connection-start="#g28366"
- inkscape:connector-type="polyline"
- id="path28356"
- d="M 113.58268,489.31784 L 163.18898,489.2979"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:3.89763784;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-end="#g2475" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connection-start="#g28410"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:3.89763784;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 191.33858,556.29919 L 191.33858,506.69289"
- id="path28422"
- inkscape:connector-type="polyline"
- inkscape:connection-end="#g2475" />
- <g
- transform="translate(14.370099,248.85827)"
- id="g28403">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680"
- width="77.952736"
- height="35.433075"
- x="21.259842"
- y="179.88187"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3307"
- transform="translate(-0.1536719,27.14058)"><flowRegion
- id="flowRegion3309"><use
- x="0"
- y="0"
- xlink:href="#rect4680"
- id="use3311"
- width="744.09448"
- height="1052.3622"
- transform="translate(-8.3132958e-2,-13.857718)" /></flowRegion><flowPara
- id="flowPara3313">Embedded</flowPara></flowRoot> </g>
- <g
- transform="translate(14.370099,234.21542)"
- id="g28366">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect28346"
- width="77.952736"
- height="35.433075"
- x="21.259842"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot28358"
- transform="translate(0,13.484772)"><flowRegion
- id="flowRegion28360"><use
- x="0"
- y="0"
- xlink:href="#rect28346"
- id="use28362"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara28364">Link</flowPara></flowRoot> </g>
- <g
- transform="translate(14.370099,276.37795)"
- id="g28373">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect28375"
- width="77.952736"
- height="35.433075"
- x="21.259842"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot28377"
- transform="translate(0,13.484772)"><flowRegion
- id="flowRegion28379"><use
- x="0"
- y="0"
- xlink:href="#rect28346"
- id="use28381"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara28383">Label</flowPara></flowRoot> </g>
- <g
- transform="translate(21.456674,318.89764)"
- id="g28389">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect28391"
- width="77.952736"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot28393"
- transform="translate(-7.3232607,13.484772)"><flowRegion
- id="flowRegion28395"><use
- x="0"
- y="0"
- xlink:href="#rect28346"
- id="use28397"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara28399">MenuBar</flowPara></flowRoot> </g>
- <g
- id="g28410"
- transform="translate(128.79419,319.19082)">
- <rect
- ry="3.7880721"
- y="237.40155"
- x="14.173247"
- height="35.433075"
- width="77.952736"
- id="rect28412"
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(-6.2438636,13.070151)"
- id="flowRoot28414"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion28416"><use
- height="1052.3622"
- width="744.09448"
- id="use28418"
- xlink:href="#rect28346"
- y="0"
- x="0" /></flowRegion><flowPara
- id="flowPara28420">Upload</flowPara></flowRoot> </g>
- <g
- id="g2834"
- transform="translate(-105.31234,394.21331)">
- <rect
- ry="3.7880721"
- y="226.1586"
- x="140.94226"
- height="35.139877"
- width="152.16536"
- id="rect2836"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="217.32076"
- y="248.13274"
- id="text2846"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan2848"
- x="217.32076"
- y="248.13274">ComponentContainer</tspan></text>
- </g>
- <path
- inkscape:connector-type="polyline"
- id="path2850"
- d="M 193.98254,677.25322 L 146.07134,655.80498"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g2814"
- inkscape:connection-end="#g2834" />
- <path
- inkscape:connector-type="polyline"
- id="path2852"
- d="M 233.57424,677.25322 L 233.73203,506.98608"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g2814"
- inkscape:connection-end="#g2475" />
- <g
- transform="translate(-10.317025,462.30948)"
- id="g2814">
- <rect
- ry="3.7880721"
- y="214.94374"
- x="144.96269"
- height="35.43309"
- width="201.96851"
- id="rect2816"
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold Italic"
- x="244.37701"
- y="236.20358"
- id="text2830"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan2832"
- x="244.37701"
- y="236.20358">AbstractComponentContainer</tspan></text>
- </g>
- <path
- inkscape:connector-type="polyline"
- id="path2866"
- d="M 389.76378,410.77475 L 283.46456,410.67378"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g2854"
- inkscape:connection-end="#g2492" />
- <g
- id="g2854"
- transform="translate(223.64137,160.03305)">
- <rect
- ry="3.7880721"
- y="233.06555"
- x="166.12241"
- height="35.433075"
- width="85.039375"
- id="rect2856"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2858"
- transform="translate(-6.2480473,106.19782)"><flowRegion
- id="flowRegion2860"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use2862"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara2864">Field</flowPara></flowRoot> </g>
- <path
- inkscape:connection-end="#g2854"
- inkscape:connection-start="#g2802"
- inkscape:connector-type="polyline"
- id="path2868"
- d="M 432.25441,471.55301 L 432.27499,428.53168"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
- <path
- inkscape:connection-start="#g2802"
- inkscape:connector-type="polyline"
- id="path2639"
- d="M 377.03373,489.45184 L 304.30792,489.35932"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4.0003937;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-end="#g2475" />
- <g
- transform="translate(204.60668,263.00299)"
- id="g2802">
- <rect
- ry="3.7880721"
- y="208.55002"
- x="172.42705"
- height="35.93816"
- width="110.42418"
- id="rect2804"
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(17.153521,11.90988)"
- id="flowRoot2806"
- style="font-size:12px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold Italic"
- xml:space="preserve"><flowRegion
- id="flowRegion2808"><use
- height="1052.3622"
- width="744.09448"
- id="use2810"
- xlink:href="#rect4622"
- y="0"
- x="0" /></flowRegion><flowPara
- id="flowPara2812">AbstractField</flowPara></flowRoot> </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 502.24448,489.52209 L 487.45791,489.52209"
- id="path3832"
- inkscape:connector-type="polyline"
- inkscape:connection-end="#g2802"
- inkscape:connection-start="#g3808" />
- <g
- transform="translate(488.07123,234.404)"
- id="g3808">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3810"
- width="77.952736"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3812"
- transform="translate(-7.2728429,12.47462)"><flowRegion
- id="flowRegion3814"><use
- x="0"
- y="0"
- xlink:href="#rect28346"
- id="use3816"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara3818">Button</flowPara></flowRoot> </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 606.26013,489.28635 L 580.19721,489.38082"
- id="path3834"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g3820"
- inkscape:connection-end="#g3808" />
- <g
- transform="translate(592.08688,234.02699)"
- id="g3820">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3822"
- width="77.952736"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3824"
- transform="translate(-5.7576143,12.222082)"><flowRegion
- id="flowRegion3826"><use
- x="0"
- y="0"
- xlink:href="#rect28346"
- id="use3828"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara3830">CheckBox</flowPara></flowRoot> </g>
- <g
- transform="translate(488.57632,283.75775)"
- id="g3836">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3838"
- width="77.952736"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3840"
- transform="translate(-7.2728429,12.47462)"><flowRegion
- id="flowRegion3842"><use
- x="0"
- y="0"
- xlink:href="#rect28346"
- id="use3844"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara3846">TextField</flowPara></flowRoot> </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 606.05763,538.80562 L 580.7023,538.8333"
- id="path3866"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g3848"
- inkscape:connection-end="#g3836" />
- <g
- transform="translate(595.22522,296.06299)"
- id="g3848">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3850"
- width="99.41507"
- height="35.433071"
- x="10.832414"
- y="224.97185"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="59.819889"
- y="246.23169"
- id="text3860"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan3862"
- x="59.819889"
- y="246.23169">RichTextArea</tspan></text>
- </g>
- <g
- transform="translate(487.91913,333.28084)"
- id="g3870">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3872"
- width="77.952736"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3874"
- transform="translate(-7.2728429,12.47462)"><flowRegion
- id="flowRegion3876"><use
- x="0"
- y="0"
- xlink:href="#rect28346"
- id="use3878"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara3880">DateField</flowPara></flowRoot> </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 605.90551,588.32848 L 580.04511,588.35658"
- id="path3910"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g3894"
- inkscape:connection-end="#g3870" />
- <g
- transform="translate(595.0731,345.58608)"
- id="g3894">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3896"
- width="99.41507"
- height="35.433071"
- x="10.832414"
- y="224.97185"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="60.61198"
- y="246.73676"
- id="text3898"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan3900"
- x="60.61198"
- y="246.73676">InlineDateField</tspan></text>
- </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 614.53048,620.07872 L 580.04511,605.20718"
- id="path3912"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g3902"
- inkscape:connection-end="#g3870" />
- <g
- transform="translate(595.0731,395.10687)"
- id="g3902">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3904"
- width="99.41507"
- height="35.433067"
- x="10.832414"
- y="224.97185"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="60.561245"
- y="246.98929"
- id="text3906"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan3908"
- x="60.561245"
- y="246.98929">PopupDateField</tspan></text>
- </g>
- <path
- inkscape:connection-end="#g2802"
- inkscape:connection-start="#g3796"
- inkscape:connector-type="polyline"
- id="path2641"
- d="M 432.01532,677.06481 L 432.22373,507.49117"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
- <g
- transform="translate(204.1016,468.44433)"
- id="g3796">
- <rect
- ry="3.7880721"
- y="208.62048"
- x="172.93213"
- height="35.867687"
- width="109.9191"
- id="rect3798"
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(15.70397,13.082604)"
- id="flowRoot3800"
- style="font-size:12px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold Italic"
- xml:space="preserve"><flowRegion
- id="flowRegion3802"><use
- height="1052.3622"
- width="744.09448"
- id="use3804"
- xlink:href="#rect4622"
- y="0"
- x="0" /></flowRegion><flowPara
- id="flowPara3806">AbstractSelect</flowPara></flowRoot> </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 460.82677,602.65537 L 460.82677,506.98608"
- id="path2679"
- inkscape:connector-type="polyline" />
- <g
- transform="translate(487.94392,383.46348)"
- id="g2667">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect2669"
- width="77.952736"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2671"
- transform="translate(-7.2728429,12.47462)"><flowRegion
- id="flowRegion2673"><use
- x="0"
- y="0"
- xlink:href="#rect28346"
- id="use2675"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara2677">Form</flowPara></flowRoot> </g>
- <g
- transform="translate(329.52756,340.15748)"
- id="g2655">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect2657"
- width="77.952736"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2659"
- transform="translate(-7.2728429,12.47462)"><flowRegion
- id="flowRegion2661"><use
- x="0"
- y="0"
- xlink:href="#rect28346"
- id="use2663"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara2665">Slider</flowPara></flowRoot> </g>
- <g
- transform="translate(209.05513,248.0315)"
- id="g2643">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect2645"
- width="120.47243"
- height="35.433071"
- x="42.519691"
- y="279.92123"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="102.11802"
- y="301.18109"
- id="text2685"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan2687"
- x="102.11802"
- y="301.18109">ProgressIndicator</tspan></text>
- </g>
- <g
- transform="translate(486.87623,485.72626)"
- id="g6708">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6710"
- width="88.58268"
- height="35.433067"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6712"
- transform="translate(-2.0143046,12.47462)"><flowRegion
- id="flowRegion6714"><use
- x="0"
- y="0"
- xlink:href="#rect28346"
- id="use6716"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6718">ListSelect</flowPara></flowRoot> </g>
- <g
- transform="translate(486.87623,531.78925)"
- id="g6732">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6734"
- width="88.58268"
- height="35.433071"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6736"
- transform="translate(-1.9955771,12.47462)"><flowRegion
- id="flowRegion6738"><use
- x="0"
- y="0"
- xlink:href="#rect28346"
- id="use6740"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6742">NativeSelect</flowPara></flowRoot> </g>
- <g
- transform="translate(486.87623,577.85224)"
- id="g6744">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6746"
- width="88.58268"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="58.338272"
- y="258.7847"
- id="text6756"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan6758"
- x="58.338272"
- y="258.7847">TwinColSelect</tspan></text>
- </g>
- <g
- transform="translate(486.87623,623.91523)"
- id="g6760">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6762"
- width="88.58268"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="58.338272"
- y="258.7847"
- id="text6764"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan6766"
- x="58.338272"
- y="258.7847">OptionGroup</tspan></text>
- </g>
- <g
- transform="translate(486.87623,669.97822)"
- id="g6768">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6770"
- width="88.58268"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="58.338272"
- y="258.7847"
- id="text6772"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan6774"
- x="58.338272"
- y="258.7847">Table</tspan></text>
- </g>
- <g
- transform="translate(486.87623,716.04121)"
- id="g6776">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6778"
- width="88.58268"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="58.338272"
- y="258.7847"
- id="text6780"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan6782"
- x="58.338272"
- y="258.7847">Tree</tspan></text>
- </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 501.04948,694.86626 L 486.95283,694.89329"
- id="path6784"
- inkscape:connector-type="polyline"
- inkscape:connection-end="#g3796"
- inkscape:connection-start="#g6696" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 435.98823,971.20333 L 436.36735,712.9325"
- id="path6792"
- inkscape:connector-type="polyline" />
- <g
- transform="translate(486.87623,439.66326)"
- id="g6696">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6698"
- width="88.58268"
- height="35.433079"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6700"
- transform="translate(-1.8746946,12.47462)"><flowRegion
- id="flowRegion6702"><use
- x="0"
- y="0"
- xlink:href="#rect28346"
- id="use6704"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6706">Select</flowPara></flowRoot> </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 605.90551,694.6091 L 589.63216,694.65538"
- id="path7439"
- inkscape:connector-type="polyline"
- inkscape:connection-end="#g6696"
- inkscape:connection-start="#g6720" />
- <g
- transform="translate(591.73226,439.37008)"
- id="g6720">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6722"
- width="85.039375"
- height="35.433067"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6724"
- transform="translate(-2.2828618,12.796385)"><flowRegion
- id="flowRegion6726"><use
- x="0"
- y="0"
- xlink:href="#rect28346"
- id="use6728"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6730">ComboBox</flowPara></flowRoot> </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 501.04948,971.1593 L 437.26995,971.1593"
- id="path6796"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g6776" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 501.04948,925.09631 L 437.26995,925.09631"
- id="path7429"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g6768" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 501.04948,879.03332 L 437.26995,879.03332"
- id="path7431"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g6760" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 501.04948,832.97033 L 437.26995,832.97033"
- id="path7433"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g6744" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 501.04948,786.90734 L 437.26995,786.90734"
- id="path7435"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g6732" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 501.04948,740.84434 L 437.26995,740.84434"
- id="path7437"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g6708" />
- <path
- inkscape:connection-start="#g8550"
- inkscape:connection-end="#g2814"
- inkscape:connector-type="polyline"
- id="path8562"
- d="M 234.05047,779.8548 L 235.30027,712.68631"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
- <g
- id="g8550"
- transform="translate(21.429068,570.7997)">
- <rect
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect8552"
- width="141.11894"
- height="35.433071"
- x="141.73228"
- y="209.0551"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold Italic"
- id="flowRoot8554"
- transform="translate(-1.2813438,13.082604)"><flowRegion
- id="flowRegion8556"><use
- x="0"
- y="0"
- xlink:href="#rect4622"
- id="use8558"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara8560">AbstractLayout</flowPara></flowRoot> </g>
- <path
- inkscape:connection-start="#g8564"
- inkscape:connection-end="#g8550"
- inkscape:connector-type="polyline"
- id="path8580"
- d="M 233.99587,879.82072 L 233.78007,815.28787"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
- <g
- transform="translate(-9.8197298,664.87698)"
- id="g8564">
- <rect
- ry="3.7880721"
- y="214.94374"
- x="162.37878"
- height="35.433071"
- width="162.99213"
- id="rect8566"
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold Italic"
- x="244.37701"
- y="236.20358"
- id="text8568"
- sodipodi:linespacing="100%"><tspan
- sodipodi:role="line"
- id="tspan8570"
- x="244.37701"
- y="236.20358">AbstractOrderedLayout</tspan></text>
- </g>
- <path
- inkscape:connection-start="#g8572"
- inkscape:connection-end="#g8550"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 318.89763,797.36721 L 304.28029,797.40224"
- id="path8582"
- inkscape:connector-type="polyline" />
- <g
- transform="translate(311.81099,542.12599)"
- id="g8572">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect8574"
- width="102.75591"
- height="35.433071"
- x="7.0866356"
- y="237.40155"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="58.338272"
- y="258.7847"
- id="text8576"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan8578"
- x="58.338272"
- y="258.7847">AbsoluteLayout</tspan></text>
- </g>
- <path
- sodipodi:nodetypes="cc"
- inkscape:connection-start="#g8596"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 135.18474,829.4611 L 173.81889,815.2538"
- id="path8584"
- inkscape:connector-type="polyline" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4.00039387;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 276.47008,829.53592 L 276.1769,815.17003"
- id="path8594"
- inkscape:connector-type="polyline" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 195.84519,830.41547 L 195.84519,817.51548"
- id="path8604"
- inkscape:connector-type="polyline" />
- <g
- transform="translate(28.543273,592.05955)"
- id="g8596">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect8598"
- width="102.75591"
- height="35.433071"
- x="7.0866356"
- y="237.40155"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="58.338272"
- y="258.7847"
- id="text8600"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan8602"
- x="58.338272"
- y="258.7847">CustomLayout</tspan></text>
- </g>
- <g
- transform="translate(127.55903,591.73228)"
- id="g8606">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect8608"
- width="74.409439"
- height="35.433067"
- x="21.259869"
- y="237.40157"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="58.338272"
- y="258.7847"
- id="text8610"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan8612"
- x="58.338272"
- y="258.7847">SplitPanel</tspan></text>
- </g>
- <g
- transform="translate(240.94485,591.73229)"
- id="g8586">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect8588"
- width="102.75591"
- height="35.433071"
- x="7.0866356"
- y="237.40155"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="58.338272"
- y="258.7847"
- id="text8590"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan8592"
- x="58.338272"
- y="258.7847">GridLayout</tspan></text>
- </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 407.13268,594.83161 L 406.8395,508.04991"
- id="path8616"
- inkscape:connector-type="polyline" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 403.93701,545.66927 L 372.04724,545.66927"
- id="path8620"
- inkscape:connector-type="polyline" />
- <path
- inkscape:connection-start="#g8638"
- inkscape:connection-end="#g8564"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 274.71923,938.0097 L 251.85556,915.25379"
- id="path8662"
- inkscape:connector-type="polyline" />
- <path
- inkscape:connection-end="#g8564"
- inkscape:connection-start="#g8622"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 193.39099,938.0097 L 216.25467,915.25379"
- id="path8664"
- inkscape:connector-type="polyline" />
- <path
- inkscape:connection-end="#g8564"
- inkscape:connection-start="#g8646"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 138.38582,897.9727 L 152.55905,897.90819"
- id="path8666"
- inkscape:connector-type="polyline" />
- <g
- transform="translate(234.05508,700.60815)"
- id="g8638">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect8640"
- width="102.75591"
- height="35.433071"
- x="7.0866356"
- y="237.40155"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="58.338272"
- y="258.7847"
- id="text8642"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan8644"
- x="58.338272"
- y="258.7847">VerticalLayout</tspan></text>
- </g>
- <g
- transform="translate(117.12595,700.60815)"
- id="g8622">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect8624"
- width="116.92913"
- height="35.433071"
- x="2.3858267e-05"
- y="237.40155"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="58.338272"
- y="258.7847"
- id="text8626"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan8628"
- x="58.338272"
- y="258.7847">HorizontalLayout</tspan></text>
- </g>
- <g
- transform="translate(28.543273,643.08847)"
- id="g8646">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect8648"
- width="102.75591"
- height="35.433071"
- x="7.0866356"
- y="237.40155"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="58.338272"
- y="258.7847"
- id="text8650"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan8652"
- x="58.338272"
- y="258.7847">FormLayout</tspan></text>
- </g>
- <g
- id="g8712"
- transform="translate(333.07087,488.97638)">
- <rect
- ry="3.7880721"
- y="237.40155"
- x="14.173247"
- height="35.433075"
- width="77.952736"
- id="rect8714"
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(-6.8657954,12.655528)"
- id="flowRoot8716"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion8718"><use
- height="1052.3622"
- width="744.09448"
- id="use8720"
- xlink:href="#rect28346"
- y="0"
- x="0" /></flowRegion><flowPara
- id="flowPara8722">Accordion</flowPara></flowRoot> </g>
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <g
- id="g8744"
- transform="translate(124.01575,491.43307)">
- <rect
- ry="3.7880721"
- y="237.40155"
- x="14.173247"
- height="35.433075"
- width="77.952736"
- id="rect8746"
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(-6.8657954,12.655528)"
- id="flowRoot8748"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion8750"><use
- height="1052.3622"
- width="744.09448"
- id="use8752"
- xlink:href="#rect28346"
- y="0"
- x="0" /></flowRegion><flowPara
- id="flowPara8754">PopupView</flowPara></flowRoot> </g>
- <g
- id="g8700"
- transform="translate(237.59841,489.26957)">
- <rect
- ry="3.7880721"
- y="237.40155"
- x="14.173247"
- height="35.433075"
- width="77.952736"
- id="rect8702"
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(-6.8657954,12.655528)"
- id="flowRoot8704"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion8706"><use
- height="1052.3622"
- width="744.09448"
- id="use8708"
- xlink:href="#rect28346"
- y="0"
- x="0" /></flowRegion><flowPara
- id="flowPara8710">TabSheet</flowPara></flowRoot> </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 347.24412,744.21416 L 329.72439,744.26796"
- id="path10680"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g8712"
- inkscape:connection-end="#g8700" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 290.79654,726.67112 L 290.83598,712.27172"
- id="path10682"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g8700" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 120.47244,694.72711 L 134.64567,694.75797"
- id="path10684"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g8676"
- sodipodi:nodetypes="cc"
- inkscape:connection-end="#g2814" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 78.051187,729.1278 L 78.051185,712.2047"
- id="path10686"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g8688"
- inkscape:connection-end="#g8676" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 290.24962,662.72406 L 290.24962,677.08995"
- id="path10688"
- inkscape:connector-type="polyline" />
- <g
- id="g8688"
- transform="translate(21.456693,491.72625)">
- <rect
- ry="3.7880721"
- y="237.40155"
- x="14.173247"
- height="35.139893"
- width="84.842499"
- id="rect8690"
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(-3.6498167,12.655528)"
- id="flowRoot8692"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion8694"><use
- height="1052.3622"
- width="744.09448"
- id="use8696"
- xlink:href="#rect28346"
- y="0"
- x="0" /></flowRegion><flowPara
- id="flowPara8698">Window</flowPara></flowRoot> </g>
- <g
- transform="translate(244.48816,389.76378)"
- id="g8736">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect8738"
- width="124.01575"
- height="35.433071"
- x="7.0866356"
- y="237.40155"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="68.338272"
- y="258.7847"
- id="text8740"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan8742"
- x="68.338272"
- y="258.7847">CustomComponent</tspan></text>
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 141.73228,538.58266 L 141.73228,446.45668"
- id="path48282"
- inkscape:connector-type="polyline" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 141.92913,531.78923 L 112.19216,532.09079"
- id="path48284"
- inkscape:connector-type="polyline" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 141.92913,538.87584 L 113.36488,565.22029"
- id="path48286"
- inkscape:connector-type="polyline" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path48288"
- d="M 112.19216,446.48181 L 141.92913,446.74986"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:3.89763784;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 503.34646,588.48214 L 460.82677,588.48214"
- id="path49764"
- inkscape:connector-type="polyline" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 503.34646,623.91521 L 460.82677,602.65537"
- id="path49766"
- inkscape:connector-type="polyline" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 503.34646,538.87584 L 460.82677,538.87584"
- id="path49768"
- inkscape:connector-type="polyline" />
- <path
- inkscape:connection-start="#g8744"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 177.27177,728.83462 L 177.37477,711.68536"
- id="path53455"
- inkscape:connector-type="polyline" />
- <g
- transform="matrix(0.5,0,0,0.5,103.34299,0.7940752)"
- id="g18053" />
- <path
- sodipodi:open="true"
- transform="translate(-409.24547,426.33482)"
- sodipodi:end="6.2827149"
- sodipodi:start="0"
- d="M 491.37734,228.54329 A 4.1726308,4.3281136 0 1 1 491.37734,228.54125"
- sodipodi:ry="4.3281136"
- sodipodi:rx="4.1726308"
- sodipodi:cy="228.54329"
- sodipodi:cx="487.20471"
- id="path80520"
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:2.12598425, 2.12598425;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- sodipodi:type="arc" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#DotSu);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
- d="M 78.063207,677.06482 L 77.986256,654.80816"
- id="path80518"
- inkscape:connector-type="polyline" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot80522"
- transform="translate(-129.86464,517.05381)"><flowRegion
- id="flowRegion80524"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use80526"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara80528">1</flowPara></flowRoot> <g
- id="g84015"
- transform="translate(-130.68935,546.46199)">
- <rect
- ry="3.7880721"
- y="233.06555"
- x="166.12241"
- height="35.433075"
- width="85.039375"
- id="rect84017"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot84019"
- transform="translate(-6.2480473,106.19782)"><flowRegion
- id="flowRegion84021"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use84023"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara84025">Layout</flowPara></flowRoot> </g>
- <path
- inkscape:connector-type="polyline"
- id="path84027"
- d="M 163.16135,797.4231 L 120.47243,797.33341"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g8550"
- inkscape:connection-end="#g84015" />
- <path
- inkscape:connector-type="polyline"
- id="path84033"
- d="M 35.433071,797.24407 L 24.80315,797.24407 L 24.80315,637.79525 L 35.433071,637.79525"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- sodipodi:nodetypes="cccc" />
- <g
- transform="translate(237.40158,340.15748)"
- id="g116498">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect116500"
- width="77.952736"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot116502"
- transform="translate(-7.2728429,12.47462)"><flowRegion
- id="flowRegion116504"><use
- x="0"
- y="0"
- xlink:href="#rect28346"
- id="use116506"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara116508">LoginForm</flowPara></flowRoot> </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 290.82026,612.99211 L 291.04167,627.57052"
- id="path116516"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g116498" />
- </g>
-</svg>
diff --git a/documentation/components/original-drawings/field-diagram.svg b/documentation/components/original-drawings/field-diagram.svg deleted file mode 100644 index f838704abb..0000000000 --- a/documentation/components/original-drawings/field-diagram.svg +++ /dev/null @@ -1,1488 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- sodipodi:docname="field-diagram.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="300.01001"
- inkscape:export-ydpi="300.01001"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="3.3941125"
- inkscape:cx="419.34213"
- inkscape:cy="324.14661"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1680"
- inkscape:window-height="1026"
- inkscape:window-x="1280"
- inkscape:window-y="0"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="true">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- </defs>
- <metadata
- id="metadata2480">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1">
- <g
- id="g2870"
- transform="translate(177.07986,127.32848)">
- <rect
- ry="3.7880721"
- y="181.8969"
- x="205.84985"
- height="35.433067"
- width="99.212601"
- id="rect2872"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2874"
- transform="translate(41.217308,55.775189)"><flowRegion
- id="flowRegion2876"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use2878"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara2880">Property</flowPara></flowRoot> </g>
- <g
- id="g2886"
- transform="translate(157.67586,103.78352)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716534"
- width="49.6063"
- id="rect2888"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2890"
- transform="translate(-7.1061187,101.2329)"><flowRegion
- id="flowRegion2892"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use2894"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara2896">Editor</flowPara></flowRoot> </g>
- <g
- id="g3740"
- transform="translate(292.32154,103.78352)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716536"
- width="102.75591"
- id="rect3742"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3744"
- transform="translate(19.725317,101.70214)"><flowRegion
- id="flowRegion3746"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use3748"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara3750">ValueChangeListener</flowPara></flowRoot> </g>
- <path
- inkscape:connector-type="polyline"
- id="path3776"
- d="M 413.22495,393.0986 L 375.44281,357.97684"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-end="#g2886"
- inkscape:connection-start="#g2854" />
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="translate(-3.5714286,23.214286)"
- id="g3178" />
- <path
- inkscape:connector-type="polyline"
- id="path28387"
- d="M 191.53543,563.67899 L 190.15217,563.81168"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <g
- id="g2492"
- transform="translate(45.259843,162.59526)">
- <rect
- ry="3.7880721"
- y="230.31496"
- x="163.1725"
- height="35.433071"
- width="99.032219"
- id="rect4654"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4664"
- transform="translate(-2.7125132,103.67242)"><flowRegion
- id="flowRegion4666"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use4668"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara4670">Component</flowPara></flowRoot> </g>
- <path
- inkscape:connector-type="polyline"
- id="path4676"
- d="M 257.79351,471.55301 L 257.9034,428.34329"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g2475"
- inkscape:connection-end="#g2492" />
- <g
- id="g2475"
- transform="translate(45.456693,262.49791)">
- <rect
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4622"
- width="141.11894"
- height="35.433071"
- x="141.73228"
- y="209.0551"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold Italic"
- id="flowRoot4636"
- transform="translate(-1.2813438,13.082604)"><flowRegion
- id="flowRegion4638"><use
- x="0"
- y="0"
- xlink:href="#rect4622"
- id="use4640"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara4642">AbstractComponent</flowPara></flowRoot> </g>
- <path
- inkscape:connector-type="polyline"
- id="path2866"
- d="M 389.76378,410.76919 L 307.46456,410.68026"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g2854"
- inkscape:connection-end="#g2492" />
- <path
- inkscape:connection-end="#g2870"
- inkscape:connector-type="polyline"
- id="path2882"
- d="M 432.33681,393.0986 L 432.48267,344.65844"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g2854" />
- <path
- inkscape:connection-start="#g2854"
- inkscape:connection-end="#g3740"
- inkscape:connector-type="polyline"
- id="path5048"
- d="M 458.86508,393.0986 L 511.56122,357.97684"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
- <g
- id="g5034"
- transform="translate(91.01546,143.54288)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716537"
- width="62.31395"
- id="rect5036"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot5038"
- transform="translate(-0.8622551,101.2329)"><flowRegion
- id="flowRegion5040"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use5042"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara5044">Focusable</flowPara></flowRoot> </g>
- <path
- inkscape:connection-end="#g5034"
- inkscape:connection-start="#g2854"
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path5050"
- d="M 389.76378,403.21166 L 336.69685,393.72209"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
- <g
- id="g2854"
- transform="translate(223.64137,160.03305)">
- <rect
- ry="3.7880721"
- y="233.06555"
- x="166.12241"
- height="35.433075"
- width="85.039375"
- id="rect2856"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2858"
- transform="translate(-6.2480473,106.19782)"><flowRegion
- id="flowRegion2860"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use2862"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara2864">Field</flowPara></flowRoot> </g>
- <path
- inkscape:connection-end="#g2854"
- inkscape:connection-start="#g2802"
- inkscape:connector-type="polyline"
- id="path2868"
- d="M 432.25441,471.55301 L 432.27499,428.53168"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
- <path
- inkscape:connection-start="#g2802"
- inkscape:connector-type="polyline"
- id="path2639"
- d="M 377.03373,489.44218 L 328.30792,489.37166"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4.00039387;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-end="#g2475" />
- <g
- transform="translate(204.60668,263.00299)"
- id="g2802">
- <rect
- ry="3.7880721"
- y="208.55002"
- x="172.42705"
- height="35.93816"
- width="110.42418"
- id="rect2804"
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(17.153521,11.90988)"
- id="flowRoot2806"
- style="font-size:12px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold Italic"
- xml:space="preserve"><flowRegion
- id="flowRegion2808"><use
- height="1052.3622"
- width="744.09448"
- id="use2810"
- xlink:href="#rect4622"
- y="0"
- x="0" /></flowRegion><flowPara
- id="flowPara2812">AbstractField</flowPara></flowRoot> </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 503.14963,489.16994 L 487.45791,489.24787"
- id="path3832"
- inkscape:connector-type="polyline"
- inkscape:connection-end="#g2802"
- inkscape:connection-start="#g3808" />
- <g
- transform="translate(488.97638,233.85827)"
- id="g3808">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3810"
- width="77.952736"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3812"
- transform="translate(52.923584,259.59409)"><flowRegion
- id="flowRegion3814" /><flowPara
- id="flowPara3818">Button</flowPara></flowRoot> </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 594.37048,489.34882 L 581.10236,489.25423"
- id="path3834"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g3820"
- inkscape:connection-end="#g3808" />
- <g
- transform="translate(580.19723,234.5086)"
- id="g3820">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3822"
- width="77.952736"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3824"
- transform="translate(54.586428,258.88009)"><flowRegion
- id="flowRegion3826" /><flowPara
- id="flowPara3830">CheckBox</flowPara></flowRoot> </g>
- <g
- transform="translate(488.97638,283.46457)"
- id="g3836">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3838"
- width="77.952736"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3840"
- transform="translate(53.349584,258.36409)"><flowRegion
- id="flowRegion3842" /><flowPara
- id="flowPara3846">TextField</flowPara></flowRoot> </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 594.16798,538.91528 L 581.10236,538.83177"
- id="path3866"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g3848"
- inkscape:connection-end="#g3836" />
- <g
- transform="translate(583.33557,296.5446)"
- id="g3848">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3850"
- width="99.41507"
- height="35.433071"
- x="10.832414"
- y="224.97185"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="59.819889"
- y="246.23169"
- id="text3860"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan3862"
- x="59.819889"
- y="246.23169">RichTextArea</tspan></text>
- </g>
- <g
- transform="translate(488.97638,333.07086)"
- id="g3870">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3872"
- width="77.952736"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3874"
- transform="translate(53.097584,260.41009)"><flowRegion
- id="flowRegion3876" /><flowPara
- id="flowPara3880">DateField</flowPara></flowRoot> </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 594.01586,588.4786 L 581.10236,588.40652"
- id="path3910"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g3894"
- inkscape:connection-end="#g3870" />
- <g
- transform="translate(583.18345,346.06769)"
- id="g3894">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3896"
- width="99.41507"
- height="35.433071"
- x="10.832414"
- y="224.97185"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="60.61198"
- y="246.73676"
- id="text3898"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan3900"
- x="60.61198"
- y="246.73676">InlineDateField</tspan></text>
- </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 607.78751,620.56033 L 578.06189,605.90549"
- id="path3912"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g3902"
- inkscape:connection-end="#g3870" />
- <g
- transform="translate(583.18345,395.58848)"
- id="g3902">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3904"
- width="99.41507"
- height="35.433067"
- x="10.832414"
- y="224.97185"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="60.561245"
- y="246.98929"
- id="text3906"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan3908"
- x="60.561245"
- y="246.98929">PopupDateField</tspan></text>
- </g>
- <path
- inkscape:connection-end="#g2802"
- inkscape:connection-start="#g3796"
- inkscape:connector-type="polyline"
- id="path2641"
- d="M 432.01532,677.06481 L 432.22373,507.49117"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
- <g
- transform="translate(204.1016,468.44433)"
- id="g3796">
- <rect
- ry="3.7880721"
- y="208.62048"
- x="172.93213"
- height="35.867687"
- width="109.9191"
- id="rect3798"
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(15.70397,13.082604)"
- id="flowRoot3800"
- style="font-size:12px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold Italic"
- xml:space="preserve"><flowRegion
- id="flowRegion3802"><use
- height="1052.3622"
- width="744.09448"
- id="use3804"
- xlink:href="#rect4622"
- y="0"
- x="0" /></flowRegion><flowPara
- id="flowPara3806">AbstractSelect</flowPara></flowRoot> </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 460.82677,602.65537 L 460.82677,506.98608"
- id="path2679"
- inkscape:connector-type="polyline" />
- <g
- transform="translate(488.97638,382.67717)"
- id="g2667">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect2669"
- width="77.952736"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2671"
- transform="translate(52.758303,259.12009)"><flowRegion
- id="flowRegion2673" /><flowPara
- id="flowPara2677">Form</flowPara></flowRoot> </g>
- <g
- transform="translate(329.52756,340.15748)"
- id="g2655">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect2657"
- width="77.952736"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2659"
- transform="translate(54.507115,259.28809)"><flowRegion
- id="flowRegion2661" /><flowPara
- id="flowPara2665">Slider</flowPara></flowRoot> </g>
- <g
- transform="translate(209.05513,248.0315)"
- id="g2643">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect2645"
- width="120.47243"
- height="35.433071"
- x="42.519691"
- y="279.92123"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="102.11802"
- y="301.18109"
- id="text2685"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan2687"
- x="102.11802"
- y="301.18109">ProgressIndicator</tspan></text>
- </g>
- <g
- transform="translate(486.87623,485.72626)"
- id="g6708">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6710"
- width="88.58268"
- height="35.433067"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6712"
- transform="translate(57.955431,259.85208)"><flowRegion
- id="flowRegion6714" /><flowPara
- id="flowPara6718">ListSelect</flowPara></flowRoot> </g>
- <g
- transform="translate(486.87623,531.78925)"
- id="g6732">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6734"
- width="88.58268"
- height="35.433071"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6736"
- transform="translate(58.147431,259.85209)"><flowRegion
- id="flowRegion6738" /><flowPara
- id="flowPara6742">NativeSelect</flowPara></flowRoot> </g>
- <g
- transform="translate(486.87623,577.85224)"
- id="g6744">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6746"
- width="88.58268"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="58.338272"
- y="258.7847"
- id="text6756"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan6758"
- x="58.338272"
- y="258.7847">TwinColSelect</tspan></text>
- </g>
- <g
- transform="translate(262.2047,485.43307)"
- id="g6760">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6762"
- width="88.58268"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="58.338272"
- y="258.7847"
- id="text6764"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan6766"
- x="58.338272"
- y="258.7847">OptionGroup</tspan></text>
- </g>
- <g
- transform="translate(262.2047,531.49606)"
- id="g6768">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6770"
- width="88.58268"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="58.338272"
- y="258.7847"
- id="text6772"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan6774"
- x="58.338272"
- y="258.7847">Table</tspan></text>
- </g>
- <g
- transform="translate(262.82007,577.43575)"
- id="g6776">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6778"
- width="88.58268"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="58.338272"
- y="258.7847"
- id="text6780"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan6782"
- x="58.338272"
- y="258.7847">Tree</tspan></text>
- </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 501.04948,694.86626 L 486.95283,694.89329"
- id="path6784"
- inkscape:connector-type="polyline"
- inkscape:connection-end="#g3796"
- inkscape:connection-start="#g6696" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 435.82677,832.67714 L 436.36735,712.9325"
- id="path6792"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc" />
- <g
- transform="translate(486.87623,439.66326)"
- id="g6696">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6698"
- width="88.58268"
- height="35.433079"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6700"
- transform="translate(59.617431,259.85209)"><flowRegion
- id="flowRegion6702" /><flowPara
- id="flowPara6706">Select</flowPara></flowRoot> </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 607.34869,695.02731 L 589.63216,694.95704"
- id="path7439"
- inkscape:connector-type="polyline"
- inkscape:connection-end="#g6696"
- inkscape:connection-start="#g6720" />
- <g
- transform="translate(593.17544,440.07789)"
- id="g6720">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6722"
- width="85.039375"
- height="35.433067"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6724"
- transform="translate(58.129747,258.88008)"><flowRegion
- id="flowRegion6726" /><flowPara
- id="flowPara6730">ComboBox</flowPara></flowRoot> </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 364.96063,832.67714 L 435.82677,832.67714"
- id="path6796"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g6776" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 364.96063,786.61415 C nan,nan nan,nan 435.82677,786.61415"
- id="path7429"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g6768" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 364.96063,740.55116 L 435.82677,740.55116"
- id="path7431"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g6760" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 501.04948,832.97033 L 437.26995,832.97033"
- id="path7433"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g6744" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 501.04948,786.90734 L 437.26995,786.90734"
- id="path7435"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g6732" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 501.04948,740.84434 L 437.26995,740.84434"
- id="path7437"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g6708" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 407.13268,594.83161 L 406.8395,508.04991"
- id="path8616"
- inkscape:connector-type="polyline" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 403.93701,545.66927 L 372.04724,545.66927"
- id="path8620"
- inkscape:connector-type="polyline" />
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 503.34646,588.48214 L 460.82677,588.48214"
- id="path49764"
- inkscape:connector-type="polyline" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 503.34646,623.91521 L 460.82677,602.65537"
- id="path49766"
- inkscape:connector-type="polyline" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 503.34646,538.87584 L 460.82677,538.87584"
- id="path49768"
- inkscape:connector-type="polyline" />
- <g
- transform="matrix(0.5,0,0,0.5,103.34299,0.7940752)"
- id="g18053" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 364.96063,786.61415 L 435.82677,786.61415"
- id="path2657"
- inkscape:connector-type="polyline" />
- </g>
-</svg>
diff --git a/documentation/components/original-drawings/field-interface.svg b/documentation/components/original-drawings/field-interface.svg deleted file mode 100644 index 205bbe11b0..0000000000 --- a/documentation/components/original-drawings/field-interface.svg +++ /dev/null @@ -1,1222 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- sodipodi:docname="field-interface.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="300.01001"
- inkscape:export-ydpi="300.01001"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.6970563"
- inkscape:cx="543.70494"
- inkscape:cy="597.63673"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1680"
- inkscape:window-height="1026"
- inkscape:window-x="1280"
- inkscape:window-y="0"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="true">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <linearGradient
- id="linearGradient4410">
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="0"
- id="stop4412" />
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="1"
- id="stop4414" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4410"
- id="radialGradient4181"
- cx="-61.679379"
- cy="-342.53549"
- fx="-61.679379"
- fy="-342.53549"
- r="240.94489"
- gradientTransform="matrix(1,-3.7478987e-8,1.1023234e-8,0.2941177,5.335063e-6,-121.8624)"
- gradientUnits="userSpaceOnUse" />
- </defs>
- <metadata
- id="metadata2480">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1">
- <rect
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.83464575;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:2.83464575, 2.83464575;stroke-dashoffset:3.68503947;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4436"
- width="499.60629"
- height="237.40158"
- x="198.4252"
- y="322.44092"
- ry="3.7880721" />
- <g
- transform="translate(204.60668,263.00299)"
- id="g2802">
- <rect
- ry="3.7880721"
- y="208.55002"
- x="172.42705"
- height="35.93816"
- width="110.42418"
- id="rect2804"
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(227.07111,229.7651)"
- id="flowRoot2806"
- style="font-size:12px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold Italic"
- xml:space="preserve"><flowRegion
- id="flowRegion2808" /><flowPara
- id="flowPara2812">AbstractField</flowPara></flowRoot> </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 502.24448,489.52209 L 487.45791,489.52209"
- id="path3832"
- inkscape:connector-type="polyline"
- inkscape:connection-end="#g2802"
- inkscape:connection-start="#g3808" />
- <g
- transform="translate(488.07123,234.404)"
- id="g3808">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3810"
- width="77.952736"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3812"
- transform="translate(52.923584,259.59409)"><flowRegion
- id="flowRegion3814" /><flowPara
- id="flowPara3818">Button</flowPara></flowRoot> </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 594.37048,489.58243 L 580.19721,489.56634"
- id="path3834"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g3820"
- inkscape:connection-end="#g3808" />
- <g
- transform="translate(580.19723,234.5086)"
- id="g3820">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3822"
- width="77.952736"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3824"
- transform="translate(54.586428,258.88009)"><flowRegion
- id="flowRegion3826" /><flowPara
- id="flowPara3830">CheckBox</flowPara></flowRoot> </g>
- <g
- transform="translate(488.57632,283.75775)"
- id="g3836">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3838"
- width="77.952736"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3840"
- transform="translate(53.349584,258.36409)"><flowRegion
- id="flowRegion3842" /><flowPara
- id="flowPara3846">TextField</flowPara></flowRoot> </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 594.16798,539.05919 L 580.7023,539.01211"
- id="path3866"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g3848"
- inkscape:connection-end="#g3836" />
- <g
- transform="translate(583.33557,296.5446)"
- id="g3848">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3850"
- width="99.41507"
- height="35.433071"
- x="10.832414"
- y="224.97185"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="59.819889"
- y="246.23169"
- id="text3860"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan3862"
- x="59.819889"
- y="246.23169">RichTextArea</tspan></text>
- </g>
- <path
- inkscape:connection-end="#g2802"
- inkscape:connector-type="polyline"
- id="path2641"
- d="M 432.28346,552.75588 L 432.22373,507.49117"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- sodipodi:nodetypes="cc" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 460.62992,552.75588 L 460.82677,506.98608"
- id="path2679"
- inkscape:connector-type="polyline" />
- <g
- id="g5008"
- transform="translate(316.15294,225.23928)">
- <rect
- ry="3.7880721"
- y="238.7607"
- x="204.7132"
- height="14.173233"
- width="67.322838"
- id="rect5010"
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot5012"
- transform="translate(24.523539,102.7123)"><flowRegion
- id="flowRegion5014"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use5016"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara5018">ClickEvent</flowPara></flowRoot> </g>
- <g
- id="g5020"
- transform="translate(316.46063,210.7839)">
- <rect
- ry="3.7880721"
- y="238.7607"
- x="204.7132"
- height="14.173233"
- width="67.322838"
- id="rect5022"
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot5024"
- transform="translate(24.523539,102.7123)"><flowRegion
- id="flowRegion5026"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use5028"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara5030">ClickListener</flowPara></flowRoot> </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 407.48031,552.75588 L 406.8395,508.04991"
- id="path8616"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 503.34646,538.87584 L 460.82677,538.87584"
- id="path49768"
- inkscape:connector-type="polyline" />
- <g
- transform="translate(486.87623,708.04121)"
- id="g6776"
- style="fill-opacity:1;fill:url(#radialGradient4181)">
- <rect
- style="opacity:1;fill:url(#radialGradient4181);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.83464575;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:2.83464575, 2.83464575;stroke-dashoffset:3.68503947;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3392"
- width="481.88977"
- height="127.55907"
- x="-274.2778"
- y="-275.75778"
- ry="3.7880721" />
- </g>
- <g
- id="g2870"
- transform="translate(177.07986,143.37191)">
- <rect
- ry="3.7880721"
- y="181.8969"
- x="205.84985"
- height="35.433067"
- width="99.212601"
- id="rect2872"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2874"
- transform="translate(41.217308,55.775189)"><flowRegion
- id="flowRegion2876"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use2878"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara2880">Property</flowPara></flowRoot> </g>
- <g
- id="g2886"
- transform="translate(157.67586,119.82696)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716534"
- width="49.6063"
- id="rect2888"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2890"
- transform="translate(-7.1061187,101.2329)"><flowRegion
- id="flowRegion2892"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use2894"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara2896">Editor</flowPara></flowRoot> </g>
- <g
- id="g3740"
- transform="translate(292.32154,119.82696)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716536"
- width="102.75591"
- id="rect3742"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3744"
- transform="translate(19.725317,101.70214)"><flowRegion
- id="flowRegion3746"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use3748"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara3750">ValueChangeListener</flowPara></flowRoot> </g>
- <path
- inkscape:connector-type="polyline"
- id="path3776"
- d="M 411.42023,403.72853 L 376.4354,374.02028"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-end="#g2886"
- inkscape:connection-start="#g2854" />
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="translate(-3.5714286,23.214286)"
- id="g3178" />
- <g
- id="g2492"
- transform="translate(77.952761,177.16534)">
- <rect
- ry="3.7880721"
- y="230.31496"
- x="163.1725"
- height="35.433071"
- width="99.032219"
- id="rect4654"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4664"
- transform="translate(-2.7125132,103.67242)"><flowRegion
- id="flowRegion4666"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use4668"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara4670">Component</flowPara></flowRoot> </g>
- <path
- inkscape:connector-type="polyline"
- id="path2866"
- d="M 389.76378,422.57131 L 340.15748,423.88527"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g2854"
- inkscape:connection-end="#g2492" />
- <path
- inkscape:connection-end="#g2870"
- inkscape:connector-type="polyline"
- id="path2882"
- d="M 432.34049,403.72853 L 432.47899,360.70187"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g2854" />
- <path
- inkscape:connection-start="#g2854"
- inkscape:connection-end="#g3740"
- inkscape:connector-type="polyline"
- id="path5048"
- d="M 461.38218,403.72853 L 510.17682,374.02028"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
- <g
- id="g5034"
- transform="translate(123.70837,158.11296)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716537"
- width="62.31395"
- id="rect5036"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot5038"
- transform="translate(-0.8622551,101.2329)"><flowRegion
- id="flowRegion5040"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use5042"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara5044">Focusable</flowPara></flowRoot> </g>
- <path
- inkscape:connection-end="#g5034"
- inkscape:connection-start="#g2854"
- sodipodi:nodetypes="cc"
- inkscape:connector-type="polyline"
- id="path5050"
- d="M 389.76378,412.9879 L 369.38976,408.9355"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
- <g
- id="g2854"
- transform="translate(223.64137,170.66298)">
- <rect
- ry="3.7880721"
- y="233.06555"
- x="166.12241"
- height="35.433075"
- width="85.039375"
- id="rect2856"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2858"
- transform="translate(-6.2480473,106.19782)"><flowRegion
- id="flowRegion2860"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use2862"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara2864">Field</flowPara></flowRoot> </g>
- <path
- inkscape:connection-end="#g2854"
- inkscape:connection-start="#g2802"
- inkscape:connector-type="polyline"
- id="path2868"
- d="M 432.25575,471.55301 L 432.27367,439.16161"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
- <g
- id="g3752"
- transform="translate(292.32154,100.30776)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716536"
- width="102.75591"
- id="rect3754"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3756"
- transform="translate(19.725317,101.70214)"><flowRegion
- id="flowRegion3758"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use3760"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara3762">ValueChangeEvent</flowPara></flowRoot> </g>
- <g
- id="g3764"
- transform="translate(157.67587,100.30776)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716534"
- width="49.6063"
- id="rect3766"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3768"
- transform="translate(-7.1061187,101.2329)"><flowRegion
- id="flowRegion3770"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use3772"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara3774">Viewer</flowPara></flowRoot> </g>
- <g
- id="g8538"
- transform="translate(18.028345,180.41896)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716534"
- width="49.6063"
- id="rect8540"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot8542"
- transform="translate(-7.1061187,101.2329)"><flowRegion
- id="flowRegion8544"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use8546"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara8548">Event</flowPara></flowRoot> </g>
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <g
- transform="matrix(0.5,0,0,0.5,103.34299,0.7940752)"
- id="g18053" />
- <g
- id="g80473"
- transform="translate(18.601067,201.51847)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716534"
- width="49.6063"
- id="rect80475"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot80477"
- transform="translate(-7.1061187,101.2329)"><flowRegion
- id="flowRegion80479"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use80481"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara80483">Listener</flowPara></flowRoot> </g>
- </g>
-</svg>
diff --git a/documentation/components/original-drawings/slider-example1.svg b/documentation/components/original-drawings/slider-example1.svg deleted file mode 100644 index a624789c13..0000000000 --- a/documentation/components/original-drawings/slider-example1.svg +++ /dev/null @@ -1,127 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.48.4 r9939"
- sodipodi:docname="slider-example1.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- version="1.1">
- <defs
- id="defs1903">
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective7" />
- <inkscape:perspective
- id="perspective2461"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective2579"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- id="linearGradient7607"
- y2="471.38"
- spreadMethod="reflect"
- gradientUnits="userSpaceOnUse"
- y1="45.132999"
- gradientTransform="matrix(0.75592,0,0,1.3229,-36,0)"
- x2="1370.6"
- x1="-526.85999"
- inkscape:collect="always">
- <stop
- id="stop7603"
- style="stop-color:#000000"
- offset="0" />
- <stop
- id="stop7605"
- style="stop-color:#000000;stop-opacity:0"
- offset="1" />
- </linearGradient>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.979899"
- inkscape:cx="258.73755"
- inkscape:cy="889.25792"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="877"
- inkscape:window-height="739"
- inkscape:window-x="1039"
- inkscape:window-y="153"
- showgrid="false"
- inkscape:window-maximized="0" />
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <image
- y="56.505013"
- x="74.071419"
- id="image2463"
- height="236"
- width="249"
- sodipodi:absref="/home/magi/itmill/book-7/manual/img/components/slider-orig.png"
- xlink:href="/home/magi/itmill/book-7/manual/img/components/slider-orig.png" />
- <g
- transform="matrix(0.04895833,0,0,0.04895833,85.307423,133.89853)"
- id="g1317">
- <path
- id="path6080"
- style="fill:url(#linearGradient7607)"
- inkscape:connector-curvature="0"
- d="m 70.29,24.826 v 602.34 h 35.44 v -35.44 h 35.44 v -35.4 h 35.4 v -35.44 h 70.88 v 70.84 h 35.43 v 70.88 h 35.44 v 70.87 h 35.44 v 35.44 h 70.84 v -35.44 h 35.44 v -70.87 H 424.6 v -70.88 h -35.4 v -70.84 h -35.44 v -70.88 h 141.72 v -35.43 h -35.44 v -35.44 H 424.6 v -35.44 h -35.4 v -35.41 h -35.44 v -35.43 h -35.44 v -35.44 h -35.44 v -35.44 h -35.43 v -35.44 h -35.44 v -35.43 h -35.44 v -35.44 h -35.4 V 60.256 H 105.73 V 24.818 H 70.29 z" />
- <path
- id="rect1430"
- style="fill:#000000;fill-rule:evenodd"
- inkscape:connector-curvature="0"
- d="m 35.438,24.812 v 602.35 h 35.437 v -35.44 h 35.435 v -35.41 H 70.875 V 95.662 L 106.31,95.66 V 60.254 H 70.875 V 24.816 H 35.438 z m 70.872,70.844 v 35.434 h 35.41 V 95.656 h -35.41 z m 35.41,35.434 v 35.44 h 35.44 v -35.44 h -35.44 z m 35.44,35.44 v 35.44 h 35.43 v -35.44 h -35.43 z m 35.43,35.44 v 35.44 h 35.44 v -35.44 h -35.44 z m 35.44,35.44 v 35.43 h 35.44 v -35.43 h -35.44 z m 35.44,35.43 v 35.44 h 35.44 v -35.44 h -35.44 z m 35.44,35.44 v 35.41 h 35.43 v -35.41 h -35.43 z m 35.43,35.41 v 35.43 h 35.41 v -35.43 h -35.41 z m 35.41,35.43 v 35.44 H 283.47 v 106.32 h 35.44 V 450 h 141.71 v -35.44 h -35.43 v -35.44 h -35.44 z m -70.84,141.76 v 70.84 h 35.43 v -70.84 h -35.43 z m 35.43,70.84 v 70.87 h 35.41 v -70.87 h -35.41 z m 35.41,70.87 v 70.88 h 35.44 v -70.88 h -35.44 z m 0,70.88 h -70.84 v 35.44 h 70.84 v -35.44 z m -70.84,0 v -70.88 h -35.44 v 70.88 h 35.44 z m -35.44,-70.88 v -70.87 h -35.44 v 70.87 h 35.44 z m -35.44,-70.87 v -70.84 h -35.44 v 70.84 h 35.44 z M 212.59,520.88 V 450 h -35.43 v 35.44 h -35.44 v 35.44 h 70.87 z m -70.87,0 h -35.41 v 35.43 h 35.41 v -35.43 z" />
- <path
- id="rect3779"
- style="fill:#ffffff"
- inkscape:connector-curvature="0"
- d="m 70.875,95.656 v 460.65 h 35.435 v -35.43 h 35.41 v -35.44 h 35.44 v -35.44 h 35.43 v 70.88 h 35.44 v 70.84 h 35.44 v 70.87 h 35.44 v 70.88 h 70.84 v -70.88 h -35.41 v -70.87 h -35.43 v -70.84 h -35.44 v -106.32 h 106.28 v -35.44 h -35.41 v -35.43 h -35.43 v -35.41 h -35.44 v -35.44 h -35.44 v -35.43 h -35.44 v -35.44 h -35.43 v -35.44 h -35.44 v -35.44 H 106.31 V 95.648 H 70.875 z" />
- </g>
- </g>
-</svg>
diff --git a/documentation/components/original-drawings/textfield-diagram.svg b/documentation/components/original-drawings/textfield-diagram.svg deleted file mode 100644 index f732bcb7de..0000000000 --- a/documentation/components/original-drawings/textfield-diagram.svg +++ /dev/null @@ -1,868 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<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"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- sodipodi:docname="textfield-diagram.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="300.01001"
- inkscape:export-ydpi="300.01001"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="2.4"
- inkscape:cx="519.84496"
- inkscape:cy="506.2857"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1680"
- inkscape:window-height="1026"
- inkscape:window-x="1280"
- inkscape:window-y="0"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="false"
- showguides="true"
- inkscape:guide-bbox="true">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- </defs>
- <metadata
- id="metadata2480">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1">
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="translate(-3.5714286,23.214286)"
- id="g3178" />
- <g
- transform="translate(210.60668,261.00299)"
- id="g2802">
- <rect
- ry="3.7880721"
- y="208.55002"
- x="172.42705"
- height="35.93816"
- width="119.02927"
- id="rect2804"
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(178.96771,226.54606)"
- id="flowRoot2806"
- style="font-size:12px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold Italic"
- xml:space="preserve"><flowRegion
- id="flowRegion2808" /><flowPara
- id="flowPara2812">AbstractField</flowPara></flowRoot> </g>
- <g
- transform="translate(506.97638,291.46457)"
- id="g3836">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3838"
- width="98.786072"
- height="35.433075"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3840"
- transform="translate(18.701001,254.28779)"><flowRegion
- id="flowRegion3842" /><flowPara
- id="flowPara3846">TextField</flowPara></flowRoot> <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- x="20.486355"
- y="267.2616"
- id="text2678"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan2680"
- x="20.486355"
- y="267.2616">v-textfield</tspan></text>
- </g>
- <g
- transform="translate(510.31721,352.68684)"
- id="g3848">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3850"
- width="98.581734"
- height="35.849739"
- x="10.832414"
- y="224.97185"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="15.902097"
- y="240.91238"
- id="text3860"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan3862"
- x="15.902097"
- y="240.91238">TextArea</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- x="17.238098"
- y="254.58466"
- id="text3700"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan3702"
- x="17.238098"
- y="254.58466">v-textarea</tspan></text>
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 364.96063,786.61415 C nan,nan nan,nan 435.82677,786.61415"
- id="path7429"
- inkscape:connector-type="polyline" />
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 521.9605,595.73226 L 442.91339,595.73226"
- id="path49768"
- inkscape:connector-type="polyline" />
- <g
- transform="matrix(0.5,0,0,0.5,103.34299,0.7940752)"
- id="g18053" />
- <g
- transform="translate(211.21177,319.81101)"
- id="g2656">
- <rect
- ry="3.7880721"
- y="208.55002"
- x="172.42705"
- height="35.938164"
- width="118.42417"
- id="rect2658"
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(176.96771,224.54606)"
- id="flowRoot2660"
- style="font-size:12px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold Italic"
- xml:space="preserve"><flowRegion
- id="flowRegion2662" /><flowPara
- id="flowPara2664">AbstractTextField</flowPara></flowRoot> </g>
- <g
- transform="translate(510.31721,401.19483)"
- id="g2666">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect2668"
- width="98.79007"
- height="35.433071"
- x="10.832414"
- y="224.97185"
- ry="3.7880721" />
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="16.225794"
- y="240.50851"
- id="text2670"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan2672"
- x="16.225794"
- y="240.50851">PasswordField</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- x="16.802633"
- y="255.82668"
- id="text3704"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan3706"
- x="16.802633"
- y="255.82668">v-textfield</tspan></text>
- </g>
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 442.91339,644.88187 L 442.91339,564.54877"
- id="path3866"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 521.14963,546.49872 L 502.06299,546.45762"
- id="path2674"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc"
- inkscape:connection-start="#g3836"
- inkscape:connection-end="#g2656" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 531.49606,644.88187 L 442.91339,644.88187"
- id="path2676"
- inkscape:connector-type="polyline" />
- <path
- inkscape:connector-type="polyline"
- id="path2868"
- d="M 442.75846,528.36103 L 442.6408,505.49117"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g2656"
- inkscape:connection-end="#g2802" />
- </g>
-</svg>
diff --git a/documentation/components/original-drawings/tooltip-plain-withpointer.svg b/documentation/components/original-drawings/tooltip-plain-withpointer.svg deleted file mode 100644 index f58a50eed1..0000000000 --- a/documentation/components/original-drawings/tooltip-plain-withpointer.svg +++ /dev/null @@ -1,158 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="tooltip-plain-withpointer.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- version="1.1">
- <defs
- id="defs1903">
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective7" />
- <inkscape:perspective
- id="perspective2444"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- y2="471.38400"
- y1="45.132561"
- xlink:href="#linearGradient7601"
- x2="1370.5586"
- x1="-526.86133"
- spreadMethod="reflect"
- inkscape:collect="always"
- id="linearGradient10877"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(8.892150e-2,0.000000,0.000000,0.155616,635.7169,9.380527)" />
- <linearGradient
- y2="471.38400"
- y1="45.132561"
- xlink:href="#linearGradient7601"
- x2="1370.5586"
- x1="-526.86133"
- spreadMethod="reflect"
- inkscape:collect="always"
- id="linearGradient10869"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.323979,0.000000,0.000000,0.566975,399.6324,14.15086)" />
- <linearGradient
- y2="471.38400"
- y1="45.132561"
- xlink:href="#linearGradient7601"
- x2="1370.5586"
- x1="-526.86133"
- spreadMethod="reflect"
- inkscape:collect="always"
- id="linearGradient7607"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.755921,0,0,1.32289,-36,0)" />
- <linearGradient
- inkscape:collect="always"
- id="linearGradient7601">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop7603" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop7605" />
- </linearGradient>
- <inkscape:perspective
- id="perspective2581"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="2.7777778"
- inkscape:cx="323.26669"
- inkscape:cy="909.70837"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1342"
- inkscape:window-height="819"
- inkscape:window-x="0"
- inkscape:window-y="0"
- showgrid="false"
- inkscape:window-maximized="0" />
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <image
- sodipodi:absref="/home/magi/itmill/book-7/manual/original-drawings/components/../../img/components/tooltip-plain.png"
- xlink:href="../../img/components/tooltip-plain.png"
- height="50.32"
- width="129.39429"
- id="image2446"
- x="271.5"
- y="152.36218" />
- <g
- style="display:inline"
- inkscape:label="Layer 1"
- id="g2590"
- transform="matrix(0.02617234,0,0,0.02617234,309.56235,171.43915)">
- <g
- id="g1317">
- <path
- style="fill:url(#linearGradient7607);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
- id="path6080"
- d="m 70.29035,24.82601 0,602.34375 35.4375,0 0,-35.4375 35.4375,0 0,-35.40625 35.40625,0 0,-35.4375 35.4375,0 35.4375,0 0,70.84375 35.4375,0 0,70.875 35.4375,0 0,70.875 35.4375,0 0,35.4375 70.84375,0 0,-35.4375 35.4375,0 0,-70.875 -35.4375,0 0,-70.875 -35.40625,0 0,-70.84375 -35.4375,0 0,-70.875 141.71875,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.40625,0 0,-35.40625 -35.4375,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.4375,0 0,-35.437499 -35.40625,0 0,-35.406251 -35.4375,0 0,-35.4375 -35.4375,0 z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="rect1430"
- d="m 35.4375,24.8125 0,602.34375 35.4375,0 0,-35.4375 35.4375,0 0,-35.40625 -35.4375,0 0,-460.65625 35.4375,0 0,-35.40625 -35.4375,0 0,-35.4375 -35.4375,0 z m 70.875,70.84375 0,35.4375 35.40625,0 0,-35.4375 -35.40625,0 z m 35.40625,35.4375 0,35.4375 35.4375,0 0,-35.4375 -35.4375,0 z m 35.4375,35.4375 0,35.4375 35.4375,0 0,-35.4375 -35.4375,0 z m 35.4375,35.4375 0,35.4375 35.4375,0 0,-35.4375 -35.4375,0 z m 35.4375,35.4375 0,35.4375 35.4375,0 0,-35.4375 -35.4375,0 z m 35.4375,35.4375 0,35.4375 35.4375,0 0,-35.4375 -35.4375,0 z m 35.4375,35.4375 0,35.40625 35.4375,0 0,-35.40625 -35.4375,0 z m 35.4375,35.40625 0,35.4375 35.40625,0 0,-35.4375 -35.40625,0 z m 35.40625,35.4375 0,35.4375 -106.28125,0 0,35.4375 0,70.875 35.4375,0 0,-70.875 141.71875,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.4375,0 z m -70.84375,141.75 0,70.84375 35.4375,0 0,-70.84375 -35.4375,0 z m 35.4375,70.84375 0,70.875 35.40625,0 0,-70.875 -35.40625,0 z m 35.40625,70.875 0,70.875 35.4375,0 0,-70.875 -35.4375,0 z m 0,70.875 -70.84375,0 0,35.4375 70.84375,0 0,-35.4375 z m -70.84375,0 0,-70.875 -35.4375,0 0,70.875 35.4375,0 z m -35.4375,-70.875 0,-70.875 -35.4375,0 0,70.875 35.4375,0 z m -35.4375,-70.875 0,-70.84375 -35.4375,0 0,70.84375 35.4375,0 z m -35.4375,-70.84375 0,-70.875 -35.4375,0 0,35.4375 -35.4375,0 0,35.4375 35.4375,0 35.4375,0 z m -70.875,0 -35.40625,0 0,35.4375 35.40625,0 0,-35.4375 z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#ffffff;fill-opacity:1;stroke:none"
- id="rect3779"
- d="m 70.875,95.65625 0,460.65625 35.4375,0 0,-35.4375 35.40625,0 0,-35.4375 35.4375,0 0,-35.4375 35.4375,0 0,70.875 35.4375,0 0,70.84375 35.4375,0 0,70.875 35.4375,0 0,70.875 35.4375,0 35.40625,0 0,-70.875 -35.40625,0 0,-70.875 -35.4375,0 0,-70.84375 -35.4375,0 0,-106.3125 35.4375,0 35.4375,0 35.40625,0 0,-35.4375 -35.40625,0 0,-35.4375 -35.4375,0 0,-35.40625 -35.4375,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.40625,0 0,-35.4375 -35.4375,0 z"
- inkscape:connector-curvature="0" />
- </g>
- </g>
- </g>
-</svg>
diff --git a/documentation/components/original-drawings/tooltip-richtext-withpointer.svg b/documentation/components/original-drawings/tooltip-richtext-withpointer.svg deleted file mode 100644 index f3602a3372..0000000000 --- a/documentation/components/original-drawings/tooltip-richtext-withpointer.svg +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="tooltip-richtext-withpointer.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- version="1.1">
- <defs
- id="defs1903">
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective7" />
- <inkscape:perspective
- id="perspective2444"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- y2="471.38400"
- y1="45.132561"
- xlink:href="#linearGradient7601"
- x2="1370.5586"
- x1="-526.86133"
- spreadMethod="reflect"
- inkscape:collect="always"
- id="linearGradient10877"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(8.892150e-2,0.000000,0.000000,0.155616,635.7169,9.380527)" />
- <linearGradient
- y2="471.38400"
- y1="45.132561"
- xlink:href="#linearGradient7601"
- x2="1370.5586"
- x1="-526.86133"
- spreadMethod="reflect"
- inkscape:collect="always"
- id="linearGradient10869"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.323979,0.000000,0.000000,0.566975,399.6324,14.15086)" />
- <linearGradient
- y2="471.38400"
- y1="45.132561"
- xlink:href="#linearGradient7601"
- x2="1370.5586"
- x1="-526.86133"
- spreadMethod="reflect"
- inkscape:collect="always"
- id="linearGradient7607"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.755921,0,0,1.32289,-36,0)" />
- <linearGradient
- inkscape:collect="always"
- id="linearGradient7601">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop7603" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop7605" />
- </linearGradient>
- <inkscape:perspective
- id="perspective2581"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective2694"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.9641855"
- inkscape:cx="354.71787"
- inkscape:cy="838.70549"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1214"
- inkscape:window-height="851"
- inkscape:window-x="67"
- inkscape:window-y="53"
- showgrid="false"
- inkscape:window-maximized="0" />
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <image
- sodipodi:absref="/home/magi/itmill/book-7/manual/original-drawings/components/../../img/components/tooltip-richtext.png"
- xlink:href="../../img/components/tooltip-richtext.png"
- height="139.87039"
- width="253.29762"
- id="image2696"
- x="273.8241"
- y="149.4536" />
- <g
- style="display:inline"
- inkscape:label="Layer 1"
- id="g2590"
- transform="matrix(0.02617234,0,0,0.02617234,326.04499,174.47285)">
- <g
- id="g1317">
- <path
- style="fill:url(#linearGradient7607);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
- id="path6080"
- d="m 70.29035,24.82601 0,602.34375 35.4375,0 0,-35.4375 35.4375,0 0,-35.40625 35.40625,0 0,-35.4375 35.4375,0 35.4375,0 0,70.84375 35.4375,0 0,70.875 35.4375,0 0,70.875 35.4375,0 0,35.4375 70.84375,0 0,-35.4375 35.4375,0 0,-70.875 -35.4375,0 0,-70.875 -35.40625,0 0,-70.84375 -35.4375,0 0,-70.875 141.71875,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.40625,0 0,-35.40625 -35.4375,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.4375,0 0,-35.437499 -35.40625,0 0,-35.406251 -35.4375,0 0,-35.4375 -35.4375,0 z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="rect1430"
- d="m 35.4375,24.8125 0,602.34375 35.4375,0 0,-35.4375 35.4375,0 0,-35.40625 -35.4375,0 0,-460.65625 35.4375,0 0,-35.40625 -35.4375,0 0,-35.4375 -35.4375,0 z m 70.875,70.84375 0,35.4375 35.40625,0 0,-35.4375 -35.40625,0 z m 35.40625,35.4375 0,35.4375 35.4375,0 0,-35.4375 -35.4375,0 z m 35.4375,35.4375 0,35.4375 35.4375,0 0,-35.4375 -35.4375,0 z m 35.4375,35.4375 0,35.4375 35.4375,0 0,-35.4375 -35.4375,0 z m 35.4375,35.4375 0,35.4375 35.4375,0 0,-35.4375 -35.4375,0 z m 35.4375,35.4375 0,35.4375 35.4375,0 0,-35.4375 -35.4375,0 z m 35.4375,35.4375 0,35.40625 35.4375,0 0,-35.40625 -35.4375,0 z m 35.4375,35.40625 0,35.4375 35.40625,0 0,-35.4375 -35.40625,0 z m 35.40625,35.4375 0,35.4375 -106.28125,0 0,35.4375 0,70.875 35.4375,0 0,-70.875 141.71875,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.4375,0 z m -70.84375,141.75 0,70.84375 35.4375,0 0,-70.84375 -35.4375,0 z m 35.4375,70.84375 0,70.875 35.40625,0 0,-70.875 -35.40625,0 z m 35.40625,70.875 0,70.875 35.4375,0 0,-70.875 -35.4375,0 z m 0,70.875 -70.84375,0 0,35.4375 70.84375,0 0,-35.4375 z m -70.84375,0 0,-70.875 -35.4375,0 0,70.875 35.4375,0 z m -35.4375,-70.875 0,-70.875 -35.4375,0 0,70.875 35.4375,0 z m -35.4375,-70.875 0,-70.84375 -35.4375,0 0,70.84375 35.4375,0 z m -35.4375,-70.84375 0,-70.875 -35.4375,0 0,35.4375 -35.4375,0 0,35.4375 35.4375,0 35.4375,0 z m -70.875,0 -35.40625,0 0,35.4375 35.40625,0 0,-35.4375 z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#ffffff;fill-opacity:1;stroke:none"
- id="rect3779"
- d="m 70.875,95.65625 0,460.65625 35.4375,0 0,-35.4375 35.40625,0 0,-35.4375 35.4375,0 0,-35.4375 35.4375,0 0,70.875 35.4375,0 0,70.84375 35.4375,0 0,70.875 35.4375,0 0,70.875 35.4375,0 35.40625,0 0,-70.875 -35.40625,0 0,-70.875 -35.4375,0 0,-70.84375 -35.4375,0 0,-106.3125 35.4375,0 35.4375,0 35.40625,0 0,-35.4375 -35.40625,0 0,-35.4375 -35.4375,0 0,-35.40625 -35.4375,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.4375,0 0,-35.4375 -35.40625,0 0,-35.4375 -35.4375,0 z"
- inkscape:connector-curvature="0" />
- </g>
- </g>
- </g>
-</svg>
diff --git a/documentation/datamodel/chapter-datamodel.asciidoc b/documentation/datamodel/chapter-datamodel.asciidoc deleted file mode 100644 index c28e5b716b..0000000000 --- a/documentation/datamodel/chapter-datamodel.asciidoc +++ /dev/null @@ -1,20 +0,0 @@ -[[datamodel]] -== Binding Components to Data - -((("Vaadin Data Model", id="term.datamodel", range="startofrange"))) - - -This chapter describes the Vaadin Data Model and shows how you can use it to -bind components directly to data sources, such as database queries. - - -include::datamodel-overview.asciidoc[leveloffset=+2] - -include::datamodel-properties.asciidoc[leveloffset=+2] - -include::datamodel-items.asciidoc[leveloffset=+2] - -include::datamodel-itembinding.asciidoc[leveloffset=+2] - -include::datamodel-container.asciidoc[leveloffset=+2] -(((range="endofrange", startref="term.datamodel"))) diff --git a/documentation/datamodel/datamodel-container.asciidoc b/documentation/datamodel/datamodel-container.asciidoc deleted file mode 100644 index 8f88e7c8bf..0000000000 --- a/documentation/datamodel/datamodel-container.asciidoc +++ /dev/null @@ -1,834 +0,0 @@ ---- -title: Collecting Items in Containers -order: 5 -layout: page ---- - -[[datamodel.container]] -= Collecting Items in Containers - -((("[classname]#Container#", id="term.datamodel.container", range="startofrange"))) - - -The [classname]#Container# interface is the highest containment level of the -Vaadin data model, for containing items (rows) which in turn contain properties -(columns). Containers can therefore represent tabular data, which can be viewed -in a [classname]#Table# or some other selection component, as well as -hierarchical data. - -The items contained in a container are identified by an __item identifier__ or -__IID__, and the properties by a __property identifier__ or __PID__. - -[[datamodel.container.intro]] -== Basic Use of Containers - -The basic use of containers involves creating one, adding items to it, and -binding it as a container data source of a component. - -[[datamodel.container.intro.default]] -=== Default Containers and Delegation - -Before saying anything about creation of containers, it should be noted that all -components that can be bound to a container data source are by default bound to -a default container. For example, [classname]#Table# is bound to a -[classname]#IndexedContainer#, [classname]#Tree# to a -[classname]#HierarchicalContainer#, and so forth. - -All of the user interface components using containers also implement the -relevant container interfaces themselves, so that the access to the underlying -data source is delegated through the component. - - ----- -// Create a table with one column -Table table = new Table("My Table"); -table.addContainerProperty("col1", String.class, null); - -// Access items and properties through the component -table.addItem("row1"); // Create item by explicit ID -Item item1 = table.getItem("row1"); -Property property1 = item1.getItemProperty("col1"); -property1.setValue("some given value"); - -// Equivalent access through the container -Container container = table.getContainerDataSource(); -container.addItem("row2"); -Item item2 = container.getItem("row2"); -Property property2 = item2.getItemProperty("col1"); -property2.setValue("another given value"); ----- - - -[[datamodel.container.intro.creating]] -=== Creating and Binding a Container - -A container is created and bound to a component as follows: - - ----- -// Create a container of some type -Container container = new IndexedContainer(); - -// Initialize the container as required by the container type -container.addContainerProperty("name", String.class, "none"); -container.addContainerProperty("volume", Double.class, 0.0); - -... add items ... - -// Bind it to a component -Table table = new Table("My Table"); -table.setContainerDataSource(container); ----- - -Most components that can be bound to a container allow passing it also in the -constructor, in addition to using [methodname]#setContainerDataSource()#. -Creation of the container depends on its type. For some containers, such as the -[classname]#IndexedContainer#, you need to define the contained properties -(columns) as was done above, while some others determine them otherwise. The -definition of a property with [methodname]#addContainerProperty()# requires a -unique property ID, type, and a default value. You can also give -[parameter]#null#. - -Vaadin has a several built-in in-memory container implementations, such as -[classname]#IndexedContainer# and [classname]#BeanItemContainer#, which are easy -to use for setting up nonpersistent data storages. For persistent data, either -the built-in [classname]#SQLContainer# or the [classname]#JPAContainer# add-on -container can be used. - - -[[datamodel.container.intro.adding]] -=== Adding Items and Accessing Properties - -Items can be added to a container with the [methodname]#addItem()# method. The -parameterless version of the method automatically generates the item ID. - - ----- -// Create an item -Object itemId = container.addItem(); ----- - -Properties can be requested from container by first requesting an item with -[methodname]#getItem()# and then getting the properties from the item with -[methodname]#getItemProperty()#. - - ----- -// Get the item object -Item item = container.getItem(itemId); - -// Access a property in the item -Property<String> nameProperty = - item.getItemProperty("name"); - -// Do something with the property -nameProperty.setValue("box"); ----- - -You can also get a property directly by the item and property ids with -[methodname]#getContainerProperty()#. - - ----- -container.getContainerProperty(itemId, "volume").setValue(5.0); ----- - - -[[datamodel.container.intro.givenid]] -=== Adding Items by Given ID - -Some containers, such as [classname]#IndexedContainer# and -[classname]#HierarchicalContainer#, allow adding items by a given ID, which can -be any [classname]#Object#. - - ----- -Item item = container.addItem("agivenid"); -item.getItemProperty("name").setValue("barrel"); -Item.getItemProperty("volume").setValue(119.2); ----- - -Notice that the actual item __is not__ given as a parameter to the method, only -its ID, as the interface assumes that the container itself creates all the items -it contains. Some container implementations can provide methods to add -externally created items, and they can even assume that the item ID object is -also the item itself. Lazy containers might not create the item immediately, but -lazily when it is accessed by its ID. - - - -[[datamodel.container.inner]] -== Container Subinterfaces - -The [classname]#Container# interface contains inner interfaces that container -implementations can implement to fulfill different features required by -components that present container data. - -[interfacename]#Container.Filterable#:: Filterable containers allow filtering the contained items by filters, as -described in <<datamodel.container.filtered>>. - -[interfacename]#Container.Hierarchical#:: Hierarchical containers allow representing hierarchical relationships between -items and are required by the [classname]#Tree# and [classname]#TreeTable# -components. The [classname]#HierarchicalContainer# is a built-in in-memory -container for hierarchical data, and is used as the default container for the -tree components. The [classname]#FilesystemContainer# provides access to -browsing the content of a file system. Also [classname]#JPAContainer# is -hierarchical, as described in -<<dummy/../../../framework/jpacontainer/jpacontainer-usage#jpacontainer.usage.hierarchical,"Hierarchical -Container">>. - -[interfacename]#Container.Indexed#:: An indexed container allows accessing items by an index number, not just their -item ID. This feature is required by some components, especially -[classname]#Table#, which needs to provide lazy access to large containers. The -[classname]#IndexedContainer# is a basic in-memory implementation, as described -in <<datamodel.container.indexedcontainer>>. - -[interfacename]#Container.Ordered#:: An ordered container allows traversing the items in successive order in either -direction. Most built-in containers are ordered. - -[interfacename]#Container.SimpleFilterable#:: This interface enables filtering a container by string matching with -[methodname]#addContainerFilter()#. The filtering is done by either searching -the given string anywhere in a property value, or as its prefix. - -[interfacename]#Container.Sortable#:: A sortable container is required by some components that allow sorting the -content, such as [classname]#Table#, where the user can click a column header to -sort the table by the column. Some other components, such as -[classname]#Calendar#, may require that the content is sorted to be able to -display it properly. Depending on the implementation, sorting can be done only -when the [methodname]#sort()# method is called, or the container is -automatically kept in order according to the last call of the method. - - - -See the API documentation for a detailed description of the interfaces. - - -[[datamodel.container.indexedcontainer]] -== [classname]#IndexedContainer# - -The [classname]#IndexedContainer# is an in-memory container that implements the -[interfacename]#Indexed# interface to allow referencing the items by an index. -[classname]#IndexedContainer# is used as the default container in most selection -components in Vaadin. - -The properties need to be defined with [methodname]#addContainerProperty()#, -which takes the property ID, type, and a default value. This must be done before -any items are added to the container. - - ----- -// Create the container -IndexedContainer container = new IndexedContainer(); - -// Define the properties (columns) -container.addContainerProperty("name", String.class, "noname"); -container.addContainerProperty("volume", Double.class, -1.0d); - -// Add some items -Object content[][] = { {"jar", 2.0}, {"bottle", 0.75}, - {"can", 1.5}}; -for (Object[] row: content) { - Item newItem = container.getItem(container.addItem()); - newItem.getItemProperty("name").setValue(row[0]); - newItem.getItemProperty("volume").setValue(row[1]); -} ----- - -New items are added with [methodname]#addItem()#, which returns the item ID of -the new item, or by giving the item ID as a parameter as was described earlier. -Note that the [classname]#Table# component, which has -[classname]#IndexedContainer# as its default container, has a conveniency -[methodname]#addItem()# method that allows adding items as object vectors -containing the property values. - -The container implements the [interfacename]#Container.Indexed# feature to allow -accessing the item IDs by their index number, with [methodname]#getIdByIndex()#, -etc. The feature is required mainly for internal purposes of some components, -such as [classname]#Table#, which uses it to enable lazy transmission of table -data to the client-side. - - -[[datamodel.container.beancontainer]] -== [classname]#BeanContainer# - -The [classname]#BeanContainer# is an in-memory container for JavaBean objects. -Each contained bean is wrapped inside a [classname]#BeanItem# wrapper. The item -properties are determined automatically by inspecting the getter and setter -methods of the class. This requires that the bean class has public visibility, -local classes for example are not allowed. Only beans of the same type can be -added to the container. - -The generic has two parameters: a bean type and an item identifier type. The -item identifiers can be obtained by defining a custom resolver, using a specific -item property for the IDs, or by giving item IDs explicitly. As such, it is more -general than the [classname]#BeanItemContainer#, which uses the bean object -itself as the item identifier, making the use usually simpler. Managing the item -IDs makes [classname]#BeanContainer# more complex to use, but it is necessary in -some cases where the [methodname]#equals()# or [methodname]#hashCode()# methods -have been reimplemented in the bean. - - ----- -// Here is a JavaBean -public class Bean implements Serializable { - String name; - double energy; // Energy content in kJ/100g - - public Bean(String name, double energy) { - this.name = name; - this.energy = energy; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public double getEnergy() { - return energy; - } - - public void setEnergy(double energy) { - this.energy = energy; - } -} - -void basic(VerticalLayout layout) { - // Create a container for such beans with - // strings as item IDs. - BeanContainer<String, Bean> beans = - new BeanContainer<String, Bean>(Bean.class); - - // Use the name property as the item ID of the bean - beans.setBeanIdProperty("name"); - - // Add some beans to it - beans.addBean(new Bean("Mung bean", 1452.0)); - beans.addBean(new Bean("Chickpea", 686.0)); - beans.addBean(new Bean("Lentil", 1477.0)); - beans.addBean(new Bean("Common bean", 129.0)); - beans.addBean(new Bean("Soybean", 1866.0)); - - // Bind a table to it - Table table = new Table("Beans of All Sorts", beans); - layout.addComponent(table); -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#datamodel.container.beancontainer.basic[on-line example, window="_blank"]. - -To use explicit item IDs, use the methods [methodname]#addItem(Object, Object)#, -[methodname]#addItemAfter(Object, Object, Object)#, and -[methodname]#addItemAt(int, Object, Object)#. - -It is not possible to add additional properties to the container, except -properties in a nested bean. - -[[datamodel.container.beancontainer.nestedproperties]] -=== Nested Properties - -((("nested bean properties", id="term.datamodel.container.beancontainer.nestedproperties", range="startofrange"))) - - -If you have a nested bean with an 1:1 relationship inside a bean type contained -in a [classname]#BeanContainer# or [classname]#BeanItemContainer#, you can add -its properties to the container by specifying them with -[methodname]#addNestedContainerProperty()#. The feature is defined at the level -of [classname]#AbstractBeanContainer#. -((("[methodname]#addNestedContainerProperty()#"))) - -As with the bean in a bean container, also a nested bean must have public -visibility or otherwise an access exception is thrown. An intermediate reference -from a bean in the bean container to a nested bean may have a null value. - -For example, let us assume that we have the following two beans with the first -one nested inside the second one. - - ----- -/** Bean to be nested */ -public class EqCoord implements Serializable { - double rightAscension; /* In angle hours */ - double declination; /* In degrees */ - - ... setters and getters for the properties ... -} - -/** Bean referencing a nested bean */ -public class Star implements Serializable { - String name; - EqCoord equatorial; /* Nested bean */ - - ... setters and getters for the properties ... -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#datamodel.container.beanitemcontainer.nestedbean[on-line example, window="_blank"]. - -After creating the container, you can declare the nested properties by -specifying their property identifiers with the -[methodname]#addNestedContainerProperty()# in dot notation. - - ----- -// Create a container for beans -BeanItemContainer<Star> stars = - new BeanItemContainer<Star>(Star.class); - -// Declare the nested properties to be used in the container -stars.addNestedContainerProperty("equatorial.rightAscension"); -stars.addNestedContainerProperty("equatorial.declination"); - -// Add some items -stars.addBean(new Star("Sirius", new EqCoord(6.75, 16.71611))); -stars.addBean(new Star("Polaris", new EqCoord(2.52, 89.26417))); - -// Here the nested bean reference is null -stars.addBean(new Star("Vega", null)); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#datamodel.container.beanitemcontainer.nestedbean[on-line example, window="_blank"]. - -If you bind such a container to a [classname]#Table#, you probably also need to -set the column headers. Notice that the entire nested bean itself is still a -property in the container and would be displayed in its own column. The -[methodname]#toString()# method is used for obtaining the displayed value, which -is by default an object reference. You normally do not want this, so you can -hide the column with [methodname]#setVisibleColumns()#. -((("[methodname]#setVisibleColumns()#"))) - - ----- -// Put them in a table -Table table = new Table("Stars", stars); -table.setColumnHeader("equatorial.rightAscension", "RA"); -table.setColumnHeader("equatorial.declination", "Decl"); -table.setPageLength(table.size()); - -// Have to set explicitly to hide the "equatorial" property -table.setVisibleColumns("name", - "equatorial.rightAscension", "equatorial.declination"); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#datamodel.container.beanitemcontainer.nestedbean[on-line example, window="_blank"]. - -The resulting table is shown in -<<figure.datamodel.container.beancontainer.nestedproperties>>. - -[[figure.datamodel.container.beancontainer.nestedproperties]] -.[classname]#Table# Bound to a [classname]#BeanContainer# with Nested Properties -image::img/beanitemcontainer-nested-beans.png[] - -The bean binding in [classname]#AbstractBeanContainer# normally uses the -[classname]#MethodProperty# implementation of the [classname]#Property# -interface to access the bean properties using the setter and getter methods. For -nested properties, the [classname]#NestedMethodProperty# implementation is used. -((("[classname]#MethodProperty#"))) -((("[classname]#NestedMethodProperty#"))) - -(((range="endofrange", startref="term.datamodel.container.beancontainer.nestedproperties"))) - -ifdef::web[] -[[datamodel.container.beancontainer.idresolver]] -=== Defining a Bean ID Resolver - -If a bean ID resolver is set using [methodname]#setBeanIdResolver()# or -[methodname]#setBeanIdProperty()#, the methods [methodname]#addBean()#, -[methodname]#addBeanAfter()#, [methodname]#addBeanAt()# and -[methodname]#addAll()# can be used to add items to the container. If one of -these methods is called, the resolver is used to generate an identifier for the -item (must not return [parameter]#null#). - -Note that explicit item identifiers can also be used when a resolver has been -set by calling the [methodname]#addItem*()# methods - the resolver is only used -when adding beans using the [methodname]#addBean*()# or -[methodname]#addAll(Collection)# methods. - -endif::web[] - - -[[datamodel.container.beanitemcontainer]] -== [classname]#BeanItemContainer# - -[classname]#BeanItemContainer# is a container for JavaBean objects where each -bean is wrapped inside a [classname]#BeanItem# wrapper. The item properties are -determined automatically by inspecting the getter and setter methods of the -class. This requires that the bean class has public visibility, local classes -for example are not allowed. Only beans of the same type can be added to the -container. - -[classname]#BeanItemContainer# is a specialized version of the -[classname]#BeanContainer# described in <<datamodel.container.beancontainer>>. -It uses the bean itself as the item identifier, which makes it a bit easier to -use than [classname]#BeanContainer# in many cases. The latter is, however, -needed if the bean has reimplemented the [methodname]#equals()# or -[methodname]#hashCode()# methods. - -Let us revisit the example given in <<datamodel.container.beancontainer>> using -the [classname]#BeanItemContainer#. - - ----- -// Create a container for the beans -BeanItemContainer<Bean> beans = - new BeanItemContainer<Bean>(Bean.class); - -// Add some beans to it -beans.addBean(new Bean("Mung bean", 1452.0)); -beans.addBean(new Bean("Chickpea", 686.0)); -beans.addBean(new Bean("Lentil", 1477.0)); -beans.addBean(new Bean("Common bean", 129.0)); -beans.addBean(new Bean("Soybean", 1866.0)); - -// Bind a table to it -Table table = new Table("Beans of All Sorts", beans); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#datamodel.container.beanitemcontainer.basic[on-line example, window="_blank"]. - -It is not possible to add additional properties to a -[classname]#BeanItemContainer#, except properties in a nested bean, as described -in <<datamodel.container.beancontainer>>. ((("nested bean -properties"))) - - -ifdef::web[] -[[datamodel.container.iterating]] -== Iterating Over a Container - -As the items in a [classname]#Container# are not necessarily indexed, iterating -over the items has to be done using an [classname]#Iterator#. The -[methodname]#getItemIds()# method of [classname]#Container# returns a -[classname]#Collection# of item identifiers over which you can iterate. The -following example demonstrates a typical case where you iterate over the values -of check boxes in a column of a [classname]#Table# component. The context of the -example is the example used in -<<dummy/../../../framework/components/components-table#components.table,"Table">>. - - ----- -// Collect the results of the iteration into this string. -String items = ""; - -// Iterate over the item identifiers of the table. -for (Iterator i = table.getItemIds().iterator(); i.hasNext();) { - // Get the current item identifier, which is an integer. - int iid = (Integer) i.next(); - - // Now get the actual item from the table. - Item item = table.getItem(iid); - - // And now we can get to the actual checkbox object. - Button button = (Button) - (item.getItemProperty("ismember").getValue()); - - // If the checkbox is selected. - if ((Boolean)button.getValue() == true) { - // Do something with the selected item; collect the - // first names in a string. - items += item.getItemProperty("First Name") - .getValue() + " "; - } -} - -// Do something with the results; display the selected items. -layout.addComponent (new Label("Selected items: " + items)); ----- - -Notice that the [methodname]#getItemIds()# returns an __unmodifiable -collection__, so the [classname]#Container# may not be modified during -iteration. You can not, for example, remove items from the -[classname]#Container# during iteration. The modification includes modification -in another thread. If the [classname]#Container# is modified during iteration, a -[classname]#ConcurrentModificationException# is thrown and the iterator may be -left in an undefined state. - -endif::web[] - -[[datamodel.container.gpc]] -== [classname]#GeneratedPropertyContainer# - -[classname]#GeneratedPropertyContainer# is a container wrapper that allows -defining generated values for properties (columns). The generated properties can -shadow properties with the same IDs in the wrapped container. Removing a -property from the wrapper hides it. - -The container is especially useful with [classname]#Grid#, which does not -support generated columns or hiding columns like [classname]#Table# does. - -[[datamodel.container.gpc.wrapping]] -=== Wrapping a Container - -A container to be wrapped must be a [interfacename]#Container.Indexed#. It can -optionally also implement [interfacename]#Container.Sortable# or -[interfacename]#Container.Filterable# to enable sorting and filtering the -container, respectively. - -For example, let us consider the following container with some regular columns: - - ----- -IndexedContainer container = new IndexedContainer(); -container.addContainerProperty("firstname", String.class, null); -container.addContainerProperty("lastname", String.class, null); -container.addContainerProperty("born", Integer.class, null); -container.addContainerProperty("died", Integer.class, null); - -// Wrap it -GeneratedPropertyContainer gpcontainer = - new GeneratedPropertyContainer(container); ----- - - -[[datamodel.container.gpc.properties]] -=== Generated Properties - -Now, you can add generated properties in the container with -[methodname]#addGeneratedProperty()# by specifying a property ID and a -[interfacename]#PropertyValueGenerator#. The method takes the ID of the -generated property as first parameter; you can use a same ID as in the wrapped -container to shadow its properties. - -You need to implement [methodname]#getType()#, which must return the class -object of the value type of the property, and [methodname]#getValue()#, which -returns the property value for the given item. The item ID and the property ID -of the generated property are also given in case they are needed. You can access -other properties of the item to compute the property value. - - ----- -gpcontainer.addGeneratedProperty("lived", - new PropertyValueGenerator<Integer>() { - @Override - public Integer getValue(Item item, Object itemId, - Object propertyId) { - int born = (Integer) - item.getItemProperty("born").getValue(); - int died = (Integer) - item.getItemProperty("died").getValue(); - return Integer.valueOf(died - born); - } - - @Override - public Class<Integer> getType() { - return Integer.class; - } -}); ----- - -You can access other items in the container, also their generated properties, -although you should beware of accidental recursion. - - -[[datamodel.container.gpc.using]] -=== Using [classname]#GeneratedPropertyContainer# - -Finally, you need to bind the [classname]#GeneratedPropertyContainer# to the -component instead of the wrapped container. - - ----- -Grid grid = new Grid(gpcontainer); ----- - -When using [classname]#GeneratedPropertyContainer# in [classname]#Grid#, notice -that generated columns are read-only, so you can not add grid rows with -[methodname]#addRow()#. In editable mode, editor fields are not generated for -generated columns. - - -[[datamodel.container.gpc.sorting]] -=== Sorting - -Even though the [classname]#GeneratedPropertyContainer# implements -[interfacename]#Container.Sortable#, the wrapped container must also support it -or otherwise sorting is disabled. Also, the generated properties are not -normally sortable, but require special handling to enable sorting. - - - -[[datamodel.container.filtered]] -== [classname]#Filterable# Containers - -((("Container", "Filterable", id="term.datamodel.container.filtered.filterable", range="startofrange"))) - - -((("[classname]#Filter# (in [classname]#Container#)", id="term.datamodel.container.filtered.filters", range="startofrange"))) - - -Containers that implement the [classname]#Container.Filterable# interface can be -filtered. For example, the built-in [classname]#IndexedContainer# and the bean -item containers implement it. Filtering is typically used for filtering the -content of a [classname]#Table#. -((("[classname]#IndexedContainer#"))) -((("[classname]#Table#"))) - -Filters implement the [classname]#Filter# interface and you add them to a -filterable container with the [methodname]#addContainerFilter()# method. -Container items that pass the filter condition are kept and shown in the -filterable component. -((("[methodname]#addContainerFilter()#"))) - - ----- -Filter filter = new SimpleStringFilter("name", - "Douglas", true, false); -table.addContainerFilter(filter); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#datamodel.container.filter.basic[on-line example, window="_blank"]. - -If multiple filters are added to a container, they are evaluated using the -logical AND operator so that only items that are passed by all the filters are -kept. - -[[datamodel.container.filtered.composite]] -=== Atomic and Composite Filters - -Filters can be classified as __atomic__ and __composite__. Atomic filters, such -as [classname]#SimpleStringFilter#, define a single condition, usually for a -specific container property. Composite filters make filtering decisions based on -the result of one or more other filters. The built-in composite filters -implement the logical operators AND, OR, or NOT. - -For example, the following composite filter would filter out items where the -[literal]#++name++# property contains the name "Douglas" somewhere __or__ where -the [literal]#++age++# property has value less than 42. The properties must have -[classname]#String# and [classname]#Integer# types, respectively. - - ----- - -filter = new Or(new SimpleStringFilter("name", - "Douglas", true, false), - new Compare.Less("age", 42)); ----- - - -[[datamodel.container.filtered.builtin]] -=== Built-In Filter Types - -The built-in filter types are the following: - -[classname]#SimpleStringFilter#:: ((("[classname]#SimpleStringFilter#"))) -+ -Passes items where the specified property, that must be of [classname]#String# -type, contains the given [parameter]#filterString# as a substring. If -[parameter]#ignoreCase# is [parameter]#true#, the search is case insensitive. If -the [parameter]#onlyMatchPrefix# is [parameter]#true#, the substring may only be -in the beginning of the string, otherwise it may be elsewhere as well. - -[classname]#IsNull#:: ((("[classname]#IsNull# (filter)"))) -+ -Passes items where the specified property has null value. For in-memory -filtering, a simple [literal]#++==++# check is performed. For other containers, -the comparison implementation is container dependent, but should correspond to -the in-memory null check. - -[classname]#Equal#,[classname]#Greater#, - [classname]#Less#, - [classname]#GreaterOrEqual#, and[classname]#LessOrEqual#:: ((("[classname]#Equal# (filter)"))) -((("[classname]#Greater# (filter)"))) -((("[classname]#Less# (filter)"))) -((("[classname]#GreaterOrEqual# (filter)"))) -((("[classname]#LessOrEqual# (filter)"))) -+ -The comparison filter implementations compare the specified property value to -the given constant and pass items for which the comparison result is true. The -comparison operators are included in the abstract [classname]#Compare# class. - -+ -For the [classname]#Equal# filter, the [methodname]#equals()# method for the -property is used in built-in in-memory containers. In other types of containers, -the comparison is container dependent and may use, for example, database -comparison operations. - -+ -For the other filters, the property value type must implement the -[classname]#Comparable# interface to work with the built-in in-memory -containers. Again for the other types of containers, the comparison is container -dependent. - -[classname]#And#and[classname]#Or#:: ((("[classname]#And# (filter)"))) -((("[classname]#Or# (filter)"))) -+ -These logical operator filters are composite filters that combine multiple other -filters. - -[classname]#Not#:: ((("[classname]#Not# (filter)"))) -+ -The logical unary operator filter negates which items are passed by the filter -given as the parameter. - - - - -[[datamodel.container.filtered.custom]] -=== Implementing Custom Filters - -A custom filter needs to implement the [classname]#Container.Filter# interface. - -A filter can use a single or multiple properties for the filtering logic. The -properties used by the filter must be returned with the -[methodname]#appliesToProperty()# method. If the filter applies to a -user-defined property or properties, it is customary to give the properties as -the first argument for the constructor of the filter. - - ----- -class MyCustomFilter implements Container.Filter { - protected String propertyId; - protected String regex; - - public MyCustomFilter(String propertyId, String regex) { - this.propertyId = propertyId; - this.regex = regex; - } - - /** Tells if this filter works on the given property. */ - @Override - public boolean appliesToProperty(Object propertyId) { - return propertyId != null && - propertyId.equals(this.propertyId); - } ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#datamodel.container.filter.custom[on-line example, window="_blank"]. - -The actual filtering logic is done in the [methodname]#passesFilter()# method, -which simply returns [literal]#++true++# if the item should pass the filter and -[literal]#++false++# if it should be filtered out. - - ----- - /** Apply the filter on an item to check if it passes. */ - @Override - public boolean passesFilter(Object itemId, Item item) - throws UnsupportedOperationException { - // Acquire the relevant property from the item object - Property p = item.getItemProperty(propertyId); - - // Should always check validity - if (p == null || !p.getType().equals(String.class)) - return false; - String value = (String) p.getValue(); - - // The actual filter logic - return value.matches(regex); - } -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#datamodel.container.filter.custom[on-line example, window="_blank"]. - -You can use such a custom filter just like any other: - - ----- -c.addContainerFilter( - new MyCustomFilter("Name", (String) tf.getValue())); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#datamodel.container.filter.custom[on-line example, window="_blank"]. - - -(((range="endofrange", startref="term.datamodel.container.filtered.filters"))) -(((range="endofrange", startref="term.datamodel.container.filtered.filterable"))) - -(((range="endofrange", startref="term.datamodel.container"))) - - diff --git a/documentation/datamodel/datamodel-itembinding.asciidoc b/documentation/datamodel/datamodel-itembinding.asciidoc deleted file mode 100644 index fd21b72267..0000000000 --- a/documentation/datamodel/datamodel-itembinding.asciidoc +++ /dev/null @@ -1,377 +0,0 @@ ---- -title: Creating Forms by Binding Fields to Items -order: 4 -layout: page ---- - -[[datamodel.itembinding]] -= Creating Forms by Binding Fields to Items - -Most applications in existence have forms of some sort. Forms contain fields, -which you want to bind to a data source, an item in the Vaadin data model. -[classname]#FieldGroup# provides an easy way to bind fields to the properties of -an item. You can use it by first creating a layout with some fields, and then -call it to bind the fields to the data source. You can also let the -[classname]#FieldGroup# create the fields using a field factory. It can also -handle commits. Notice that [classname]#FieldGroup# is not a user interface -component, so you can not add it to a layout. - -[[datamodel.itembinding.simple]] -== Simple Binding - -Let us start with a data model that has an item with a couple of properties. The -item could be any item type, as described earlier. - - ----- -// Have an item -PropertysetItem item = new PropertysetItem(); -item.addItemProperty("name", new ObjectProperty<String>("Zaphod")); -item.addItemProperty("age", new ObjectProperty<Integer>(42)); ----- - -Next, you would design a form for editing the data. The [classname]#FormLayout# -( -<<dummy/../../../framework/layout/layout-formlayout#layout.formlayout,"FormLayout">> -is ideal for forms, but you could use any other layout as well. - - ----- -// Have some layout and create the fields -FormLayout form = new FormLayout(); - -TextField nameField = new TextField("Name"); -form.addComponent(nameField); - -TextField ageField = new TextField("Age"); -form.addComponent(ageField); ----- - -Then, we can bind the fields to the data as follows: - - ----- -// Now create the binder and bind the fields -FieldGroup binder = new FieldGroup(item); -binder.bind(nameField, "name"); -binder.bind(ageField, "age"); ----- - -The above way of binding is not different from simply calling -[methodname]#setPropertyDataSource()# for the fields. It does, however, register -the fields in the field group, which for example enables buffering or validation -of the fields using the field group, as described in -<<datamodel.itembinding.buffering>>. - -Next, we consider more practical uses for a [classname]#FieldGroup#. - - -[[datamodel.itembinding.fieldfactory]] -== Using a [interfacename]#FieldFactory# to Build and Bind Fields - -Using the [methodname]#buildAndBind()# methods, [classname]#FieldGroup# can -create fields for you using a [interfacename]#FieldGroupFieldFactory#, but you -still have to add them to the correct position in your layout. - - ----- -// Have some layout -FormLayout form = new FormLayout(); - -// Now create a binder that can also create the fields -// using the default field factory -FieldGroup binder = new FieldGroup(item); -form.addComponent(binder.buildAndBind("Name", "name")); -form.addComponent(binder.buildAndBind("Age", "age")); ----- - - -[[datamodel.itembinding.formclass]] -== Binding Member Fields - -The [methodname]#bindMemberFields()# method in [classname]#FieldGroup# uses -reflection to bind the properties of an item to field components that are member -variables of a class. Hence, if you implement a form as a class with the fields -stored as member variables, you can use this method to bind them super-easy. - -The item properties are mapped to the members by the property ID and the name of -the member variable. If you want to map a property with a different ID to a -member, you can use the [literal]#++@PropertyId++# annotation for the member, -with the property ID as the parameter. - -For example: - - ----- -// Have an item -PropertysetItem item = new PropertysetItem(); -item.addItemProperty("name", new ObjectProperty<String>("Zaphod")); -item.addItemProperty("age", new ObjectProperty<Integer>(42)); - -// Define a form as a class that extends some layout -class MyForm extends FormLayout { - // Member that will bind to the "name" property - TextField name = new TextField("Name"); - - // Member that will bind to the "age" property - @PropertyId("age") - TextField ageField = new TextField("Age"); - - public MyForm() { - // Customize the layout a bit - setSpacing(true); - - // Add the fields - addComponent(name); - addComponent(ageField); - } -} - -// Create one -MyForm form = new MyForm(); - -// Now create a binder that can also creates the fields -// using the default field factory -FieldGroup binder = new FieldGroup(item); -binder.bindMemberFields(form); - -// And the form can be used in an higher-level layout -layout.addComponent(form); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#datamodel.itembinding.formclass.extended[on-line example, window="_blank"]. - -[[datamodel.itembinding.formclass.customcomponent]] -=== Encapsulating in [classname]#CustomComponent# - -Using a [classname]#CustomComponent# can be better for hiding the implementation -details than extending a layout. Also, the use of the [classname]#FieldGroup# -can be encapsulated in the form class. - -Consider the following as an alternative for the form implementation presented -earlier: - - ----- -// A form component that allows editing an item -class MyForm extends CustomComponent { - // Member that will bind to the "name" property - TextField name = new TextField("Name"); - - // Member that will bind to the "age" property - @PropertyId("age") - TextField ageField = new TextField("Age"); - - public MyForm(Item item) { - FormLayout layout = new FormLayout(); - layout.addComponent(name); - layout.addComponent(ageField); - - // Now use a binder to bind the members - FieldGroup binder = new FieldGroup(item); - binder.bindMemberFields(this); - - setCompositionRoot(layout); - } -} - -// And the form can be used as a component -layout.addComponent(new MyForm(item)); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#datamodel.itembinding.formclass.customcomponent[on-line example, window="_blank"]. - - - -[[datamodel.itembinding.buffering]] -== Buffering Forms - -Just like for individual fields, as described in -<<dummy/../../../framework/components/components-fields#components.fields.buffering,"Field -Buffering">>, a [classname]#FieldGroup# can handle buffering the form content so -that it is written to the item data source only when [methodname]#commit()# is -called for the group. It runs validation for all fields in the group and writes -their values to the item data source only if all fields pass the validation. -Edits can be discarded, so that the field values are reloaded from the data -source, by calling [methodname]#discard()#. Buffering is enabled by default, but -can be disabled by calling [methodname]#setBuffered(false)# for the -[classname]#FieldGroup#. - - ----- -// Have an item of some sort -final PropertysetItem item = new PropertysetItem(); -item.addItemProperty("name", new ObjectProperty<String>("Q")); -item.addItemProperty("age", new ObjectProperty<Integer>(42)); - -// Have some layout and create the fields -Panel form = new Panel("Buffered Form"); -form.setContent(new FormLayout()); - -// Build and bind the fields using the default field factory -final FieldGroup binder = new FieldGroup(item); -form.addComponent(binder.buildAndBind("Name", "name")); -form.addComponent(binder.buildAndBind("Age", "age")); - -// Enable buffering (actually enabled by default) -binder.setBuffered(true); - -// A button to commit the buffer -form.addComponent(new Button("OK", new ClickListener() { - @Override - public void buttonClick(ClickEvent event) { - try { - binder.commit(); - Notification.show("Thanks!"); - } catch (CommitException e) { - Notification.show("You fail!"); - } - } -})); - -// A button to discard the buffer -form.addComponent(new Button("Discard", new ClickListener() { - @Override - public void buttonClick(ClickEvent event) { - binder.discard(); - Notification.show("Discarded!"); - } -})); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#datamodel.itembinding.formclass.customcomponent[on-line example, window="_blank"]. - - -[[datamodel.itembinding.beans]] -== Binding Fields to a Bean - -The [classname]#BeanFieldGroup# makes it easier to bind fields to a bean. It -also handles binding to nested beans properties. The build a field bound to a -nested bean property, identify the property with dot notation. For example, if a -[classname]#Person# bean has a [literal]#++address++# property with an -[classname]#Address# type, which in turn has a [literal]#++street++# property, -you could build a field bound to the property with -[methodname]#buildAndBind("Street", "address.street")#. - -The input to fields bound to a bean can be validated using the Java Bean -Validation API, as described in <<datamodel.itembinding.beanvalidation>>. The -[classname]#BeanFieldGroup# automatically adds a [classname]#BeanValidator# to -every field if a bean validation implementation is included in the classpath. - - -[[datamodel.itembinding.beanvalidation]] -== Bean Validation - -Vaadin allows using the Java Bean Validation API 1.0 (JSR-303) for validating -input from fields bound to bean properties before the values are committed to -the bean. The validation is done based on annotations on the bean properties, -which are used for creating the actual validators automatically. See -<<dummy/../../../framework/components/components-fields#components.fields.validation,"Field -Validation">> for general information about validation. - -Using bean validation requires an implementation of the Bean Validation API, -such as Hibernate Validator ( [filename]#hibernate-validator-4.2.0.Final.jar# or -later) or Apache Bean Validation. The implementation JAR must be included in the -project classpath when using the bean validation, or otherwise an internal error -is thrown. - -Bean validation is especially useful when persisting entity beans with the -Vaadin JPAContainer, described in -<<dummy/../../../framework/jpacontainer/jpacontainer-overview.asciidoc#jpacontainer.overview,"Vaadin -JPAContainer">>. - -[[datamodel.itembinding.beanvalidation.annotations]] -=== Annotations - -The validation constraints are defined as annotations. For example, consider the -following bean: - - ----- -// Here is a bean -public class Person implements Serializable { - @NotNull - @javax.validation.constraints.Size(min=2, max=10) - String name; - - @Min(1) - @Max(130) - int age; - - // ... setters and getters ... -} ----- - -For a complete list of allowed constraints for different data types, please see -the link:http://docs.oracle.com/javaee/6/tutorial/doc/gircz.html[Bean Validation -API documentation]. - - -[[datamodel.itembinding.beanvalidation.validating]] -=== Validating the Beans - -Validating a bean is done with a [classname]#BeanValidator#, which you -initialize with the name of the bean property it should validate and add it the -the editor field. - -In the following example, we validate a single unbuffered field: - - ----- -Person bean = new Person("Mung bean", 100); -BeanItem<Person> item = new BeanItem<Person> (bean); - -// Create an editor bound to a bean field -TextField firstName = new TextField("First Name", - item.getItemProperty("name")); - -// Add the bean validator -firstName.addValidator(new BeanValidator(Person.class, "name")); - -firstName.setImmediate(true); -layout.addComponent(firstName); ----- - -In this case, the validation is done immediately after focus leaves the field. -You could do the same for the other field as well. - -Bean validators are automatically created when using a -[classname]#BeanFieldGroup#. - - ----- -// Have a bean -Person bean = new Person("Mung bean", 100); - -// Form for editing the bean -final BeanFieldGroup<Person> binder = - new BeanFieldGroup<Person>(Person.class); -binder.setItemDataSource(bean); -layout.addComponent(binder.buildAndBind("Name", "name")); -layout.addComponent(binder.buildAndBind("Age", "age")); - -// Buffer the form content -binder.setBuffered(true); -layout.addComponent(new Button("OK", new ClickListener() { - @Override - public void buttonClick(ClickEvent event) { - try { - binder.commit(); - } catch (CommitException e) { - } - } -})); ----- - - -[[datamodel.itembinding.beanvalidation.locale]] -=== Locale Setting for Bean Validation - -The validation error messages are defined in the bean validation implementation, -in a [filename]#ValidationMessages.properties# file. The message is shown in the -language specified with the locale setting for the form. The default language is -English, but for example Hibernate Validator contains translations of the -messages for a number of languages. If other languages are needed, you need to -provide a translation of the properties file. - - - - - diff --git a/documentation/datamodel/datamodel-items.asciidoc b/documentation/datamodel/datamodel-items.asciidoc deleted file mode 100644 index 75a7c1ecf8..0000000000 --- a/documentation/datamodel/datamodel-items.asciidoc +++ /dev/null @@ -1,194 +0,0 @@ ---- -title: Holding properties in Items -order: 3 -layout: page ---- - -[[datamodel.items]] -= Holding properties in Items - -The [classname]#Item# interface provides access to a set of named properties. -Each property is identified by a __property identifier__ (PID) and a reference -to such a property can be queried from an [classname]#Item# with -[methodname]#getItemProperty()# using the identifier. - -Examples on the use of items include rows in a [classname]#Table#, with the -properties corresponding to table columns, nodes in a [classname]#Tree#, and the -the data bound to a [classname]#Form#, with item's properties bound to -individual form fields. - -Items are generally equivalent to objects in the object-oriented model, but with -the exception that they are configurable and provide an event handling -mechanism. The simplest way to utilize [classname]#Item# interface is to use -existing implementations. Provided utility classes include a configurable -property set ( [classname]#PropertysetItem#) and a bean-to-item adapter ( -[classname]#BeanItem#). Also, a [classname]#Form# implements the interface and -can therefore be used directly as an item. - -In addition to being used indirectly by many user interface components, items -provide the basic data model underlying the [classname]#Form# component. In -simple cases, forms can even be generated automatically from items. The -properties of the item correspond to the fields of the form. - -The [classname]#Item# interface defines inner interfaces for maintaining the -item property set and listening changes made to it. -[classname]#PropertySetChangeEvent# events can be emitted by a class -implementing the [classname]#PropertySetChangeNotifier# interface. They can be -received through the [classname]#PropertySetChangeListener# interface. - -ifdef::web[] -[[datamodel.items.propertysetitem]] -== The [classname]#PropertysetItem# Implementation - -The [classname]#PropertysetItem# is a generic implementation of the -[classname]#Item# interface that allows storing properties. The properties are -added with [methodname]#addItemProperty()#, which takes a name and the property -as parameters. - -The following example demonstrates a typical case of collecting -[classname]#ObjectProperty# properties in an item: - - ----- -PropertysetItem item = new PropertysetItem(); -item.addItemProperty("name", new ObjectProperty("Zaphod")); -item.addItemProperty("age", new ObjectProperty(42)); - -// Bind it to a component -Form form = new Form(); -form.setItemDataSource(item); ----- - -endif::web[] - -[[datamodel.items.beanitem]] -== Wrapping a Bean in a [classname]#BeanItem# - -The [classname]#BeanItem# implementation of the [classname]#Item# interface is a -wrapper for Java Bean objects. In fact, only the setters and getters are -required while serialization and other bean features are not, so you can wrap -almost any POJOs with minimal requirements. - - ----- -// Here is a bean (or more exactly a POJO) -class Person { - String name; - int age; - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public Integer getAge() { - return age; - } - - public void setAge(Integer age) { - this.age = age.intValue(); - } -} - -// Create an instance of the bean -Person bean = new Person(); - -// Wrap it in a BeanItem -BeanItem<Person> item = new BeanItem<Person>(bean); - -// Bind it to a component -Form form = new Form(); -form.setItemDataSource(item); ----- - -You can use the [methodname]#getBean()# method to get a reference to the -underlying bean. - -[[datamodel.items.beanitem.nested]] -=== Nested Beans - -You may often have composite classes where one class "has a" another class. For -example, consider the following [classname]#Planet# class which "has a" -discoverer: - - ----- -// Here is a bean with two nested beans -public class Planet implements Serializable { - String name; - Person discoverer; - - public Planet(String name, Person discoverer) { - this.name = name; - this.discoverer = discoverer; - } - - ... getters and setters ... -} - -... -// Create an instance of the bean -Planet planet = new Planet("Uranus", - new Person("William Herschel", 1738)); ----- - -When shown in a [classname]#Form#, for example, you would want to list the -properties of the nested bean along the properties of the composite bean. You -can do that by binding the properties of the nested bean individually with a -[classname]#MethodProperty# or [classname]#NestedMethodProperty#. You should -usually hide the nested bean from binding as a property by listing only the -bound properties in the constructor. - - ----- -// Wrap it in a BeanItem and hide the nested bean property -BeanItem<Planet> item = new BeanItem<Planet>(planet, - new String[]{"name"}); - -// Bind the nested properties. -// Use NestedMethodProperty to bind using dot notation. -item.addItemProperty("discoverername", - new NestedMethodProperty(planet, "discoverer.name")); - -// The other way is to use regular MethodProperty. -item.addItemProperty("discovererborn", - new MethodProperty<Person>(planet.getDiscoverer(), - "born")); ----- - -The difference is that [classname]#NestedMethodProperty# does not access the -nested bean immediately but only when accessing the property values, while when -using [classname]#MethodProperty# the nested bean is accessed when creating the -method property. The difference is only significant if the nested bean can be -null or be changed later. - -You can use such a bean item for example in a [classname]#Form# as follows: - - ----- -// Bind it to a component -Form form = new Form(); -form.setItemDataSource(item); - -// Nicer captions -form.getField("discoverername").setCaption("Discoverer"); -form.getField("discovererborn").setCaption("Born"); ----- - -[[figure.datamodel.items.beanitem.nested]] -.A [classname]#Form# with Nested Bean Properties -image::img/beanitem-nested-beans.png[] - -The [classname]#BeanContainer# and [classname]#BeanItemContainer# allow easy -definition of nested bean properties with -[methodname]#addNestedContainerProperty()#, as described in -<<dummy/../../../framework/datamodel/datamodel-container#datamodel.container.beancontainer.nestedproperties,"Nested -Properties">>. - - - - - diff --git a/documentation/datamodel/datamodel-overview.asciidoc b/documentation/datamodel/datamodel-overview.asciidoc deleted file mode 100644 index 95209e0b76..0000000000 --- a/documentation/datamodel/datamodel-overview.asciidoc +++ /dev/null @@ -1,72 +0,0 @@ ---- -title: Overview -order: 1 -layout: page ---- - -[[datamodel.overview]] -= Overview - -The Vaadin Data Model is one of the core concepts of the library. To allow the -view (user interface components) to access the data model of an application -directly, we have introduced a standard data interface. - -The model allows binding user interface components directly to the data that -they display and possibly allow to edit. There are three nested levels of -hierarchy in the data model: __property__, __item__, and __container__. Using a -spreadsheet application as an analogy, these would correspond to a cell, a row, -and a table, respectively. - -.Vaadin Data Model -image::img/datamodel-whitebg.png[] - -The Data Model is realized as a set of interfaces in the -[classname]#com.vaadin.data# package. The package contains the -[classname]#Property#, [classname]#Item#, and [classname]#Container# interfaces, -along with a number of more specialized interfaces and classes. - -Notice that the Data Model does not define data representation, but only -interfaces. This leaves the representation fully to the implementation of the -containers. The representation can be almost anything, such as a plain old Java -object (POJO) structure, a filesystem, or a database query. - -The Data Model is used heavily in the core user interface components of Vaadin, -especially the field components, that is, components that implement the -[classname]#Field# interface or more typically extend -[classname]#AbstractField#, which defines many common features. A key feature of -all the built-in field components is that they can either maintain their data by -themselves or be bound to an external data source. The value of a field is -always available through the [classname]#Property# interface. As more than one -component can be bound to the same data source, it is easy to implement various -viewer-editor patterns. - -The relationships of the various interfaces are shown in -<<figure.datamodel.overview.relationships>>; the value change event and listener -interfaces are shown only for the [classname]#Property# interface, while the -notifier interfaces are omitted altogether. - -[[figure.datamodel.overview.relationships]] -.Interface Relationships in Vaadin Data Model -image::img/datamodel-interfaces-hi.png[] - -The Data Model has many important and useful features, such as support for -change notification. Especially containers have many helper interfaces, -including ones that allow indexing, ordering, sorting, and filtering the data. -Also [classname]#Field# components provide a number of features involving the -data model, such as buffering, validation, and lazy loading. - -Vaadin provides a number of built-in implementations of the data model -interfaces. The built-in implementations are used as the default data models in -many field components. - -In addition to the built-in implementations, many data model implementations, -such as containers, are available as add-ons, either from the Vaadin Directory -or from independent sources. Both commercial and free implementations exist. The -JPAContainer, described in -<<dummy/../../../framework/jpacontainer/jpacontainer-overview.asciidoc#jpacontainer.overview,"Vaadin -JPAContainer">>, is the most often used conmmercial container add-on. The -installation of add-ons is described in -<<dummy/../../../framework/addons/addons-overview.asciidoc#addons.overview,"Using -Vaadin Add-ons">>. Notice that unlike with most regular add-on components, you -do not need to compile a widget set for add-ons that include just data model -implementations. diff --git a/documentation/datamodel/datamodel-properties.asciidoc b/documentation/datamodel/datamodel-properties.asciidoc deleted file mode 100644 index d5d0d3e39d..0000000000 --- a/documentation/datamodel/datamodel-properties.asciidoc +++ /dev/null @@ -1,399 +0,0 @@ ---- -title: Properties -order: 2 -layout: page ---- - -[[datamodel.properties]] -= Properties - -The [interfacename]#Property# interface is the base of the Vaadin Data Model. It -provides a standardized API for a single data value object that can be read -(get) and written (set). A property is always typed, but can optionally support -data type conversions. The type of a property can be any Java class. Optionally, -properties can provide value change events for following their changes. - -You can set the value of a property with [methodname]#setValue()# and read with -[methodname]#getValue()#. - -In the following, we set and read the property value from a -[classname]#TextField# component, which implements the [interfacename]#Property# -interface to allow accessing the field value. - - ----- -final TextField tf = new TextField("Name"); - -// Set the value -tf.setValue("The text field value"); - -// When the field value is edited by the user -tf.addValueChangeListener( - new Property.ValueChangeListener() { - public void valueChange(ValueChangeEvent event) { - // Do something with the new value - layout.addComponent(new Label(tf.getValue())); - } -}); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#datamodel.properties.basic[on-line example, window="_blank"]. - -Changes in the property value usually fire a [classname]#ValueChangeEvent#, -which can be handled with a [classname]#ValueChangeListener#. The event object -provides reference to the property with [methodname]#getProperty()#. Note that -its [methodname]#getValue()# method returns the value with [classname]#Object# -type, so you need to cast it to the proper type. - -Properties are in themselves unnamed. They are collected in __items__, which -associate the properties with names: the __Property Identifiers__ or __PID__s. -Items can be further contained in containers and are identified with __Item -Identifiers__ or __IID__s. In the spreadsheet analogy, __Property Identifiers__ -would correspond to column names and __Item Identifiers__ to row names. The -identifiers can be arbitrary objects, but must implement the -[methodname]#equals(Object)# and [methodname]#hashCode()# methods so that they -can be used in any standard Java [classname]#Collection#. - -The [classname]#Property# interface can be utilized either by implementing the -interface or by using some of the built-in property implementations. Vaadin -includes a [classname]#Property# interface implementation for arbitrary function -pairs and bean properties, with the [classname]#MethodProperty# class, and for -simple object properties, with the [classname]#ObjectProperty# class, as -described later. - -In addition to the simple components, selection components provide their current -selection as the property value. In single selection mode, the property is a -single item identifier, while in multiple selection mode it is a set of item -identifiers. See the documentation of the selection components for further -details. - -Components that can be bound to a property have an internal default data source -object, typically a [classname]#ObjectProperty#, which is described later. As -all such components are viewers or editors, also described later, so you can -rebind a component to any data source with -[methodname]#setPropertyDataSource()#. - -[[datamodel.properties.viewers]] -== Property Viewers and Editors - -The most important function of the [classname]#Property# as well as of the other -data model interfaces is to connect classes implementing the interface directly -to editor and viewer classes. This means connecting a data source (model) to a -user interface component (views) to allow editing or viewing the data model. - -A property can be bound to a component implementing the [classname]#Viewer# -interface with [methodname]#setPropertyDataSource()#. - - ----- -// Have a data model -ObjectProperty property = - new ObjectProperty("Hello", String.class); - -// Have a component that implements Viewer -Label viewer = new Label(); - -// Bind it to the data -viewer.setPropertyDataSource(property); ----- - -You can use the same method in the [classname]#Editor# interface to bind a -component that allows editing a particular property type to a property. - - ----- -// Have a data model -ObjectProperty property = - new ObjectProperty("Hello", String.class); - -// Have a component that implements Viewer -TextField editor = new TextField("Edit Greeting"); - -// Bind it to the data -editor.setPropertyDataSource(property); - ----- - -As all field components implement the [classname]#Property# interface, you can -bind any component implementing the [classname]#Viewer# interface to any field, -assuming that the viewer is able the view the object type of the field. -Continuing from the above example, we can bind a [classname]#Label# to the -[classname]#TextField# value: - - ----- -Label viewer = new Label(); -viewer.setPropertyDataSource(editor); - -// The value shown in the viewer is updated immediately -// after editing the value in the editor (once it -// loses the focus) -editor.setImmediate(true); ----- - -If a field has validators, as described in -<<dummy/../../../framework/components/components-fields#components.fields.validation,"Field -Validation">>, the validators are executed before writing the value to the -property data source, or by calling the [methodname]#validate()# or -[methodname]#commit()# for the field. - - -[[datamodel.properties.objectproperty]] -== [classname]#ObjectProperty# Implementation - -The [classname]#ObjectProperty# class is a simple implementation of the -[classname]#Property# interface that allows storing an arbitrary Java object. - - ----- -// Have a component that implements Viewer interface -final TextField tf = new TextField("Name"); - -// Have a data model with some data -String myObject = "Hello"; - -// Wrap it in an ObjectProperty -ObjectProperty property = - new ObjectProperty(myObject, String.class); - -// Bind the property to the component -tf.setPropertyDataSource(property); ----- - - -[[datamodel.properties.converter]] -== Converting Between Property Type and Representation - -Fields allow editing a certain type, such as a [classname]#String# or -[classname]#Date#. The bound property, on the other hand, could have some -entirely different type. Conversion between a representation edited by the field -and the model defined in the property is handler with a converter that -implements the [interfacename]#Converter# interface. - -Most common type conversions, such as between string and integer, are handled by -the default converters. They are created in a converter factory global in the -application. - -[[datamodel.properties.converter.basic]] -=== Basic Use of Converters - -The [methodname]#setConverter([interfacename]#Converter#)# method sets the -converter for a field. The method is defined in [classname]#AbstractField#. - - ----- -// Have an integer property -final ObjectProperty<Integer> property = - new ObjectProperty<Integer>(42); - -// Create a TextField, which edits Strings -final TextField tf = new TextField("Name"); - -// Use a converter between String and Integer -tf.setConverter(new StringToIntegerConverter()); - -// And bind the field -tf.setPropertyDataSource(property); ----- - -The built-in converters are the following: - -[[datamodel.properties.converter.basic.built-in]] -.Built-in Converters -[options="header"] -|=============== -|Converter|Representation|Model -|[classname]#StringToIntegerConverter#|[classname]#String#|[classname]#Integer# -|[classname]#StringToDoubleConverter#|[classname]#String#|[classname]#Double# -|[classname]#StringToNumberConverter#|[classname]#String#|[classname]#Number# -|[classname]#StringToBooleanConverter#|[classname]#String#|[classname]#Boolean# -|[classname]#StringToDateConverter#|[classname]#String#|[classname]#Date# -|[classname]#DateToLongConverter#|[classname]#Date#|[classname]#Long# - -|=============== - - - -In addition, there is a [classname]#ReverseConverter# that takes a converter as -a parameter and reverses the conversion direction. - -If a converter already exists for a type, the -[methodname]#setConverter([interfacename]#Class#)# retrieves the converter for -the given type from the converter factory, and then sets it for the field. This -method is used implicitly when binding field to a property data source. - - -[[datamodel.properties.converter.custom]] -=== Implementing a Converter - -A conversion always occurs between a __representation type__, edited by the -field component, and a __model type__, that is, the type of the property data -source. Converters implement the [interfacename]#Converter# interface defined in -the [package]#com.vaadin.data.util.converter# package. - -For example, let us assume that we have a simple [classname]#Complex# type for -storing complex values. - - ----- -public class ComplexConverter - implements Converter<String, Complex> { - @Override - public Complex convertToModel(String value, Locale locale) - throws ConversionException { - String parts[] = - value.replaceAll("[\\(\\)]", "").split(","); - if (parts.length != 2) - throw new ConversionException( - "Unable to parse String to Complex"); - return new Complex(Double.parseDouble(parts[0]), - Double.parseDouble(parts[1])); - } - - @Override - public String convertToPresentation(Complex value, - Locale locale) - throws ConversionException { - return "("+value.getReal()+","+value.getImag()+")"; - } - - @Override - public Class<Complex> getModelType() { - return Complex.class; - } - - @Override - public Class<String> getPresentationType() { - return String.class; - } -} ----- - -The conversion methods get the locale for the conversion as a parameter. - - -[[datamodel.properties.converter.converterfactory]] -=== Converter Factory - -If a field does not directly allow editing a property type, a default converter -is attempted to create using an application-global converter factory. If you -define your own converters that you wish to include in the converter factory, -you need to implement one yourself. While you could implement the -[interfacename]#ConverterFactory# interface, it is usually easier to just extend -[classname]#DefaultConverterFactory#. - - ----- -class MyConverterFactory extends DefaultConverterFactory { - @Override - public <PRESENTATION, MODEL> Converter<PRESENTATION, MODEL> - createConverter(Class<PRESENTATION> presentationType, - Class<MODEL> modelType) { - // Handle one particular type conversion - if (String.class == presentationType && - Complex.class == modelType) - return (Converter<PRESENTATION, MODEL>) - new ComplexConverter(); - - // Default to the supertype - return super.createConverter(presentationType, - modelType); - } -} - -// Use the factory globally in the application -Application.getCurrentApplication().setConverterFactory( - new MyConverterFactory()); ----- - - - -ifdef::web[] -[[datamodel.properties.implementing]] -== Implementing the [classname]#Property# Interface - -Implementation of the [classname]#Property# interface requires defining setters -and getters for the value and the __read-only__ mode. Only a getter is needed -for the property type, as the type is often fixed in property implementations. - -The following example shows a simple implementation of the [classname]#Property# -interface: - - ----- -class MyProperty implements Property { - Integer data = 0; - boolean readOnly = false; - - // Return the data type of the model - public Class<?> getType() { - return Integer.class; - } - - public Object getValue() { - return data; - } - - // Override the default implementation in Object - @Override - public String toString() { - return Integer.toHexString(data); - } - - public boolean isReadOnly() { - return readOnly; - } - - public void setReadOnly(boolean newStatus) { - readOnly = newStatus; - } - - public void setValue(Object newValue) - throws ReadOnlyException, ConversionException { - if (readOnly) - throw new ReadOnlyException(); - - // Already the same type as the internal representation - if (newValue instanceof Integer) - data = (Integer) newValue; - - // Conversion from a string is required - else if (newValue instanceof String) - try { - data = Integer.parseInt((String) newValue, 16); - } catch (NumberFormatException e) { - throw new ConversionException(); - } - else - // Don't know how to convert any other types - throw new ConversionException(); - - // Reverse decode the hexadecimal value - } -} - -// Instantiate the property and set its data -MyProperty property = new MyProperty(); -property.setValue(42); - -// Bind it to a component -final TextField tf = new TextField("Name", property); ----- - -The components get the displayed value by the [methodname]#toString()# method, -so it is necessary to override it. To allow editing the value, value returned in -the [methodname]#toString()# must be in a format that is accepted by the -[methodname]#setValue()# method, unless the property is read-only. The -[methodname]#toString()# can perform any type conversion necessary to make the -internal type a string, and the [methodname]#setValue()# must be able to make a -reverse conversion. - -The implementation example does not notify about changes in the property value -or in the read-only mode. You should normally also implement at least the -[classname]#Property.ValueChangeNotifier# and -[classname]#Property.ReadOnlyStatusChangeNotifier#. See the -[classname]#ObjectProperty# class for an example of the implementation. - -endif::web[] - - - diff --git a/documentation/datamodel/img/beanitem-nested-beans.png b/documentation/datamodel/img/beanitem-nested-beans.png Binary files differdeleted file mode 100644 index ea8c51ccd4..0000000000 --- a/documentation/datamodel/img/beanitem-nested-beans.png +++ /dev/null diff --git a/documentation/datamodel/img/beanitemcontainer-nested-beans.png b/documentation/datamodel/img/beanitemcontainer-nested-beans.png Binary files differdeleted file mode 100644 index fbd5fa155a..0000000000 --- a/documentation/datamodel/img/beanitemcontainer-nested-beans.png +++ /dev/null diff --git a/documentation/datamodel/img/datamodel-interfaces-hi.png b/documentation/datamodel/img/datamodel-interfaces-hi.png Binary files differdeleted file mode 100644 index 9bebdb0ac0..0000000000 --- a/documentation/datamodel/img/datamodel-interfaces-hi.png +++ /dev/null diff --git a/documentation/datamodel/img/datamodel-interfaces-lo.png b/documentation/datamodel/img/datamodel-interfaces-lo.png Binary files differdeleted file mode 100644 index 2139cf9f08..0000000000 --- a/documentation/datamodel/img/datamodel-interfaces-lo.png +++ /dev/null diff --git a/documentation/datamodel/img/datamodel-whitebg.png b/documentation/datamodel/img/datamodel-whitebg.png Binary files differdeleted file mode 100644 index 803dd70c08..0000000000 --- a/documentation/datamodel/img/datamodel-whitebg.png +++ /dev/null diff --git a/documentation/datamodel/original-drawings/beanitem-doublebinding.svg b/documentation/datamodel/original-drawings/beanitem-doublebinding.svg deleted file mode 100644 index 509013ab07..0000000000 --- a/documentation/datamodel/original-drawings/beanitem-doublebinding.svg +++ /dev/null @@ -1,1026 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<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"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- sodipodi:docname="beanitem-doublebinding.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="300.01001"
- inkscape:export-ydpi="300.01001"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="4"
- objecttolerance="4"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.2"
- inkscape:cx="458.26878"
- inkscape:cy="757.29383"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1680"
- inkscape:window-height="1026"
- inkscape:window-x="1280"
- inkscape:window-y="0"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="true"
- inkscape:window-maximized="1">
- <inkscape:grid
- snapvisiblegridlinesonly="true"
- dotted="false"
- type="xygrid"
- id="grid4674"
- visible="true"
- enabled="true"
- units="mm"
- empspacing="5"
- spacingx="1mm"
- spacingy="1mm" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path5210" />
- </marker>
- <marker
- inkscape:stockid="DotS"
- orient="auto"
- refY="0"
- refX="0"
- id="DotS"
- style="overflow:visible">
- <path
- id="path3636"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS">
- <path
- transform="scale(0.2,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path3717" />
- </marker>
- <inkscape:path-effect
- effect="skeletal"
- id="path-effect2503"
- prop_scale="1"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- copytype="single_stretched" />
- <inkscape:path-effect
- effect="skeletal"
- id="path-effect2499"
- prop_scale="1" />
- <inkscape:path-effect
- effect="skeletal"
- id="path-effect2497"
- prop_scale="1"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- pattern-nodetypes="cc" />
- <marker
- inkscape:stockid="Arrow1Send"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Send"
- style="overflow:visible">
- <path
- id="path3641"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lend"
- style="overflow:visible">
- <path
- id="path3629"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(-0.8,0,0,-0.8,-10,0)" />
- </marker>
- <inkscape:perspective
- id="perspective3487"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <marker
- inkscape:stockid="Arrow2Sendp"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2Sendp"
- style="overflow:visible">
- <path
- id="path28139"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- transform="matrix(-0.3,0,0,-0.3,0.69,0)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSK"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSK"
- style="overflow:visible">
- <path
- id="path36611"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSH"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSH"
- style="overflow:visible">
- <path
- id="path36614"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSA"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSA"
- style="overflow:visible">
- <path
- id="path36617"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSKF"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSKF"
- style="overflow:visible">
- <path
- id="path36620"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9"
- style="overflow:visible">
- <path
- id="path36623"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="Arrow2SendpA"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2SendpA"
- style="overflow:visible">
- <path
- id="path3396"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- transform="matrix(-0.3,0,0,-0.3,0.69,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow2Sendpg"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2Sendpg"
- style="overflow:visible">
- <path
- id="path3360"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- transform="matrix(-0.3,0,0,-0.3,0.69,0)" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="White Halo"
- id="filter2780">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology2782" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(255,255,255)"
- id="feFlood2786" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite2623" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- in="result4"
- id="feMergeNode2631"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode2633"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- style="overflow:visible"
- id="TriangleOutSn"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSn">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path4441" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9F"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9F">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path4444" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSI"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSI">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path4447" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSO"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSO">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path4450" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSW"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSW">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path4453" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSB"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSB">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path4456" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSZ"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSZ">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path4459" />
- </marker>
- <marker
- inkscape:stockid="DotSq"
- orient="auto"
- refY="0"
- refX="0"
- id="DotSq"
- style="overflow:visible">
- <path
- id="path5853"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSBO"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSBO">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path7501" />
- </marker>
- <marker
- inkscape:stockid="DotSu"
- orient="auto"
- refY="0"
- refX="0"
- id="DotSu"
- style="overflow:visible">
- <path
- id="path9463"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)" />
- </marker>
- <filter
- id="filter10694"
- inkscape:label="Black Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology10696"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood10698"
- flood-color="rgb(0,0,0)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite10700"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode10704"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode10706"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- style="overflow:visible"
- id="TriangleOutSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSu">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path8127" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSI8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSI8">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path8130" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSr"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSr">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path8133" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSM"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSM">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path8136" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSb"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSb">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path8139" />
- </marker>
- <marker
- markerWidth="4.6297302"
- markerHeight="5.7450776"
- orient="auto"
- id="marker18095">
- <g
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)"
- id="g11064">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- id="path11050"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc" />
- <path
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- id="path11035"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </marker>
- <marker
- markerWidth="4.6297355"
- markerHeight="5.7450781"
- orient="auto"
- id="marker44971">
- <g
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)"
- id="g18059">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- id="path18061"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc" />
- <path
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- id="path18063"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </marker>
- <marker
- markerWidth="4.6297302"
- markerHeight="5.7450786"
- orient="auto"
- id="marker52016">
- <g
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)"
- id="g52010">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- id="path52012"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc" />
- <path
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- id="path52014"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </marker>
- <marker
- markerWidth="4.6297255"
- markerHeight="5.745079"
- orient="auto"
- id="marker64887">
- <g
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)"
- id="g64855">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- id="path64857"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- id="path64859"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </marker>
- <marker
- markerWidth="4.6297302"
- markerHeight="5.745079"
- orient="auto"
- id="marker4057">
- <g
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)"
- id="g51986">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- id="path51988"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc" />
- <path
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- id="path51990"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </marker>
- <marker
- markerWidth="4.0334239"
- markerHeight="4.5568175"
- orient="auto"
- id="marker72805">
- <path
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- id="path18057"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </marker>
- <marker
- markerWidth="4.0334177"
- markerHeight="4.5568123"
- orient="auto"
- id="marker72808">
- <path
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- id="path72801"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </marker>
- <marker
- inkscape:stockid="DotSuN"
- orient="auto"
- refY="0"
- refX="0"
- id="DotSuN"
- style="overflow:visible">
- <path
- id="path81580"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- id="perspective3071" />
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- id="perspective3071-3" />
- <marker
- inkscape:stockid="DotSqn"
- orient="auto"
- refY="0"
- refX="0"
- id="DotSqn"
- style="overflow:visible">
- <path
- id="path3825"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1pt;fill:#49c2f1"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)" />
- </marker>
- </defs>
- <metadata
- id="metadata2480">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1">
- <flowRoot
- transform="translate(-0.8858472,0)"
- xml:space="preserve"
- id="flowRoot2485"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"><flowRegion
- id="flowRegion2487"><rect
- id="rect2489"
- width="184.28572"
- height="120"
- x="262.85715"
- y="238.07646"
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- id="g3178"
- transform="translate(-4.4572759,23.214286)" />
- <flowRoot
- transform="translate(-0.8858472,0)"
- xml:space="preserve"
- id="flowRoot8724"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"><flowRegion
- id="flowRegion8726"><rect
- id="rect8728"
- width="29.904507"
- height="22.868153"
- x="39.286312"
- y="752.14441"
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <g
- id="g18053"
- transform="matrix(0.5,0,0,0.5,102.45714,0.7940752)" />
- <g
- transform="translate(-166.83345,55.50466)"
- id="g2630">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect2632"
- width="134.64566"
- height="35.433067"
- x="205.84985"
- y="181.8969"
- ry="3.7880721" />
- <flowRoot
- transform="translate(273.91267,204.25271)"
- id="flowRoot2634"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion2636" /><flowPara
- id="flowPara2638">BeanItem<DaBean></flowPara></flowRoot> <path
- sodipodi:type="arc"
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:2.12598425, 2.12598425;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="path4306"
- sodipodi:cx="487.20471"
- sodipodi:cy="228.54329"
- sodipodi:rx="7.0740213"
- sodipodi:ry="7.0907817"
- d="M 494.27873,228.54329 A 7.0740213,7.0907817 0 1 1 494.27873,228.53995"
- sodipodi:start="0"
- sodipodi:end="6.2827149"
- transform="translate(-214.12137,-46.769087)"
- sodipodi:open="true" />
- </g>
- <g
- transform="translate(-165.25597,-21.834568)"
- id="g3696">
- <rect
- style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3698"
- width="74.409447"
- height="35.43306"
- x="234.86888"
- y="181.8969"
- ry="3.7880721" />
- <flowRoot
- transform="translate(273.91267,204.25271)"
- id="flowRoot3700"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion3702" /><flowPara
- id="flowPara3704">DaBean</flowPara></flowRoot> </g>
- <g
- transform="translate(-208.41219,126.37676)"
- id="g3706">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3708"
- width="74.409447"
- height="35.43306"
- x="234.86888"
- y="181.8969"
- ry="3.7880721" />
- <flowRoot
- transform="translate(273.91267,204.25271)"
- id="flowRoot3710"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion3712" /><flowPara
- id="flowPara3714">Form</flowPara></flowRoot> <path
- sodipodi:type="arc"
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:2.12598425, 2.12598425;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="path4287"
- sodipodi:cx="487.20471"
- sodipodi:cy="228.54329"
- sodipodi:rx="7.0740213"
- sodipodi:ry="7.0907817"
- d="M 494.27873,228.54329 A 7.0740213,7.0907817 0 1 1 494.27873,228.53995"
- sodipodi:start="0"
- sodipodi:end="6.2827149"
- transform="translate(-215.0244,-46.226947)"
- sodipodi:open="true" />
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#DotSqn);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 97.827294,272.83462 L 63.779528,308.26769"
- id="path4290"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g2630" />
- <g
- transform="translate(-123.81342,126.37858)"
- id="g4292">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4294"
- width="74.409447"
- height="35.43306"
- x="234.86888"
- y="181.8969"
- ry="3.7880721" />
- <flowRoot
- transform="translate(273.91267,204.25271)"
- id="flowRoot4296"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion4298" /><flowPara
- id="flowPara4300">Form</flowPara></flowRoot> <path
- sodipodi:type="arc"
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:2.12598425, 2.12598425;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="path4302"
- sodipodi:cx="487.20471"
- sodipodi:cy="228.54329"
- sodipodi:rx="7.0740213"
- sodipodi:ry="7.0907817"
- d="M 494.27873,228.54329 A 7.0740213,7.0907817 0 1 1 494.27873,228.53995"
- sodipodi:start="0"
- sodipodi:end="6.2827149"
- transform="translate(-215.0244,-46.226947)"
- sodipodi:open="true" />
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#DotSqn);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 114.83517,272.83462 L 148.8189,308.26769"
- id="path3716"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g2630" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#DotSqn);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 106.66359,195.49539 L 106.29921,237.40155"
- id="path4304"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g3696" />
- <g
- transform="translate(24.465107,55.919946)"
- id="g4308">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4310"
- width="134.64566"
- height="35.433067"
- x="205.84985"
- y="181.8969"
- ry="3.7880721" />
- <flowRoot
- transform="translate(273.91267,204.25271)"
- id="flowRoot4312"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion4314" /><flowPara
- id="flowPara4316">BeanItem<DaBean></flowPara></flowRoot> <path
- sodipodi:type="arc"
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:2.12598425, 2.12598425;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="path4318"
- sodipodi:cx="487.20471"
- sodipodi:cy="228.54329"
- sodipodi:rx="7.0740213"
- sodipodi:ry="7.0907817"
- d="M 494.27873,228.54329 A 7.0740213,7.0907817 0 1 1 494.27873,228.53995"
- sodipodi:start="0"
- sodipodi:end="6.2827149"
- transform="translate(-214.12137,-46.769087)"
- sodipodi:open="true" />
- </g>
- <g
- transform="translate(96.43882,-21.681466)"
- id="g4320">
- <rect
- style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4322"
- width="74.409447"
- height="35.43306"
- x="234.86888"
- y="181.8969"
- ry="3.7880721" />
- <flowRoot
- transform="translate(273.91267,204.25271)"
- id="flowRoot4324"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion4326" /><flowPara
- id="flowPara4328">DaBean</flowPara></flowRoot> </g>
- <g
- transform="translate(25.457474,125.80388)"
- id="g4330">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4332"
- width="74.409447"
- height="35.43306"
- x="234.86888"
- y="182.48613"
- ry="3.7880721" />
- <flowRoot
- transform="translate(273.91267,204.25271)"
- id="flowRoot4334"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion4336" /><flowPara
- id="flowPara4338">Form</flowPara></flowRoot> <path
- sodipodi:type="arc"
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:2.12598425, 2.12598425;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="path4340"
- sodipodi:cx="487.20471"
- sodipodi:cy="228.54329"
- sodipodi:rx="7.0740213"
- sodipodi:ry="7.0907817"
- d="M 494.27873,228.54329 A 7.0740213,7.0907817 0 1 1 494.27873,228.53995"
- sodipodi:start="0"
- sodipodi:end="6.2827149"
- transform="translate(-215.0244,-46.226947)"
- sodipodi:open="true" />
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#DotSqn);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 297.63779,273.24991 L 297.6378,308.26769"
- id="path4342"
- inkscape:connector-type="polyline" />
- <g
- transform="translate(167.18976,126.38479)"
- id="g4344">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4346"
- width="74.409447"
- height="35.43306"
- x="234.86888"
- y="181.8969"
- ry="3.7880721" />
- <flowRoot
- transform="translate(273.91267,204.25271)"
- id="flowRoot4348"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion4350" /><flowPara
- id="flowPara4352">Form</flowPara></flowRoot> <path
- sodipodi:type="arc"
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:2.12598425, 2.12598425;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="path4354"
- sodipodi:cx="487.20471"
- sodipodi:cy="228.54329"
- sodipodi:rx="7.0740213"
- sodipodi:ry="7.0907817"
- d="M 494.27873,228.54329 A 7.0740213,7.0907817 0 1 1 494.27873,228.53995"
- sodipodi:start="0"
- sodipodi:end="6.2827149"
- transform="translate(-215.0244,-46.226947)"
- sodipodi:open="true" />
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#DotSqn);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 439.37007,273.24991 L 439.37008,308.26769"
- id="path4356"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g4360" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#DotSqn);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 345.76938,197.14849 L 297.63779,237.81684"
- id="path4358"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g4320" />
- <g
- transform="translate(166.19738,55.91995)"
- id="g4360">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4362"
- width="134.64566"
- height="35.433067"
- x="205.84985"
- y="181.8969"
- ry="3.7880721" />
- <flowRoot
- transform="translate(273.91267,204.25271)"
- id="flowRoot4364"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion4366" /><flowPara
- id="flowPara4368">BeanItem<DaBean></flowPara></flowRoot> <path
- sodipodi:type="arc"
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:2.12598425, 2.12598425;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="path4370"
- sodipodi:cx="487.20471"
- sodipodi:cy="228.54329"
- sodipodi:rx="7.0740213"
- sodipodi:ry="7.0907817"
- d="M 494.27873,228.54329 A 7.0740213,7.0907817 0 1 1 494.27873,228.53995"
- sodipodi:start="0"
- sodipodi:end="6.2827149"
- transform="translate(-214.12137,-46.769087)"
- sodipodi:open="true" />
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#DotSqn);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 391.25002,197.14849 L 439.37007,237.81684"
- id="path4372"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g4320" />
- </g>
-</svg>
diff --git a/documentation/datamodel/original-drawings/datamodel-interfaces.svg b/documentation/datamodel/original-drawings/datamodel-interfaces.svg deleted file mode 100644 index 051f60c48d..0000000000 --- a/documentation/datamodel/original-drawings/datamodel-interfaces.svg +++ /dev/null @@ -1,1321 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<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"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.47pre4 r22446"
- sodipodi:docname="datamodel-interfaces.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="300.01001"
- inkscape:export-ydpi="300.01001"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="4"
- objecttolerance="4"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.6970563"
- inkscape:cx="429.28864"
- inkscape:cy="730.78696"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1680"
- inkscape:window-height="1030"
- inkscape:window-x="-4"
- inkscape:window-y="-3"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="true"
- inkscape:window-maximized="1">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false"
- snapvisiblegridlinesonly="true" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- <inkscape:perspective
- id="perspective3071"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective3071-3"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- </defs>
- <metadata
- id="metadata2480">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1">
- <rect
- style="fill:#ffffff;fill-opacity:1;stroke:none"
- id="rect3139"
- width="393.30707"
- height="322.44095"
- x="322.44095"
- y="134.64565"
- ry="3.7880721" />
- <rect
- style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6642"
- width="387.10629"
- height="205.51181"
- x="325.09842"
- y="138.18895"
- ry="3.7880721" />
- <g
- id="g2870"
- transform="translate(176.19402,101.81896)">
- <rect
- ry="3.7880721"
- y="181.8969"
- x="205.84985"
- height="35.433067"
- width="99.212601"
- id="rect2872"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2874"
- transform="translate(255.02722,204.55399)"><flowRegion
- id="flowRegion2876" /><flowPara
- id="flowPara2880">Property</flowPara></flowRoot> </g>
- <g
- id="g5098"
- transform="translate(175.94148,45.126049)">
- <rect
- ry="3.7880721"
- y="181.8969"
- x="205.84985"
- height="35.433067"
- width="99.212601"
- id="rect5100"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot5102"
- transform="translate(254.32934,203.83604)"><flowRegion
- id="flowRegion5104" /><flowPara
- id="flowPara5108">Item</flowPara></flowRoot> </g>
- <g
- id="g3740"
- transform="translate(291.4357,78.274004)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716536"
- width="102.75591"
- id="rect3742"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3744"
- transform="translate(234.16765,246.96275)"><flowRegion
- id="flowRegion3746" /><flowPara
- id="flowPara3750">ValueChangeListener</flowPara></flowRoot> </g>
- <path
- inkscape:connector-type="polyline"
- id="path3776"
- d="M 410.32826,365.0986 371.52155,332.46732"
- style="fill:none;stroke:#d9d9cd;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker44971);display:inline"
- inkscape:connection-start="#g2854" />
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"
- transform="translate(-0.8858472,0)"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="translate(-4.4572759,23.214286)"
- id="g3178" />
- <path
- inkscape:connection-end="#g2870"
- inkscape:connector-type="polyline"
- id="path2882"
- d="m 431.4526,365.0986 0.1426,-45.94968"
- style="fill:none;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker44971);display:inline"
- inkscape:connection-start="#g2854" />
- <path
- inkscape:connection-start="#g2854"
- inkscape:connection-end="#g3740"
- inkscape:connector-type="polyline"
- id="path5048"
- d="m 459.0809,365.0986 52.37273,-33.5171"
- style="fill:none;stroke:#d9d9cd;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker44971);display:inline" />
- <g
- id="g2854"
- transform="translate(222.75553,132.03305)">
- <rect
- ry="3.7880721"
- y="233.06555"
- x="166.12241"
- height="35.433075"
- width="85.039375"
- id="rect2856"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2858"
- transform="translate(207.58709,255.55638)"><flowRegion
- id="flowRegion2860" /><flowPara
- id="flowPara2864">Field</flowPara></flowRoot> </g>
- <path
- inkscape:connection-end="#g2854"
- inkscape:connection-start="#g2802"
- inkscape:connector-type="polyline"
- id="path2868"
- d="m 431.37248,418.96375 0.0128,-18.43207"
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker52016);display:inline" />
- <g
- id="g3752"
- transform="translate(291.4357,58.754809)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716536"
- width="102.75591"
- id="rect3754"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3756"
- transform="translate(233.81083,246.99763)"><flowRegion
- id="flowRegion3758" /><flowPara
- id="flowPara3762">ValueChangeEvent</flowPara></flowRoot> </g>
- <g
- transform="translate(203.72084,210.41373)"
- id="g2802">
- <rect
- ry="3.7880721"
- y="208.55002"
- x="172.42705"
- height="35.93816"
- width="110.42418"
- id="rect2804"
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(226.79094,230.27406)"
- id="flowRoot2806"
- style="font-size:12px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold Italic"
- xml:space="preserve"><flowRegion
- id="flowRegion2808" /><flowPara
- id="flowPara2812">AbstractField</flowPara></flowRoot> </g>
- <g
- id="g5110"
- transform="translate(176.19402,-15.110183)">
- <rect
- ry="3.7880721"
- y="181.8969"
- x="205.84985"
- height="35.433067"
- width="99.212601"
- id="rect5112"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot5114"
- transform="translate(255.50671,204.20613)"><flowRegion
- id="flowRegion5116" /><flowPara
- id="flowPara5120">Container</flowPara></flowRoot> </g>
- <g
- id="g5146"
- transform="translate(152.8407,-40.751695)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716534"
- width="49.6063"
- id="rect5148"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot5150"
- transform="translate(205.92958,247.90652)"><flowRegion
- id="flowRegion5152" /><flowPara
- id="flowPara5156">Editor</flowPara></flowRoot> </g>
- <g
- id="g5158"
- transform="translate(152.8407,-60.67148)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716534"
- width="49.6063"
- id="rect5160"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot5162"
- transform="translate(205.46539,247.16347)"><flowRegion
- id="flowRegion5164" /><flowPara
- id="flowPara5168">Viewer</flowPara></flowRoot> </g>
- <flowRoot
- transform="translate(31.312673,-134.1482)"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:end;line-height:125%;writing-mode:lr-tb;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6644"
- xml:space="preserve"><flowRegion
- id="flowRegion6646"><rect
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:end;line-height:125%;writing-mode:lr-tb;text-anchor:end;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="280.93362"
- x="202.85715"
- height="99.581009"
- width="204.28046"
- id="rect6648" /></flowRegion><flowPara
- id="flowPara6650">Data Model</flowPara></flowRoot> <path
- inkscape:connector-type="polyline"
- id="path6692"
- d="M 491.6841,213.79089 L 491.89141,158.02434"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- sodipodi:nodetypes="cc" />
- <path
- inkscape:connector-type="polyline"
- id="path6694"
- d="M 502.26376,185.75889 L 481.25647,185.38534"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- sodipodi:nodetypes="cc"
- inkscape:connection-end="#g5110"
- inkscape:connection-start="#g6678" />
- <g
- id="g6618"
- transform="translate(319.78215,-86.772082)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716534"
- width="49.6063"
- id="rect6620"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6622"
- transform="translate(207.97695,247.32124)"><flowRegion
- id="flowRegion6624" /><flowPara
- id="flowPara6628">Ordered</flowPara></flowRoot> </g>
- <g
- id="g6666"
- transform="translate(318.4375,-30.492633)">
- <rect
- ry="3.7880721"
- y="236.25572"
- x="183.82626"
- height="17.716536"
- width="58.037571"
- id="rect6668"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6670"
- transform="translate(213.13426,248.56061)"><flowRegion
- id="flowRegion6672" /><flowPara
- id="flowPara6676">Hierarchical</flowPara></flowRoot> </g>
- <path
- inkscape:connector-type="polyline"
- id="path6664"
- d="M 587.09005,157.43667 L 551.87006,157.57777"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- sodipodi:nodetypes="cc"
- inkscape:connection-end="#g6618"
- inkscape:connection-start="#g6606" />
- <g
- id="g6594"
- transform="translate(404.82152,-58.425625)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716534"
- width="49.6063"
- id="rect6596"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6598"
- transform="translate(206.96566,247.31617)"><flowRegion
- id="flowRegion6600" /><flowPara
- id="flowPara6604">Sortable</flowPara></flowRoot> </g>
- <g
- id="g6606"
- transform="translate(404.60844,-87.111921)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716534"
- width="49.6063"
- id="rect6608"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6610"
- transform="translate(207.61263,247.53033)"><flowRegion
- id="flowRegion6612" /><flowPara
- id="flowPara6616">Indexed</flowPara></flowRoot> </g>
- <g
- id="g6678"
- transform="translate(318.4375,-58.83909)">
- <rect
- ry="3.7880721"
- y="236.25572"
- x="183.82626"
- height="17.716536"
- width="58.037571"
- id="rect6680"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6682"
- transform="translate(212.17928,248.64068)"><flowRegion
- id="flowRegion6684" /><flowPara
- id="flowPara6688">Filterable</flowPara></flowRoot> </g>
- <path
- inkscape:connection-end="#g6594"
- inkscape:connector-type="polyline"
- id="path8412"
- d="M 654.63021,185.80396 L 636.90943,185.89549"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- sodipodi:nodetypes="cc" />
- <path
- inkscape:connection-end="#g6606"
- inkscape:connector-type="polyline"
- id="path8414"
- d="M 654.63021,156.98779 L 636.69635,157.13446"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- sodipodi:nodetypes="cc" />
- <path
- inkscape:connection-end="#g6666"
- inkscape:connector-type="polyline"
- id="path8416"
- d="M 570.52478,251.85959 L 540.61753,223.47962"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- sodipodi:nodetypes="cc" />
- <path
- inkscape:connection-end="#g6678"
- inkscape:connection-start="#g8396"
- inkscape:connector-type="polyline"
- id="path8418"
- d="M 591.82037,209.3064 L 554.56632,195.13317"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- sodipodi:nodetypes="cc" />
- <g
- id="g8396"
- transform="translate(374.07349,27.409503)">
- <rect
- ry="3.7880721"
- y="181.8969"
- x="205.84985"
- height="35.433071"
- width="116.92914"
- id="rect8398"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- sodipodi:linespacing="125%"
- id="text8408"
- y="203.15674"
- x="265.04974"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="203.15674"
- x="265.04974"
- id="tspan8410"
- sodipodi:role="line">IndexedContainer</tspan></text>
- </g>
- <path
- inkscape:connection-start="#g8420"
- inkscape:connection-end="#g8396"
- inkscape:connector-type="polyline"
- id="path8430"
- d="M 638.55893,251.82608 L 638.51007,244.73947"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
- <g
- id="g8420"
- transform="translate(452.31943,69.929187)">
- <rect
- ry="3.7880721"
- y="181.8969"
- x="117.26717"
- height="35.433071"
- width="138.18898"
- id="rect8422"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- sodipodi:linespacing="125%"
- id="text8424"
- y="203.15674"
- x="185.59758"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="203.15674"
- x="185.59758"
- id="tspan8426"
- sodipodi:role="line">HierarchicalContainer</tspan></text>
- </g>
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"
- transform="translate(-0.8858472,0)"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <path
- sodipodi:open="true"
- transform="translate(-55.807094,-1.7674908)"
- sodipodi:end="6.2827149"
- sodipodi:start="0"
- d="M 494.29133,228.54329 A 7.0866146,7.0907812 0 1 1 494.29133,228.53995"
- sodipodi:ry="7.0907812"
- sodipodi:rx="7.0866146"
- sodipodi:cy="228.54329"
- sodipodi:cx="487.20471"
- id="path54937"
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:2.12598425, 2.12598425;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- sodipodi:type="arc" />
- <path
- inkscape:connector-type="polyline"
- id="path5172"
- d="M 431.5759,202.21978 L 431.47191,227.02295"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#DotSq);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g5110"
- inkscape:connection-end="#g5098" />
- <path
- sodipodi:open="true"
- transform="translate(-55.612376,55.132734)"
- sodipodi:end="6.2827149"
- sodipodi:start="0"
- d="M 494.27873,228.54329 A 7.0740213,7.0907817 0 1 1 494.27873,228.53995"
- sodipodi:ry="7.0907817"
- sodipodi:rx="7.0740213"
- sodipodi:cy="228.54329"
- sodipodi:cx="487.20471"
- id="path54939"
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:2.12598425, 2.12598425;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- sodipodi:type="arc" />
- <path
- inkscape:connector-type="polyline"
- id="path6576"
- d="M 431.47655,262.45601 L 431.57126,283.71586"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#DotSq);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-start="#g5098"
- inkscape:connection-end="#g2870" />
- <path
- inkscape:connection-start="#g6618"
- inkscape:connector-type="polyline"
- id="path55678"
- d="M 502.26376,157.92341 L 492.09872,158.02434"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- sodipodi:nodetypes="cc" />
- <path
- inkscape:connection-start="#g6666"
- inkscape:connector-type="polyline"
- id="path55680"
- d="M 502.26376,213.86481 L 491.47679,213.58358"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- sodipodi:nodetypes="cc" />
- <path
- id="path55688"
- d="M 587.30314,184.25195 L 576.67322,184.25195 L 576.67322,155.90549"
- style="fill:none;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:2.83464575;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cc"
- id="path55690"
- d="M 654.62597,209.0551 L 654.62597,155.90549"
- style="fill:none;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:2.83464575;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#d9d9cd;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot59412"
- transform="translate(439.65072,221.68981)"><flowRegion
- id="flowRegion59414" /><flowPara
- id="flowPara59418">n</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#d9d9cd;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot59420"
- transform="translate(439.65072,278.97199)"><flowRegion
- id="flowRegion59422" /><flowPara
- id="flowPara59426">n</flowPara></flowRoot> <g
- transform="matrix(0.5,0,0,0.5,102.45714,0.7940752)"
- id="g18053" />
- <text
- id="text80346"
- y="324.81149"
- x="393.58478"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- id="tspan80354"
- y="324.81149"
- x="393.58478"
- sodipodi:role="line">setValue()</tspan><tspan
- id="tspan80365"
- y="332.31149"
- x="393.58478"
- sodipodi:role="line">getValue()</tspan></text>
- <text
- id="text116490"
- y="209.0551"
- x="439.94095"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="209.0551"
- x="439.94095"
- id="tspan116492"
- sodipodi:role="line"
- style="font-size:8px;font-style:oblique;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:FreeSans;-inkscape-font-specification:FreeSans Oblique">addItem()</tspan></text>
- <text
- id="text116494"
- y="269.43359"
- x="440.29276"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="269.43359"
- x="440.29276"
- id="tspan116496"
- sodipodi:role="line"
- style="font-size:8px;font-style:oblique;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:FreeSans;-inkscape-font-specification:FreeSans Oblique">addItemProperty()</tspan></text>
- <text
- id="text5081"
- y="337.70709"
- x="523.63373"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="337.70709"
- x="523.63373"
- id="tspan5083"
- sodipodi:role="line"
- style="font-size:8px;font-style:oblique;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:FreeSans;-inkscape-font-specification:FreeSans Oblique">valueChange()</tspan></text>
- <g
- id="g5146-3"
- transform="translate(152.8407,19.844568)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716534"
- width="49.6063"
- id="rect5148-7"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot5150-4"
- transform="translate(205.92958,247.90652)"><flowRegion
- id="flowRegion5152-5" /><flowPara
- id="flowPara5156-2">Editor</flowPara></flowRoot> </g>
- <g
- id="g5158-5"
- transform="translate(152.8407,-0.0752115)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716534"
- width="49.6063"
- id="rect5160-4"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot5162-7"
- transform="translate(205.46539,247.16347)"><flowRegion
- id="flowRegion5164-4" /><flowPara
- id="flowPara5168-4">Viewer</flowPara></flowRoot> </g>
- <g
- id="g5146-0"
- transform="translate(152.8407,79.657004)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716534"
- width="49.6063"
- id="rect5148-78"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot5150-6"
- transform="translate(205.92958,247.90652)"><flowRegion
- id="flowRegion5152-8" /><flowPara
- id="flowPara5156-8">Editor</flowPara></flowRoot> </g>
- <g
- id="g5158-4"
- transform="translate(152.8407,59.737224)">
- <rect
- ry="3.7880721"
- y="235.59096"
- x="182.48161"
- height="17.716534"
- width="49.6063"
- id="rect5160-3"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot5162-1"
- transform="translate(205.46539,247.16347)"><flowRegion
- id="flowRegion5164-49" /><flowPara
- id="flowPara5168-2">Viewer</flowPara></flowRoot> </g>
- </g>
-</svg>
diff --git a/documentation/getting-started/chapter-getting-started.asciidoc b/documentation/getting-started/chapter-getting-started.asciidoc deleted file mode 100644 index 9705f0a966..0000000000 --- a/documentation/getting-started/chapter-getting-started.asciidoc +++ /dev/null @@ -1,27 +0,0 @@ -[[getting-started]] -== Getting Started with Vaadin - -This chapter gives practical instructions for installing the recommended -toolchain, the Vaadin libraries and its dependencies, and creating a new Vaadin -project. - - -include::getting-started-overview.asciidoc[leveloffset=+2] - -include::getting-started-environment.asciidoc[leveloffset=+2] - -include::getting-started-libraries.asciidoc[leveloffset=+2] - -include::getting-started-eclipse.asciidoc[leveloffset=+2] - -include::getting-started-first-project.asciidoc[leveloffset=+2] - -include::getting-started-maven.asciidoc[leveloffset=+2] - -include::getting-started-netbeans.asciidoc[leveloffset=+2] - -include::getting-started-idea.asciidoc[leveloffset=+2] - -include::getting-started-package.asciidoc[leveloffset=+2] - -include::getting-started-scala.asciidoc[leveloffset=+2] diff --git a/documentation/getting-started/getting-started-eclipse.asciidoc b/documentation/getting-started/getting-started-eclipse.asciidoc deleted file mode 100644 index a380701d6f..0000000000 --- a/documentation/getting-started/getting-started-eclipse.asciidoc +++ /dev/null @@ -1,120 +0,0 @@ ---- -title: Vaadin Plugin for Eclipse -order: 4 -layout: page ---- - -[[getting-started.eclipse]] -= Vaadin Plugin for Eclipse - -If you are using the Eclipse IDE, using the Vaadin Plugin for Eclipse helps -greatly. The plugin includes wizards for creating new Vaadin-based projects, -themes, and client-side widgets and widget sets. Notice that you can also create -Vaadin projects as Maven projects in Eclipse. - -[[getting-started.eclipse.vaadin-plugin]] -== Installing the Vaadin Plugin - -You can install the plugin as follows: - -. Select "Help > Install New Software...". - -. Add the Vaadin plugin update site by clicking [guibutton]#Add...# button. - -+ -image::img/plugin-install-addsite.png[] - -+ -Enter a name such as "Vaadin Update Site" and the URL of the update site: -http://vaadin.com/eclipse. If you want or need to use the latest unstable -plugin, which is usually more compatible with development and beta releases of -Vaadin, you can use http://vaadin.com/eclipse/experimental and give it a -distinctive name such as "Vaadin Experimental Site". Then click [guibutton]#OK#. -The Vaadin site should now appear in the [guilabel]#Available Software# window. - -. Currently, if using the stable plugin, the [guilabel]#Group items by category# should be enabled. If using the experimental plugin, it should be disabled. This may change in future. -. Select all the Vaadin plugins in the tree. - -+ -image::img/plugin-install-available.png[] - -+ -Then, click [guibutton]#Next#. - -. Review the installation details and click [guibutton]#Next#. - -. Accept or unaccept the license. Finally, click [guibutton]#Finish#. - -. After the plugin is installed, Eclipse will ask to restart itself. Click -[guibutton]#Restart#. - - -More installation instructions for the Eclipse plugin can be found at -http://vaadin.com/eclipse. - - -[[getting-started.eclipse.update]] -== Updating the Plugins - -If you have automatic updates enabled in Eclipse (see "Window > Preferences > -Install/Update > Automatic Updates"), the Vaadin plugin will be updated -automatically along with other plugins. Otherwise, you can update the Vaadin -plugin manually as follows: - -. Select "Help > Check for Updates". Eclipse will contact the update sites of the -installed software. - -. After the updates are installed, Eclipse will ask to restart itself. Click -[guibutton]#Restart#. - - -Notice that updating the Vaadin plugin updates only the plugin and __not__ the -Vaadin libraries, which are project specific. See below for instructions for -updating the libraries. - - -[[getting-started.eclipse.libraryupdate]] -== Updating the Vaadin Libraries - -Updating the Vaadin plugin does not update Vaadin libraries. The libraries are -project specific, as a different version might be required for different -projects, so you have to update them separately for each project. - -. Open the [filename]#ivy.xml# in an editor in Eclipse. - -. Edit the entity definition at the beginning of the file to set the Vaadin -version. - - -+ -[subs="normal"] ----- -<!ENTITY vaadin.version "**7.x.x**"> ----- -+ -You can specify either a fixed version number, as shown in the above example, or -a dynamic revision tag such as [literal]#++latest.release++#. You can find more -information about the dependency declarations in Ivy documentation. - -. Right-click the project and select "Ivy > Resolve". - -+ -Updating the libraries can take several minutes. You can see the progress in the -Eclipse status bar. You can get more details about the progress by clicking the -indicator. - -. If you have compiled the widget set for your project, recompile it by clicking -the [guibutton]#Compile Vaadin widgets# button in Eclipse toolbar. - -. Stop the integrated Tomcat (or other server) in Eclipse, clear its caches by -right-clicking the server and selecting Clean as well as Clean Tomcat Work -Directory, and restart it. - - -If you experience problems after updating the libraries, you can try clearing -the Ivy resolution caches by right-clicking the project and selecting "Ivy > -Clean all caches". Then, do the "Ivy > Resolve" and other tasks again. - - - - diff --git a/documentation/getting-started/getting-started-environment.asciidoc b/documentation/getting-started/getting-started-environment.asciidoc deleted file mode 100644 index 118742be38..0000000000 --- a/documentation/getting-started/getting-started-environment.asciidoc +++ /dev/null @@ -1,238 +0,0 @@ ---- -title: Setting up the Development Environment -order: 2 -layout: page ---- - -[[getting-started.environment]] -= Setting up the Development Environment - -This section guides you step-by-step in setting up a reference development -environment. Vaadin supports a wide variety of tools, so you can use any IDE for -writing the code, almost any Java web server for deploying the application, most -web browsers for using it, and any operating system platform supported by Java. - -In this example, we use the following toolchain: - -* Windows, Linux, or Mac OS X -* link:http://www.oracle.com/technetwork/java/javase/downloads/index.html[Oracle Java SE 8] (Java 6 or newer is required) -* link:http://www.eclipse.org/downloads/[Eclipse IDE for Java EE Developers] -* link:http://tomcat.apache.org/[Apache Tomcat 8.0 (Core)] -* link:http://www.getfirefox.com/[Mozilla Firefox] browser -* link:http://www.getfirebug.com/[Firebug] debug tool (optional) -* link:http://vaadin.com/download/[Vaadin Framework] - -The above reference toolchain is a good choice of tools, but you can use almost -any tools you are comfortable with. - -We recommend using Java 8 for Vaadin development, but you need to make sure that -your entire toolchain supports it. A server supporting Servlet 3.0 is -recommended. It is required for using Vaadin CDI, for which also a CDI container -is required, a standard feature in Java EE 6 or newer servers. It is also -required by the Vaadin Spring add-on. Server push can benefit from using -communication modes, such as WebSocket, enabled by features in some latest -servers. For Java EE containers, at least Wildfly, Glassfish, and Apache TomEE -Web Profile are recommended. - -[[figure.toolchain]] -.Development Toolchain and Process -image::img/toolchain-hi.png[] - -<<figure.toolchain>> illustrates the development toolchain. You develop your -application as an Eclipse project. The project must include, in addition to your -source code, the Vaadin libraries. It can also include project-specific themes. - -You need to compile and deploy a project to a web container before you can use -it. You can deploy a project through the Web Tools Platform (WTP) for Eclipse -(included in the Eclipse EE package), which allows automatic deployment of web -applications from Eclipse. You can also deploy a project manually, by creating a -web application archive (WAR) and deploying it to the web container. - -[[getting-started.environment.java]] -== Installing Java SDK - -Java SDK is required by Vaadin and also by the Eclipse IDE. Vaadin is compatible -with Java 1.6 and later editions. Java EE 7 is required for proper server push -support with WebSockets. - -[[getting-started.environment.java.windows]] -=== Windows - -. Download Oracle Java SE 8.0 from -link:http://www.oracle.com/technetwork/java/javase/downloads/index.html[http://www.oracle.com/technetwork/java/javase/downloads/index.html] - -. Install the Java SDK by running the installer. The default options are fine. - - - -[[getting-started.environment.linux]] -=== Linux / UNIX - -Most Linux systems either have JDK preinstalled or allow installing it through a -package management system. Notice however that they have OpenJDK as the default -Java implementation. While it is known to have worked with Vaadin and possibly -also with the development toolchain, we do not especially support it. - -Regarding OS X, notice that JDK 1.6 or newer is included in OS X 10.6 and newer. - -Otherwise: - -. Download Oracle Java SE 8.0 from -link:http://www.oracle.com/technetwork/java/javase/downloads/index.html[http://www.oracle.com/technetwork/java/javase/downloads/] - -. Decompress it under a suitable base directory, such as [filename]#/opt#. For -example, for Java SDK, enter (either as root or with [command]#sudo# in Linux): - - -+ -[subs="normal"] ----- -[prompt]#+++#+++# [command]#cd# [replaceable]#/opt# -[prompt]#+++#+++# [command]#sh# [replaceable]#(path-to-installation-package)/jdk-8u20-linux-x64.bin# ----- -+ -and follow the instructions in the installer. - -. Set up the [literal]#++JAVA_HOME++# environment variable to point to the Java -installation directory. Also, include the [literal]#++$JAVA_HOME/bin++# in the -[literal]#++PATH++#. How you do that varies by the UNIX variant. For example, in -Linux and using the Bash shell, you would add lines such as the following to the -[filename]#.bashrc# or [filename]#.profile# script in your home directory: - - -+ ----- -export JAVA_HOME=/opt/jdk1.8.0_20 -export PATH=$PATH:$HOME/bin:$JAVA_HOME/bin ----- -+ -You could also make the setting system-wide in a file such as -[filename]#/etc/bash.bashrc#, [filename]#/etc/profile#, or an equivalent file. -If you install Apache Ant or Maven, you may also want to set up those in the -path. - -+ -Settings done in a [filename]#bashrc# file require that you open a new shell -window. Settings done in a [filename]#profile# file require that you log in into -the system. You can, of course, also give the commands in the current shell. - - - - -[[getting-started.environment.eclipse]] -== Installing Eclipse IDE - -=== Windows - -. Download the Eclipse IDE for Java EE Developers from -link:http://www.eclipse.org/downloads/[http://www.eclipse.org/downloads/] - -. Decompress the Eclipse IDE package to a suitable directory. You are free to -select any directory and to use any ZIP decompressor, but in this example we -decompress the ZIP file by just double-clicking it and selecting "Extract all -files" task from Windows compressed folder task. In our installation example, we -use [filename]#C:\dev# as the target directory. - - -Eclipse is now installed in [filename]#C:\dev\eclipse# and can be started from -there (by double clicking eclipse.exe). - - -=== Linux / OS X / UNIX - -We recommend that you install Eclipse manually in Linux and other UNIX variants -as follows. - -. Download Eclipse IDE for Java EE Developers from -link:http://www.eclipse.org/downloads/[http://www.eclipse.org/downloads/] - -. Decompress the Eclipse package into a suitable base directory. It is important -to make sure that there is no old Eclipse installation in the target directory. -Installing a new version on top of an old one probably renders Eclipse unusable. - -. Eclipse should normally be installed as a regular user, as this makes -installation of plugins easier. Eclipse also stores some user settings in the -installation directory. To install the package, enter: - - -+ -[subs="normal"] ----- -[prompt]#$# [command]#tar# zxf [replaceable]#(path-to-installation-package)/eclipse-jee-ganymede-SR2-linux-gtk.tar.gz# ----- -+ -This will extract the package to a subdirectory with the name -[filename]#eclipse#. - -. If you wish to enable starting Eclipse from command-line, you need to add the -Eclipse installation directory to your system or user PATH, or make a symbolic -link or script to point to the executable. - - -An alternative to the above procedure would be to use an Eclipse version -available through the package management system of your operating system. It is, -however, __not recommended__, because you will need write access to the Eclipse -installation directory to install Eclipse plugins, and you may face -incompatibility issues with Eclipse plugins installed by the package management -of the operating system. - - - -[[getting-started.environment.tomcat]] -== Installing Apache Tomcat - -Apache Tomcat is a lightweight Java web server suitable for both development and -production. There are many ways to install it, but here we simply decompress the -installation package. - -__Apache Tomcat should be installed with user permissions.__ During development, -you will be running Eclipse or some other IDE with user permissions, but -deploying web applications to a Tomcat server that is installed system-wide -requires administrator or root permissions. - -. Download the installation package: - -+ -Apache Tomcat 8.0 (Core Binary Distribution) from http://tomcat.apache.org/ - -. Decompress Apache Tomcat package to a suitable target directory, such as -[filename]#C:\dev# (Windows) or [filename]#/opt# (Linux or Mac OS X). The Apache -Tomcat home directory will be [filename]#C:\dev\apache-tomcat-8.0.x# or -[filename]#/opt/apache-tomcat-8.0.x#, respectively. - - - -[[getting-started.environment.firefox]] -== Firefox and Firebug - -Vaadin supports many web browsers and you can use any of them for development. -If you plan to create a custom theme, customized layouts, or create new -components, we recommend that you use either Firefox together with Firebug or -Google Chrome, which has built-in developer tools similar to Firebug. - -[[getting-started.environment.firefox.firebug]] -=== Using Firebug with Vaadin - -After installing Firefox, use it to open -link:http://www.getfirebug.com/[http://www.getfirebug.com/]. Follow the -instructions on the site to install the latest stable version of Firebug -available for the browser. You may need to allow Firefox to install the plugin -by clicking the yellow warning bar at the top of the browser window. - -After Firebug is installed, it can be enabled at any time from the Firefox -toolbar. <<figure.firebug.calc>> shows Firebug in action. - -[[figure.firebug.calc]] -.Firebug Debugger for Firefox -image::img/firebug.png[] - -The most important feature in Firebug is inspecting HTML elements. Right-click -on an element and select [guilabel]#Inspect Element with Firebug# to inspect it. -In addition to HTML tree, it also shows the CSS rules matching the element, -which you can use for building themes. You can even edit the CSS styles live, to -experiment with styling. - - - - - diff --git a/documentation/getting-started/getting-started-first-project.asciidoc b/documentation/getting-started/getting-started-first-project.asciidoc deleted file mode 100644 index 318279924b..0000000000 --- a/documentation/getting-started/getting-started-first-project.asciidoc +++ /dev/null @@ -1,327 +0,0 @@ ---- -title: Creating and Running a Project with Eclipse -order: 5 -layout: page ---- - -[[getting-started.first-project]] -= Creating and Running a Project with Eclipse - -This section gives instructions for creating a new Eclipse project using the -Vaadin Plugin. The task will include the following steps: - -. Create a new project - -. Write the source code - -. Configure and start Tomcat (or some other web server) - -. Open a web browser to use the web application - - -We also show how you can debug the application in the debug mode in Eclipse. - -This walkthrough assumes that you have already installed the Vaadin Plugin for -Eclipse and set up your development environment, as instructed in -<<dummy/../../../framework/getting-started/getting-started-environment#getting-started.environment,"Setting -up the Development Environment">>. - -[[getting-started.first-project.creation]] -== Creating the Project - -Let us create the first application project with the tools installed in the -previous section. First, launch Eclipse and follow the following steps: - -. Start creating a new project by selecting from the menu "File > New > Project...". -. In the [guilabel]#New Project# window that opens, select "Vaadin > Vaadin 7 -Project" and click [guibutton]#Next#. - -+ -image::img/myproject-new-vaadin.png[] - -. In the [guilabel]#Vaadin Project# step, you need to set the basic web project -settings. You need to give at least the __project name__ and the runtime; the -default values should be good for the other settings. - -+ -image::img/myproject-settings.png[] - -[guilabel]#Project name#:: Give the project a name. The name should be a valid identifier usable -cross-platform as a filename and inside a URL, so using only lower-case -alphanumerics, underscore, and minus sign is recommended. - -[guilabel]#Use default location#:: Define the directory under which the project is created. The default is under -your workspace folder, and you should normally leave it as it is. You may need -to set the directory, for example, if you are creating an Eclipse project on top -of a version-controlled source tree. - -[guilabel]#Target runtime#:: Define the application server to use for deploying the application. The server -that you have installed, for example Apache Tomcat, should be selected -automatically. If not, click [guibutton]#New# to configure a new server under -Eclipse. - -[guilabel]#Configuration#:: Select the configuration to use; you should normally use the default -configuration for the application server. If you need to modify the project -facets, click [guibutton]#Modify#. The recommended Servlet 3.0 configuration -uses the @WebServlet deployment, while Servlet 2.4 uses the old -[filename]#web.xml# deployment. - -[guilabel]#Deployment configuration#:: This setting defines the environment to which the application will be deployed, -to generate the appropriate project directory layout and configuration files. -The choises are: - -*** [guilabel]#Servlet# (default) -*** [guilabel]#Google App Engine Servlet# -*** [guilabel]#Generic Portlet (Portlet 2.0)# - -+ -The further steps in the New Project Wizard depend on the selected deployment -configuration; the steps listed in this section are for the default servlet -configuration. -ifdef::web[] -See <<dummy/../../../framework/advanced/advanced-gae#advanced.gae,"Google App -Engine Integration">> and -<<dummy/../../../framework/portal/portal-overview.asciidoc#portal.overview,"Portal -Integration">> for instructions regarding the use of Vaadin in the alternative -environments. -endif::web[] - -[guilabel]#Vaadin version#:: Select the Vaadin version to use. The drop-down list shows, by default, the -latest available version of Vaadin. The selection includes nightly -[literal]#++SNAPSHOT++# builds, if you want to keep up with the absolutely -latest unstable versions. - -+ -You can change the version later in the [filename]#ivy.xml#. - -[guilabel]#Create TestBench test#:: When enabled, the application stub will include a test case for testing the UI -with Vaadin TestBench, as described in -<<dummy/../../../testbench/testbench-overview.asciidoc#testbench.overview,"Vaadin -TestBench">>. Vaadin TestBench API library will be included in -[filename]#ivy.xml# as a dependency. Vaadin version 7.3 or later is required to -create the stub. - - - -+ -You can click [guibutton]#Finish# here to use the defaults for the rest of the -settings, or click [guibutton]#Next#. - -. The settings in the [guilabel]#Web Module# step define the basic web application -(WAR) deployment settings and the structure of the web application project. All -the settings are pre-filled, and you should normally accept them as they are. - -+ -image::img/myproject-web.png[] - -[guilabel]#Context Root#:: The context root (of the application) identifies the application in the URL used -for accessing it. For example, if the project has a [literal]#++myproject++# -context and a single UI at the context root, the URL would be -http://example.com/myproject. The wizard will suggest the project name given in -the first step as the context name. You can change the context root later in the -Eclipse project properties. - -[guilabel]#Content Directory#:: The directory containing all the content to be included in the web application -(WAR) that is deployed to the web server. The directory is relative to the root -directory of the project. - - - -+ -You can just accept the defaults and click [guibutton]#Next#. - -. The [guilabel]#Vaadin project# step page has various Vaadin-specific application -settings. If you are trying out Vaadin for the first time, you should not need -to change anything. You can set most of the settings afterwards, except the -creation of the portlet configuration. - -+ -image::img/myproject-vaadin.png[] - -[guilabel]#Create project template#:: Make the wizard create an UI class stub. - -[guilabel]#Application Name#:: A name for the application UI, shown in the title bar of the browser window. - -[guilabel]#Base package name#:: The name of the Java package under which the UI class of the application is to -be placed. - -[guilabel]#Application/UI class name#:: The name of the UI class for the application, in which the user interface is -developed. - -[guilabel]#Portlet version#:: When a portlet version is selected (only Portlet 2.0 is supported), the wizard -will create the files needed for running the application in a portal. See -<<dummy/../../../framework/portal/portal-overview.asciidoc#portal.overview,"Portal -Integration">> for more information on portlets. - - - -+ -Finally, click [guibutton]#Finish# to create the project. - - - -[[getting-started.first-project.exploring]] -== Exploring the Project - -After the [guilabel]#New Project# wizard exits, it has done all the work for -you: an UI class skeleton has been written to [filename]#src# directory and the -[filename]#WebContent/WEB-INF/web.xml# contains a deployment descriptor. The -project hierarchy shown in the Project Explorer is shown in -<<figure.getting-started.first-project.exploring>>. - -[[figure.getting-started.first-project.exploring]] -.A New Vaadin Project -image::img/myproject-created.png[] - -The Vaadin libraries and other dependencies are managed by Ivy. Notice that the -libraries are not stored under the project folder, even though they are listed -in the "Java Resources > Libraries > ivy.xml" virtual folder. - -[[getting-started.first-project.exploring.ui]] -=== The UI Class - -The UI class created by the plugin contains the following code: - - -[source, java] ----- -package com.example.myproject; - -import com.vaadin.ui.UI; -... - -@SuppressWarnings("serial") -@Theme("myproject") -public class MyprojectUI extends UI { - - @WebServlet(value = "/*", asyncSupported = true) - @VaadinServletConfiguration( - productionMode = false, - ui = MyprojectUI.class) - public static class Servlet extends VaadinServlet { - } - - @Override - protected void init(VaadinRequest request) { - final VerticalLayout layout = new VerticalLayout(); - layout.setMargin(true); - setContent(layout); - - Button button = new Button("Click Me"); - button.addClickListener(new Button.ClickListener() { - public void buttonClick(ClickEvent event) { - layout.addComponent( - new Label("Thank you for clicking")); - } - }); - layout.addComponent(button); - } -} ----- - -In a Servlet 3.0 project, the deployment is configured with servlet class and a -[literal]#++@WebServlet++# annotation. The stub includes the servlet class as a -static inner class. You may want to refactor it to a separate normal class. - -In a Servlet 2.3 project, you would have a [filename]#web.xml# deployment -descriptor. - -For a more detailed treatment of the deployment, see -<<dummy/../../../framework/application/application-environment#application.environment.web-xml,"Using -a web.xml Deployment Descriptor">>. - - - -[[getting-started.first-project.coding]] -== Coding Tips for Eclipse - -One of the most useful features in Eclipse is __code completion__. Pressing -CtrlSpace in the editor will display a popup list of possible class name and -method name completions, as shown in -<<figure.getting-started.first-project.coding.codecompletion>>, depending on the -context of the cursor position. - -[[figure.getting-started.first-project.coding.codecompletion]] -.Java Code Completion in Eclipse -image::img/codingtips-codecompletion.png[] - -To add an [literal]#++import++# statement for a class, such as -[classname]#Button#, simply press CtrlShiftO or click the red error indicator on -the left side of the editor window. If the class is available in multiple -packages, a list of the alternatives is displayed, as shown in -<<figure.getting-started.first-project.coding.import>>. For server-side -development, you should normally use the classes under the -[package]#com.vaadin.ui# or [package]#com.vaadin.server# packages. You can not -use client-side classes (under [package]#com.vaadin.client#) or GWT classes for -server-side development. - -[[figure.getting-started.first-project.coding.import]] -.Importing Classes Automatically -image::img/codingtips-automaticimports.png[] - - -[[getting-started.first-project.server]] -== Setting Up and Starting the Web Server - -Eclipse IDE for Java EE Developers has the Web Standard Tools package installed, -which supports control of various web servers and automatic deployment of web -content to the server when changes are made to a project. - -Make sure that Tomcat was installed with user permissions. Configuration of the -web server in Eclipse will fail if the user does not have write permissions to -the configuration and deployment directories under the Tomcat installation -directory. - -Follow the following steps. - -. Switch to the Servers tab in the lower panel in Eclipse. List of servers should be empty after Eclipse is installed. Right-click on the empty area in the panel and select "New > Server". + -image::img/tomcat-startserver-1.png[] - - -. Select "Apache > Tomcat v7.0 Server" and set [guilabel]#Server's host name# as [literal]#++localhost++#, which should be the default. If you have only one Tomcat installed, [guilabel]#Server runtime# has only one choice. Click [guibutton]#Next#. + -image::img/tomcat-startserver-2.png[] - - -. Add your project to the server by selecting it on the left and clicking [guibutton]#Add# to add it to the configured projects on the right. Click [guibutton]#Finish#. + -image::img/tomcat-startserver-3.png[] - - -. The server and the project are now installed in Eclipse and are shown in the [guilabel]#Servers# tab. To start the server, right-click on the server and select Debug. To start the server in non-debug mode, select Start. + -image::img/tomcat-startserver-4.png[] - - -. The server starts and the WebContent directory of the project is published to the server on http://localhost:8080/myproject/. + -image::img/tomcat-startserver-5.png[] - - - - -[[getting-started.first-project.run]] -== Running and Debugging - -Starting your application is as easy as selecting [guilabel]#myproject# from the -[guilabel]#Project Explorer# and then "Run > Debug As > Debug on Server". -Eclipse then opens the application in built-in web browser. - -.Running a Vaadin Application -image::img/runningMyProject.png[] - -You can insert break points in the Java code by double-clicking on the left -margin bar of the source code window. For example, if you insert a breakpoint in -the [methodname]#buttonClick()# method and click the [guibutton]#What is the -time?# button, Eclipse will ask to switch to the Debug perspective. Debug -perspective will show where the execution stopped at the breakpoint. You can -examine and change the state of the application. To continue execution, select -Resume from Run menu. - -.Debugging a Vaadin Application -image::img/debuggingMyProject.png[] - -Above, we described how to debug a server-side application. Debugging -client-side applications and widgets is described in -<<dummy/../../../framework/clientside/clientside-debugging#clientside.debugging,"Debugging -Client-Side Code">>. - - - - diff --git a/documentation/getting-started/getting-started-idea.asciidoc b/documentation/getting-started/getting-started-idea.asciidoc deleted file mode 100644 index 4461d80656..0000000000 --- a/documentation/getting-started/getting-started-idea.asciidoc +++ /dev/null @@ -1,260 +0,0 @@ ---- -title: Creating a Project with IntelliJ IDEA -order: 8 -layout: page ---- - -[[getting-started.idea]] -= Creating a Project with IntelliJ IDEA - -The Ultimate Edition of IntelliJ IDEA includes support for creating Vaadin -applications and running or debugging them in an integrated application server. -With the Community Edition, you can create a Vaadin application most easily with -a Maven archetype and deploy it to a server with a Maven run/debug -configuration. - -ifdef::web[] -For more information, see the article " -link:http://wiki.jetbrains.net/intellij/Creating_a_simple_Web_application_and_deploying_it_to_Tomcat[Creating -a simple Web application and deploying it to Tomcat]" in the IntelliJ IDEA -Encyclopedia wiki. -endif::web[] - -[[getting-started.idea.server]] -== Configuring an Application Server - -To run the application during development in the Ultimate Edition of IntelliJ -IDEA, you first need to install and configure an application server that is -integrated with the IDE. The edition includes integration with many commonly -used application servers. - -In the following, we configure Apache Tomcat: - -. Download and extract Tomcat installation package to a local directory, as -instructed in -<<dummy/../../../framework/getting-started/getting-started-environment#getting-started.environment.tomcat,"Installing -Apache Tomcat">>. - -. Select "Configure > Settings". - -. Select "IDE Settings > Application Servers". - -. Select "+ > Tomcat Server" to add a Tomcat server, or any of the other supported -servers. A WebSocket-enabled server, such as Glassfish or TomEE, is required for -server push. - -. In the Tomcat Server dialog, specify the home directory for the server. - -+ -image::img/idea-server-1.png[] - -+ -Click [guibutton]#OK#. - -. Review the application server settings page to check that it is OK. - -+ -image::img/idea-server-2.png[] - -+ -Then, click [guibutton]#OK#. - - - -[[getting-started.idea.project]] -== Creating a Vaadin Web Application Project - -In the welcome page, do the following: - -. Download and exctract the Vaadin installation package to a local folder, as -instructed in -<<dummy/../../../framework/getting-started/getting-started-package#getting-started.package,"Vaadin -Installation Package">>. - -. Select [menuchoice]#New Project# - -. In the [guilabel]#New Project# window, select [menuchoice]#Java# - -. Enter a [guilabel]#Project name# and [guilabel]#Project location#, and select -the [guilabel]#Java SDK# to be used for the project. Vaadin requires at least -Java 6. If you have not configured a Java SDK previously, you can configure it -here. - -+ -image::img/idea-newproject-1.png[] - -+ -Click [guibutton]#Next#. - -. Select "Web Application > Vaadin" to add Vaadin technology to the project. - -. Select Vaadin [guilabel]#Version# and [guilabel]#Distribution# installation -path. You probably also want an application stub, so select [guilabel]#Create -sample application# and give a name for the generated UI class. - -+ -image::img/idea-newproject-2.png[] - -+ -Do __not__ click [guibutton]#Finish# yet. - -. Select [guilabel]#Application Server# in the same window. Set it as an -integrated server that you have configured in IntelliJ IDEA, as described -previously in <<getting-started.idea.server>>. - -ifdef::web[] -+ -image::img/idea-newproject-3.png[] -endif::web[] - -. Click [guibutton]#Finish#. - - -The project is created with the UI class stub and a [filename]#web.xml# -deployment descriptor. - -image::img/idea-newproject-4.png[] - -The wizard does not currently create a servlet class automatically, and uses -Servlet 2.4 compatible deployment with a [filename]#web.xml# deployment -descriptor. - -[[getting-started.idea.project.running]] -=== Deploying the Project - -To deploy the application to the integrated web server, right-click the -[filename]#index.jsp# file in the project and select [menuchoice]#Run -'index.jsp'#. This starts the integrated server, if it was not already running, -and launches the default browser with the application page. - - - -[[getting-started.idea.maven]] -== Creating a Maven Project - -You can choose to create a Maven project in IntelliJ IDEA. This is the -recommended way when using the Community Edition. You will not have the -application server integration, but can deploy the application to an application -server using a run/debug configuration. - -. Select [menuchoice]#New Project# - -. In the [guilabel]#New Project# window, select [menuchoice]#Maven# - -//<?dbfo-need height="8cm" ?> -. Enter a project name, location, and the Java SDK to be used for the project. -Vaadin requires at least Java 6. Click [guibutton]#Next#. - -+ -image::img/idea-maven-newproject-1.png[] - -//<?dbfo-need height="6cm" ?> -. Give a Maven [guilabel]#GroupID#, [guilabel]#ArtifactID#, and a -[guilabel]#Version# for the project, or use the defaults. - -+ -image::img/idea-maven-newproject-2.png[] - -. Check [guilabel]#Create from archetype# - -//<?dbfo-need height="6cm" ?> -. If the Vaadin archetype is not in the list, click [guibutton]#Add archetype#, -enter [guilabel]#GroupId# [literal]#++com.vaadin++#, [guilabel]#ArtifactId# -[literal]#++vaadin-archetype-application++#, and [guilabel]#Version# -[literal]#++LATEST++# (or a specific version number). - -ifdef::web[] -+ -image::img/idea-maven-newproject-3.png[] -endif::web[] - -+ -Click [guibutton]#OK# in the dialog. - -//<?dbfo-need height="8cm" ?> -. Select the [literal]#++com.vaadin:vaadin-archetype-application++#. - -ifdef::web[] -+ -image::img/idea-maven-newproject-4.png[] -endif::web[] - -+ -Click [guibutton]#Next#. - -//<?dbfo-need height="8cm" ?> -. Review the general Maven settings and settings for the new project. You may need -to override the settings, especially if you are creating a Maven project for the -first time. Click [guibutton]#Finish#. - -ifdef::web[] -+ -image::img/idea-maven-newproject-5.png[] -endif::web[] - - -Creating the Maven project takes some time as Maven fetches the dependencies. -Once done, the project is created and the Maven POM is opened in the editor. - -[[getting-started.idea.maven.compiling]] -=== Compiling the Project - -To compile a Vaadin application using Maven, you can define a run/debug -configuration to execute a goal such as [literal]#++package++# to build the -deployable WAR package. It will also compile the widget set and theme, if -necessary. See -<<dummy/../../../framework/getting-started/getting-started-maven#getting-started.maven.compiling,"Compiling -and Running the Application">> for more details. - -Compilation is included in the following instructions for deploying the -application. - - -[[getting-started.idea.maven.deploying]] -=== Deploying to a Server - -There exists Maven plugins for deploying to various application servers. For -example, to deploy to Apache Tomcat, you can to configure the -[literal]#++tomcat-maven-plugin++# and then execute the -[literal]#++tomcat:deploy++# goal. See the documentation of the plugin that you -use for more details. If no Maven plugin exists for a particular server, you can -always use some lower-level method to deploy the application, such as running an -Ant task. - -In the following, we create a run/debug configuration to build, deploy, and -launch a Vaadin Maven application on the light-weight Jetty web server. - -. Select "Run > Edit Configurations". - -. Select "+ > Maven" to create a new Maven run/debug configuration. - -. Enter a [guilabel]#Name# for the run configuration. For the [guilabel]#Command -line#, enter " [literal]#++package jetty:run++# to first compile and package the -project, and then launch Jetty to run it. - -ifdef::web[] -+ -image::img/idea-maven-run-1.png[] -endif::web[] - -+ -Click [guibutton]#OK#. - -. Select the run configuration in the toolbar and click the [guibutton]#Run# -button beside it. - -ifdef::web[] -+ -image::img/idea-maven-run-2.png[] -endif::web[] - - -Compiling the project takes some time on the first time, as it compiles the -widget set and theme. Once the run console pane informs that Jetty Server has -been started, you can open the browser at the default URL -http://localhost:8080/. - - - - - diff --git a/documentation/getting-started/getting-started-libraries.asciidoc b/documentation/getting-started/getting-started-libraries.asciidoc deleted file mode 100644 index 013a4f445c..0000000000 --- a/documentation/getting-started/getting-started-libraries.asciidoc +++ /dev/null @@ -1,75 +0,0 @@ ---- -title: Overview of Vaadin Libraries -order: 3 -layout: page ---- - -[[getting-started.libraries]] -= Overview of Vaadin Libraries - -Vaadin comes as a set of library JARs, of which some are optional or alternative -ones, depending on whether you are developing server-side or client-side -applications, whether you use add-on components, or use CSS or Sass themes. - -[filename]#vaadin-server-7.x.x.jar#:: The main library for developing server-side Vaadin applications, as described in -<<dummy/../../../framework/application/application-overview.asciidoc#application.overview,"Writing -a Server-Side Web Application">>. It requires the [filename]#vaadin-shared# and -the [filename]#vaadin-themes# libraries. You can use the prebuilt -[filename]#vaadin-client-compiled# for server-side development, unless you need -add-on components or custom widgets. - -[filename]#vaadin-shared-7.x.x.jar#:: A shared library for server-side and client-side development. It is always -needed. - -[filename]#vaadin-client-7.x.x.jar#:: The client-side Vaadin framework, including the basic GWT API and -Vaadin-specific widgets and other additions. It is required when using the -[filename]#vaadin-client-compiler# to compile client-side modules. It is not -needed if you just use the server-side framework with the precompiled -Client-Side Engine. You should not deploy it with a web application. - -[filename]#vaadin-client-compiler-7.x.x.jar#:: The Vaadin Client Compiler is a Java-to-JavaScript compiler that allows building -client-side modules, such as the Client-Side Engine (widget set) required for -server-side applications. The compiler is needed, for example, for compiling -add-on components to the application widget set, as described in -<<dummy/../../../framework/addons/addons-overview.asciidoc#addons.overview,"Using -Vaadin Add-ons">>. -+ -//TODO There's a need for such -section. -For detailed information regarding the compiler, see -<<dummy/../../../framework/clientside/clientside-compiling#clientside.compiling,"Compiling -a Client-Side Module">>. Note that you should not deploy this library with a web -application. - -[filename]#vaadin-client-compiled-7.x.x.jar#:: A precompiled Vaadin Client-Side Engine (widget set) that includes all the basic -built-in widgets in Vaadin. This library is not needed if you compile the -application widget set with the Vaadin Client Compiler. - -[filename]#vaadin-themes-7.x.x.jar#:: Vaadin built-in themes both as SCSS source files and precompiled CSS files. The -library is required both for basic use with CSS themes and for compiling custom -Sass themes. - -[filename]#vaadin-sass-compiler-1.x.x.jar#:: The Vaadin Sass Compiler compiles Sass themes to CSS, as described in -<<dummy/../../../framework/themes/themes-sass#themes.sass,"Syntactically Awesome -Stylesheets (Sass)">>. It requires the [filename]#vaadin-themes-7.x.x.jar# -library, which contains the Sass sources for the built-in themes. The library -needs to be included in deployment in development mode to allow on-the-fly -compilation of themes, but it is not needed in production deployment, when the -themes are compiled before deployment. - - - -Some of the libraries depend on each other as well as on the dependency -libraries provided in the [filename]#lib# folder of the installation package, -especially the [filename]#lib/vaadin-shared-deps.jar#. - -The different ways to install the libraries are described in the subsequent -sections. - -Note that the [filename]#vaadin-client-compiler# and [filename]#vaadin-client# -JARs should not be deployed with the web application by including them in -[filename]#WEB-INF/lib#. Some other libraries, such as -[filename]#vaadin-sass-compiler#, are not needed in production deployment. - - - diff --git a/documentation/getting-started/getting-started-maven.asciidoc b/documentation/getting-started/getting-started-maven.asciidoc deleted file mode 100644 index 3914e973aa..0000000000 --- a/documentation/getting-started/getting-started-maven.asciidoc +++ /dev/null @@ -1,133 +0,0 @@ ---- -title: Using Vaadin with Maven -order: 6 -layout: page ---- - -[[getting-started.maven]] -= Using Vaadin with Maven - -((("Maven", "creating a project", id="term.maven.creating", range="startofrange"))) - - -Maven is a commonly used build and dependency management system. The Vaadin core -library and all Vaadin add-ons are available through Maven. You can use a Maven -with a front-end from Eclipse or NetBeans, or by using the command-line as -described in this section. - -In addition to regular Maven, you can use any Maven-compatible build or -dependency management system, such as Ivy or Gradle. For Gradle, see the -link:https://github.com/johndevs/gradle-vaadin-plugin[Gradle Vaadin Plugin]. -Vaadin Plugin for Eclipse uses Ivy for resolving dependencies in Vaadin -projects, and it should provide you with the basic Ivy configuration. - -[[getting-started.maven.command-line]] -== Working from Command-Line - -You can create a new Maven project with the following command (given in one -line): - -[subs="normal"] ----- -[prompt]#$# [command]#mvn# archetype:generate \ - -DarchetypeGroupId=com.vaadin \ - -DarchetypeArtifactId=[parameter]#vaadin-archetype-application# \ - -DarchetypeVersion=[replaceable]#7.x.x# \ - -DgroupId=[replaceable]#your.company# \ - -DartifactId=[replaceable]#project-name# \ - -Dversion=[replaceable]#0.1# \ - -Dpackaging=war ----- -The parameters are as follows: - -[parameter]#archetypeGroupId#:: The group ID of the archetype is [literal]#++com.vaadin++# for Vaadin -archetypes. - -[parameter]#archetypeArtifactId#:: The archetype ID. Vaadin 7 currently supports -[literal]#++vaadin-archetype-application++# archetype for server-side -applications and [literal]#++vaadin-archetype-widget++# for client-side widget -development projects. - -+ -//TODO Vaadin 7: Not all these archetypes are supported -+ -//// -<itemizedlist> <listitem> <literal>vaadin-archetype-clean</literal> is a new project with a barebone skeleton for a regular Vaadin application. The <filename>pom.xml</filename> includes out-commented definitions for additional widgets. </listitem> </itemizedlist> <itemizedlist> <listitem> <literal>vaadin-archetype-widget</literal> is a skeleton for a project with custom widgets. </listitem> </itemizedlist> <itemizedlist> <listitem> <literal>vaadin-archetype-sample</literal> is also for a project with custom widgets, but the skeleton includes the Color Picker example used in <xref linkend="gwt"/>. </listitem> </itemizedlist> <itemizedlist> <listitem> <literal>vaadin-archetype-addon</literal> is for Vaadin add-on projects. It packages the add-on so that it can be published in Vaadin Directory. The archetype is for server-side add-ons and does not include definitions needed for building a widget set. If your add-on includes or requires other than the widgets in the Vaadin core library, you need to copy the required definitions from a POM of a <literal>vaadin-archetype-clean</literal> project. </listitem> </itemizedlist> <itemizedlist> <listitem> <literal>vaadin-archetype-touchkit</literal> is for projects using Vaadin TouchKit, described in <xref linkend="mobile"/>. Notice that this archetype uses the AGPL-licensed version of TouchKit, which requires that your project must also be licensed under the AGPL license. </listitem> </itemizedlist> -//// -[parameter]#archetypeVersion#:: Version of the archetype to use. This should be [literal]#++LATEST++# for normal -Vaadin releases. For prerelease versions it should be the exact version number, -such as [literal]#++7.5.3++#. - -[parameter]#groupId#:: A Maven group ID for your project. It is normally your organization domain name -in reverse order, such as com.example. The group ID is also used as a prefix for -the Java package in the sources, so it should be Java compatible - only -alphanumerics and an underscore. - -[parameter]#artifactId#:: Identifier of the artifact, that is, your project. The identifier may contain -alphanumerics, minus, and underscore. It is appended to the group ID to obtain -the Java package name for the sources. For example, if the group ID is -com.example and artifact ID is myproject, the project sources would be placed in -com.example.myproject package. - -[parameter]#version#:: Initial version number of your application. The number must obey the Maven -version numbering format. - -[parameter]#packaging#:: How will the project be packaged. It is normally [literal]#++war++#. - - - -Creating a project can take a while as Maven fetches all the dependencies. The -created project structure is shown in -<<figure.getting-started.maven.archetype.created>>. - -[[figure.getting-started.maven.archetype.created]] -.A New Vaadin Project with Maven -image::img/maven-project-created.png[] - - -[[getting-started.maven.compiling]] -== Compiling and Running the Application - -((("Maven", "compiling", id="term.maven.compiling", range="startofrange"))) - - -Before the application can be deployed, it must be compiled and packaged as a -WAR package. You can do this with the [literal]#++package++# goal as follows: - -[subs="normal"] ----- -[prompt]#$# [command]#mvn# package ----- -The location of the resulting WAR package should be displayed in the command -output. You can then deploy it to your favorite application server. - -The easiest way to run Vaadin applications with Maven is to use the light-weight -Jetty web server. After compiling the package, all you need to do is type: - -[subs="normal"] ----- -[prompt]#$# [command]#mvn# jetty:run ----- -The special goal starts the Jetty server in port 8080 and deploys the -application. You can then open it in a web browser at -http://localhost:8080/project-name. - -(((range="endofrange", startref="term.maven.compiling"))) - -[[getting-started.maven.addons]] -== Using Add-ons and Custom Widget Sets - -((("Maven", "using add-ons", id="term.maven.addons", range="startofrange"))) - - -If you use Vaadin add-ons that include a widget set or make your custom widgets, -you need to enable widget set compilation in the POM. The required configuration -is described in -<<dummy/../../../framework/addons/addons-maven#addons.maven,"Using Add-ons in a -Maven Project">>. - - -(((range="endofrange", startref="term.maven.addons"))) -(((range="endofrange", startref="term.maven.creating"))) - - diff --git a/documentation/getting-started/getting-started-netbeans.asciidoc b/documentation/getting-started/getting-started-netbeans.asciidoc deleted file mode 100644 index 6e2fa660de..0000000000 --- a/documentation/getting-started/getting-started-netbeans.asciidoc +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: Creating a Project with NetBeans IDE -order: 7 -layout: page ---- - -[[getting-started.netbeans]] -= Creating a Project with NetBeans IDE - -The easiest way to develop Vaadin application with the NetBeans IDE is to use -the Vaadin Plugin for NetBeans. It allows you to create new Vaadin projects -easily and provides many features for working on a project. You can download the -plugin at http://plugins.netbeans.org/plugin/50531/vaadin-plug-in-for-netbeans. -The download page contains a link to a plugin features overview in NetBeans -Wiki. - -Without the plugin, you can most easily create a Vaadin project as a Maven -project using a Vaadin archetype. You can also create a Vaadin project as a -regular web application project, but it requires many manual steps to install -all the Vaadin libraries, create the UI class, configure the servlet, create -theme, and so on. - -[[getting-started.netbeans.maven]] -== Maven Project from a Vaadin Archetype - -Creating a Maven project with a Vaadin archetype creates an application skeleton -with a UI class and project theme, defines the [filename]#web.xml# deployment -descriptor, and also retrieves the latest Vaadin library automatically. - -. Select "File > New Project". - -. Select "Maven > Project from Archetype" and click [guibutton]#Next#. - -. Find [literal]#++vaadin-archetype-application++#, select it, and click -[guilabel]#Next#. - -. In the [guilabel]#Name and Location# step, enter [guilabel]#Project Name#, which -is recommended to be only lower-case alphabetics, as it is used also as a -suggestion for the Java package name of the project. Modify the other parameters -for your project and click [guibutton]#Finish#. - -+ -[[figure.getting-started.netbeans.maven.new-project]] -.Adding a New Maven Project in NetBeans -image::img/netbeans-maven-newproject-name.png[] - - -Creating the project can take a while as Maven loads all the needed -dependencies. Once created, you can run it by right-clicking on the project in -the [guilabel]#Projects# view and selecting [guilabel]#Run#. In the -[guilabel]#Select deployment server# window that opens, select -[guilabel]#Glassfish# or [guilabel]#Apache Tomcat#, and click [guibutton]#OK#. -If all goes well, NetBeans starts the server in port 8080 and, depending on your -system configuration, launches the default browser to display the web -application. If not, you can open it manually, for example, at -http://localhost:8080/myproject. The project name is used by default as the -context path of the application. - - - - diff --git a/documentation/getting-started/getting-started-overview.asciidoc b/documentation/getting-started/getting-started-overview.asciidoc deleted file mode 100644 index 994ca48248..0000000000 --- a/documentation/getting-started/getting-started-overview.asciidoc +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: Overview -order: 1 -layout: page ---- - -[[getting-started.overview]] -= Overview - -You can develop Vaadin applications in essentially any development environment -that has the Java SDK and a Java Servlet container. Vaadin has special support -for the Eclipse and NetBeans IDEs, but community support exists also for -IntelliJ IDEA. You can use it with any Java IDE or no IDE at all. - -Managing Vaadin and other Java libraries can get tedious to do manually, so -using a build system that manages dependencies automatically is adviced. Vaadin -is distributed in the Maven central repository, and can be used with any build -or dependency management system that can access Maven repository, such as Ivy or -Gradle, in addition to Maven. - -Vaadin has a multitude of installation options for different IDEs, dependency -managers, and you can also install it from an installation package: - -* With the Eclipse IDE, use the Vaadin Plugin for Eclipse, as described in <<dummy/../../../framework/getting-started/getting-started-eclipse#getting-started.eclipse,"Vaadin Plugin for Eclipse">> -* With the Vaadin plugin for NetBeans IDE ( <<dummy/../../../framework/getting-started/getting-started-netbeans#getting-started.netbeans,"Creating a Project with NetBeans IDE">>) or IntelliJ IDEA -* With Maven, Ivy, Gradle, or other Maven-compatible dependency manager, under Eclipse, NetBeans, IDEA, or using command-line, as described in <<dummy/../../../framework/getting-started/getting-started-maven#getting-started.maven,"Using Vaadin with Maven">> -* From installation package without dependency management, as described in <<dummy/../../../framework/getting-started/getting-started-package#getting-started.package,"Vaadin Installation Package">> - - - diff --git a/documentation/getting-started/getting-started-package.asciidoc b/documentation/getting-started/getting-started-package.asciidoc deleted file mode 100644 index 4dbe735958..0000000000 --- a/documentation/getting-started/getting-started-package.asciidoc +++ /dev/null @@ -1,65 +0,0 @@ ---- -title: Vaadin Installation Package -order: 9 -layout: page ---- - -[[getting-started.package]] -= Vaadin Installation Package - -While the recommended way to install Vaadin is to use the Eclipse plugin, one of -the other IDE plugins, or a dependency management system, such as Maven, Vaadin -is also available as a ZIP distribution package. - -You can download the newest Vaadin installation package from the download page -at http://vaadin.com/download/. Please use a ZIP decompression utility available -in your operating system to extract the files from the ZIP package. - -[[getting-started.package.contents]] -== Package Contents - -[filename]#README.TXT#:: This Readme file gives simple instructions for installing Vaadin in your -project. - -[filename]#release-notes.html#:: The Release Notes contain information about the new features in the particular -release, give upgrade instructions, describe compatibility, etc. Please open the -HTML file with a web browser. - -[filename]#license.html#:: Apache License version 2.0. Please open the HTML file with a web browser. - -[filename]#lib#folder:: All dependency libraries required by Vaadin are contained within the -[filename]#lib# folder. - -[filename]#*.jar#:: Vaadin libraries, as described in -<<dummy/../../../framework/getting-started/getting-started-libraries#getting-started.libraries,"Overview -of Vaadin Libraries">>. - - - - -[[getting-started.package.install]] -== Installing the Libraries - -You can install the Vaadin ZIP package in a few simple steps: - -. Copy the JAR files at the package root folder to the [filename]#WEB-APP/lib# web -library folder in the project. Some of the libraries are optional, as explained -in -<<dummy/../../../framework/getting-started/getting-started-libraries#getting-started.libraries,"Overview -of Vaadin Libraries">>. - -. Also copy the dependency JAR files at the [filename]#lib# folder to the -[filename]#WEB-APP/lib# web library folder in the project. - - -The location of the [filename]#WEB-APP/lib# folder depends on the project -organization, which depends on the development environment. - -* In Eclipse Dynamic Web Application projects: [filename]#WebContent/WEB-INF/lib#. - -* In Maven projects: [filename]#src/main/webapp/WEB-INF/lib#. - - - - - diff --git a/documentation/getting-started/getting-started-scala.asciidoc b/documentation/getting-started/getting-started-scala.asciidoc deleted file mode 100644 index 1da94d0853..0000000000 --- a/documentation/getting-started/getting-started-scala.asciidoc +++ /dev/null @@ -1,113 +0,0 @@ ---- -title: Using Vaadin with Scala -order: 10 -layout: page ---- - -[[getting-started.scala]] -= Using Vaadin with Scala - -You can use Vaadin with any JVM compatible language, such as Scala or Groovy. -There are, however, some caveats related to libraries and project set-up. In the -following, we give instructions for creating a Scala UI in Eclipse, with the -Scala IDE for Eclipse and the Vaadin Plugin for Eclipse. - -. Install the link:http://scala-ide.org/[Scala IDE for Eclipse], either from an -Eclipse update site or as a bundled Eclipse distribution. - -. Open an existing Vaadin Java project or create a new one as outlined in -<<dummy/../../../framework/getting-started/getting-started-first-project#getting-started.first-project,"Creating -and Running a Project with Eclipse">>. You can delete the UI class created by -the wizard. - -. Switch to the Scala perspective by clicking the perspective in the upper-right -corner of the Eclipse window. - -. Right-click on the project folder in [guilabel]#Project Explorer# and select -"Configure > Add Scala Nature". - -. The web application needs [filename]#scala-library.jar# in its class path. If -using Scala IDE, you can copy it from somewhere under your Eclipse installation -to the class path of the web application, that is, either to the -[filename]#WebContent/WEB-INF/lib# folder in the project or to the library path -of the application server. If copying outside Eclipse to a project, refresh the -project by selecting it and pressing F5. - -+ -You could also get it with an Ivy or Maven dependency, just make sure that the -version is same as what the Scala IDE uses. - - -You should now be able to create a Scala UI class, such as the following: - - -[source, scala] ----- -@Theme("mytheme") -class MyScalaUI extends UI { - override def init(request: VaadinRequest) = { - val content: VerticalLayout = new VerticalLayout - setContent(content) - - val label: Label = new Label("Hello, world!") - content addComponent label - - // Handle user interaction - content addComponent new Button("Click Me!", - new ClickListener { - override def buttonClick(event: ClickEvent) = - Notification.show("The time is " + new Date) - }) - } -} ----- - -Eclipse and Scala IDE should be able to import the Vaadin classes automatically -when you press CtrlShiftO. - -You need to define the Scala UI class either in a servlet class (in Servlet 3.0 -project) or in a [filename]#web.xml# deployment descriptor, just like described -in -<<dummy/../../../framework/getting-started/getting-started-first-project#getting-started.first-project.exploring,"Exploring -the Project">> for Java UIs. - -ifdef::web[] -The link:https://github.com/henrikerola/scaladin[Scaladin add-on] offers a more -Scala-like API for Vaadin. A Vaadin 7 compatible version is under development. -endif::web[] - -ifdef::web[] -[[getting-started.scala.lambdas]] -== Defining Listeners with Lambda Expressions - -Scala does not support use of lambda expressions for calling functional -interfaces, like Java 8 does. Hence, we can't just use a lambda expression for -the [interfacename]#ClickListener# in the example above. You can, however, -define implicit conversions from lambda expressions to such interface -implementations. For example, for click listeners: - - -[source, scala] ----- -implicit def clickListener(f: ClickEvent => Unit) = - new ClickListener { - override def buttonClick(event: ClickEvent) { - f(event) - } - } ----- - -You could then use a lambda expression as follows: - - -[source, scala] ----- -content addComponent new Button("Click Me!", - (event: ClickEvent) => - Notification.show("The time is " + new Date)) ----- - -endif::web[] - - - diff --git a/documentation/getting-started/img/codingtips-automaticimports.png b/documentation/getting-started/img/codingtips-automaticimports.png Binary files differdeleted file mode 100644 index 1a66204235..0000000000 --- a/documentation/getting-started/img/codingtips-automaticimports.png +++ /dev/null diff --git a/documentation/getting-started/img/codingtips-codecompletion.png b/documentation/getting-started/img/codingtips-codecompletion.png Binary files differdeleted file mode 100644 index 3f648da0bc..0000000000 --- a/documentation/getting-started/img/codingtips-codecompletion.png +++ /dev/null diff --git a/documentation/getting-started/img/debuggingMyProject.png b/documentation/getting-started/img/debuggingMyProject.png Binary files differdeleted file mode 100644 index 2baae3d191..0000000000 --- a/documentation/getting-started/img/debuggingMyProject.png +++ /dev/null diff --git a/documentation/getting-started/img/firebug.png b/documentation/getting-started/img/firebug.png Binary files differdeleted file mode 100644 index 81512b615d..0000000000 --- a/documentation/getting-started/img/firebug.png +++ /dev/null diff --git a/documentation/getting-started/img/idea-maven-newproject-1.png b/documentation/getting-started/img/idea-maven-newproject-1.png Binary files differdeleted file mode 100644 index 6a24a14ea8..0000000000 --- a/documentation/getting-started/img/idea-maven-newproject-1.png +++ /dev/null diff --git a/documentation/getting-started/img/idea-maven-newproject-2.png b/documentation/getting-started/img/idea-maven-newproject-2.png Binary files differdeleted file mode 100644 index 2f31ac2c35..0000000000 --- a/documentation/getting-started/img/idea-maven-newproject-2.png +++ /dev/null diff --git a/documentation/getting-started/img/idea-maven-newproject-3.png b/documentation/getting-started/img/idea-maven-newproject-3.png Binary files differdeleted file mode 100644 index b0b56b311a..0000000000 --- a/documentation/getting-started/img/idea-maven-newproject-3.png +++ /dev/null diff --git a/documentation/getting-started/img/idea-maven-newproject-4.png b/documentation/getting-started/img/idea-maven-newproject-4.png Binary files differdeleted file mode 100644 index 9dc571499f..0000000000 --- a/documentation/getting-started/img/idea-maven-newproject-4.png +++ /dev/null diff --git a/documentation/getting-started/img/idea-maven-newproject-5.png b/documentation/getting-started/img/idea-maven-newproject-5.png Binary files differdeleted file mode 100644 index 1e22e8d6d8..0000000000 --- a/documentation/getting-started/img/idea-maven-newproject-5.png +++ /dev/null diff --git a/documentation/getting-started/img/idea-maven-run-1.png b/documentation/getting-started/img/idea-maven-run-1.png Binary files differdeleted file mode 100644 index 976711c36a..0000000000 --- a/documentation/getting-started/img/idea-maven-run-1.png +++ /dev/null diff --git a/documentation/getting-started/img/idea-maven-run-2.png b/documentation/getting-started/img/idea-maven-run-2.png Binary files differdeleted file mode 100644 index a567bb6661..0000000000 --- a/documentation/getting-started/img/idea-maven-run-2.png +++ /dev/null diff --git a/documentation/getting-started/img/idea-newproject-1.png b/documentation/getting-started/img/idea-newproject-1.png Binary files differdeleted file mode 100644 index 739b210fdc..0000000000 --- a/documentation/getting-started/img/idea-newproject-1.png +++ /dev/null diff --git a/documentation/getting-started/img/idea-newproject-2.png b/documentation/getting-started/img/idea-newproject-2.png Binary files differdeleted file mode 100644 index 882a4eed18..0000000000 --- a/documentation/getting-started/img/idea-newproject-2.png +++ /dev/null diff --git a/documentation/getting-started/img/idea-newproject-3.png b/documentation/getting-started/img/idea-newproject-3.png Binary files differdeleted file mode 100644 index fe35a7c787..0000000000 --- a/documentation/getting-started/img/idea-newproject-3.png +++ /dev/null diff --git a/documentation/getting-started/img/idea-newproject-4.png b/documentation/getting-started/img/idea-newproject-4.png Binary files differdeleted file mode 100644 index ae14aea8b4..0000000000 --- a/documentation/getting-started/img/idea-newproject-4.png +++ /dev/null diff --git a/documentation/getting-started/img/idea-server-1.png b/documentation/getting-started/img/idea-server-1.png Binary files differdeleted file mode 100644 index f0e0fb7f9b..0000000000 --- a/documentation/getting-started/img/idea-server-1.png +++ /dev/null diff --git a/documentation/getting-started/img/idea-server-2.png b/documentation/getting-started/img/idea-server-2.png Binary files differdeleted file mode 100644 index 2375f44c48..0000000000 --- a/documentation/getting-started/img/idea-server-2.png +++ /dev/null diff --git a/documentation/getting-started/img/ivyde-install-available.png b/documentation/getting-started/img/ivyde-install-available.png Binary files differdeleted file mode 100644 index 9b8500c356..0000000000 --- a/documentation/getting-started/img/ivyde-install-available.png +++ /dev/null diff --git a/documentation/getting-started/img/maven-project-created.png b/documentation/getting-started/img/maven-project-created.png Binary files differdeleted file mode 100644 index 075e2e49ea..0000000000 --- a/documentation/getting-started/img/maven-project-created.png +++ /dev/null diff --git a/documentation/getting-started/img/myproject-created.png b/documentation/getting-started/img/myproject-created.png Binary files differdeleted file mode 100644 index 0cebb5f0db..0000000000 --- a/documentation/getting-started/img/myproject-created.png +++ /dev/null diff --git a/documentation/getting-started/img/myproject-new-vaadin.png b/documentation/getting-started/img/myproject-new-vaadin.png Binary files differdeleted file mode 100644 index e2243d5c1a..0000000000 --- a/documentation/getting-started/img/myproject-new-vaadin.png +++ /dev/null diff --git a/documentation/getting-started/img/myproject-settings.png b/documentation/getting-started/img/myproject-settings.png Binary files differdeleted file mode 100644 index 20d4509317..0000000000 --- a/documentation/getting-started/img/myproject-settings.png +++ /dev/null diff --git a/documentation/getting-started/img/myproject-vaadin.png b/documentation/getting-started/img/myproject-vaadin.png Binary files differdeleted file mode 100644 index fff616e6fe..0000000000 --- a/documentation/getting-started/img/myproject-vaadin.png +++ /dev/null diff --git a/documentation/getting-started/img/myproject-web.png b/documentation/getting-started/img/myproject-web.png Binary files differdeleted file mode 100644 index ae47d37c0f..0000000000 --- a/documentation/getting-started/img/myproject-web.png +++ /dev/null diff --git a/documentation/getting-started/img/netbeans-maven-newproject-name.png b/documentation/getting-started/img/netbeans-maven-newproject-name.png Binary files differdeleted file mode 100644 index 90a1ad517e..0000000000 --- a/documentation/getting-started/img/netbeans-maven-newproject-name.png +++ /dev/null diff --git a/documentation/getting-started/img/plugin-install-addsite.png b/documentation/getting-started/img/plugin-install-addsite.png Binary files differdeleted file mode 100644 index baa36c5416..0000000000 --- a/documentation/getting-started/img/plugin-install-addsite.png +++ /dev/null diff --git a/documentation/getting-started/img/plugin-install-available.png b/documentation/getting-started/img/plugin-install-available.png Binary files differdeleted file mode 100644 index d9c305de62..0000000000 --- a/documentation/getting-started/img/plugin-install-available.png +++ /dev/null diff --git a/documentation/getting-started/img/runningMyProject.png b/documentation/getting-started/img/runningMyProject.png Binary files differdeleted file mode 100644 index e4c4ebcd54..0000000000 --- a/documentation/getting-started/img/runningMyProject.png +++ /dev/null diff --git a/documentation/getting-started/img/tomcat-startserver-1.png b/documentation/getting-started/img/tomcat-startserver-1.png Binary files differdeleted file mode 100644 index 3c2693ba01..0000000000 --- a/documentation/getting-started/img/tomcat-startserver-1.png +++ /dev/null diff --git a/documentation/getting-started/img/tomcat-startserver-2.png b/documentation/getting-started/img/tomcat-startserver-2.png Binary files differdeleted file mode 100644 index 04ac7d87d0..0000000000 --- a/documentation/getting-started/img/tomcat-startserver-2.png +++ /dev/null diff --git a/documentation/getting-started/img/tomcat-startserver-3.png b/documentation/getting-started/img/tomcat-startserver-3.png Binary files differdeleted file mode 100644 index 2cc17876e9..0000000000 --- a/documentation/getting-started/img/tomcat-startserver-3.png +++ /dev/null diff --git a/documentation/getting-started/img/tomcat-startserver-4.png b/documentation/getting-started/img/tomcat-startserver-4.png Binary files differdeleted file mode 100644 index 7e704e772b..0000000000 --- a/documentation/getting-started/img/tomcat-startserver-4.png +++ /dev/null diff --git a/documentation/getting-started/img/tomcat-startserver-5.png b/documentation/getting-started/img/tomcat-startserver-5.png Binary files differdeleted file mode 100644 index f860a0005b..0000000000 --- a/documentation/getting-started/img/tomcat-startserver-5.png +++ /dev/null diff --git a/documentation/getting-started/img/toolchain-hi.png b/documentation/getting-started/img/toolchain-hi.png Binary files differdeleted file mode 100644 index 88d9dfcc4c..0000000000 --- a/documentation/getting-started/img/toolchain-hi.png +++ /dev/null diff --git a/documentation/getting-started/img/toolchain-lo.png b/documentation/getting-started/img/toolchain-lo.png Binary files differdeleted file mode 100644 index e42b94bc2f..0000000000 --- a/documentation/getting-started/img/toolchain-lo.png +++ /dev/null diff --git a/documentation/getting-started/original-drawings/toolchain.svg b/documentation/getting-started/original-drawings/toolchain.svg deleted file mode 100644 index 63148883f3..0000000000 --- a/documentation/getting-started/original-drawings/toolchain.svg +++ /dev/null @@ -1,1149 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.48.1 r9760"
- sodipodi:docname="toolchain.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- version="1.1">
- <defs
- id="defs1903">
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective206" />
- <linearGradient
- id="linearGradient11516">
- <stop
- id="stop11518"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop11520"
- offset="1"
- style="stop-color:#a090e7;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient11508">
- <stop
- id="stop11510"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop11512"
- offset="1"
- style="stop-color:#e27979;stop-opacity:1" />
- </linearGradient>
- <marker
- inkscape:stockid="DiamondL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="DiamondL"
- style="overflow:visible">
- <path
- id="path4404"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.8)" />
- </marker>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="DiamondEmpty"
- style="overflow:visible">
- <path
- id="path7"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z "
- style="fill-rule:evenodd;fill:#ffffff;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(1.0) translate(-5,0)" />
- </marker>
- <linearGradient
- id="linearGradient3286">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3288" />
- <stop
- style="stop-color:#79e291;stop-opacity:1;"
- offset="1"
- id="stop3290" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="EmptyArrow"
- style="overflow:visible;">
- <path
- id="path9"
- d="M 0.0,0.0 L 0.0,-5.0 L -12.5,0.0 L 0.0,5.0 L 0.0,0.0 z M -0.5,0.0 L -0.5,-4.5 L -12.0,0.0 L -0.5,4.5 L -0.5,0.0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(1.0) rotate(180) translate(10,0)" />
- </marker>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="EmptyArrow2"
- style="overflow:visible;">
- <path
- id="path13"
- d="M 0.0,0.0 L 0.0,-5.0 L -10.0,0.0 L 0.0,5.0 L 0.0,0.0 z"
- style="fill-rule:evenodd;fill:#ffffff;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(1.0) rotate(180) translate(10,0)" />
- </marker>
- <linearGradient
- id="linearGradient19816">
- <stop
- id="stop19818"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop19820"
- offset="1"
- style="stop-color:#e7e790;stop-opacity:1;" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow2Lend"
- style="overflow:visible;">
- <path
- id="path16811"
- style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- transform="scale(1.1) rotate(180) translate(1,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow1Lend"
- style="overflow:visible;">
- <path
- id="path16829"
- d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(0.8) rotate(180) translate(12.5,0)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutM"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleOutM"
- style="overflow:visible">
- <path
- id="path16731"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.4)" />
- </marker>
- <marker
- inkscape:stockid="TriangleInL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleInL"
- style="overflow:visible">
- <path
- id="path16743"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(-0.8)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path16734"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.8)" />
- </marker>
- <linearGradient
- id="linearGradient9263">
- <stop
- style="stop-color:#000000;stop-opacity:0"
- offset="0"
- id="stop9265" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop9267" />
- </linearGradient>
- <linearGradient
- id="linearGradient7299">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop7301" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop7303" />
- </linearGradient>
- <linearGradient
- id="linearGradient5349">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop5351" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop5353" />
- </linearGradient>
- <linearGradient
- id="linearGradient4152">
- <stop
- style="stop-color:#6b6bff;stop-opacity:1;"
- offset="0"
- id="stop4154" />
- <stop
- style="stop-color:#6b6bff;stop-opacity:0;"
- offset="1"
- id="stop4156" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5349"
- id="linearGradient5355"
- x1="96.085953"
- y1="148.38934"
- x2="389.01985"
- y2="148.38934"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient12637"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,265.61411,78.560061)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient15668"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient17873"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,541.12253,30.198804)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient17875"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient20832"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22790"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22806"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22822"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22838"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient2303"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3306"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2251403,2.385383e-3,-2.8806072e-3,0.5966421,625.8055,-4.9637231)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3307"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.634924,2.3804409e-3,-3.8441097e-3,0.5954059,670.96002,-4.81581)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3327"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient8322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient8338"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient8354"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient11393"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2251403,2.385383e-3,-2.8806072e-3,0.5966421,625.8055,-4.9637231)"
- cx="-145.65326"
- cy="87.697487"
- fx="-145.65326"
- fy="87.697487"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient11490"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11508"
- id="radialGradient11506"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11516"
- id="linearGradient11514"
- x1="402.58597"
- y1="24.440832"
- x2="535.59796"
- y2="190.61652"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient11602"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11508"
- id="radialGradient11604"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11516"
- id="linearGradient13616"
- x1="174.35712"
- y1="96.654701"
- x2="220.02124"
- y2="192.93446"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient14623"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9722636,1.8198108e-3,-2.2860317e-3,0.4551788,579.72294,2.0165387)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="linearGradient16644"
- x1="160.84073"
- y1="73.780838"
- x2="239.77594"
- y2="207.50426"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11516"
- id="linearGradient18644"
- x1="1036.6514"
- y1="1185.2882"
- x2="1076.5066"
- y2="1351.074"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient19653"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-3"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-8"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.8159691"
- inkscape:cx="284.00046"
- inkscape:cy="744.0301"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1861"
- inkscape:window-height="1023"
- inkscape:window-x="0"
- inkscape:window-y="0"
- showgrid="true"
- showguides="false"
- inkscape:connector-spacing="10"
- inkscape:guide-bbox="true"
- inkscape:window-maximized="0">
- <sodipodi:guide
- orientation="0,1"
- position="31.938869,788.55965"
- id="guide17449" />
- <sodipodi:guide
- orientation="1,0"
- position="224.67342,882.17358"
- id="guide17453" />
- <sodipodi:guide
- orientation="0,1"
- position="285.41744,976.57155"
- id="guide23390" />
- <sodipodi:guide
- orientation="0,1"
- position="285.79781,806.73177"
- id="guide23439" />
- <sodipodi:guide
- orientation="1,0"
- position="561.68355,823.80254"
- id="guide23441" />
- <sodipodi:guide
- orientation="1,0"
- position="415.75596,833.7146"
- id="guide23443" />
- <sodipodi:guide
- orientation="1,0"
- position="61.675057,822.15053"
- id="guide23607" />
- </sodipodi:namedview>
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <rect
- style="fill:#ffffff;fill-opacity:1;stroke:none"
- id="rect23609"
- width="549.70648"
- height="443.42712"
- x="41.713261"
- y="73.132996"
- ry="3.7880721" />
- <rect
- style="fill:#ffdfdf;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6642-4-3"
- width="179.50378"
- height="175.10982"
- x="399.79388"
- y="263.80252"
- ry="3.7880721" />
- <rect
- style="fill:#ffdfdf;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6642-4"
- width="179.50378"
- height="175.10982"
- x="45.162289"
- y="263.80252"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-763.81732,-794.25552)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363"><rect
- id="rect11365"
- width="94.752312"
- height="17.67767"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara11367">User Project</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot11369"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-763.87827,-982.67399)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11371"><rect
- id="rect11373"
- width="116.12012"
- height="17.979126"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara11375">Developer Tools</flowPara></flowRoot> <rect
- style="opacity:0;fill:none;fill-opacity:0.6875;stroke:none;stroke-width:0.95700002;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- id="rect19657"
- width="565"
- height="465"
- x="35"
- y="52.362183"
- rx="8.6243191"
- ry="4.9402232"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90" />
- <rect
- style="fill:none;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6642"
- width="179.50377"
- height="179.94197"
- x="44.538742"
- y="75.790634"
- ry="3.7880721" />
- <g
- transform="translate(51.979289,-16.470967)"
- id="g28403">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680"
- width="130.11183"
- height="142.24257"
- x="9.6957684"
- y="119.85882"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3307"
- transform="translate(5.320609,22.724306)"><flowRegion
- id="flowRegion3309"><use
- x="0"
- y="0"
- xlink:href="#rect4680"
- id="use3311"
- width="744.09448"
- height="1052.3622"
- transform="translate(-0.08313296,-13.857718)" /></flowRegion><flowPara
- id="flowPara3313">Eclipse IDE</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-1-2-9-4-9-6"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(-797.72677,-917.96995)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-64-3-8-8-6-8"><rect
- id="rect11365-5-4-5-1-4-8-8-5"
- width="136.60326"
- height="42.457775"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara17609-3-7-2-3-9-1">(optional)</flowPara></flowRoot> </g>
- <g
- transform="translate(35.305057,331.62713)"
- id="g28403-1">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-5"
- width="544.37036"
- height="63.517254"
- x="9.6957684"
- y="119.85882"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3307-9"
- transform="translate(8.4356698,25.839367)"><flowRegion
- id="flowRegion3309-9"><use
- x="0"
- y="0"
- xlink:href="#rect4680-5"
- id="use3311-1"
- width="744.09448"
- height="1052.3622"
- transform="translate(-0.08313296,-13.857718)" /></flowRegion><flowPara
- id="flowPara3313-62">Java SDK</flowPara></flowRoot> </g>
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-407.79416,-793.88956)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2"><rect
- id="rect11365-5"
- width="159.7314"
- height="20.981634"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara11367-2">Web Application (WAR)</flowPara></flowRoot> <g
- transform="translate(38.613319,112.28017)"
- id="g28403-3">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7"
- width="149.53987"
- height="60.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-786.22146,-876.33845)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0"><rect
- id="rect11365-5-4"
- width="136.60326"
- height="42.457775"
- x="813.87988"
- y="1064.3831"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara17605">Vaadin</flowPara><flowPara
- id="flowPara17609">Library & Themes</flowPara></flowRoot> </g>
- <g
- transform="translate(39.163989,181.70718)"
- id="g28403-3-9">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-1"
- width="150.09055"
- height="62.691235"
- x="21.259842"
- y="179.88187"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-2"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.87347,-877.99046)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-6"><rect
- id="rect11365-5-4-9"
- width="142.10995"
- height="56.224495"
- x="813.87988"
- y="1064.3831"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara17609-8">User</flowPara><flowPara
- id="flowPara17650">Sources & Themes</flowPara></flowRoot> </g>
- <g
- transform="translate(392.17272,112.28017)"
- id="g28403-3-0">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-0"
- width="149.53987"
- height="60.488556"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-1"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-782.22146,-876.33845)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-64"><rect
- id="rect11365-5-4-5"
- width="136.60326"
- height="42.457775"
- x="813.87988"
- y="1064.3831"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara17605-8">Vaadin</flowPara><flowPara
- id="flowPara17609-3">Library & Themes</flowPara></flowRoot> </g>
- <g
- transform="translate(392.72339,181.70718)"
- id="g28403-3-9-1">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-1-2"
- width="150.09055"
- height="62.691235"
- x="21.259842"
- y="179.88187"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-2-2"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-783.87347,-877.99046)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-6-9"><rect
- id="rect11365-5-4-9-5"
- width="142.10995"
- height="56.224495"
- x="813.87988"
- y="1064.3831"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara17609-8-5">User Executable</flowPara><flowPara
- id="flowPara17650-4">& Themes</flowPara></flowRoot> </g>
- <g
- transform="translate(416.84384,59.059463)"
- id="g28403-2">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-4"
- width="146.14641"
- height="64.509453"
- x="-1.08788"
- y="122.0615"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-1-2"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-805.39463,-934.99119)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-64-3"><rect
- id="rect11365-5-4-5-1"
- width="136.60326"
- height="42.457775"
- x="813.87988"
- y="1064.3831"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara17609-3-7">Apache Tomcat</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-1-2-9"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(-805.41938,-916.49551)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-64-3-8"><rect
- id="rect11365-5-4-5-1-4"
- width="136.60326"
- height="42.457775"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara17609-3-7-2">or any other web container</flowPara></flowRoot> </g>
- <flowRoot
- xml:space="preserve"
- id="flowRoot11369-9"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-415.72387,-902.95392)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11371-3"><rect
- id="rect11373-3"
- width="116.12012"
- height="17.979126"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara11375-6">Application Server</flowPara></flowRoot> <rect
- style="fill:none;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6642-49"
- width="189.6277"
- height="287.64139"
- x="394.64005"
- y="156.44901"
- ry="3.7880721" />
- <g
- transform="translate(386.472,-43.932236)"
- id="g28403-2-5">
- <rect
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-4-4"
- width="143.20576"
- height="62.146721"
- x="7.3594728"
- y="119.85882"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-1-2-1"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-798.65656,-935.26653)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-64-3-6"><rect
- id="rect11365-5-4-5-1-8"
- width="136.60326"
- height="42.457775"
- x="813.87988"
- y="1064.3831"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara17609-3-7-0">Mozilla Firefox</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-1-2-9-4"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(-798.68131,-915.81479)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-64-3-8-8"><rect
- id="rect11365-5-4-5-1-4-8"
- width="136.60326"
- height="42.457775"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara17609-3-7-2-3">or any other</flowPara><flowPara
- id="flowPara23437">browser</flowPara></flowRoot> </g>
- <g
- transform="translate(470.88179,-11.856436)"
- id="g28403-2-5-7">
- <rect
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;stroke-miterlimit:4;stroke-dasharray:none"
- id="rect4680-4-4-5"
- width="99.427483"
- height="38.192566"
- x="10.388159"
- y="123.16283"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-1-2-1-6"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-798.65656,-935.26653)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-64-3-6-0"><rect
- id="rect11365-5-4-5-1-8-4"
- width="136.60326"
- height="42.457775"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara17609-3-7-0-6">Firebug Plugin</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-1-2-9-4-9"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(-798.68131,-922.91615)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-64-3-8-8-6"><rect
- id="rect11365-5-4-5-1-4-8-8"
- width="136.60326"
- height="42.457775"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara17609-3-7-2-3-9">(optional)</flowPara></flowRoot> </g>
- <path
- inkscape:connector-type="polyline"
- id="path4676"
- d="m 186.86922,214.73837 225.57699,0.0813"
- style="fill:none;stroke:#4fb047;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker52016);display:inline"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- inkscape:connector-type="polyline"
- id="path4676-4"
- d="m 206.52638,393.9556 204.492,0.0813"
- style="fill:none;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker52016);display:inline"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <g
- transform="translate(64.64086,36.289394)"
- id="g28403-2-5-7-9">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-4-4-5-5"
- width="99.427483"
- height="38.192566"
- x="10.388159"
- y="123.16283"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-1-2-1-6-3"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-798.65656,-935.26653)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-64-3-6-0-2"><rect
- id="rect11365-5-4-5-1-8-4-4"
- width="136.60326"
- height="42.457775"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara17609-3-7-0-6-8">Vaadin Plugin</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-1-2-9-4-9-3"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(-798.68131,-922.91615)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-64-3-8-8-6-5"><rect
- id="rect11365-5-4-5-1-4-8-8-9"
- width="136.60326"
- height="42.457775"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara17609-3-7-2-3-9-2">(optional)</flowPara></flowRoot> </g>
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-1-2-9-4-9-6-6"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(-569.95724,-867.87202)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-64-3-8-8-6-8-8"><rect
- id="rect11365-5-4-5-1-4-8-8-5-5"
- width="136.60326"
- height="42.457775"
- x="813.87988"
- y="1064.3831"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara17609-3-7-2-3-9-1-0">Deploy and Control</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-1-1"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(-574.81713,-688.54658)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-64-6"><rect
- id="rect11365-5-4-5-0"
- width="158.07941"
- height="33.096371"
- x="813.87988"
- y="1064.3831"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara17609-3-3">Compile and Package</flowPara></flowRoot> </g>
- <g
- inkscape:groupmode="layer"
- id="layer2"
- inkscape:label="Varjot" />
-</svg>
diff --git a/documentation/gwt/chapter-gwt.asciidoc b/documentation/gwt/chapter-gwt.asciidoc deleted file mode 100644 index 32f6e09ccf..0000000000 --- a/documentation/gwt/chapter-gwt.asciidoc +++ /dev/null @@ -1,39 +0,0 @@ -[[gwt]] -== Integrating with the Server-Side - -((("Google Web Toolkit", "widgets", id="term.gwt", range="startofrange"))) - - -((("widgets"))) -This chapter describes how you can integrate client-side widgets or JavaScript -components with a server-side component. The client-side implementations of all -standard server-side components in Vaadin use the same client-side interfaces -and patterns. - - -include::gwt-overview.asciidoc[leveloffset=+2] - -include::gwt-eclipse.asciidoc[leveloffset=+2] - -include::gwt-server-side.asciidoc[leveloffset=+2] - -include::gwt-connector.asciidoc[leveloffset=+2] - -include::gwt-shared-state.asciidoc[leveloffset=+2] - -include::gwt-rpc.asciidoc[leveloffset=+2] - -include::gwt-extension.asciidoc[leveloffset=+2] - -include::gwt-styling.asciidoc[leveloffset=+2] - -include::gwt-componentcontainer.asciidoc[leveloffset=+2] - -include::gwt-advanced.asciidoc[leveloffset=+2] - -include::gwt-addons.asciidoc[leveloffset=+2] - -include::gwt-vaadin-6-migration.asciidoc[leveloffset=+2] - -include::gwt-javascript.asciidoc[leveloffset=+2] -(((range="endofrange", startref="term.gwt"))) diff --git a/documentation/gwt/gwt-addons.asciidoc b/documentation/gwt/gwt-addons.asciidoc deleted file mode 100644 index df2e2f268f..0000000000 --- a/documentation/gwt/gwt-addons.asciidoc +++ /dev/null @@ -1,318 +0,0 @@ ---- -title: Creating Add-ons -order: 11 -layout: page ---- - -[[gwt.addons]] -= Creating Add-ons - -((("add-ons", "creating", id="term.gwt.addons", range="startofrange"))) - - -Add-ons are the most convenient way to reuse Vaadin code, either commercially or -free. Vaadin Directory serves as the store for the add-ons. You can distribute -add-ons both as JAR libraries and Zip packages. - -Creating a typical add-on package involves the following tasks: - -* Compile server-side classes -* Compile JavaDoc (optional) -* Build the JAR - -** Include Vaadin add-on manifest -** Include the compiled server-side classes -** Include the compiled JavaDoc (optional) -** Include sources of client-side classes for widget set compilation (optional) -** Include any JavaScript dependency libraries (optional) -** Exclude any test or demo code in the project - - -The exact contents depend on the add-on type. Component add-ons often include a -widget set, but not always, such as JavaScript components or pure server-side -components. You can also have data container and theme add-ons, as well as -various tools. - -It is common to distribute the JavaDoc in a separate JAR, but you can also -include it in the same JAR. - -[[gwt.addons.export]] -== Exporting Add-on in Eclipse - -If you use the Vaadin Plugin for Eclipse for your add-on project, you can simply -export the add-on from Eclipse. - -. Select the project and then "File > Export" from the menu - -. In the export wizard that opens, select "Vaadin > Vaadin Add-on Package", and -click [guibutton]#Next# - -. In the [guilabel]#Select the resources to export# panel, select the content that -should be included in the add-on package. In general, you should include sources -in [filename]#src# folder (at least for the client-side package), compiled -server-side classes, themes in [filename]#WebContent/VAADIN/themes#. These are -all included automatically. You probably want to leave out any demo or example -code. - -+ -[[figure.gwt.addons.export]] -.Exporting a Vaadin Add-on -image::img/addon-export.png[] - -+ -If you are submitting the add-on to Vaadin Directory, the -[guilabel]#Implementation title# should be exactly the name of the add-on in -Directory. The name may contain spaces and most other letters. Notice that __it -is not possible to change the name later__. - -+ -The [guilabel]#Implementation version# is the version of your add-on. Typically -experimental or beta releases start from 0.1.0, and stable releases from 1.0.0. - -+ -The [guilabel]#Widgetsets# field should list the widget sets included in the -add-on, separated by commas. The widget sets should be listed by their class -name, that is, without the [filename]#.gwt.xml# extension. - -+ -The [guilabel]#JAR file# is the file name of the exported JAR file. It should -normally include the version number of the add-on. You should follow the Maven -format for the name, such as [filename]#myaddon-1.0.0.jar#. - -+ -Finally, click [guibutton]#Finish#. - - - -ifdef::web[] -[[gwt.addons.ant]] -== Building Add-on with Ant - -Building an add-on with Ant is similar to building Vaadin applications. Vaadin -libraries and other dependencies are retrieved and included in the classpath -using Apache Ivy. - -In the following, we assume the same structure as in the Eclipse project -example. Let us put the build script in the [filename]#build# folder under the -project. We begin the Ant script as follows: - -[subs="normal"] ----- -<?xml version="1.0"?> - -<project xmlns:ivy="antlib:org.apache.ivy.ant" - name="**My Own add-on**" - basedir=".." - default="package-jar"> - ----- -The namespace declaration is all you need to do to enable Ivy in Ant 1.6 and -later. For earlier Ant versions, please see the Ivy documentation. - -[[gwt.addons.ant.configuration]] -=== Configuration and Initialization - -In the example script, we organize most settings in a [literal]#++configure++# -target and then initialize the build in [literal]#++init++# target. - -[subs="normal"] ----- -//Update these settings for your project structure - -<target name="configure"> - <!-- Where project source files are located --> - <property name="src-location" value="**src**" /> - - <!-- Name of the widget set. --> - <property name="widgetset" value="**com.example.myaddon.widgetset.MyAddonWidgetset**"/> - - <!-- Addon version --> - <property name="version" value="**0.1.0**"/> - - <!-- Compilation result directory --> - <property name="result-dir" value="build/result"/> - - <!-- The target name of the built add-on JAR --> - <property name="target-jar" - value="${result-dir}/**myaddon**-${version}.jar"/> -</target> - -//Initialize build - -<target name="init" depends="configure"> - <!-- Construct and check classpath --> - <path id="compile.classpath"> - <pathelement path="build/classes" /> - <pathelement path="${src-location}" /> - <fileset dir="${result-dir}/lib"> - <include name="*.jar"/> - </fileset> - </path> - - <mkdir dir="${result-dir}"/> -</target> - ----- -You will need to make some configuration also in the [literal]#++package-jar++# -target in addition to the [literal]#++configure++# target. - - -[[gwt.addons.ant.compiling]] -=== Compiling the Server-Side - -Compiling the add-on requires the Vaadin libraries and any dependencies. We use -Apache Ivy for resolving the dependencies and retrieving the library JARs. - - ----- -<!-- Retrieve dependencies with Ivy --> -<target name="resolve" depends="init"> - <ivy:retrieve - pattern="${result-dir}/lib/[artifact].[ext]"/> -</target> ----- - -The [literal]#++pattern++# attribute for the [literal]#++<retrieve>++# task -specifies where the dependencies are stored, in the above case in the -[filename]#build/result/lib# directory. - -Compiling the server-side classes is then straight-forward: - - ----- -<!-- Compile server-side --> -<target name="compile-server-side" - depends="init, resolve"> - <delete dir="${result-dir}/classes"/> - <mkdir dir="${result-dir}/classes"/> - - <javac srcdir="${src-location}" - destdir="${result-dir}/classes"> - <classpath> - <path refid="compile.classpath"/> - </classpath> - </javac> -</target> ----- - - -[[gwt.addons.ant.javadoc]] -=== Compiling the JavaDoc - -You may want to include API documentation for the add-on in the same or in a -different JAR file. You can do it as follows, using the configuration we defined -earlier. You may want to exclude the client-side classes and any test and demo -classes from the JavaDoc, as is done in this example, if they are in the same -source tree. - -[subs="normal"] ----- -<!-- Compile JavaDoc --> -<target name="compile-javadoc" depends="init"> - <delete dir="${result-dir}/javadoc"/> - <mkdir dir="${result-dir}/javadoc"/> - - <javadoc destdir="${result-dir}/javadoc"> - <sourcefiles> - <fileset dir="${src-location}" id="src"> - <include name="**/*.java"/> - - <!-- Excluded stuff from the package --> - <exclude name="**++*++++*++/client/++*++++*++/++*++**"/> - <exclude name="**++*++++*++/demo/++*++++*++/++*++**"/> - <exclude name="**++*++++*++/MyDemoUI.java**"/> - </fileset> - </sourcefiles> - <classpath> - <path refid="compile.classpath"/> - </classpath> - </javadoc> -</target> ----- - -[[gwt.addons.ant.package]] -=== Packaging the JAR - -An add-on JAR typically includes the following: - -* Vaadin add-on manifest -* The compiled server-side classes -* The compiled JavaDoc (optional) -* Sources of client-side classes (optional) -* Any JavaScript dependency libraries (optional) - -Let us begin crafting the target. The JAR requires the compiled server-side -classes and the optional API documentation. - - ----- -<!-- Build the JAR --> -<target name="package-jar" - depends="compile-server-side, compile-javadoc"> - <jar jarfile="${target-jar}" compress="true"> ----- - -First, you need to include a manifest that defines basic information about the -add-on. The implementation title must be the exact title of the add-on, as shown -in the Vaadin Directory title. The vendor is you. The manifest also includes the -license title and file reference for the add-on. - -[subs="normal"] ----- -<!-- Manifest required by Vaadin Directory --> -<manifest> - <attribute name="Vaadin-Package-Version" - value="1" /> - <attribute name="Vaadin-Widgetsets" - value="${widgetset}" /> - <attribute name="Implementation-Title" - value="**My Own Addon**" /> - <attribute name="Implementation-Version" - value="${version}" /> - <attribute name="Implementation-Vendor" - value="**Me Myself**" /> - <attribute name="Vaadin-License-Title" - value="**Apache2**" /> - <attribute name="Vaadin-License-File" - value="**http://www.apache.org/licenses/LICENSE-2.0**" /> -</manifest> ----- -The rest of the [literal]#++package-jar++# target goes as follows. As was done -in the JavaDoc compilation, you also need to exclude any test or demo code in -the project here. You need to modify at least the emphasized parts for your -project. - -[subs="normal"] ----- - <!-- Include built server-side classes --> - <fileset dir="build/result/classes"> - <patternset> - <include name="**com/example/myaddon/++*++++*++/++*++**"/> - <exclude name="**++*++++*++/client/++*++++*++/++*++**"/> - <exclude name="**++*++++*++/demo/++*++++*++/++*++**"/> - <exclude name="**++*++++*++/test/++*++++*++/++*++**"/> - <exclude name="**++*++++*++/MyDemoUI++*++**"/> - </patternset> - </fileset> - - <!-- Include widget set sources --> - <fileset dir="src"> - <patternset> - <include name="**com/exaple/myaddon/++*++++*++/++*++**"/> - </patternset> - </fileset> - - <!-- Include JavaDoc in the JAR --> - <fileset dir="${result-dir}/javadoc" - includes="**/*"/> - </jar> -</target> ----- - -You should now be ready to run the build script with Ant. - -endif::web[] - -(((range="endofrange", startref="term.gwt.addons"))) - - diff --git a/documentation/gwt/gwt-advanced.asciidoc b/documentation/gwt/gwt-advanced.asciidoc deleted file mode 100644 index 51fc2ef3db..0000000000 --- a/documentation/gwt/gwt-advanced.asciidoc +++ /dev/null @@ -1,64 +0,0 @@ ---- -title: Advanced Client-Side Topics -order: 10 -layout: page ---- - -[[gwt.advanced]] -= Advanced Client-Side Topics - -In the following, we mention some topics that you may encounter when integrating -widgets. - -[[gwt.advanced.phases]] -== Client-Side Processing Phases - -Vaadin's client-side engine reacts to changes from the server in a number of -phases, the order of which can be relevant for a connector. The processing -occurs in the [methodname]#handleUIDLMessage()# method in -[classname]#ApplicationConnection#, but the logic can be quite overwhelming, so -we describe the phases in the following summary. - -. Any dependencies defined by using [classname]#@JavaScript# or -[classname]#@StyleSheet# on the server-side class are loaded. Processing does -not continue until the browser confirms that they have been loaded. - -. New connectors are instantiated and [methodname]#init()# is run for each -[interfacename]#Connector#. - -. State objects are updated, but no state change event is fired yet. - -. The connector hierarchy is updated, but no hierarchy change event is fired yet. -[methodname]#setParent()# and [methodname]#setChildren()# are run in this phase. - -. Hierarchy change events are fired. This means that all state objects and the -entire hierarchy are already up to date when this happens. The DOM hierarchy -should in theory be up to date after all hierarchy events have been handled, -although there are some built-in components that for various reasons do not -always live up to this promise. - -. Captions are updated, causing [methodname]#updateCaption()# to be invoked on -layouts as needed. - -. [classname]#@DelegateToWidget# is handled for all changed state objects using -the annotation. - -. State change events are fired for all changed state objects. - -. [methodname]#updateFromUIDL()# is called for legacy connectors. - -. All RPC methods received from the server are invoked. - -. Connectors that are no longer included in the hierarchy are unregistered. This -calls [methodname]#onUnregister()# on the [interfacename]#Connector#. - -. The layout phase starts, first checking the sizes and positions of all elements, -and then notifying any [interfacename]#ElementResizeListener#s, as well as -calling the appropriate layout method for the connectors that implement either -[classname]#SimpleManagedLayout# or [classname]#DirectionalManagedLayout# -interface. - - - - - diff --git a/documentation/gwt/gwt-componentcontainer.asciidoc b/documentation/gwt/gwt-componentcontainer.asciidoc deleted file mode 100644 index 8bdb4e6d7f..0000000000 --- a/documentation/gwt/gwt-componentcontainer.asciidoc +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: Component Containers -order: 9 -layout: page ---- - -[[gwt.componentcontainer]] -= Component Containers - -Component containers, such as layout components, are a special group of -components that require some consideration. In addition to handling state, they -need to manage communicating the hierarchy of their contained components to the -other side. - -The easiest way to implement a component container is extend the -[classname]#AbstractComponentContainer#, which handles the synchronization of -the container server-side components to the client-side. - - - diff --git a/documentation/gwt/gwt-connector.asciidoc b/documentation/gwt/gwt-connector.asciidoc deleted file mode 100644 index 9872e73dbe..0000000000 --- a/documentation/gwt/gwt-connector.asciidoc +++ /dev/null @@ -1,93 +0,0 @@ ---- -title: Integrating the Two Sides with a Connector -order: 4 -layout: page ---- - -[[gwt.connector]] -= Integrating the Two Sides with a Connector - -A client-side widget is integrated with a server-side component with a -__connector__. A connector is a client-side class that communicates changes to -the widget state and events to the server-side. - -A connector normally gets the state of the server-side component by the __shared -state__, described later in -<<dummy/../../../framework/gwt/gwt-shared-state#gwt.shared-state,"Shared -State">>. - -[[gwt.connector.basic]] -== A Basic Connector - -The basic tasks of a connector is to hook up to the widget and handle events -from user interaction and changes received from the server. A connector also has -a number of routine infrastructure methods which need to be implemented. - - ----- -@Connect(MyComponent.class) -public class MyComponentConnector - extends AbstractComponentConnector { - - @Override - public MyComponentWidget getWidget() { - return (MyComponentWidget) super.getWidget(); - } - - @Override - public MyComponentState getState() { - return (MyComponentState) super.getState(); - } - - @Override - public void onStateChanged(StateChangeEvent stateChangeEvent) - { - super.onStateChanged(stateChangeEvent); - - // Do something useful - final String text = getState().text; - getWidget().setText(text); - } -} ----- - -Here, we handled state change with the crude [methodname]#onStateChanged()# -method that is called when any of the state properties is changed. A finer and -simpler handling is achieved by using the [classname]#@OnStateChange# annotation -on a handler method for each property, or by [classname]#@DelegateToWidget# on a -shared state property, as described later in -<<dummy/../../../framework/gwt/gwt-shared-state#gwt.shared-state,"Shared -State">>. - - -[[gwt.connector.communication]] -== Communication with the Server-Side - -The main task of a connector is to communicate user interaction with the widget -to the server-side and receive state changes from the server-side and relay them -to the widget. - -Server-to-client communication is normally done using a __shared state__, as -described in -<<dummy/../../../framework/gwt/gwt-shared-state#gwt.shared-state,"Shared -State">>, as well as RPC calls. The serialization of the state data is handled -completely transparently. - -ifdef::web[] -Once the client-side engine receives the changes from the server, it reacts to -them by creating and notifying connectors that in turn manage widgets. This is -described in -<<dummy/../../../framework/gwt/gwt-advanced#gwt.advanced.phases,"Client-Side -Processing Phases">> in more -detail. -endif::web[] - -For client-to-server communication, a connector can make remote procedure calls -(RPC) to the server-side. Also, the server-side component can make RPC calls to -the connector. For a thorough description of the RPC mechanism, refer to -<<dummy/../../../framework/gwt/gwt-rpc#gwt.rpc,"RPC Calls Between Client- and -Server-Side">>. - - - - diff --git a/documentation/gwt/gwt-eclipse.asciidoc b/documentation/gwt/gwt-eclipse.asciidoc deleted file mode 100644 index adbaf9fea1..0000000000 --- a/documentation/gwt/gwt-eclipse.asciidoc +++ /dev/null @@ -1,162 +0,0 @@ ---- -title: Starting It Simple With Eclipse -order: 2 -layout: page ---- - -[[gwt.eclipse]] -= Starting It Simple With Eclipse - -((("Eclipse", "widget development", id="term.gwt.eclipse", range="startofrange"))) - - -Let us first take the easy way and create a simple component with Eclipse. While -you can develop new widgets with any IDE or even without, you may find Eclipse -and the Vaadin Plugin for it useful, as it automates all the basic routines of -widget development, most importantly the creation of new widgets. - -[[gwt.eclipse.widget]] -== Creating a Widget - -. Right-click the project in the Project Explorer and select "New > Other...". - -. In the wizard selection, select "Vaadin > Vaadin Widget" and click -[guibutton]#Next#. - -ifdef::web[] -+ -image::img/widget-new-select.png[] -endif::web[] - -. In the [guilabel]#New Component Wizard#, make the following settings. - -+ -image::img/widget-new-settings.png[] - -[guilabel]#Source folder#:: The root folder of the entire source tree. The default value is the default -source tree of your project, and you should normally leave it unchanged unless -you have a different project structure. - -[guilabel]#Package#:: The parent package under which the new server-side component should be created. -If the project does not already have a widget set, one is created under this -package in the [package]#widgetset# subpackage. The subpackage will contain the -[filename]#.gwt.xml# descriptor that defines the widget set and the new widget -stub under the [package]#widgetset.client# subpackage. - -[guilabel]#Name#:: The class name of the new __server-side component__. The name of the client-side -widget stub will be the same but with "- [classname]#Widget#" suffix, for -example, [classname]#MyComponentWidget#. You can rename the classes afterwards. - -[guilabel]#Superclass#:: The superclass of the server-side component. It is -[classname]#AbstractComponent# by default, but -[classname]#com.vaadin.ui.AbstractField# or -[classname]#com.vaadin.ui.AbstractSelect# are other commonly used superclasses. -If you are extending an existing component, you should select it as the -superclass. You can easily change the superclass later. - -[guilabel]#Template#:: Select which template to use. The default is [guilabel]#Full fledged#, which -creates the server-side component, the client-side widget, the connector, a -shared state object, and an RPC object. The [guilabel]#Connector only# leaves -the shared state and RPC objects out. - - - -+ -Finally, click [guibutton]#Finish# to create the new component. - - -The wizard will: - -* Create a server-side component stub in the base package - -* If the project does not already have a widget set, the wizard creates a GWT -module descriptor file ( [filename]#.gwt.xml#) in the base package and modifies -the servlet class or the [filename]#web.xml# deployment descriptor to specify -the widget set class name parameter for the application - -* Create a client-side widget stub (along with the connector and shared state and -RPC stubs) in the [filename]#client.componentname# package under the base -package - - -The structure of the server-side component and the client-side widget, and the -serialization of component state between them, is explained in the subsequent -sections of this chapter. - -To compile the widget set, click the [guibutton]#Compile widget set# button in -the Eclipse toolbar. See <<gwt.eclipse.compiling>> for details. After the -compilation finishes, you should be able to run your application as before, but -using the new widget set. The compilation result is written under the -[filename]#WebContent/VAADIN/widgetsets# folder. When you need to recompile the -widget set in Eclipse, see <<gwt.eclipse.compiling>>. For detailed information -on compiling widget sets, see -<<dummy/../../../framework/clientside/clientside-compiling#clientside.compiling,"Compiling -a Client-Side Module">>. - -The following setting is inserted in the [filename]#web.xml# deployment -descriptor to enable the widget set: - -[subs="normal"] ----- -<init-param> - <description>Application widgetset</description> - <param-name>widgetset</param-name> - <param-value>__com.example.myproject.widgetset.MyprojectApplicationWidgetset__</param-value> -</init-param> ----- -You can refactor the package structure if you find need for it, but GWT compiler -requires that the client-side code __must__ always be stored under a package -named " [filename]#client#" or a package defined with a [literal]#++source++# -element in the widget set descriptor. - - -[[gwt.eclipse.compiling]] -== Compiling the Widget Set - -After you edit a widget, you need to compile the widget set. The Vaadin Plugin -for Eclipse automatically suggests to compile the widget set in various -situations, such as when you save a client-side source file. If this gets -annoying, you can disable the automatic recompilation in the Vaadin category in -project settings, by selecting the [guilabel]#Suspend automatic widgetset -builds# option. - -You can compile the widget set manually by clicking the [guibutton]#Compile -widgetset# button in the Eclipse toolbar, shown in -<<figure.gwt.eclipse.compiling.toolbar>>, while the project is open and -selected. If the project has multiple widget set definition files, you need to -select the one to compile in the Project Explorer. - -[[figure.gwt.eclipse.compiling.toolbar]] -.The [guibutton]#Compile Widgetset# Button in Eclipse Toolbar -image::img/widgetset-compiling-toolbar-hi.png[] - -The compilation progress is shown in the [guilabel]#Console# panel in Eclipse, -illustrated in <<figure.gwt.eclipse.compiling>>. You should note especially the -list of widget sets found in the class path. - -[[figure.gwt.eclipse.compiling]] -.Compiling a Widget Set -image::img/widgetset-compiling.png[] - -The compilation output is written under the -[filename]#WebContent/VAADIN/widgetsets# folder, in a widget set specific -folder. - -You can speed up the compilation significantly by compiling the widget set only -for your browser during development. The generated [filename]#.gwt.xml# -descriptor stub includes a disabled element that specifies the target browser. -See -<<dummy/../../../framework/clientside/clientside-module#gwt.module.compilation-limiting,"Limiting -Compilation Targets">> for more details on setting the [literal]#++user-agent++# -property. - -For more information on compiling widget sets, see -<<dummy/../../../framework/clientside/clientside-compiling#clientside.compiling,"Compiling -a Client-Side Module">>. Should you compile a widget set outside Eclipse, you -need to refresh the project by selecting it in [guilabel]#Project Explorer# and -pressing F5. - - -(((range="endofrange", startref="term.gwt.eclipse"))) - - diff --git a/documentation/gwt/gwt-extension.asciidoc b/documentation/gwt/gwt-extension.asciidoc deleted file mode 100644 index efaece40ab..0000000000 --- a/documentation/gwt/gwt-extension.asciidoc +++ /dev/null @@ -1,145 +0,0 @@ ---- -title: Component and UI Extensions -order: 7 -layout: page ---- - -[[gwt.extension]] -= Component and UI Extensions - -Adding features to existing components by extending them by inheritance creates -a problem when you want to combine such features. For example, one add-on could -add spell-check to a [classname]#TextField#, while another could add client-side -validation. Combining such add-on features would be difficult if not impossible. -You might also want to add a feature to several or even to all components, but -extending all of them by inheritance is not really an option. Vaadin includes a -component plug-in mechanism for these purposes. Such plug-ins are simply called -__extensions__. - -Also a UI can be extended in a similar fashion. In fact, some Vaadin features -such as the JavaScript execution are UI extensions. - -Implementing an extension requires defining a server-side extension class and a -client-side connector. An extension can have a shared state with the connector -and use RPC, just like a component could. - -[[gwt.extension.server-side]] -== Server-Side Extension API - -The server-side API for an extension consists of class that extends (in the Java -sense) the [classname]#AbstractExtension# class. It typically has an -__extend()__ method, a constructor, or a static helper method that takes the -extended component or UI as a parameter and passes it to __super.extend()__. - -For example, let us have a trivial example with an extension that takes no -special parameters, and illustrates the three alternative APIs: - - ----- -public class CapsLockWarning extends AbstractExtension { - // You could pass it in the constructor - public CapsLockWarning(PasswordField field) { - super.extend(field); - } - - // Or in an extend() method - public void extend(PasswordField field) { - super.extend(field); - } - - // Or with a static helper - public static addTo(PasswordField field) { - new CapsLockWarning().extend(field); - } -} ----- - -The extension could then be added to a component as follows: - - ----- -PasswordField password = new PasswordField("Give it"); - -// Use the constructor -new CapsLockWarning(password); - -// ... or with the extend() method -new CapsLockWarning().extend(password); - -// ... or with the static helper -CapsLockWarning.addTo(password); - -layout.addComponent(password); ----- - -Adding a feature in such a "reverse" way is a bit unusual in the Vaadin API, but -allows type safety for extensions, as the method can limit the target type to -which the extension can be applied, and whether it is a regular component or a -UI. - - -[[gwt.extension.connector]] -== Extension Connectors - -An extension does not have a corresponding widget on the client-side, but only -an extension connector that extends the [classname]#AbstractExtensionConnector# -class. The server-side extension class is specified with a -[literal]#++@Connect++# annotation, just like in component connectors. - -An extension connector needs to implement the [methodname]#extend()# method, -which allows hooking to the extended component. The normal extension mechanism -is to modify the extended component as needed and add event handlers to it to -handle user interaction. An extension connector can share a state with the -server-side extension as well as make RPC calls, just like with components. - -In the following example, we implement a "Caps Lock warning" extension. It -listens for changes in Caps Lock state and displays a floating warning element -over the extended component if the Caps Lock is on. - - ----- -@Connect(CapsLockWarning.class) -public class CapsLockWarningConnector - extends AbstractExtensionConnector { - - @Override - protected void extend(ServerConnector target) { - // Get the extended widget - final Widget pw = - ((ComponentConnector) target).getWidget(); - - // Preparations for the added feature - final VOverlay warning = new VOverlay(); - warning.setOwner(pw); - warning.add(new HTML("Caps Lock is enabled!")); - - // Add an event handler - pw.addDomHandler(new KeyPressHandler() { - public void onKeyPress(KeyPressEvent event) { - if (isEnabled() && isCapsLockOn(event)) { - warning.showRelativeTo(passwordWidget); - } else { - warning.hide(); - } - } - }, KeyPressEvent.getType()); - } - - private boolean isCapsLockOn(KeyPressEvent e) { - return e.isShiftKeyDown() ^ - Character.isUpperCase(e.getCharCode()); - } -} ----- - -The [methodname]#extend()# method gets the connector of the extended component -as the parameter, in the above example a [classname]#PasswordFieldConnector#. It -can access the widget with the [methodname]#getWidget()#. - -An extension connector needs to be included in a widget set. The class must -therefore be defined under the [filename]#client# package of a widget set, just -like with component connectors. - - - - diff --git a/documentation/gwt/gwt-javascript.asciidoc b/documentation/gwt/gwt-javascript.asciidoc deleted file mode 100644 index 517740b33a..0000000000 --- a/documentation/gwt/gwt-javascript.asciidoc +++ /dev/null @@ -1,299 +0,0 @@ ---- -title: Integrating JavaScript Components and Extensions -order: 13 -layout: page ---- - -[[gwt.javascript]] -= Integrating JavaScript Components and Extensions - -((("JavaScript integration", id="term.gwt.javascript", range="startofrange"))) - - -Vaadin allows simplified integration of pure JavaScript components, as well as -component and UI extensions. The JavaScript connector code is published from the -server-side. As the JavaScript integration does not involve GWT programming, no -widget set compilation is needed. - -[[gwt.javascript.example]] -== Example JavaScript Library - -There are many kinds of component libraries for JavaScript. In the following, we -present a simple library that provides one object-oriented JavaScript component. -We use this example later to show how to integrate it with a server-side Vaadin -component. - -The example library includes a single [classname]#MyComponent# component, -defined in [filename]#mylibrary.js#. - - ----- -// Define the namespace -var mylibrary = mylibrary || {}; - -mylibrary.MyComponent = function (element) { - element.innerHTML = - "<div class='caption'>Hello, world!</div>" + - "<div class='textinput'>Enter a value: " + - "<input type='text' name='value'/>" + - "<input type='button' value='Click'/>" + - "</div>"; - - // Style it - element.style.border = "thin solid red"; - element.style.display = "inline-block"; - - // Getter and setter for the value property - this.getValue = function () { - return element. - getElementsByTagName("input")[0].value; - }; - this.setValue = function (value) { - element.getElementsByTagName("input")[0].value = - value; - }; - - // Default implementation of the click handler - this.click = function () { - alert("Error: Must implement click() method"); - }; - - // Set up button click - var button = element.getElementsByTagName("input")[1]; - var self = this; // Can't use this inside the function - button.onclick = function () { - self.click(); - }; -}; ----- - -When used in an HTML page, the library would be included with the following -definition: - - ----- -<script type="text/javascript" - src="mylibrary.js"></script> ----- - -You could then use it anywhere in the HTML document as follows: - - ----- -<!-- Placeholder for the component --> -<div id="foo"></div> - -<!-- Create the component and bind it to the placeholder --> -<script type="text/javascript"> - window.foo = new mylibrary.MyComponent( - document.getElementById("foo")); - window.foo.click = function () { - alert("Value is " + this.getValue()); - } -</script> ----- - -[[figure.gwt.javascript.example]] -.A JavaScript Component Example -image::img/javascript-component.png[] - -You could interact with the component with JavaScript for example as follows: - - ----- -<a href="javascript:foo.setValue('New value')">Click here</a> ----- - - -[[gwt.javascript.server-side]] -== A Server-Side API for a JavaScript Component - -To begin integrating such a JavaScript component, you would need to sketch a bit -how it would be used from a server-side Vaadin application. The component should -support writing the value as well as listening for changes to it. - - ----- -final MyComponent mycomponent = new MyComponent(); - -// Set the value from server-side -mycomponent.setValue("Server-side value"); - -// Process a value input by the user from the client-side -mycomponent.addValueChangeListener( - new MyComponent.ValueChangeListener() { - @Override - public void valueChange() { - Notification.show("Value: " + mycomponent.getValue()); - } -}); - -layout.addComponent(mycomponent); ----- - -[[gwt.javascript.server-side.component]] -=== Basic Server-Side Component - -A JavaScript component extends the [classname]#AbstractJavaScriptComponent#, -which handles the shared state and RPC for the component. - - ----- -package com.vaadin.book.examples.client.js; - -@JavaScript({"mylibrary.js", "mycomponent-connector.js"}) -public class MyComponent extends AbstractJavaScriptComponent { - public interface ValueChangeListener extends Serializable { - void valueChange(); - } - ArrayList<ValueChangeListener> listeners = - new ArrayList<ValueChangeListener>(); - public void addValueChangeListener( - ValueChangeListener listener) { - listeners.add(listener); - } - - public void setValue(String value) { - getState().value = value; - } - - public String getValue() { - return getState().value; - } - - @Override - protected MyComponentState getState() { - return (MyComponentState) super.getState(); - } -} ----- - -Notice later when creating the JavaScript connector that its name must match the -package name of this server-side class. - -The shared state of the component is as follows: - - ----- -public class MyComponentState extends JavaScriptComponentState { - public String value; -} ----- - -If the member variables are private, you need to have public setters and getters -for them, which you can use in the component. - - - -[[gwt.javascript.connector]] -== Defining a JavaScript Connector - -A JavaScript connector is a function that initializes the JavaScript component -and handles communication between the server-side and the JavaScript code.//TOD -Clarify - -code? - -A connector is defined as a connector initializer function that is added to the -[literal]#++window++# object. The name of the function must match the -server-side class name, with the full package path. Instead of the Java dot -notation for the package name, underscores need to be used as separators. - -The Vaadin client-side framework adds a number of methods to the connector -function. The [methodname]#this.getElement()# method returns the HTML DOM -element of the component. The [methodname]#this.getState()# returns a shared -state object with the current state as synchronized from the server-side. - - ----- -window.com_vaadin_book_examples_client_js_MyComponent = -function() { - // Create the component - var mycomponent = - new mylibrary.MyComponent(this.getElement()); - - // Handle changes from the server-side - this.onStateChange = function() { - mycomponent.setValue(this.getState().value); - }; - - // Pass user interaction to the server-side - var self = this; - mycomponent.click = function() { - self.onClick(mycomponent.getValue()); - }; -}; ----- - -In the above example, we pass user interaction using the JavaScript RPC -mechanism, as described in the next section. - - -[[gwt.javascript.rpc]] -== RPC from JavaScript to Server-Side - -User interaction with the JavaScript component has to be passed to the -server-side using an RPC (Remote Procedure Call) mechanism. The JavaScript RPC -mechanism is almost equal to regular client-side widgets, as described in -<<dummy/../../../framework/gwt/gwt-rpc#gwt.rpc,"RPC Calls Between Client- and -Server-Side">>. - -[[gwt.javascript.rpc.handling]] -=== Handling RPC Calls on the Server-Side - -Let us begin with the RPC function registration on the server-side. RPC calls -are handled on the server-side in function handlers that implement the -[interfacename]#JavaScriptFunction# interface. A server-side function handler is -registered with the [methodname]#addFunction()# method in -[classname]#AbstractJavaScriptComponent#. The server-side registration actually -defines a JavaScript method that is available in the client-side connector -object. - -Continuing from the server-side [classname]#MyComponent# example we defined -earlier, we add a constructor to it that registers the function. - - ----- -public MyComponent() { - addFunction("onClick", new JavaScriptFunction() { - @Override - public void call(JsonArray arguments) { - getState().setValue(arguments.getString(0)); - for (ValueChangeListener listener: listeners) - listener.valueChange(); - } - }); -} ----- - - -[[gwt.javascript.rpc.calling]] -=== Making an RPC Call from JavaScript - -An RPC call is made simply by calling the RPC method in the connector. In the -constructor function of the JavaScript connector, you could write as follows -(the complete connector code was given earlier): - - ----- -window.com_vaadin_book_examples_gwt_js_MyComponent = - function() { - ... - var connector = this; - mycomponent.click = function() { - connector.onClick(mycomponent.getValue()); - }; - }; ----- - -Here, the [literal]#++mycomponent.click++# is a function in the example -JavaScript library, as described in <<gwt.javascript.example>>. The -[methodname]#onClick()# is the method we defined on the server-side. We pass a -simple string parameter in the call. - -You can pass anything that is valid in JSON notation in the parameters. - - - -(((range="endofrange", startref="term.gwt.javascript"))) - - diff --git a/documentation/gwt/gwt-overview.asciidoc b/documentation/gwt/gwt-overview.asciidoc deleted file mode 100644 index 16841ab791..0000000000 --- a/documentation/gwt/gwt-overview.asciidoc +++ /dev/null @@ -1,86 +0,0 @@ ---- -title: Overview -order: 1 -layout: page ---- - -[[gwt.overview]] -= Overview - -Vaadin components consist of two parts: a server-side and a client-side -component. The latter are also called __widgets__ in Google Web Toolkit (GWT) -parlance. A Vaadin application uses the API of the server-side component, which -is rendered as a client-side widget in the browser. As on the server-side, the -client-side widgets form a hierarchy of layout widgets and regular widgets as -the leaves. - -[[figure.gwt.overview.widget-integration]] -.Integration of Client-Side Widgets -image::img/widget-integration-hi.png[] - -The communication between a client-side widget and a server-side component is -managed with a __connector__ that handles syncronizing the widget state and -events to and from the server-side. -((("connector"))) - -When rendering the user interface, a client-side connector and a widget are -created for each server-side component. The mapping from a component to a -connector is defined in the connector class with a [literal]#++@Connect++# -annotation, and the widget is created by the connector class. -((("@Connect"))) - -The state of a server-side component is synchronized automatically to the -client-side widget using a __shared state__ object. A shared state object -extends [classname]#AbstractComponentState# and it is used both in the -server-side and the client-side component. On the client-side, a connector -always has access to its state instance, as well to the state of its parent -component state and the states of its children. ((("state -object"))) -((("[classname]#AbstractComponentState#"))) - -The state sharing assumes that state is defined with standard Java types, such -as primitive and boxed primitive types, [classname]#String#, arrays, and certain -collections ( [classname]#List#, [classname]#Set#, and [classname]#Map#) of the -supported types. Also the Vaadin [classname]#Connector# and some special -internal types can be shared. - -In addition to state, both server- and client-side can make remote procedure -calls (RPC) to the other side. RPC is used foremost for event notifications. For -example, when a client-side connector of a button receives a click, it sends the -event to the server-side using RPC. - -[[gwt.overview.project]] -== Project Structure - -Widget set compilation, as described in -<<dummy/../../../framework/clientside/clientside-module#clientside.module,"Client-Side -Module Descriptor">>, requires using a special project structure, where the -client-side classes are located under a [filename]#client# package under the -package of the module descriptor. Any static resources, such as stylesheets and -images, should be located under a [filename]#public# folder (not Java package). -The source for the server-side component may be located anywhere, except not in -the client-side package. - -The basic project structure is illustrated in <<figure.gwt.overview.project>>. - -[[figure.gwt.overview.project]] -.Basic Widget Integration Project Structure -image::img/gwt-widget-files-hi.png[] - -The Eclipse wizard, described in -<<dummy/../../../framework/gwt/gwt-eclipse#gwt.eclipse,"Starting It Simple With -Eclipse">>, creates a widget integration skeleton with the above structure. - - -[[gwt.overview.javascript]] -== Integrating JavaScript Components - -In addition to the GWT widget integration, Vaadin offers a simplified way to -integrate pure JavaScript components. The JavaScript connector code is published -from the server-side. As the JavaScript integration does not involve GWT -programming, no widget set compilation is needed. -((("JavaScript"))) - - - - diff --git a/documentation/gwt/gwt-rpc.asciidoc b/documentation/gwt/gwt-rpc.asciidoc deleted file mode 100644 index b67773dbfe..0000000000 --- a/documentation/gwt/gwt-rpc.asciidoc +++ /dev/null @@ -1,112 +0,0 @@ ---- -title: RPC Calls Between Client- and Server-Side -order: 6 -layout: page ---- - -[[gwt.rpc]] -= RPC Calls Between Client- and Server-Side - -Vaadin supports making Remote Procedure Calls (RPC) between a server-side -component and its client-side widget counterpart. RPC calls are normally used -for communicating stateless events, such as button clicks or other user -interaction, in contrast to changing the shared state. Either party can make an -RPC call to the other side. When a client-side widget makes a call, a server -request is made. Calls made from the server-side to the client-side are -communicated in the response of the server request during which the call was -made. - -If you use Eclipse and enable the "Full-Fledged" widget in the New Vaadin Widget -wizard, it automatically creates a component with an RPC stub. - -[[gwt.rpc.server-side]] -== RPC Calls to the Server-Side - -RPC calls from the client-side to the server-side are made through an RPC -interface that extends the [interfacename]#ServerRpc# interface. A server RPC -interface simply defines any methods that can be called through the interface. - -For example: - - ----- -public interface MyComponentServerRpc extends ServerRpc { - public void clicked(String buttonName); -} ----- - -The above example defines a single [methodname]#clicks()# RPC call, which takes -a [classname]#MouseEventDetails# object as the parameter. - -You can pass the most common standard Java types, such as primitive and boxed -primitive types, [classname]#String#, and arrays and some collections ( -[classname]#List#, [classname]#Set#, and [classname]#Map#) of the supported -types. Also the Vaadin [classname]#Connector# and some special internal types -can be passed. - -An RPC method must return void - the widget set compiler should complain if it -doesn't. - -[[gwt.rpc.server-side.calling]] -=== Making a Call - -Before making a call, you need to instantiate the server RPC object with -[methodname]#RpcProxy.create()#. After that, you can make calls through the -server RPC interface that you defined, for example as follows: - - ----- -@Connect(MyComponent.class) -public class MyComponentConnector - extends AbstractComponentConnector { - - public MyComponentConnector() { - getWidget().addClickHandler(new ClickHandler() { - public void onClick(ClickEvent event) { - final MouseEventDetails mouseDetails = - MouseEventDetailsBuilder - .buildMouseEventDetails( - event.getNativeEvent(), - getWidget().getElement()); - MyComponentServerRpc rpc = - getRpcProxy(MyComponentServerRpc.class); - - // Make the call - rpc.clicked(mouseDetails.getButtonName()); - } - }); - } -} ----- - - -[[gwt.rpc.server-side.handling]] -=== Handling a Call - -RPC calls are handled in a server-side implementation of the server RPC -interface. The call and its parameters are serialized and passed to the server -in an RPC request transparently. - - ----- -public class MyComponent extends AbstractComponent { - private MyComponentServerRpc rpc = - new MyComponentServerRpc() { - private int clickCount = 0; - - public void clicked(String buttonName) { - Notification.show("Clicked " + buttonName); - } - }; - - public MyComponent() { - ... - registerRpc(rpc); - } -} ----- - - - - - diff --git a/documentation/gwt/gwt-server-side.asciidoc b/documentation/gwt/gwt-server-side.asciidoc deleted file mode 100644 index 1139b78a39..0000000000 --- a/documentation/gwt/gwt-server-side.asciidoc +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Creating a Server-Side Component -order: 3 -layout: page ---- - -[[gwt.server-side]] -= Creating a Server-Side Component - -Typical server-side Vaadin applications use server-side components that are -rendered on the client-side using their counterpart widgets. A server-side -component must manage state synchronization between the widget on the -client-side, in addition to any server-side logic. - -[[gwt.server-side.basic]] -== Basic Server-Side Component - -The component state is usually managed by a __shared state__, described later in -<<dummy/../../../framework/gwt/gwt-shared-state#gwt.shared-state,"Shared -State">>. - - ----- -public class MyComponent extends AbstractComponent { - public MyComponent() { - getState().setText("This is MyComponent"); - } - - @Override - protected MyComponentState getState() { - return (MyComponentState) super.getState(); - } -} ----- - - - - diff --git a/documentation/gwt/gwt-shared-state.asciidoc b/documentation/gwt/gwt-shared-state.asciidoc deleted file mode 100644 index 5594dd169c..0000000000 --- a/documentation/gwt/gwt-shared-state.asciidoc +++ /dev/null @@ -1,296 +0,0 @@ ---- -title: Shared State -order: 5 -layout: page ---- - -[[gwt.shared-state]] -= Shared State - -The basic communication from a server-side component to its the client-side -widget counterpart is handled using a __shared state__. The shared state is -serialized transparently. It should be considered read-only on the client-side, -as it is not serialized back to the server-side. - -A shared state object simply needs to extend the -[classname]#AbstractComponentState#. The member variables should normally be -declared as public. - - ----- -public class MyComponentState extends AbstractComponentState { - public String text; -} ----- - -A shared state should never contain any logic. If the members have private -visibility for some reason, you can also use public setters and getters, in -which case the property must not be public. - -[[gwt.shared-state.location]] -== Location of Shared-State Classes - -The shared-state classes are used by both server- and client-side classes, but -widget set compilation requires that they must be located in a client-side -source package. The default location is under a [filename]#client# package under -the package of the [filename]#.gwt.xml# descriptor. If you wish to organize the -shared classes separately from other client-side code, you can define separate -client-side source packages for pure client-side classes and any shared classes. -In addition to shared state classes, shared classes could include enumerations -and other classes needed by shared-state or RPC communication. - -For example, you could have the following definitions in the -[filename]#.gwt.xml# descriptor: - - ----- - <source path="client" /> - <source path="shared" /> ----- - -The paths are relative to the package containing the descriptor. - - -[[gwt.shared-state.component]] -== Accessing Shared State on Server-Side - -A server-side component can access the shared state with the -[methodname]#getState()# method. It is required that you override the base -implementation with one that returns the shared state object cast to the proper -type, as follows: - - ----- -@Override -public MyComponentState getState() { - return (MyComponentState) super.getState(); -} ----- - -You can then use the [methodname]#getState()# to access the shared state object -with the proper type. - - ----- -public MyComponent() { - getState().setText("This is the initial state"); - .... -} ----- - - -[[gwt.shared-state.connector]] -== Handing Shared State in a Connector - -A connector can access a shared state with the [methodname]#getState()# method. -The access should be read-only. It is required that you override the base -implementation with one that returns the proper shared state type, as follows: - - ----- -@Override -public MyComponentState getState() { - return (MyComponentState) super.getState(); -} ----- - -State changes made on the server-side are communicated transparently to the -client-side. When a state change occurs, the [methodname]#onStateChanged()# -method in the connector is called. You should should always call the superclass -method before anything else to handle changes to common component properties. - - ----- -@Override -public void onStateChanged(StateChangeEvent stateChangeEvent) { - super.onStateChanged(stateChangeEvent); - - // Copy the state properties to the widget properties - final String text = getState().getText(); - getWidget().setText(text); -} ----- - -The crude [methodname]#onStateChanged()# method is called when any of the state -properties is changed, allowing you to have even complex logic in how you -manipulate the widget according to the state changes. In most cases, however, -you can handle the property changes more easily and also more efficiently by -using instead the [classname]#@OnStateChange# annotation on the handler methods -for each property, as described next in <<gwt.shared-state.onstatechange>>, or -by delegating the property value directly to the widget, as described in -<<gwt.shared-state.delegatetowidget>>. - -ifdef::web[] -The processing phases of state changes are described in more detail in -<<dummy/../../../framework/gwt/gwt-advanced#gwt.advanced.phases,"Client-Side -Processing Phases">>. -endif::web[] - - -[[gwt.shared-state.onstatechange]] -== Handling Property State Changes with [classname]#@OnStateChange# - -The [classname]#@OnStateChange# annotation can be used to mark a connector -method that handles state change on a particular property, given as parameter -for the annotation. In addition to higher clarity, this avoids handling all -property changes if a state change occurs in only one or some of them. However, -if a state change can occur in multiple properties, you can only use this -technique if the properties do not have interaction that prevents handling them -separately in arbitrary order. - -We can replace the [methodname]#onStateChange()# method in the earlier connector -example with the following: - - ----- -@OnStateChange("text") -void updateText() { - getWidget().setText(getState().text); -} ----- - -If the shared state property and the widget property have same name and do not -require any type conversion, as is the case in the above example, you could -simplify this even further by using the [classname]#@DelegateToWidget# -annotation for the shared state property, as described in -<<gwt.shared-state.delegatetowidget>>. - - -[[gwt.shared-state.delegatetowidget]] -== Delegating State Properties to Widget - -The [classname]#@DelegateToWidget# annotation for a shared state property -defines automatic delegation of the property value to the corresponding widget -property of the same name and type, by calling the respective setter for the -property in the widget. - - ----- -public class MyComponentState extends AbstractComponentState { - @DelegateToWidget - public String text; -} ----- - -This is equivalent to handling the state change in the connector, as done in the -example in <<gwt.shared-state.onstatechange>>. - -If you want to delegate a shared state property to a widget property of another -name, you can give the property name as a string parameter for the annotation. - - ----- -public class MyComponentState extends AbstractComponentState { - @DelegateToWidget("description") - public String text; -} ----- - - -[[gwt.shared-state.referring]] -== Referring to Components in Shared State - -While you can pass any regular Java objects through a shared state, referring to -another component requires special handling because on the server-side you can -only refer to a server-side component, while on the client-side you only have -widgets. References to components can be made by referring to their connectors -(all server-side components implement the [interfacename]#Connector# interface). - - ----- -public class MyComponentState extends AbstractComponentState { - public Connector otherComponent; -} ----- - -You could then access the component on the server-side as follows: - - ----- -public class MyComponent { - public void MyComponent(Component otherComponent) { - getState().otherComponent = otherComponent; - } - - public Component getOtherComponent() { - return (Component)getState().otherComponent; - } - - // And the cast method - @Override - public MyComponentState getState() { - return (MyComponentState) super.getState(); - } -} ----- - -On the client-side, you should cast it in a similar fashion to a -[classname]#ComponentConnector#, or possibly to the specific connector type if -it is known. - - -[[gwt.shared-state.resource]] -== Sharing Resources - -Resources, which commonly are references to icons or other images, are another -case of objects that require special handling. A [interfacename]#Resource# -object exists only on the server-side and on the client-side you have an URL to -the resource. You need to use the [methodname]#setResource()# and -[methodname]#getResource()# on the server-side to access a resource, which is -serialized to the client-side separately. - -Let us begin with the server-side API: - - ----- -public class MyComponent extends AbstractComponent { - ... - - public void setMyIcon(Resource myIcon) { - setResource("myIcon", myIcon); - } - - public Resource getMyIcon() { - return getResource("myIcon"); - } -} ----- - -On the client-side, you can then get the URL of the resource with -[methodname]#getResourceUrl()#. - - ----- -@Override -public void onStateChanged(StateChangeEvent stateChangeEvent) { - super.onStateChanged(stateChangeEvent); - ... - - // Get the resource URL for the icon - getWidget().setMyIcon(getResourceUrl("myIcon")); -} ----- - -The widget could then use the URL, for example, as follows: - - ----- -public class MyWidget extends Label { - ... - - Element imgElement = null; - - public void setMyIcon(String url) { - if (imgElement == null) { - imgElement = DOM.createImg(); - getElement().appendChild(imgElement); - } - - DOM.setElementAttribute(imgElement, "src", url); - } -} ----- - - - - diff --git a/documentation/gwt/gwt-styling.asciidoc b/documentation/gwt/gwt-styling.asciidoc deleted file mode 100644 index 0071039316..0000000000 --- a/documentation/gwt/gwt-styling.asciidoc +++ /dev/null @@ -1,88 +0,0 @@ ---- -title: Styling a Widget -order: 8 -layout: page ---- - -[[gwt.styling]] -= Styling a Widget - -To make your widget look stylish, you need to style it. There are two basic ways -to define CSS styles for a component: in the widget sources and in a theme. A -default style should be defined in the widget sources, and different themes can -then modify the style. - -[[gwt.styling.class]] -== Determining the CSS Class - -The CSS class of a widget element is normally defined in the widget class and -set with [methodname]#setStyleName()#. A widget should set the styles for its -sub-elements as it desires. - -For example, you could style a composite widget with an overall style and with -separate styles for the sub-widgets as follows: - - ----- -public class MyPickerWidget extends ComplexPanel { - public static final String CLASSNAME = "mypicker"; - - private final TextBox textBox = new TextBox(); - private final PushButton button = new PushButton("..."); - - public MyPickerWidget() { - setElement(Document.get().createDivElement()); - setStylePrimaryName(CLASSNAME); - - textBox.setStylePrimaryName(CLASSNAME + "-field"); - button.setStylePrimaryName(CLASSNAME + "-button"); - - add(textBox, getElement()); - add(button, getElement()); - - button.addClickHandler(new ClickHandler() { - public void onClick(ClickEvent event) { - Window.alert("Calendar picker not yet supported!"); - } - }); - } -} ----- - -In addition, all Vaadin components get the [literal]#++v-widget++# class. If it -extends an existing Vaadin or GWT widget, it will inherit CSS classes from that -as well. - - -[[gwt.styling.default]] -== Default Stylesheet - -A client-side module, which is normally a widget set, can include stylesheets. -They must be placed under the [filename]#public# folder under the folder of the -widget set, a described in -<<dummy/../../../framework/clientside/clientside-module#clientside.module.stylesheet,"Specifying -a Stylesheet">>. - -For example, you could style the widget described above as follows: - - ----- -.mypicker { - white-space: nowrap; -} - -.mypicker-button { - display: inline-block; - border: 1px solid black; - padding: 3px; - width: 15px; - text-align: center; -} ----- - -Notice that some size settings may require more complex handling and calculating -the sizes dynamically. - - - - diff --git a/documentation/gwt/gwt-vaadin-6-migration.asciidoc b/documentation/gwt/gwt-vaadin-6-migration.asciidoc deleted file mode 100644 index 6cecc581c5..0000000000 --- a/documentation/gwt/gwt-vaadin-6-migration.asciidoc +++ /dev/null @@ -1,58 +0,0 @@ ---- -title: Migrating from Vaadin 6 -order: 12 -layout: page ---- - -[[gwt.vaadin-6-migration]] -= Migrating from Vaadin 6 - -((("Vaadin 6 Migration", "add-ons", id="term.gwt.vaadin-6-migration", range="startofrange"))) - - -The client-side architecture was redesigned almost entirely in Vaadin 7. In -Vaadin 6, state synchronization was done explicitly by serializing and -deserializing the state on the server- and client-side. In Vaadin 7, the -serialization is handled automatically by the framework using state objects. - -In Vaadin 6, a server-side component serialized its state to the client-side -using the [interfacename]#Paintable# interface in the client-side and -deserialized the state through the [interfacename]#VariableOwner# interface. In -Vaadin 7, these are done through the [interfacename]#ClientConnector# interface. - -On the client-side, a widget deserialized its state through the -[interfacename]#Paintable# interface and sent state changes through the -[interfacename]#ApplicationConnection# object. In Vaadin 7, these are replaced -with the [interfacename]#ServerConnector#. - -In addition to state synchronization, Vaadin 7 has an RPC mechanism that can be -used for communicating events. They are especially useful for events that are -not associated with a state change, such as a button click. - -The framework ensures that the connector hierarchy and states are up-to-date -when listeners are called. - -[[gwt.vaadin-6-migration.quick]] -== Quick (and Dirty) Migration - -Vaadin 7 has a compatibility layer that allows quick conversion of a widget. - -. Create a connector class, such as [classname]#MyConnector#, that extends -[classname]#LegacyConnector#. Implement the [methodname]#getWidget()# method. - -. Move the [literal]#++@ClientWidget(MyWidget.class)++# from the server-side -component, say [classname]#MyComponent#, to the [classname]#MyConnector# class -and make it [literal]#++@Connect(MyComponent.class)++#. - -. Have the server-side component implement the LegacyComponent interface to enable -compatibility handling. - -. Remove any calls to [literal]#++super.paintContent()++# - -. Update any imports on the client-side - - - -(((range="endofrange", startref="term.gwt.vaadin-6-migration"))) - - diff --git a/documentation/gwt/img/addon-export.png b/documentation/gwt/img/addon-export.png Binary files differdeleted file mode 100644 index d6463ba050..0000000000 --- a/documentation/gwt/img/addon-export.png +++ /dev/null diff --git a/documentation/gwt/img/gwt-hostedmode-project-1.png b/documentation/gwt/img/gwt-hostedmode-project-1.png Binary files differdeleted file mode 100644 index c52ebceab3..0000000000 --- a/documentation/gwt/img/gwt-hostedmode-project-1.png +++ /dev/null diff --git a/documentation/gwt/img/gwt-widget-files-hi.png b/documentation/gwt/img/gwt-widget-files-hi.png Binary files differdeleted file mode 100644 index 15db99550e..0000000000 --- a/documentation/gwt/img/gwt-widget-files-hi.png +++ /dev/null diff --git a/documentation/gwt/img/gwt-widget-files-lo.png b/documentation/gwt/img/gwt-widget-files-lo.png Binary files differdeleted file mode 100644 index e974b2ce25..0000000000 --- a/documentation/gwt/img/gwt-widget-files-lo.png +++ /dev/null diff --git a/documentation/gwt/img/gwt-widgets-hi.png b/documentation/gwt/img/gwt-widgets-hi.png Binary files differdeleted file mode 100644 index e004c74041..0000000000 --- a/documentation/gwt/img/gwt-widgets-hi.png +++ /dev/null diff --git a/documentation/gwt/img/gwt-widgets-lo.png b/documentation/gwt/img/gwt-widgets-lo.png Binary files differdeleted file mode 100644 index 82a4babdf0..0000000000 --- a/documentation/gwt/img/gwt-widgets-lo.png +++ /dev/null diff --git a/documentation/gwt/img/javascript-component.png b/documentation/gwt/img/javascript-component.png Binary files differdeleted file mode 100644 index 379f50a404..0000000000 --- a/documentation/gwt/img/javascript-component.png +++ /dev/null diff --git a/documentation/gwt/img/widget-integration-hi.png b/documentation/gwt/img/widget-integration-hi.png Binary files differdeleted file mode 100644 index fc44d9944b..0000000000 --- a/documentation/gwt/img/widget-integration-hi.png +++ /dev/null diff --git a/documentation/gwt/img/widget-integration-lo.png b/documentation/gwt/img/widget-integration-lo.png Binary files differdeleted file mode 100644 index 01fa1e39fc..0000000000 --- a/documentation/gwt/img/widget-integration-lo.png +++ /dev/null diff --git a/documentation/gwt/img/widget-new-select.png b/documentation/gwt/img/widget-new-select.png Binary files differdeleted file mode 100644 index ab2c94b706..0000000000 --- a/documentation/gwt/img/widget-new-select.png +++ /dev/null diff --git a/documentation/gwt/img/widget-new-settings.png b/documentation/gwt/img/widget-new-settings.png Binary files differdeleted file mode 100644 index 717d4f19fb..0000000000 --- a/documentation/gwt/img/widget-new-settings.png +++ /dev/null diff --git a/documentation/gwt/img/widgetset-compiling-toolbar-hi.png b/documentation/gwt/img/widgetset-compiling-toolbar-hi.png Binary files differdeleted file mode 100644 index 79e14ec60e..0000000000 --- a/documentation/gwt/img/widgetset-compiling-toolbar-hi.png +++ /dev/null diff --git a/documentation/gwt/img/widgetset-compiling-toolbar-lo.png b/documentation/gwt/img/widgetset-compiling-toolbar-lo.png Binary files differdeleted file mode 100644 index 70b3e9bfb4..0000000000 --- a/documentation/gwt/img/widgetset-compiling-toolbar-lo.png +++ /dev/null diff --git a/documentation/gwt/img/widgetset-compiling.png b/documentation/gwt/img/widgetset-compiling.png Binary files differdeleted file mode 100644 index 93d0d891cb..0000000000 --- a/documentation/gwt/img/widgetset-compiling.png +++ /dev/null diff --git a/documentation/gwt/original-drawings/gwt-custom-architecture.svg b/documentation/gwt/original-drawings/gwt-custom-architecture.svg deleted file mode 100644 index e6075310b2..0000000000 --- a/documentation/gwt/original-drawings/gwt-custom-architecture.svg +++ /dev/null @@ -1,2747 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- sodipodi:docname="gwt-custom-architecture.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="600.02155"
- inkscape:export-ydpi="600.02155"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10"
- guidetolerance="10"
- objecttolerance="6"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="2"
- inkscape:cx="624.5333"
- inkscape:cy="640.06515"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1680"
- inkscape:window-height="1026"
- inkscape:window-x="1280"
- inkscape:window-y="0"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="true"
- showguides="true"
- inkscape:guide-bbox="true"
- inkscape:snap-guide="true"
- inkscape:snap-intersection-line-segments="true">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false"
- originx="0mm"
- originy="0mm" />
- <sodipodi:guide
- orientation="1,0"
- position="24.804688,1049.8125"
- id="guide3041" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <linearGradient
- inkscape:collect="always"
- id="linearGradient10356">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop10358" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop10360" />
- </linearGradient>
- <pattern
- patternUnits="userSpaceOnUse"
- width="19.488184"
- height="5.3149635"
- patternTransform="translate(442.02756,179.82281)"
- id="pattern31837">
- <path
- id="path31833"
- d="M 0.88582677,4.4291368 L 18.602357,4.4291368"
- style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- id="path31835"
- d="M 0.88582677,0.88582677 L 18.602357,0.88582677"
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </pattern>
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern31837"
- id="pattern31843"
- patternTransform="matrix(0.8219623,-0.5106659,0.5106659,0.8219623,407.01829,190.47423)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern31843"
- id="pattern39357"
- patternTransform="matrix(0.8219623,-0.5106659,0.5106659,0.8219623,450.53409,296.58029)" />
- <marker
- inkscape:stockid="CurvyCross"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="CurvyCross"
- style="overflow:visible">
- <g
- id="g18903"
- transform="scale(0.6)">
- <path
- id="path18905"
- d="M 4.6254930,-5.0456926 C 1.8654930,-5.0456926 -0.37450702,-2.8056926 -0.37450702,-0.045692580 C -0.37450702,2.7143074 1.8654930,4.9543074 4.6254930,4.9543074"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none" />
- <path
- id="path18907"
- d="M -5.4129913,-5.0456926 C -2.6529913,-5.0456926 -0.41299131,-2.8056926 -0.41299131,-0.045692580 C -0.41299131,2.7143074 -2.6529913,4.9543074 -5.4129913,4.9543074"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none" />
- </g>
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4794"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4590"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient841"
- id="linearGradient4390"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9208103,1.086)"
- x1="10.800377"
- y1="-94.637573"
- x2="116.61332"
- y2="-94.637573" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4376"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3095"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1683">
- <stop
- style="stop-color:#db1f0c;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1684" />
- <stop
- style="stop-color:#761006;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1685" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient24714"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient2263">
- <stop
- style="stop-color:#ff9696;stop-opacity:0.61960787;"
- offset="0"
- id="stop2264" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.70103091;"
- offset="1.0000000"
- id="stop2265" />
- </linearGradient>
- <linearGradient
- id="linearGradient2891">
- <stop
- style="stop-color:#ff0000;stop-opacity:0.68041235;"
- offset="0"
- id="stop2892" />
- <stop
- style="stop-color:#ff0000;stop-opacity:0.14432989;"
- offset="1"
- id="stop2893" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient24524"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path3964"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.8,0.8)" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient2870"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient239278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient865">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop866" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop868" />
- </linearGradient>
- <linearGradient
- id="linearGradient1400">
- <stop
- style="stop-color:#000000;stop-opacity:0.67843139;"
- offset="0.0000000"
- id="stop1401" />
- <stop
- style="stop-color:#000000;stop-opacity:0.32941177;"
- offset="0.56999999"
- id="stop1403" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop1402" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient233706"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- y2="383.76529"
- y1="843.20789"
- xlink:href="#linearGradient1507"
- x2="547.80804"
- x1="201.38963"
- id="linearGradient1506"
- gradientTransform="scale(0.9446888,1.0585496)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3450"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1290">
- <stop
- style="stop-color:#b2a269;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1291" />
- <stop
- style="stop-color:#6d5b18;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1292" />
- </linearGradient>
- <linearGradient
- id="linearGradient846">
- <stop
- style="stop-color:#e7e7e7;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop847" />
- <stop
- style="stop-color:#a5a5a5;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop848" />
- </linearGradient>
- <linearGradient
- id="linearGradient841">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop842" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop843" />
- </linearGradient>
- <linearGradient
- id="linearGradient853">
- <stop
- style="stop-color:#000000;stop-opacity:0.29752067;"
- offset="0.00000000"
- id="stop854" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop855" />
- </linearGradient>
- <linearGradient
- y2="287.73825"
- y1="169.4436"
- xlink:href="#linearGradient1492"
- x2="622.33325"
- x1="741.63898"
- id="linearGradient1497"
- gradientTransform="scale(0.9552926,1.0467997)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1501">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1502" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1504" />
- </linearGradient>
- <linearGradient
- y2="418.53635"
- y1="236.12772"
- xlink:href="#linearGradient1501"
- x2="330.88034"
- x1="687.96375"
- id="linearGradient1499"
- gradientTransform="scale(0.9890091,1.011113)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1492">
- <stop
- style="stop-color:#dadada;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1493" />
- <stop
- style="stop-color:#f1f1f1;stop-opacity:1.0000000;"
- offset="0.34923077"
- id="stop1496" />
- <stop
- style="stop-color:#f0f0f0;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1494" />
- </linearGradient>
- <linearGradient
- y2="689.86005"
- y1="230.07422"
- xlink:href="#linearGradient1492"
- x2="351.7063"
- x1="728.96643"
- id="linearGradient1495"
- gradientTransform="scale(0.955425,1.0466546)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1507">
- <stop
- style="stop-color:#000000;stop-opacity:0.095505618;"
- offset="0.0000000"
- id="stop1508" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1510" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3877"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1699">
- <stop
- style="stop-color:#017eff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1700" />
- <stop
- style="stop-color:#ecfaff;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1701" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0"
- refX="0"
- id="DiamondEmpty"
- style="overflow:visible">
- <path
- id="path7"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="translate(-5,0)" />
- </marker>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3268"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,541.12253,30.198804)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3270"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3272"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3274"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3276"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- id="linearGradient7299">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop7301" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop7303" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3280"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- id="linearGradient5596">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop5598" />
- <stop
- style="stop-color:#e7e790;stop-opacity:0.56489879"
- offset="1"
- id="stop5600" />
- </linearGradient>
- <linearGradient
- id="linearGradient19816">
- <stop
- id="stop19818"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop19820"
- offset="1"
- style="stop-color:#e7e790;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient11508">
- <stop
- id="stop11510"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop11512"
- offset="1"
- style="stop-color:#008401;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3286">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3288" />
- <stop
- style="stop-color:#79e291;stop-opacity:1;"
- offset="1"
- id="stop3290" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2Lend"
- style="overflow:visible">
- <path
- id="path16811"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
- </marker>
- <linearGradient
- id="linearGradient7447">
- <stop
- style="stop-color:#ff6161;stop-opacity:1;"
- offset="0"
- id="stop7449" />
- <stop
- style="stop-color:#840929;stop-opacity:1;"
- offset="1"
- id="stop7451" />
- </linearGradient>
- <linearGradient
- id="linearGradient7485">
- <stop
- style="stop-color:#b6bcef;stop-opacity:1;"
- offset="0"
- id="stop7487" />
- <stop
- style="stop-color:#4026b1;stop-opacity:1;"
- offset="1"
- id="stop7489" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0"
- refX="0"
- id="EmptyArrow2"
- style="overflow:visible">
- <path
- id="path13"
- d="M 0,0 L 0,-5 L -10,0 L 0,5 L 0,0 z"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(-1,0,0,-1,-10,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient92445"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112303"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112301"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112299"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.293791,1.3701286e-2,-5.3144349e-3,0.5018339,-46.792176,73.88505)"
- r="95.092682"
- fy="112.14567"
- fx="153.46323"
- cy="112.14567"
- cx="153.46323"
- id="radialGradient112297"
- xlink:href="#linearGradient11508"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112295"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112293"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112291"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112289"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112287"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient1694">
- <stop
- id="stop1695"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:0.0000000;" />
- <stop
- id="stop1696"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient112278">
- <stop
- id="stop112280"
- offset="0.0000000"
- style="stop-color:#0c1fdb;stop-opacity:1.0000000;" />
- <stop
- id="stop112282"
- offset="1.0000000"
- style="stop-color:#062d76;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- gradientTransform="scale(1.475472,0.677749)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1686"
- inkscape:collect="always"
- x1="242.39842"
- x2="242.39842"
- xlink:href="#linearGradient1683"
- y1="1035.3337"
- y2="636.25543" />
- <linearGradient
- gradientTransform="scale(1.475472,0.677749)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1690"
- inkscape:collect="always"
- x1="240.86183"
- x2="240.86183"
- xlink:href="#linearGradient1683"
- y1="635.74658"
- y2="1038.9441" />
- <linearGradient
- gradientTransform="scale(1.479463,0.675921)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1692"
- inkscape:collect="always"
- x1="244.8598"
- x2="244.8598"
- xlink:href="#linearGradient1694"
- y1="827.01349"
- y2="646.06177" />
- <linearGradient
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient112273"
- inkscape:collect="always"
- x1="303.90472"
- x2="-93.992599"
- xlink:href="#linearGradient1683"
- y1="-492.41382"
- y2="-492.41382" />
- <linearGradient
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient112271"
- inkscape:collect="always"
- x1="-92.98716"
- x2="315.00735"
- xlink:href="#linearGradient1683"
- y1="-477.69666"
- y2="-477.69669" />
- <linearGradient
- gradientTransform="matrix(0,1.475473,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1705"
- inkscape:collect="always"
- x1="112.06259"
- x2="-170.00552"
- xlink:href="#linearGradient1694"
- y1="-485.28952"
- y2="-485.28973" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5287"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5285"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5283"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5281"
- xlink:href="#linearGradient11508"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient11602"
- xlink:href="#linearGradient19816"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient15668"
- xlink:href="#linearGradient7299"
- inkscape:collect="always" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- y2="148.38934"
- x2="389.01984"
- y1="148.38934"
- x1="96.085953"
- id="linearGradient5355"
- xlink:href="#linearGradient5349"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4152">
- <stop
- id="stop4154"
- offset="0"
- style="stop-color:#6b6bff;stop-opacity:1;" />
- <stop
- id="stop4156"
- offset="1"
- style="stop-color:#6b6bff;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient5349">
- <stop
- id="stop5351"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop5353"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient112247">
- <stop
- id="stop112249"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop112251"
- offset="1"
- style="stop-color:#a090e7;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient9263">
- <stop
- id="stop9265"
- offset="0"
- style="stop-color:#000000;stop-opacity:0" />
- <stop
- id="stop9267"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112241"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutL">
- <path
- transform="scale(0.8,0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16734" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleInL"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleInL">
- <path
- transform="scale(-0.8,-0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16743" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutM"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutM">
- <path
- transform="scale(0.4,0.4)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16731" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker112234"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend">
- <path
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path16829" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker112230"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Lend">
- <path
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- id="path112232" />
- </marker>
- <linearGradient
- id="linearGradient112224">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop112226" />
- <stop
- style="stop-color:#e7e790;stop-opacity:1;"
- offset="1"
- id="stop112228" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112220"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="matrix(-1,0,0,-1,-10,0)"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 0,-5 L -10,0 L 0,5 L 0,0 z"
- id="path112222" />
- </marker>
- <marker
- style="overflow:visible"
- id="EmptyArrow"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="matrix(-1,0,0,-1,-10,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 0,-5 L -12.5,0 L 0,5 L 0,0 z M -0.5,0 L -0.5,-4.5 L -12,0 L -0.5,4.5 L -0.5,0 z"
- id="path9" />
- </marker>
- <linearGradient
- id="linearGradient112212">
- <stop
- id="stop112214"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop112216"
- offset="1"
- style="stop-color:#79e291;stop-opacity:1;" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112208"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="translate(-5,0)"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z"
- id="path112210" />
- </marker>
- <marker
- style="overflow:visible"
- id="DiamondL"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DiamondL">
- <path
- transform="scale(0.8,0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z"
- id="path4404" />
- </marker>
- <linearGradient
- id="linearGradient112200">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop112202" />
- <stop
- style="stop-color:#e27979;stop-opacity:1"
- offset="1"
- id="stop112204" />
- </linearGradient>
- <linearGradient
- id="linearGradient11516">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop11518" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop11520" />
- </linearGradient>
- <marker
- 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 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- id="path6743" />
- </marker>
- <inkscape:perspective
- id="perspective112192"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9300"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9574"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9882"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective10244"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient10356"
- id="linearGradient10362"
- x1="407.48032"
- y1="968.17322"
- x2="669.66157"
- y2="968.17322"
- gradientUnits="userSpaceOnUse" />
- <inkscape:perspective
- id="perspective5379"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective5446"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective7010"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- </defs>
- <metadata
- id="metadata2480">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1"
- style="display:inline">
- <text
- id="text4185"
- y="306.07721"
- x="621.04919"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="306.07721"
- x="621.04919"
- sodipodi:role="line"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191">Makes XMLHttpRequest</tspan></text>
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"
- transform="translate(0.8858251,-0.3900341)"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="translate(-2.6856035,22.824252)"
- id="g3178" />
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"
- transform="translate(0.8858251,-0.3900341)"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <g
- transform="matrix(0.5,0,0,0.5,104.22881,0.4040411)"
- id="g18053" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6905"
- transform="translate(-179.02978,-418.06896)"><flowRegion
- id="flowRegion6907"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use6909"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6911">VariableOwner</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6913"
- transform="translate(-451.39331,-789.85008)"><flowRegion
- id="flowRegion6915"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use6917"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6919">VariableOwner</flowPara></flowRoot> <g
- style="opacity:1;display:inline"
- id="g39423"
- transform="translate(206.81066,290.95386)">
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot39425"
- transform="translate(-5.2378947,106.19782)"><flowRegion
- id="flowRegion39427"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use39429"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara39431">Sizeable</flowPara></flowRoot> <g
- id="g39433"
- transform="translate(-46.062995,-30.433073)">
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot39435"
- transform="translate(-5.2378947,106.19782)"><flowRegion
- id="flowRegion39437"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use39439"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara39441">Sizeable</flowPara></flowRoot> </g>
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot39443"
- transform="translate(75.734798,-715.9695)"><flowRegion
- id="flowRegion39445"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use39447"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara39449">VariableOwner</flowPara></flowRoot> <g
- style="display:inline"
- id="g39451"
- transform="translate(123.00096,-20.40135)">
- <rect
- style="opacity:1;fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39453"
- width="138.189"
- height="35.43309"
- x="167.13719"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text39455"
- y="253.39159"
- x="179.05836"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.39159"
- x="179.05836"
- id="tspan39457"
- sodipodi:role="line">AbstractComponent</tspan></text>
- </g>
- </g>
- <g
- style="opacity:1;display:inline"
- id="g39459"
- transform="translate(340.44161,-112.12466)">
- <rect
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39461"
- width="70.392639"
- height="35.43309"
- x="167.13719"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text39463"
- y="253.03885"
- x="180.51506"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.03885"
- x="180.51506"
- id="tspan39465"
- sodipodi:role="line">Widget</tspan></text>
- </g>
- <g
- style="opacity:1;fill:#49c2f1;fill-opacity:1;display:inline"
- id="g39467"
- transform="translate(422.80098,-112.12465)">
- <rect
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39469"
- width="70.866135"
- height="35.433071"
- x="191.07704"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text39471"
- y="253.39159"
- x="226.28407"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.39159"
- x="226.28407"
- id="tspan39473"
- sodipodi:role="line"
- style="fill:#49c2f1;fill-opacity:1">MyWidget</tspan></text>
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:3.89763784;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 613.87802,137.79893 L 577.97144,137.79893"
- id="path39475"
- inkscape:connector-type="polyline" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot17420"
- style="font-size:10px;opacity:1"
- transform="translate(-901.04469,-383.91286)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion17422"><rect
- id="rect17424"
- width="45"
- height="18"
- x="1495"
- y="507.36218"
- style="font-size:10px" /></flowRegion><flowPara
- id="flowPara17426">...</flowPara></flowRoot> <g
- style="opacity:1;display:inline"
- id="g17430"
- transform="translate(421.30178,-24.183732)">
- <rect
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect17432"
- width="77.952766"
- height="35.433243"
- x="189.03285"
- y="232.13176"
- ry="3.7880721" />
- <text
- id="text17434"
- y="253.39159"
- x="226.45808"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.39159"
- x="226.45808"
- id="tspan17436"
- sodipodi:role="line">VMyWidget</tspan></text>
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:3.89763784;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 649.31103,206.44803 L 649.31107,157.01547"
- id="path17438"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g17430"
- inkscape:connection-end="#g39467" />
- <g
- style="opacity:1;display:inline"
- id="g17457"
- transform="translate(340.03339,-24.259052)">
- <rect
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect17459"
- width="77.952766"
- height="35.433086"
- x="164.00203"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text17461"
- y="253.17523"
- x="201.76237"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.17523"
- x="201.76237"
- id="tspan17463"
- sodipodi:role="line">Paintable</tspan></text>
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:3.89763784;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 608.83463,225.66461 L 581.98819,225.66458"
- id="path17465"
- inkscape:connector-type="polyline"
- inkscape:connection-end="#g17457"
- inkscape:connection-start="#g17430" />
- <g
- style="opacity:1;display:inline"
- id="g17467"
- transform="translate(346.88124,29.879808)">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect17469"
- width="152.3622"
- height="35.433071"
- x="160.69756"
- y="232.13174"
- ry="3.7880721" />
- <text
- id="text17471"
- y="254.30551"
- x="234.41504"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="254.30551"
- x="234.41504"
- sodipodi:role="line"
- id="tspan17475">ApplicationConnection</tspan></text>
- <text
- id="text39409"
- y="239.02148"
- x="164.24088"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="239.02148"
- x="164.24088"
- sodipodi:role="line"
- id="tspan39411">com.vaadin.terminal.gwt.client.</tspan></text>
- </g>
- <rect
- style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39497"
- width="230.31499"
- height="67.322838"
- x="489.86221"
- y="98.82254"
- ry="3.7880721" />
- <path
- sodipodi:open="true"
- transform="translate(55.457988,12.815138)"
- sodipodi:end="6.2827149"
- sodipodi:start="0"
- d="M 491.37734,228.54329 A 4.1726308,4.3281136 0 1 1 491.37734,228.54125"
- sodipodi:ry="4.3281136"
- sodipodi:rx="4.1726308"
- sodipodi:cy="228.54329"
- sodipodi:cx="487.20471"
- id="path80520"
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:2.12598425, 2.12598425;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- sodipodi:type="arc" />
- <path
- style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#DotSu);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
- d="M 542.76669,263.54512 L 542.68974,241.28846"
- id="path80518"
- inkscape:connector-type="polyline" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;opacity:1;fill:#49c2f1;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot80522"
- transform="translate(341.83362,64.299257)"><flowRegion
- id="flowRegion80524"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use80526"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara80528">1</flowPara></flowRoot> <text
- id="text18086"
- y="254.72804"
- x="550.22314"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;opacity:1;fill:#49c2f1;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="254.72804"
- x="550.22314"
- id="tspan18088"
- sodipodi:role="line">n</tspan></text>
- <text
- id="text18090"
- y="112.99577"
- x="493.40552"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="112.99577"
- x="493.40552"
- id="tspan18092"
- sodipodi:role="line">Google Web Toolkit</tspan></text>
- <rect
- style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect18094"
- width="230.31496"
- height="138.18898"
- x="489.86221"
- y="173.23199"
- ry="3.7880721" />
- <text
- id="text18096"
- y="187.40521"
- x="493.40552"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="187.40521"
- x="493.40552"
- id="tspan18098"
- sodipodi:role="line">Vaadin Client-Side Integration</tspan></text>
- <g
- style="opacity:1;display:inline"
- id="g18100"
- transform="translate(346.88124,129.09241)">
- <rect
- style="opacity:1;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect18102"
- width="152.3622"
- height="35.433071"
- x="160.69756"
- y="232.13174"
- ry="3.7880721" />
- <text
- id="text18104"
- y="253.39159"
- x="236.56898"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.39159"
- x="236.56898"
- sodipodi:role="line"
- id="tspan18106">CommunicationManager</tspan></text>
- <text
- id="text31853"
- y="239.21835"
- x="164.24086"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="239.21835"
- x="164.24086"
- sodipodi:role="line"
- id="tspan31855">com.vaadin.terminal.server.</tspan></text>
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:3.89763784;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:url(#CurvyCross);marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 615.75989,361.22415 L 615.75989,297.44463"
- id="path20937"
- inkscape:connector-type="polyline" />
- <rect
- style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect29628"
- width="230.31499"
- height="258.46454"
- x="489.86218"
- y="343.5076"
- ry="3.7880721" />
- <g
- style="opacity:1;display:inline"
- id="g29630"
- transform="translate(361.70138,178.62338)">
- <rect
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect29632"
- width="74.409454"
- height="35.433071"
- x="167.13719"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text29634"
- y="253.94359"
- x="203.12589"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.94359"
- x="203.12589"
- id="tspan29636"
- sodipodi:role="line">Paintable</tspan></text>
- <text
- id="text31857"
- y="239.29366"
- x="170.6805"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="239.29366"
- x="170.6805"
- sodipodi:role="line"
- id="tspan31859">com.vaadin.terminal.</tspan></text>
- </g>
- <path
- sodipodi:open="true"
- transform="translate(78.814249,182.28714)"
- sodipodi:end="6.2827149"
- sodipodi:start="0"
- d="M 491.37734,228.54329 A 4.1726308,4.3281136 0 1 1 491.37734,228.54125"
- sodipodi:ry="4.3281136"
- sodipodi:rx="4.1726308"
- sodipodi:cy="228.54329"
- sodipodi:cx="487.20471"
- id="path29638"
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:2.12598425, 2.12598425;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- sodipodi:type="arc" />
- <path
- style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#DotSu);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
- d="M 566.28891,396.2131 L 566.17788,410.83043"
- id="path29640"
- inkscape:connector-type="polyline"
- inkscape:connection-end="#g29630" />
- <text
- id="text29642"
- y="406.84302"
- x="571.8631"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;opacity:1;fill:#49c2f1;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="406.84302"
- x="571.8631"
- id="tspan29644"
- sodipodi:role="line">n</tspan></text>
- <g
- style="opacity:1;display:inline"
- id="g29646"
- transform="translate(340.21386,327.32072)">
- <rect
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect29648"
- width="95.669289"
- height="35.433056"
- x="177.9948"
- y="232.13174"
- ry="3.7880721" />
- <text
- id="text29650"
- y="253.39159"
- x="226.45808"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.39159"
- x="226.45808"
- id="tspan29652"
- sodipodi:role="line">MyComponent</tspan></text>
- </g>
- <rect
- style="opacity:1;fill:url(#pattern39357);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.83464575;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect29654"
- width="70.866173"
- height="24.80315"
- x="589.18512"
- y="315.16116"
- ry="2.6516509" />
- <text
- id="text31847"
- y="323.33075"
- x="620.76477"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="323.33075"
- x="620.76477"
- id="tspan31849"
- sodipodi:role="line">Server connection:</tspan><tspan
- y="335.83075"
- x="620.76477"
- sodipodi:role="line"
- id="tspan31851">UIDL / JSON / HTTP(S)</tspan></text>
- <g
- style="opacity:1;display:inline"
- id="g31861"
- transform="translate(358.15809,224.0328)">
- <rect
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect31863"
- width="81.496056"
- height="35.433067"
- x="167.13719"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text31865"
- y="253.46689"
- x="208.33708"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.46689"
- x="208.33708"
- id="tspan31867"
- sodipodi:role="line">Component</tspan></text>
- <text
- id="text31869"
- y="239.29366"
- x="170.6805"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="239.29366"
- x="170.6805"
- sodipodi:role="line"
- id="tspan31871">com.vaadin.ui.</tspan></text>
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:3.89763784;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 566.04331,456.23985 L 566.0433,446.2635"
- id="path31873"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g31861"
- inkscape:connection-end="#g29630" />
- <text
- id="text35578"
- y="441.57971"
- x="577.30432"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="441.57971"
- x="577.30432"
- sodipodi:role="line"
- id="tspan35582"
- style="font-size:8px;font-style:oblique;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:FreeSans;-inkscape-font-specification:FreeSans Oblique">paint()</tspan></text>
- <text
- id="text39308"
- y="533.98322"
- x="504.96332"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="533.98322"
- x="504.96332"
- sodipodi:role="line"
- style="font-size:8px;font-style:oblique;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:FreeSans;-inkscape-font-specification:FreeSans Oblique"
- id="tspan39312">getTag()</tspan></text>
- <text
- id="text39320"
- y="533.98322"
- x="581.10388"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="533.98322"
- x="581.10388"
- sodipodi:role="line"
- style="font-size:8px;font-style:oblique;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:FreeSans;-inkscape-font-specification:FreeSans Oblique"
- id="tspan39322">paintContent()</tspan></text>
- <text
- id="text39324"
- y="182.64143"
- x="665.93225"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="182.64143"
- x="665.93225"
- sodipodi:role="line"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan39330">Must implement</tspan><tspan
- y="190.14143"
- x="665.93225"
- sodipodi:role="line"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan39387">updateFromUIDL()</tspan><tspan
- y="197.64143"
- x="665.93225"
- sodipodi:role="line"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan41293">to deserialize state</tspan><tspan
- y="205.14143"
- x="665.93225"
- sodipodi:role="line"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan41295">from server</tspan></text>
- <path
- sodipodi:nodetypes="cc"
- style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:3.89763784;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker18095);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 566.0433,557.95246 L 566.04331,538.19265"
- id="path39332"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g29646"
- inkscape:connection-end="#g39423" />
- <text
- id="text39351"
- y="205.12175"
- x="500.49213"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="205.12175"
- x="500.49213"
- sodipodi:role="line"
- id="tspan39353">com.vaadin.terminal.gwt.client.</tspan></text>
- <text
- id="text39363"
- y="355.59467"
- x="493.86993"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="355.59467"
- x="493.86993"
- id="tspan39365"
- sodipodi:role="line">Server-Side Integration</tspan></text>
- <text
- id="text39367"
- y="548.01917"
- x="623.17151"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="548.01917"
- x="623.17151"
- sodipodi:role="line"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan39373">Must implement </tspan><tspan
- y="558.01917"
- x="623.17151"
- sodipodi:role="line"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan10255">changeVariables() for</tspan><tspan
- y="568.01917"
- x="623.17151"
- sodipodi:role="line"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan41267">deserialization and</tspan><tspan
- y="578.01917"
- x="623.17151"
- sodipodi:role="line"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4143">paintContent() for</tspan><tspan
- y="588.01917"
- x="623.17151"
- sodipodi:role="line"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan10263">serialization using the</tspan><tspan
- y="598.01917"
- x="623.17151"
- sodipodi:role="line"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan41283">PaintTarget interface.</tspan></text>
- <text
- id="text39379"
- y="236.34618"
- x="514.09521"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="236.34618"
- x="514.09521"
- sodipodi:role="line"
- style="font-size:6px;font-style:oblique;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:FreeSans;-inkscape-font-specification:FreeSans Oblique"
- id="tspan39381">updateFromUIDL()</tspan></text>
- <path
- sodipodi:open="true"
- transform="translate(162.10637,35.357838)"
- sodipodi:end="6.2827149"
- sodipodi:start="0"
- d="M 491.37734,228.54329 A 4.1726308,4.3281136 0 1 1 491.37734,228.54125"
- sodipodi:ry="4.3281136"
- sodipodi:rx="4.1726308"
- sodipodi:cy="228.54329"
- sodipodi:cx="487.20471"
- id="path39385"
- style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:2.12598425, 2.12598425;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- sodipodi:type="arc" />
- <path
- style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:2.83464575;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#DotSu);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
- d="M 649.30143,244.88127 L 649.29188,264.02924"
- id="path39383"
- inkscape:connector-type="polyline"
- inkscape:connection-start="#g17430" />
- <text
- id="text39389"
- y="293.70444"
- x="514.1615"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="293.70444"
- x="514.1615"
- sodipodi:role="line"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan39393">updateVariable()</tspan></text>
- <text
- id="text39397"
- y="251.18474"
- x="666.13989"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="251.18474"
- x="666.13989"
- sodipodi:role="line"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan39401">Needs to call</tspan><tspan
- y="258.68475"
- x="666.13989"
- sodipodi:role="line"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan3019">updateVariable() to</tspan><tspan
- y="266.18475"
- x="666.13989"
- sodipodi:role="line"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan41291">to serialize state to</tspan><tspan
- y="273.68475"
- x="666.13989"
- sodipodi:role="line"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan10346">server</tspan></text>
- <text
- id="text39405"
- y="258.27136"
- x="642.34912"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;opacity:1;fill:#49c2f1;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="258.27136"
- x="642.34912"
- id="tspan39407"
- sodipodi:role="line">1</tspan></text>
- <path
- inkscape:connector-type="polyline"
- id="path4676"
- d="M 566.04331,502.75956 L 566.04331,491.67291"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-end="#g31861"
- inkscape:connection-start="#g39423" />
- <g
- style="opacity:1;display:inline"
- id="g41251"
- transform="translate(471.16378,224.47694)">
- <rect
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect41253"
- width="95.669289"
- height="35.889771"
- x="149.80078"
- y="231.76292"
- ry="3.7880721" />
- <text
- id="text41255"
- y="253.02277"
- x="197.12627"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.02277"
- x="197.12627"
- id="tspan41257"
- sodipodi:role="line">PaintTarget</tspan></text>
- <text
- id="text41259"
- y="238.84953"
- x="153.34409"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="238.84953"
- x="153.34409"
- sodipodi:role="line"
- id="tspan41261">com.vaadin.terminal.</tspan></text>
- </g>
- <path
- inkscape:connector-type="polyline"
- id="path41269"
- d="M 632.18017,506.73099 L 648.60872,492.12963"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f39300;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker52016);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- inkscape:connection-end="#g41251" />
- <text
- id="text41271"
- y="499.56174"
- x="665.98163"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="499.56174"
- x="665.98163"
- sodipodi:role="line"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan41273">addAttribute()</tspan><tspan
- y="509.56174"
- x="665.98163"
- sodipodi:role="line"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan41275">addVariable()</tspan><tspan
- y="519.56177"
- x="665.98163"
- sodipodi:role="line"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan41277" /></text>
- <flowRoot
- xml:space="preserve"
- id="flowRoot10241"
- style="font-size:10px;opacity:1;display:inline"
- transform="translate(-924.45188,32.730089)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion10243"><rect
- id="rect10245"
- width="45"
- height="18"
- x="1495"
- y="507.36218"
- style="font-size:10px" /></flowRegion><flowPara
- id="flowPara10247">...</flowPara></flowRoot> <text
- id="text10319"
- y="109.52374"
- x="650.04742"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="109.52374"
- x="650.04742"
- sodipodi:role="line"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan10327">Any GWT widget -</tspan><tspan
- y="117.02374"
- x="650.04742"
- sodipodi:role="line"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan10338">an existing or your own</tspan></text>
- <path
- style="fill:none;fill-rule:evenodd;stroke:#49c2f1;stroke-width:0.88582677;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
- d="M 663.48425,244.09813 C 663.48425,261.81467 663.48425,275.9879 663.48425,275.9879 L 716.63385,275.9879"
- id="path3023"
- sodipodi:nodetypes="ccc" />
- <path
- style="fill:none;fill-rule:evenodd;stroke:#49c2f1;stroke-width:0.88582677;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
- d="M 663.04134,209.10799 C 663.04134,209.10799 663.04134,177.21822 663.04134,177.21822 L 716.19094,177.21822"
- id="path4137"
- sodipodi:nodetypes="ccc" />
- <g
- style="opacity:1;display:inline"
- id="g4149"
- transform="translate(478.2504,178.87065)">
- <rect
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4151"
- width="95.669289"
- height="35.433067"
- x="142.71416"
- y="231.76292"
- ry="3.7880721" />
- <text
- id="text4153"
- y="253.02277"
- x="191.00067"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.02277"
- x="191.00067"
- id="tspan4155"
- sodipodi:role="line">VariableOwner</tspan></text>
- <text
- id="text4157"
- y="238.84953"
- x="146.25746"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="238.84953"
- x="146.25746"
- sodipodi:role="line"
- id="tspan4159">com.vaadin.terminal.</tspan></text>
- <text
- id="text4161"
- y="262.61942"
- x="170.55461"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="262.61942"
- x="170.55461"
- sodipodi:role="line"
- id="tspan4163"
- style="font-size:8px;font-style:oblique;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:FreeSans;-inkscape-font-specification:FreeSans Oblique">changeVariables()</tspan></text>
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="opacity:1;fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:3.89763784;stroke-linecap:round;stroke-linejoin:round;marker-start:none;marker-mid:none;marker-end:url(#marker44971);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
- d="M 603.59673,461.55519 L 615.89069,446.80245"
- id="path4165"
- inkscape:connector-type="polyline" />
- <path
- style="fill:none;fill-rule:evenodd;stroke:#49c2f1;stroke-width:0.88582677;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
- d="M 613.87795,572.24267 C 613.87795,572.24267 613.87795,540.3529 613.87795,540.3529 L 716.63385,540.3529"
- id="path4171"
- sodipodi:nodetypes="ccc" />
- <text
- id="text4173"
- y="510.23032"
- x="558.37817"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="510.23032"
- x="558.37817"
- sodipodi:role="line"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4179">(Implements paint())</tspan></text>
- </g>
-</svg>
diff --git a/documentation/gwt/original-drawings/gwt-hostedmode-project-annotated.svg b/documentation/gwt/original-drawings/gwt-hostedmode-project-annotated.svg deleted file mode 100644 index e131105e49..0000000000 --- a/documentation/gwt/original-drawings/gwt-hostedmode-project-annotated.svg +++ /dev/null @@ -1,311 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- sodipodi:docname="gwt-hostedmode-project-annotated.svg"
- sodipodi:docbase="/home/magi/.encfs/plain/itmill/workspace/toolkit5/doc/manual/original-drawings/gwt"
- inkscape:output_extension="org.inkscape.output.svg.inkscape">
- <defs
- id="defs1903">
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective46" />
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path3994"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.8)" />
- </marker>
- <inkscape:perspective
- id="perspective2546"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="0.98994949"
- inkscape:cx="356.00434"
- inkscape:cy="623.849"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1279"
- inkscape:window-height="1025"
- inkscape:window-x="1280"
- inkscape:window-y="0"
- showgrid="false" />
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <image
- y="41.719334"
- x="15.285729"
- id="image2548"
- height="787"
- width="398"
- sodipodi:absref="/home/magi/itmill/doc-6.2/manual/img/gwt/gwt-hostedmode-project-1.png"
- xlink:href="/home/magi/itmill/doc-6.2/manual/img/gwt/gwt-hostedmode-project-1.png" />
- <path
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="M 424.28571,119.50504 C 473.57142,118.79075 391.69409,238.68848 471.84699,242.35347 C 388.2458,245.51364 474.28571,389.63991 425,389.63991"
- id="path2900"
- sodipodi:nodetypes="ccc" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot2902"
- style="font-size:16px;font-style:oblique;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans Oblique"
- transform="translate(12.836838,18.144301)"><flowRegion
- id="flowRegion2904"><rect
- id="rect2906"
- width="210"
- height="65.714287"
- x="463.57144"
- y="213.79076"
- style="font-size:16px;font-style:oblique;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans Oblique" /></flowRegion><flowPara
- id="flowPara2908">The Source Files (*)</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot2912"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;font-family:Bitstream Vera Sans"
- transform="translate(12.756373,510.51146)"><flowRegion
- id="flowRegion2914"><rect
- id="rect2916"
- width="210"
- height="65.714287"
- x="463.57144"
- y="213.79076"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans" /></flowRegion><flowPara
- id="flowPara2918">Vaadin Library (*)</flowPara></flowRoot> <path
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#TriangleOutL);stroke-opacity:1;display:inline"
- d="M 473.10225,732.84728 L 313.81653,761.41871"
- id="path2922"
- inkscape:connector-type="polyline" />
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 415.93752,464.85307 C 431.5598,464.58175 402.85826,483.59805 433.26144,484.60969 C 403.04967,485.73434 432.89387,505.92924 416.37874,505.5721"
- id="path4091"
- sodipodi:nodetypes="ccc" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot4093"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;font-family:Bitstream Vera Sans"
- transform="translate(11.982935,251.01943)"><flowRegion
- id="flowRegion4095"><rect
- id="rect4097"
- width="304.28571"
- height="39.285717"
- x="463.57144"
- y="213.79076"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans" /></flowRegion><flowPara
- id="flowPara4099">Google Web Toolkit Libraries (*)</flowPara></flowRoot> <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#TriangleOutL);stroke-opacity:1;display:inline"
- d="M 473.1327,477.51807 L 440.75495,483.4267"
- id="path4101"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc" />
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#TriangleOutL);stroke-opacity:1;display:inline"
- d="M 472.26541,687.44268 L 212.78462,700.50473"
- id="path4115"
- inkscape:connector-type="polyline" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot4119"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;font-family:Bitstream Vera Sans"
- transform="translate(11.982935,463.55608)"><flowRegion
- id="flowRegion4121"><rect
- id="rect4123"
- width="304.28571"
- height="39.285717"
- x="463.57144"
- y="213.79076"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans" /></flowRegion><flowPara
- id="flowPara4125">Compiled widgetsets</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot4127"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;font-family:Bitstream Vera Sans"
- transform="translate(12.350123,314.09045)"><flowRegion
- id="flowRegion4129"><rect
- id="rect4131"
- width="304.28571"
- height="39.285717"
- x="463.57144"
- y="213.79076"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans" /></flowRegion><flowPara
- id="flowPara4133">Widgetset build script</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot4135"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;font-family:Bitstream Vera Sans"
- transform="translate(11.31106,564.69749)"><flowRegion
- id="flowRegion4137"><rect
- id="rect4139"
- width="304.28571"
- height="39.285717"
- x="463.57144"
- y="213.79076"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans" /></flowRegion><flowPara
- id="flowPara4141">Deployment descriptor</flowPara></flowRoot> <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#TriangleOutL);stroke-opacity:1;display:inline"
- d="M 468.39811,791.44124 L 170.46047,796.18743"
- id="path4143"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc" />
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#TriangleOutL);stroke-opacity:1;display:inline"
- d="M 471.25526,540.71164 L 233.69398,566.38387"
- id="path4145"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot2552"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;font-family:Bitstream Vera Sans"
- transform="translate(10.547935,-71.968455)"><flowRegion
- id="flowRegion2554"><rect
- id="rect2556"
- width="304.28571"
- height="39.285717"
- x="463.57144"
- y="213.79076"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans" /></flowRegion><flowPara
- id="flowPara2558">The new server-side component</flowPara></flowRoot> <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#TriangleOutL);stroke-opacity:1;display:inline"
- d="M 468.56776,150.74748 L 211.81358,174.3994"
- id="path2560"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot2562"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;font-family:Bitstream Vera Sans"
- transform="translate(10.510626,-39.22151)"><flowRegion
- id="flowRegion2564"><rect
- id="rect2566"
- width="304.28571"
- height="39.285717"
- x="463.57144"
- y="213.79076"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans" /></flowRegion><flowPara
- id="flowPara2568">The application</flowPara></flowRoot> <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#TriangleOutL);stroke-opacity:1;display:inline"
- d="M 468.53045,185.37259 L 276.42603,199.93314"
- id="path2570"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot2572"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;font-family:Bitstream Vera Sans"
- transform="translate(11.77857,79.716869)"><flowRegion
- id="flowRegion2574"><rect
- id="rect2576"
- width="304.28571"
- height="39.285717"
- x="463.57144"
- y="213.79076"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans" /></flowRegion><flowPara
- id="flowPara2578">Default style for the widget set</flowPara></flowRoot> <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#TriangleOutL);stroke-opacity:1;display:inline"
- d="M 468.06944,304.75318 L 206.2645,289.00915"
- id="path2580"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot2582"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;font-family:Bitstream Vera Sans"
- transform="translate(11.920705,142.10267)"><flowRegion
- id="flowRegion2584"><rect
- id="rect2586"
- width="304.28571"
- height="39.285717"
- x="463.57144"
- y="213.79076"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans" /></flowRegion><flowPara
- id="flowPara2588">A custom GWT widget</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot2590"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;font-family:Bitstream Vera Sans"
- transform="translate(10.37383,176.10267)"><flowRegion
- id="flowRegion2592"><rect
- id="rect2594"
- width="304.28571"
- height="39.285717"
- x="463.57144"
- y="213.79076"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans" /></flowRegion><flowPara
- id="flowPara2596">The Vaadin integration widget</flowPara></flowRoot> <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#TriangleOutL);stroke-opacity:1;display:inline"
- d="M 470.08692,365.11676 L 231.51549,360.48441"
- id="path2598"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc" />
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#TriangleOutL);stroke-opacity:1;display:inline"
- d="M 470.08692,398.4518 L 216.36321,384.72808"
- id="path2600"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot2602"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;font-family:Bitstream Vera Sans"
- transform="translate(13.677615,110.84885)"><flowRegion
- id="flowRegion2604"><rect
- id="rect2606"
- width="304.28571"
- height="39.285717"
- x="463.57144"
- y="213.79076"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans" /></flowRegion><flowPara
- id="flowPara2608">The widget set definition file</flowPara></flowRoot> <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#TriangleOutL);stroke-opacity:1;display:inline"
- d="M 470.09591,333.3864 L 295.16409,314.61191"
- id="path2618"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc" />
- </g>
-</svg>
diff --git a/documentation/gwt/original-drawings/gwt-widget-files.svg b/documentation/gwt/original-drawings/gwt-widget-files.svg deleted file mode 100644 index e8a593de8a..0000000000 --- a/documentation/gwt/original-drawings/gwt-widget-files.svg +++ /dev/null @@ -1,1970 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="gwt-widget-files.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- sodipodi:modified="true"
- version="1.1">
- <defs
- id="defs1903">
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective41239" />
- <linearGradient
- id="linearGradient1699">
- <stop
- style="stop-color:#017eff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1700" />
- <stop
- style="stop-color:#ecfaff;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1701" />
- </linearGradient>
- <linearGradient
- xlink:href="#linearGradient841"
- id="linearGradient1944" />
- <radialGradient
- xlink:href="#linearGradient841"
- r="14.610766"
- id="radialGradient856"
- fy="202.26838"
- fx="35.230234"
- cy="131.97556"
- cx="34.1285"
- gradientTransform="scale(2.2802787,0.4385429)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="-69.63434"
- y1="-117.11155"
- xlink:href="#linearGradient1507"
- x2="126.79182"
- x1="115.92603"
- id="linearGradient1556"
- gradientTransform="scale(0.5909046,1.6923205)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="383.7653"
- y1="843.20789"
- xlink:href="#linearGradient1507"
- x2="547.80806"
- x1="201.38964"
- id="linearGradient1506"
- gradientTransform="scale(0.9446888,1.0585496)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="418.53634"
- y1="236.12772"
- xlink:href="#linearGradient1501"
- x2="330.88033"
- x1="687.96373"
- id="linearGradient1499"
- gradientTransform="scale(0.9890091,1.011113)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="287.73826"
- y1="169.44361"
- xlink:href="#linearGradient1492"
- x2="622.33327"
- x1="741.63899"
- id="linearGradient1497"
- gradientTransform="scale(0.9552926,1.0467997)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="689.86002"
- y1="230.07422"
- xlink:href="#linearGradient1492"
- x2="351.7063"
- x1="728.96644"
- id="linearGradient1495"
- gradientTransform="scale(0.955425,1.0466546)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1492">
- <stop
- style="stop-color:#dadada;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1493" />
- <stop
- style="stop-color:#f1f1f1;stop-opacity:1.0000000;"
- offset="0.34923077"
- id="stop1496" />
- <stop
- style="stop-color:#f0f0f0;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1494" />
- </linearGradient>
- <linearGradient
- id="linearGradient1501">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1502" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1504" />
- </linearGradient>
- <linearGradient
- id="linearGradient1507">
- <stop
- style="stop-color:#000000;stop-opacity:0.095505618;"
- offset="0.0000000"
- id="stop1508" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1510" />
- </linearGradient>
- <radialGradient
- xlink:href="#linearGradient853"
- r="48.175187"
- id="radialGradient861"
- fy="152.04478"
- fx="51.138559"
- cy="171.4256"
- cx="50.460038"
- gradientTransform="scale(1.5547505,0.64319)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient853">
- <stop
- style="stop-color:#000000;stop-opacity:0.29752067;"
- offset="0.00000000"
- id="stop854" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop855" />
- </linearGradient>
- <linearGradient
- y2="197.13656"
- y1="1.1644779"
- xlink:href="#linearGradient853"
- x2="37.213289"
- x1="133.68162"
- id="linearGradient859"
- gradientTransform="scale(1.3864154,0.7212846)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- xlink:href="#linearGradient846"
- id="linearGradient850"
- gradientTransform="scale(0.9646355,1.036661)"
- x1="30.408737"
- y1="87.607189"
- x2="86.629186"
- y2="87.607189"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient846">
- <stop
- style="stop-color:#e7e7e7;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop847" />
- <stop
- style="stop-color:#a5a5a5;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop848" />
- </linearGradient>
- <linearGradient
- y2="54.652753"
- y1="96.863347"
- xlink:href="#linearGradient846"
- x2="129.31949"
- x1="131.7996"
- id="linearGradient858"
- gradientTransform="scale(0.9424607,1.0610522)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="85.035176"
- y1="83.628501"
- xlink:href="#linearGradient846"
- x2="56.191431"
- x1="38.806116"
- id="linearGradient851"
- gradientTransform="scale(1.7828975,0.5608847)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="26.470001"
- y1="173.90754"
- xlink:href="#linearGradient1290"
- x2="-129.90755"
- x1="-132.24597"
- id="linearGradient860"
- gradientTransform="scale(0.8297524,1.2051788)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1290">
- <stop
- style="stop-color:#b2a269;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1291" />
- <stop
- style="stop-color:#6d5b18;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1292" />
- </linearGradient>
- <linearGradient
- id="linearGradient841">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop842" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop843" />
- </linearGradient>
- <radialGradient
- xlink:href="#linearGradient853"
- r="24.002857"
- id="radialGradient864"
- fy="147.87567"
- fx="50.886028"
- cy="164.70526"
- cx="50.886028"
- gradientTransform="scale(1.5144268,0.6603158)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="85.416771"
- y1="83.615703"
- xlink:href="#linearGradient846"
- x2="102.17324"
- x1="31.956963"
- id="linearGradient849"
- gradientTransform="scale(0.9409737,1.062729)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="104.05719"
- y1="100.73712"
- xlink:href="#linearGradient853"
- x2="44.801419"
- x1="12.204311"
- id="linearGradient840"
- gradientTransform="scale(1.1388142,0.8781063)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="60.889287"
- y1="60.489965"
- xlink:href="#linearGradient841"
- x2="123.6407"
- x1="158.26196"
- id="linearGradient845"
- gradientTransform="scale(0.7584832,1.3184208)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- xlink:href="#linearGradient841"
- id="linearGradient844" />
- <linearGradient
- y2="72.56311"
- y1="48.488918"
- xlink:href="#linearGradient841"
- x2="112.24639"
- x1="111.10228"
- id="linearGradient852"
- gradientTransform="scale(1.1433927,0.8745902)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient227220"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient227266"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <linearGradient
- xlink:href="#linearGradient1507"
- id="linearGradient233555" />
- <linearGradient
- y2="0.0078125000"
- y1="0.97656250"
- xlink:href="#linearGradient1507"
- x2="0.78260869"
- x1="0.052173913"
- id="linearGradient233553" />
- <linearGradient
- y2="0.54687500"
- y1="-0.54545456"
- xlink:href="#linearGradient1501"
- x2="0.062992126"
- x1="0.94656491"
- id="linearGradient233551" />
- <linearGradient
- y2="1.3281250"
- y1="0.32812500"
- xlink:href="#linearGradient1492"
- x2="-0.37606838"
- x1="0.63247865"
- id="linearGradient233549" />
- <linearGradient
- y2="1.1796875"
- y1="0.21093750"
- xlink:href="#linearGradient1492"
- x2="0.085470088"
- x1="0.88034189"
- id="linearGradient233547" />
- <linearGradient
- id="linearGradient233539">
- <stop
- style="stop-color:#c6c6c6;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop233541" />
- <stop
- style="stop-color:#f1f1f1;stop-opacity:1.0000000;"
- offset="0.34923077"
- id="stop233543" />
- <stop
- style="stop-color:#f0f0f0;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop233545" />
- </linearGradient>
- <linearGradient
- id="linearGradient233533">
- <stop
- style="stop-color:#000000;stop-opacity:0.095505618;"
- offset="0.0000000"
- id="stop233535" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop233537" />
- </linearGradient>
- <radialGradient
- xlink:href="#linearGradient1400"
- r="68.379425"
- id="radialGradient858"
- fy="77.944687"
- fx="79.895966"
- cy="77.944687"
- cx="79.895966"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- xlink:href="#linearGradient853"
- r="200.73203"
- id="radialGradient852"
- fy="325.76621"
- fx="240.38737"
- cy="477.83306"
- cx="227.0055"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient233522">
- <stop
- style="stop-color:#e3f9ff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop233524" />
- <stop
- style="stop-color:#73bee7;stop-opacity:1.0000000;"
- offset="0.36194703"
- id="stop867" />
- <stop
- style="stop-color:#438ec5;stop-opacity:1.0000000;"
- offset="0.62534887"
- id="stop856" />
- <stop
- style="stop-color:#477daf;stop-opacity:1.0000000;"
- offset="0.72607356"
- id="stop1185" />
- <stop
- style="stop-color:#2b5798;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop233529" />
- </linearGradient>
- <linearGradient
- y2="112.48578"
- y1="199.48993"
- xlink:href="#linearGradient865"
- x2="61.94431"
- x1="152.00712"
- id="linearGradient870"
- gradientTransform="scale(1.0693225,0.9351716)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="46.947097"
- y1="25.611177"
- xlink:href="#linearGradient865"
- x2="82.344438"
- x1="105.80702"
- id="linearGradient864"
- gradientTransform="scale(1.1084886,0.9021293)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="40.053987"
- y1="-53.39077"
- xlink:href="#linearGradient865"
- x2="38.977112"
- x1="43.397979"
- id="linearGradient1010"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="24.174611"
- y1="180.92995"
- xlink:href="#linearGradient865"
- x2="53.211626"
- x1="77.291655"
- id="linearGradient1011"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="89.232159"
- y1="483.82793"
- xlink:href="#linearGradient1400"
- x2="-127.58335"
- x1="-83.094155"
- id="linearGradient882"
- gradientTransform="scale(0.8280565,1.2076471)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="-0.079579733"
- y1="4.0796266"
- xlink:href="#linearGradient1400"
- x2="0.52828526"
- x1="0.99722022"
- id="linearGradient233515"
- gradientTransform="scale(1.001713,0.998290)" />
- <linearGradient
- y2="89.599754"
- y1="484.19555"
- xlink:href="#linearGradient1400"
- x2="-126.92083"
- x1="-82.431632"
- id="linearGradient842"
- gradientTransform="scale(0.8311735,1.2031182)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="0.092356689"
- y1="0.83121020"
- xlink:href="#linearGradient839"
- x2="0.35897437"
- x1="0.93772894"
- id="linearGradient233512" />
- <linearGradient
- id="linearGradient839">
- <stop
- style="stop-color:#4f4f4f;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop840" />
- <stop
- style="stop-color:#bebebe;stop-opacity:1.0000000;"
- offset="0.27444443"
- id="stop233509" />
- <stop
- style="stop-color:#fff;stop-opacity:1;"
- offset="1"
- id="stop841" />
- </linearGradient>
- <linearGradient
- y2="0.41287878"
- y1="0.34090909"
- xlink:href="#linearGradient883"
- x2="0.70434785"
- x1="1.8869566"
- id="linearGradient233505" />
- <linearGradient
- id="linearGradient883">
- <stop
- style="stop-color:#1f1f1f;stop-opacity:0.55371898;"
- offset="0.0000000"
- id="stop884" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop885" />
- </linearGradient>
- <linearGradient
- y2="145.51297"
- y1="98.665952"
- xlink:href="#linearGradient899"
- x2="41.235089"
- x1="40.913932"
- id="linearGradient848"
- gradientTransform="scale(1.0773318,0.9282192)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient899">
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="0.0000000"
- id="stop900" />
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop901" />
- </linearGradient>
- <linearGradient
- y2="187.93358"
- y1="160.06661"
- xlink:href="#linearGradient1501"
- x2="38.546809"
- x1="35.646257"
- id="linearGradient1530"
- gradientTransform="scale(1.5213696,0.6573025)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1527">
- <stop
- style="stop-color:#000;stop-opacity:1;"
- offset="0"
- id="stop1528" />
- <stop
- style="stop-color:#fff;stop-opacity:1;"
- offset="1"
- id="stop1529" />
- </linearGradient>
- <radialGradient
- xlink:href="#linearGradient1646"
- r="0.50000000"
- id="radialGradient1645"
- fy="0.67187500"
- fx="0.38759691"
- cy="0.50000000"
- cx="0.50000000" />
- <linearGradient
- id="linearGradient1646">
- <stop
- style="stop-color:#ff0000;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1647" />
- <stop
- style="stop-color:#a00000;stop-opacity:0.71372551;"
- offset="0.69372094"
- id="stop1649" />
- <stop
- style="stop-color:#960000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1648" />
- </linearGradient>
- <linearGradient
- id="linearGradient865">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop866" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop868" />
- </linearGradient>
- <linearGradient
- id="linearGradient1400">
- <stop
- style="stop-color:#000000;stop-opacity:0.67843139;"
- offset="0.0000000"
- id="stop1401" />
- <stop
- style="stop-color:#000000;stop-opacity:0.32941177;"
- offset="0.56999999"
- id="stop1403" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop1402" />
- </linearGradient>
- <linearGradient
- id="linearGradient233476">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop233478" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop233480" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient233596"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient233706"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <linearGradient
- y2="0.48113209"
- y1="0.83018869"
- xlink:href="#linearGradient882"
- x2="0.51764709"
- x1="0.24705882"
- id="linearGradient1063" />
- <linearGradient
- y2="-1.0859375"
- y1="0.51562500"
- xlink:href="#linearGradient832"
- x2="-0.40136054"
- x1="0.76870745"
- id="linearGradient2577" />
- <linearGradient
- y2="0.67187500"
- y1="0.23437500"
- xlink:href="#linearGradient838"
- x2="0.91729325"
- x1="0.48872182"
- id="linearGradient2516" />
- <linearGradient
- y2="0.71875000"
- y1="0.46093750"
- xlink:href="#linearGradient838"
- x2="0.42335767"
- x1="0.68613136"
- id="linearGradient2515" />
- <linearGradient
- y2="-0.77419353"
- y1="0.50806451"
- xlink:href="#linearGradient2387"
- x2="0.15686275"
- x1="0.56470591"
- id="linearGradient2407" />
- <linearGradient
- y2="0.44531250"
- y1="0.53906250"
- xlink:href="#linearGradient850"
- x2="0.51724136"
- x1="0.42068964"
- id="linearGradient239208" />
- <linearGradient
- y2="0.0078125000"
- y1="0.97656250"
- xlink:href="#linearGradient1507"
- x2="0.78260869"
- x1="0.052173913"
- id="linearGradient239206" />
- <linearGradient
- y2="0.54687500"
- y1="-0.55303031"
- xlink:href="#linearGradient1501"
- x2="0.062992126"
- x1="1.5572519"
- id="linearGradient239204" />
- <linearGradient
- y2="1.3281250"
- y1="0.32812500"
- xlink:href="#linearGradient1492"
- x2="-0.37606838"
- x1="0.63247865"
- id="linearGradient239202" />
- <linearGradient
- y2="1.1796875"
- y1="0.21093750"
- xlink:href="#linearGradient1492"
- x2="0.085470088"
- x1="0.88034189"
- id="linearGradient239200" />
- <linearGradient
- id="linearGradient239192">
- <stop
- style="stop-color:#dadada;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop239194" />
- <stop
- style="stop-color:#f1f1f1;stop-opacity:1.0000000;"
- offset="0.34923077"
- id="stop239196" />
- <stop
- style="stop-color:#f0f0f0;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop239198" />
- </linearGradient>
- <linearGradient
- id="linearGradient239186">
- <stop
- style="stop-color:#000000;stop-opacity:0.095505618;"
- offset="0.0000000"
- id="stop239188" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop239190" />
- </linearGradient>
- <linearGradient
- y2="-0.11480361"
- y1="3.3240275"
- xlink:href="#linearGradient882"
- x2="0.90986663"
- x1="-1.1108099"
- id="linearGradient1064" />
- <linearGradient
- y2="0.38461539"
- y1="0.47435898"
- xlink:href="#linearGradient850"
- x2="0.54577464"
- x1="0.63380283"
- id="linearGradient239183" />
- <linearGradient
- id="linearGradient239176">
- <stop
- style="stop-color:#071422;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop851" />
- <stop
- style="stop-color:#2c528a;stop-opacity:1.0000000;"
- offset="0.50000000"
- id="stop853" />
- <stop
- style="stop-color:#a3bfdf;stop-opacity:1.0000000;"
- offset="0.75000000"
- id="stop239180" />
- <stop
- style="stop-color:#59708a;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop852" />
- </linearGradient>
- <linearGradient
- y2="-6.6841485e-006"
- y1="2.0080366"
- xlink:href="#linearGradient882"
- x2="0.58098590"
- x1="0.58098590"
- id="linearGradient881" />
- <linearGradient
- y2="0.54166669"
- y1="0.22395833"
- xlink:href="#linearGradient838"
- x2="0.77464789"
- x1="0.50352114"
- id="linearGradient837" />
- <linearGradient
- id="linearGradient838">
- <stop
- style="stop-color:#a5a5a5;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop839" />
- <stop
- style="stop-color:#dadada;stop-opacity:1.0000000;"
- offset="0.17875445"
- id="stop239166" />
- <stop
- style="stop-color:#656565;stop-opacity:1.0000000;"
- offset="0.48317710"
- id="stop239168" />
- <stop
- style="stop-color:#d5d5d5;stop-opacity:1.0000000;"
- offset="0.61641997"
- id="stop239170" />
- <stop
- style="stop-color:#454545;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop239172" />
- </linearGradient>
- <linearGradient
- y2="0.80000001"
- y1="0.012500000"
- xlink:href="#linearGradient844"
- x2="0.57394367"
- x1="0.71830988"
- id="linearGradient843" />
- <linearGradient
- id="linearGradient239158">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop845" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop239161" />
- </linearGradient>
- <linearGradient
- y2="1.1954023"
- y1="0.28160921"
- xlink:href="#linearGradient832"
- x2="1.1725352"
- x1="0.78521127"
- id="linearGradient835" />
- <linearGradient
- id="linearGradient832">
- <stop
- style="stop-color:#000;stop-opacity:1;"
- offset="0"
- id="stop833" />
- <stop
- style="stop-color:#fff;stop-opacity:1;"
- offset="1"
- id="stop834" />
- </linearGradient>
- <linearGradient
- y2="0.37869984"
- y1="0.73598528"
- xlink:href="#linearGradient832"
- x2="-0.055982146"
- x1="0.59630799"
- id="linearGradient921" />
- <linearGradient
- y2="0.43650794"
- y1="0.047619049"
- xlink:href="#linearGradient844"
- x2="0.46666667"
- x1="0.86538464"
- id="linearGradient880" />
- <linearGradient
- y2="0.33730158"
- y1="0.66666669"
- xlink:href="#linearGradient882"
- x2="0.52358490"
- x1="0.12264151"
- id="linearGradient889" />
- <linearGradient
- y2="0.51984125"
- y1="0.087301590"
- xlink:href="#linearGradient844"
- x2="0.44897959"
- x1="0.68877554"
- id="linearGradient890" />
- <linearGradient
- y2="-0.84883720"
- y1="0.40697673"
- xlink:href="#linearGradient2387"
- x2="0.65098041"
- x1="0.63529414"
- id="linearGradient836" />
- <linearGradient
- y2="-0.54651165"
- y1="0.74418604"
- xlink:href="#linearGradient2387"
- x2="0.56078434"
- x1="0.55686277"
- id="linearGradient2386" />
- <linearGradient
- id="linearGradient2387">
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="0.0000000"
- id="stop2388" />
- <stop
- style="stop-color:#fff;stop-opacity:1;"
- offset="1"
- id="stop2389" />
- </linearGradient>
- <linearGradient
- id="linearGradient239140">
- <stop
- style="stop-color:#000000;stop-opacity:0.33333334;"
- offset="0.00000000"
- id="stop883" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop239143" />
- </linearGradient>
- <linearGradient
- id="linearGradient239134">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop239136" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop239138" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient239278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient2732"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient2792"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <linearGradient
- xlink:href="#linearGradient841"
- id="linearGradient3815" />
- <radialGradient
- xlink:href="#linearGradient841"
- r="0.54606670"
- id="radialGradient3813"
- fy="3.5200000"
- fx="0.54117650"
- cy="0.89285713"
- cx="0.50000000" />
- <linearGradient
- y2="0.79687500"
- y1="-0.56250000"
- xlink:href="#linearGradient1507"
- x2="0.62222224"
- x1="0.31111112"
- id="linearGradient3811" />
- <linearGradient
- y2="0.0078125000"
- y1="0.97656250"
- xlink:href="#linearGradient1507"
- x2="0.78260869"
- x1="0.052173913"
- id="linearGradient3809" />
- <linearGradient
- y2="0.54687500"
- y1="0.14062500"
- xlink:href="#linearGradient1501"
- x2="0.062992126"
- x1="0.85826772"
- id="linearGradient3807" />
- <linearGradient
- y2="1.3281250"
- y1="0.32812500"
- xlink:href="#linearGradient1492"
- x2="-0.37606838"
- x1="0.63247865"
- id="linearGradient3805" />
- <linearGradient
- y2="1.1796875"
- y1="0.21093750"
- xlink:href="#linearGradient1492"
- x2="0.085470088"
- x1="0.88034189"
- id="linearGradient3803" />
- <linearGradient
- id="linearGradient3795">
- <stop
- style="stop-color:#dadada;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop3797" />
- <stop
- style="stop-color:#f1f1f1;stop-opacity:1.0000000;"
- offset="0.34923077"
- id="stop3799" />
- <stop
- style="stop-color:#f0f0f0;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop3801" />
- </linearGradient>
- <linearGradient
- id="linearGradient3789">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop3791" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop3793" />
- </linearGradient>
- <linearGradient
- id="linearGradient3783">
- <stop
- style="stop-color:#000000;stop-opacity:0.095505618;"
- offset="0.0000000"
- id="stop3785" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop3787" />
- </linearGradient>
- <radialGradient
- xlink:href="#linearGradient853"
- r="0.50000000"
- id="radialGradient3781"
- fy="0.29885057"
- fx="0.50704223"
- cy="0.50000000"
- cx="0.50000000" />
- <linearGradient
- id="linearGradient3775">
- <stop
- style="stop-color:#000000;stop-opacity:0.29752067;"
- offset="0.00000000"
- id="stop3777" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop3779" />
- </linearGradient>
- <linearGradient
- y2="1.2905406"
- y1="-1.1486486"
- xlink:href="#linearGradient853"
- x2="0.26408452"
- x1="1.4647887"
- id="linearGradient3773" />
- <linearGradient
- xlink:href="#linearGradient846"
- id="linearGradient3771" />
- <linearGradient
- id="linearGradient3765">
- <stop
- style="stop-color:#e7e7e7;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop3767" />
- <stop
- style="stop-color:#a5a5a5;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop3769" />
- </linearGradient>
- <linearGradient
- y2="0.049019609"
- y1="1.2647059"
- xlink:href="#linearGradient846"
- x2="0.57142860"
- x1="0.64285713"
- id="linearGradient3763" />
- <linearGradient
- y2="0.35555556"
- y1="0.32222223"
- xlink:href="#linearGradient846"
- x2="0.80985916"
- x1="0.39788732"
- id="linearGradient3761" />
- <linearGradient
- y2="-0.74324322"
- y1="0.81081080"
- xlink:href="#linearGradient1290"
- x2="0.50000000"
- x1="0.47535211"
- id="linearGradient3759" />
- <linearGradient
- id="linearGradient3753">
- <stop
- style="stop-color:#b2a269;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop3755" />
- <stop
- style="stop-color:#6d5b18;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop3757" />
- </linearGradient>
- <linearGradient
- id="linearGradient3747">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop3749" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop3751" />
- </linearGradient>
- <radialGradient
- xlink:href="#linearGradient853"
- r="0.50000000"
- id="radialGradient3745"
- fy="0.14942528"
- fx="0.50000000"
- cy="0.50000000"
- cx="0.50000000" />
- <linearGradient
- y2="0.46354166"
- y1="0.43229166"
- xlink:href="#linearGradient846"
- x2="1.2288733"
- x1="0.010563380"
- id="linearGradient3743" />
- <linearGradient
- y2="0.46568626"
- y1="0.38235295"
- xlink:href="#linearGradient853"
- x2="0.59469700"
- x1="-0.22348484"
- id="linearGradient3741" />
- <linearGradient
- y2="0.50490195"
- y1="0.49019608"
- xlink:href="#linearGradient841"
- x2="0.10833333"
- x1="1.3833333"
- id="linearGradient3739" />
- <linearGradient
- xlink:href="#linearGradient841"
- id="linearGradient3737" />
- <linearGradient
- y2="0.50735295"
- y1="-1.0294118"
- xlink:href="#linearGradient841"
- x2="0.63483149"
- x1="0.56179774"
- id="linearGradient3735" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3859"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3877"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient5044"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient2988"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3288"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3450"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <clipPath
- id="clipPath16"
- clipPathUnits="userSpaceOnUse">
- <path
- id="path18"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- <clipPath
- id="clipPath16-5"
- clipPathUnits="userSpaceOnUse">
- <path
- id="path18-4"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- <clipPath
- id="clipPath16-4"
- clipPathUnits="userSpaceOnUse">
- <path
- id="path18-3"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- <clipPath
- id="clipPath16-5-2"
- clipPathUnits="userSpaceOnUse">
- <path
- inkscape:connector-curvature="0"
- id="path18-4-5"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- <clipPath
- id="clipPath16-2"
- clipPathUnits="userSpaceOnUse">
- <path
- inkscape:connector-curvature="0"
- id="path18-36"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- <clipPath
- id="clipPath16-7"
- clipPathUnits="userSpaceOnUse">
- <path
- inkscape:connector-curvature="0"
- id="path18-6"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- <clipPath
- id="clipPath16-5-4"
- clipPathUnits="userSpaceOnUse">
- <path
- inkscape:connector-curvature="0"
- id="path18-4-6"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- <clipPath
- id="clipPath16-5-7"
- clipPathUnits="userSpaceOnUse">
- <path
- inkscape:connector-curvature="0"
- id="path18-4-55"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3756"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3924"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4092"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <clipPath
- id="clipPath16-5-7-9"
- clipPathUnits="userSpaceOnUse">
- <path
- inkscape:connector-curvature="0"
- id="path18-4-55-8"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- <clipPath
- id="clipPath16-5-8"
- clipPathUnits="userSpaceOnUse">
- <path
- inkscape:connector-curvature="0"
- id="path18-4-9"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- <clipPath
- id="clipPath16-7-1"
- clipPathUnits="userSpaceOnUse">
- <path
- inkscape:connector-curvature="0"
- id="path18-6-1"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- <clipPath
- id="clipPath16-6"
- clipPathUnits="userSpaceOnUse">
- <path
- inkscape:connector-curvature="0"
- id="path18-5"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- <clipPath
- id="clipPath16-4-6"
- clipPathUnits="userSpaceOnUse">
- <path
- inkscape:connector-curvature="0"
- id="path18-3-0"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.979899"
- inkscape:cx="213.79324"
- inkscape:cy="800.37791"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1650"
- inkscape:window-height="1006"
- inkscape:window-x="0"
- inkscape:window-y="0"
- showgrid="true"
- inkscape:snap-bbox="true"
- inkscape:window-maximized="0"
- showguides="true"
- inkscape:guide-bbox="true">
- <inkscape:grid
- type="xygrid"
- id="grid4821"
- empspacing="4"
- visible="true"
- enabled="true"
- snapvisiblegridlinesonly="true"
- units="mm"
- spacingx="10px"
- spacingy="10px"
- originx="10px"
- originy="30px"
- empcolor="#0000ff"
- empopacity="0.34901961" />
- </sodipodi:namedview>
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:groupmode="layer"
- id="layer2"
- inkscape:label="Background">
- <rect
- style="color:#000000;fill:#efefe9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.54330707;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect18450"
- width="750"
- height="40"
- x="20"
- y="82.362183"
- ry="3.7880721" />
- <use
- x="0"
- y="0"
- xlink:href="#rect18450"
- id="use20502"
- transform="translate(0,320)"
- width="744.09448"
- height="1052.3622" />
- <use
- x="0"
- y="0"
- xlink:href="#use20502"
- id="use20504"
- transform="translate(0,-80)"
- width="744.09448"
- height="1052.3622" />
- <use
- x="0"
- y="0"
- xlink:href="#use20504"
- id="use20506"
- transform="translate(0,-80)"
- width="744.09448"
- height="1052.3622" />
- <use
- x="0"
- y="0"
- xlink:href="#use20506"
- id="use20508"
- transform="translate(0,-80)"
- width="744.09448"
- height="1052.3622" />
- <use
- x="0"
- y="0"
- xlink:href="#rect18450"
- id="use20510"
- transform="translate(0,400)"
- width="744.09448"
- height="1052.3622" />
- </g>
- <g
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <path
- style="fill:none;stroke:#c3c3b0;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 50,182.36218 40,0"
- id="path2806-0-2-7"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#c3c3b0;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 130,382.36218 40,0"
- id="path2806-0-4-7-7-2-9"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#c3c3b0;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 130,302.36218 40,0"
- id="path2806-0-4-7-7-6"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#c3c3b0;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 130,342.36218 40,0"
- id="path2806-0-4-7-7-2"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#c3c3b0;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 50,142.36218 40,0"
- id="path2806-0-2"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#c3c3b0;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 130,232.36218 0,190 40,0"
- id="path2806-5-7-5"
- sodipodi:nodetypes="ccc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#c3c3b0;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 129.94645,262.32852 40,0"
- id="path2806-0-4-7-7"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#c3c3b0;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 89.94643,192.32852 0,30 40.00002,0"
- id="path2806-5-7"
- sodipodi:nodetypes="ccc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#c3c3b0;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 50,102.36218 40,0"
- id="path2806-0"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#c3c3b0;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 50,62.362183 0,399.999997 40,0"
- id="path2806"
- sodipodi:nodetypes="ccc"
- inkscape:connector-curvature="0" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot227292"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(-16.184336,38.417737)"><flowRegion
- id="flowRegion227294"><rect
- id="rect227296"
- width="309.39084"
- height="32.675373"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara227298">MyComponentWidgetSet.gwt.xml</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot227316"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(-17.332774,80.393241)"><flowRegion
- id="flowRegion227318"><rect
- id="rect227320"
- width="120.20815"
- height="28.284271"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara227322">client</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot233630"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(-17.230469,358.40656)"><flowRegion
- id="flowRegion233632"><rect
- id="rect233634"
- width="120.20815"
- height="28.284271"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara233636">public</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot233754"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(-57.279297,-41.950563)"><flowRegion
- id="flowRegion233756"><rect
- id="rect233758"
- width="354.63956"
- height="30.655067"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara233760">com.example.mycomponent</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot2672"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(353.825,41.475251)"><flowRegion
- id="flowRegion2674"><rect
- id="rect2676"
- width="294.63956"
- height="30.655067"
- x="135.36044"
- y="91.707115"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara2678">- GWT module descriptor</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot2680"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(353.825,82.105403)"><flowRegion
- id="flowRegion2682"><rect
- id="rect2684"
- width="284.63956"
- height="30.655067"
- x="135.36044"
- y="91.707115"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara2686">- client-side source code</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot2716"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(-16.031986,-1.0695234)"><flowRegion
- id="flowRegion2718"><rect
- id="rect2720"
- width="219.63956"
- height="30.655067"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara2722">MyComponent.java</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot2724"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(353.825,0.54956493)"><flowRegion
- id="flowRegion2726"><rect
- id="rect2728"
- width="334.63956"
- height="25.655067"
- x="135.36044"
- y="91.707115"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara2730">- server-side component</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot3016"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(63.869141,158.52057)"><flowRegion
- id="flowRegion3018"><rect
- id="rect3020"
- width="250.77042"
- height="23.205917"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara3022">MyComponentWidget.java</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot3024"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(354.625,160.12922)"><flowRegion
- id="flowRegion3026"><rect
- id="rect3028"
- width="334.63956"
- height="25.655067"
- x="135.36044"
- y="91.707115"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara3030">- client-side widget</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot2800"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(23.50707,117.61822)"><flowRegion
- id="flowRegion2802"><rect
- id="rect2804"
- width="240.13956"
- height="32.601776"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara2806">mycomponent</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot3050"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(63.869141,198.64798)"><flowRegion
- id="flowRegion3052"><rect
- id="rect3054"
- width="290.77042"
- height="33.078506"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara3056">MyComponentConnector.java</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot3058"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(353.825,200.59018)"><flowRegion
- id="flowRegion3060"><rect
- id="rect3062"
- width="334.63956"
- height="25.655067"
- x="135.36044"
- y="91.707115"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara3064">- integration connector</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot3106"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(23.560547,397.60854)"><flowRegion
- id="flowRegion3108"><rect
- id="rect3110"
- width="173.74623"
- height="30.304577"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara3112">mycomponent</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot3114"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(62.75293,438.61725)"><flowRegion
- id="flowRegion3116"><rect
- id="rect3118"
- width="154.63956"
- height="25.655067"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara3120">styles.css</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot3276"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(353.825,440.59018)"><flowRegion
- id="flowRegion3278"><rect
- id="rect3280"
- width="254.63956"
- height="25.655067"
- x="135.36044"
- y="91.707115"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara3282">- widget style sheet</flowPara></flowRoot> <g
- id="g5070"
- transform="translate(75,-1.9519981)">
- <g
- style="fill:#ffffff"
- id="g10-3"
- inkscape:label="Document"
- transform="matrix(0.07998562,0,0,-0.07998562,-3.457336,124.5086)">
- <g
- style="fill:#ffffff"
- id="g12-5">
- <g
- style="fill:#ffffff"
- id="g14-37"
- clip-path="url(#clipPath16-7)">
- <g
- style="fill:#ffffff"
- id="g20-5"
- transform="translate(130.7402,72.7832)">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m -53.03125,-51.03125 c 0,156.89583 0,313.79167 0,470.6875 79.697917,0 159.39583,0 239.09375,0 38.0995,-38.50483 76.38809,-76.93507 114.96875,-114.84375 0,-119.28125 0,-238.5625 0,-357.84375 -118.02083,0 -236.041667,0 -354.0625,0 l 0,1 0,1 z"
- id="path22-1"
- inkscape:connector-curvature="0" />
- </g>
- </g>
- </g>
- </g>
- <g
- id="g10"
- inkscape:label="Document"
- transform="matrix(0.07998562,0,0,-0.07998562,-3.454656,124.51136)">
- <g
- id="g12">
- <g
- id="g14"
- clip-path="url(#clipPath16)">
- <g
- id="g20"
- transform="translate(130.7402,72.7832)">
- <path
- inkscape:connector-curvature="0"
- d="m 0,0 0,366.626 141.613,0 c 37.201,0 19.275,-88.18 19.275,-88.18 0,0 86,20.901 87.104,-18.534 L 247.992,0 0,0 z m 265.701,300.338 -83.997,83.994 -7.331,7.333 -199.411,0 0,-416.701 298.071,0 0,318.039 -7.332,7.335 z"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
- id="path22" />
- </g>
- </g>
- </g>
- </g>
- </g>
- <g
- id="g3611"
- transform="translate(29.266699,-39.505171)">
- <g
- style="fill:#ffffff"
- id="g10-4-6"
- inkscape:label="Folder"
- transform="matrix(0.07998562,0,0,-0.07998562,1.9122928,122.28074)">
- <g
- style="fill:#ffffff"
- id="g12-1-3">
- <g
- style="fill:#ffffff"
- id="g14-3-3"
- clip-path="url(#clipPath16-5-7)">
- <g
- style="fill:#ffffff"
- id="g20-8-1"
- transform="translate(457.2109,384.8115)">
- <path
- inkscape:connector-curvature="0"
- id="path22-2-6"
- d="m -10.5,-331.25 c -131.67908,1.3418 -263.4169,-1.1568 -395.0625,1.46875 -18.88471,5.30331 -27.52917,27.22938 -24.73835,45.43731 -1.55601,77.91039 -6.95457,155.70331 -9.44915,233.56269 1.77368,10.078123 9.09422,18.689545 16.96875,24.3125 -7.92842,11.339555 -4.63436,26.46294945 -1.53125,38.90625 3.68504,11.473091 13.32222,21.527751 25.03125,23.90625 0.64926,16.281394 12.799,32.511879 29.125,35.84375 22.86963,4.535758 46.21236,-0.619376 69.28125,1.375 24.0007,0.11428 49.36546,3.030008 72.0903,-6.135877 9.90405,-6.591274 15.08127,-18.090353 17.75345,-29.301623 68.21593,-0.629281 136.557909,2.010461 204.6875,-1.625 25.807558,-4.763359 37.808461,-40.8363988 21.25,-60.8125 18.342476,-9.723258 25.076089,-33.322653 20.303985,-52.744757 -5.299272,-59.854233 -5.942784,-120.000983 -8.718706,-180.002273 -1.05619,-17.57576 -1.245293,-35.40606 -3.647779,-52.78422 C 17.916478,-323.16042 3.5572264,-331.96135 -10.5,-331.25 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
- </g>
- </g>
- </g>
- </g>
- <g
- id="g10-4"
- inkscape:label="Folder"
- transform="matrix(0.07998562,0,0,-0.07998562,1.9122928,122.28074)">
- <g
- id="g12-1">
- <g
- id="g14-3"
- clip-path="url(#clipPath16-5)">
- <g
- id="g20-8"
- transform="translate(457.2109,384.8115)">
- <path
- inkscape:connector-curvature="0"
- d="m 0,0 c 0,8.98 -7.277,16.256 -16.258,16.256 l -205.648,0 c -6.429,0.161 -11.384,11.842 -11.384,16.31 l 0.003,1.903 c 0,9.546 -7.737,17.28 -17.28,17.28 l -109.476,0 c -9.544,0 -17.281,-7.734 -17.281,-17.28 l 0.004,-1.903 c 0,-4.5 -5.021,-16.322 -11.516,-16.322 l 0.154,0 C -397.525,16.087 -404.647,8.88 -404.647,0 l 0,-11.223 L 0,-11.223 0,0 z m 0,-42.313 0,0.316 -404.647,0 0,-0.327 c -7.956,-1.549 -13.959,-8.547 -13.959,-16.955 0,0 5.683,-86.463 6.726,-117.611 1.045,-31.147 3.844,-114.727 3.844,-114.727 0,-9.544 1.973,-17.281 11.514,-17.281 l 388.458,0 c 9.543,0 11.513,7.737 11.513,17.281 0,0 2.804,83.58 3.845,114.727 1.044,31.148 6.727,117.611 6.727,117.611 0,8.432 -6.035,15.441 -14.021,16.966"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none"
- id="path22-2" />
- </g>
- </g>
- </g>
- </g>
- </g>
- <use
- x="0"
- y="0"
- xlink:href="#g5070"
- id="use9613"
- transform="translate(-0.0534785,40.204061)"
- width="744.09448"
- height="1052.3622" />
- <use
- x="0"
- y="0"
- xlink:href="#g3611"
- id="use9661"
- transform="translate(38.683833,121.63259)"
- width="744.09448"
- height="1052.3622" />
- <use
- x="0"
- y="0"
- xlink:href="#g5070"
- id="use9667"
- transform="translate(79.94643,200.60484)"
- width="744.09448"
- height="1052.3622" />
- <use
- x="0"
- y="0"
- xlink:href="#g3611"
- id="use9663"
- transform="translate(78.32959,160.11735)"
- width="744.09448"
- height="1052.3622" />
- <use
- x="0"
- y="0"
- xlink:href="#g5070"
- id="use9665"
- transform="translate(79.94643,160.20136)"
- width="744.09448"
- height="1052.3622" />
- <use
- x="0"
- y="0"
- xlink:href="#g5070"
- id="use9802"
- transform="translate(80,240.32065)"
- width="744.09448"
- height="1052.3622" />
- <use
- x="0"
- y="0"
- xlink:href="#g5070"
- id="use9804"
- transform="translate(80,280.34097)"
- width="744.09448"
- height="1052.3622" />
- <use
- x="0"
- y="0"
- xlink:href="#g5070"
- id="use9806"
- transform="translate(80,320.32065)"
- width="744.09448"
- height="1052.3622" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot3050-7"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(63.869141,238.52057)"><flowRegion
- id="flowRegion3052-5"><rect
- id="rect3054-7"
- width="290.77042"
- height="33.078506"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara3056-7">MyComponentState.java</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot3050-7-4"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(63.869141,278.87771)"><flowRegion
- id="flowRegion3052-5-6"><rect
- id="rect3054-7-8"
- width="290.77042"
- height="33.078506"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara3056-7-8">MyComponentClientRpc.java</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot3050-7-4-9"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(63.869141,318.61725)"><flowRegion
- id="flowRegion3052-5-6-9"><rect
- id="rect3054-7-8-2"
- width="290.77042"
- height="33.078506"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara3056-7-8-3">MyComponentServerRpc.java</flowPara></flowRoot> <path
- style="fill:none;stroke:#c3c3b0;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 90,462.36218 0,40 40,0"
- id="path2806-5-7-0"
- sodipodi:nodetypes="ccc"
- inkscape:connector-curvature="0" />
- <use
- x="0"
- y="0"
- xlink:href="#g3611"
- id="use9669"
- transform="translate(38.232234,399.89847)"
- width="744.09448"
- height="1052.3622" />
- <path
- style="fill:none;stroke:#c3c3b0;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 130,502.36218 0,40 40,0"
- id="path2806-5-7-0-7"
- sodipodi:nodetypes="ccc"
- inkscape:connector-curvature="0" />
- <use
- x="0"
- y="0"
- xlink:href="#g5070"
- id="use9673"
- transform="translate(80,440.16626)"
- width="744.09448"
- height="1052.3622" />
- <use
- x="0"
- y="0"
- xlink:href="#g3611"
- id="use9671"
- transform="translate(78.545225,439.83781)"
- width="744.09448"
- height="1052.3622" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot3058-2"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(353.825,240.44224)"><flowRegion
- id="flowRegion3060-1"><rect
- id="rect3062-9"
- width="334.63956"
- height="25.655067"
- x="135.36044"
- y="91.707115"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara3064-1">- shared state</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot3058-2-7"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(353.825,282.22794)"><flowRegion
- id="flowRegion3060-1-5"><rect
- id="rect3062-9-4"
- width="334.63956"
- height="25.655067"
- x="135.36044"
- y="91.707115"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara3064-1-9">- server-to-client RPC interface</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot3058-2-7-7"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(353.825,322.96508)"><flowRegion
- id="flowRegion3060-1-5-8"><rect
- id="rect3062-9-4-4"
- width="334.63956"
- height="25.655067"
- x="135.36044"
- y="91.707115"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara3064-1-9-1">- client-to-server RPC interface</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot3276-6"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(353.825,360.79938)"><flowRegion
- id="flowRegion3278-3"><rect
- id="rect3280-9"
- width="290.81454"
- height="19.855688"
- x="135.36044"
- y="91.707115"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara3282-9">- static content for widget set</flowPara></flowRoot> </g>
-</svg>
diff --git a/documentation/gwt/original-drawings/gwt-widgets.svg b/documentation/gwt/original-drawings/gwt-widgets.svg deleted file mode 100644 index 258fa50172..0000000000 --- a/documentation/gwt/original-drawings/gwt-widgets.svg +++ /dev/null @@ -1,1337 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://web.resource.org/cc/"
- 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="744.09448"
- height="1052.3622"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.45"
- sodipodi:docname="gwt-widgets.svg"
- sodipodi:docbase="/home/magi/.encfs/plain/itmill/workspace/toolkit5/doc/manual/original-drawings/gwt"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- version="1.0"
- sodipodi:modified="true">
- <defs
- id="defs1903">
- <marker
- inkscape:stockid="Arrow2Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2Lstart"
- style="overflow:visible">
- <path
- id="path6743"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- transform="matrix(1.1,0,0,1.1,1.1,0)" />
- </marker>
- <linearGradient
- id="linearGradient11516">
- <stop
- id="stop11518"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop11520"
- offset="1"
- style="stop-color:#a090e7;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient11508">
- <stop
- id="stop11510"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop11512"
- offset="1"
- style="stop-color:#e27979;stop-opacity:1" />
- </linearGradient>
- <marker
- inkscape:stockid="DiamondL"
- orient="auto"
- refY="0"
- refX="0"
- id="DiamondL"
- style="overflow:visible">
- <path
- id="path4404"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.8,0.8)" />
- </marker>
- <marker
- orient="auto"
- refY="0"
- refX="0"
- id="DiamondEmpty"
- style="overflow:visible">
- <path
- id="path7"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z "
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="translate(-5,0)" />
- </marker>
- <linearGradient
- id="linearGradient3286">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3288" />
- <stop
- style="stop-color:#79e291;stop-opacity:1;"
- offset="1"
- id="stop3290" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0"
- refX="0"
- id="EmptyArrow"
- style="overflow:visible">
- <path
- id="path9"
- d="M 0,0 L 0,-5 L -12.5,0 L 0,5 L 0,0 z M -0.5,0 L -0.5,-4.5 L -12,0 L -0.5,4.5 L -0.5,0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(-1,0,0,-1,-10,0)" />
- </marker>
- <marker
- orient="auto"
- refY="0"
- refX="0"
- id="EmptyArrow2"
- style="overflow:visible">
- <path
- id="path13"
- d="M 0,0 L 0,-5 L -10,0 L 0,5 L 0,0 z "
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(-1,0,0,-1,-10,0)" />
- </marker>
- <linearGradient
- id="linearGradient19816">
- <stop
- id="stop19818"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop19820"
- offset="1"
- style="stop-color:#e7e790;stop-opacity:1;" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2Lend"
- style="overflow:visible">
- <path
- id="path16811"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 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">
- <path
- id="path16829"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(-0.8,0,0,-0.8,-10,0)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutM"
- style="overflow:visible">
- <path
- id="path16731"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.4,0.4)" />
- </marker>
- <marker
- inkscape:stockid="TriangleInL"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleInL"
- style="overflow:visible">
- <path
- id="path16743"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(-0.8,-0.8)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path16734"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.8,0.8)" />
- </marker>
- <linearGradient
- id="linearGradient9263">
- <stop
- style="stop-color:#000000;stop-opacity:0"
- offset="0"
- id="stop9265" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop9267" />
- </linearGradient>
- <linearGradient
- id="linearGradient7299">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop7301" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop7303" />
- </linearGradient>
- <linearGradient
- id="linearGradient5349">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop5351" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop5353" />
- </linearGradient>
- <linearGradient
- id="linearGradient4152">
- <stop
- style="stop-color:#6b6bff;stop-opacity:1;"
- offset="0"
- id="stop4154" />
- <stop
- style="stop-color:#6b6bff;stop-opacity:0;"
- offset="1"
- id="stop4156" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5349"
- id="linearGradient5355"
- x1="96.085953"
- y1="148.38934"
- x2="389.01984"
- y2="148.38934"
- gradientUnits="userSpaceOnUse" />
- <filter
- inkscape:collect="always"
- x="-0.14729276"
- width="1.2945855"
- y="-0.24504527"
- height="1.4900905"
- id="filter12627">
- <feGaussianBlur
- inkscape:collect="always"
- stdDeviation="9.7515538"
- id="feGaussianBlur12629" />
- </filter>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient15668"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient11602"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11508"
- id="radialGradient5281"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient5283"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient5285"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient5287"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- y2="-485.28973"
- y1="-485.28952"
- xlink:href="#linearGradient1694"
- x2="-170.00552"
- x1="112.06259"
- inkscape:collect="always"
- id="linearGradient1705"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-4.959101e-18,1.475473,-0.677749,-2.277931e-18,0.000000,0.000000)" />
- <linearGradient
- y2="-477.69669"
- y1="-477.69666"
- xlink:href="#linearGradient1683"
- x2="315.00735"
- x1="-92.987160"
- inkscape:collect="always"
- id="linearGradient1701"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-4.959102e-18,1.475472,-0.677749,-2.277933e-18,0.000000,0.000000)" />
- <linearGradient
- y2="-492.41382"
- y1="-492.41382"
- xlink:href="#linearGradient1683"
- x2="-93.992599"
- x1="303.90472"
- inkscape:collect="always"
- id="linearGradient1700"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-4.959102e-18,1.475472,-0.677749,-2.277933e-18,0.000000,0.000000)" />
- <linearGradient
- y2="646.06177"
- y1="827.01349"
- xlink:href="#linearGradient1694"
- x2="244.85980"
- x1="244.85980"
- inkscape:collect="always"
- id="linearGradient1692"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.479463,0.675921)" />
- <linearGradient
- y2="1038.9441"
- y1="635.74658"
- xlink:href="#linearGradient1683"
- x2="240.86183"
- x1="240.86183"
- inkscape:collect="always"
- id="linearGradient1690"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.475472,0.677749)" />
- <linearGradient
- y2="636.25543"
- y1="1035.3337"
- xlink:href="#linearGradient1683"
- x2="242.39842"
- x1="242.39842"
- inkscape:collect="always"
- id="linearGradient1686"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.475472,0.677749)" />
- <linearGradient
- id="linearGradient1683">
- <stop
- style="stop-color:#0c1fdb;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1684" />
- <stop
- style="stop-color:#062d76;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1685" />
- </linearGradient>
- <linearGradient
- id="linearGradient1694">
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="0.0000000"
- id="stop1695" />
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1696" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient2532"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient2306"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient2324"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient2340"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient2358"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11508"
- id="radialGradient4338"
- cx="153.46323"
- cy="112.14567"
- fx="153.46323"
- fy="112.14567"
- r="95.092682"
- gradientTransform="matrix(1.293791,1.3701286e-2,-5.3144349e-3,0.5018339,-46.792176,73.88505)"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient7456"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient7472"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient7488"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.4142136"
- inkscape:cx="371.1889"
- inkscape:cy="745.94895"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1458"
- inkscape:window-height="1025"
- inkscape:window-x="1280"
- inkscape:window-y="0"
- showgrid="true"
- showguides="true"
- inkscape:connector-spacing="10"
- inkscape:guide-bbox="true"
- width="744.09449px"
- height="1052.3622px" />
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <rect
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- id="rect5374"
- width="717.97919"
- height="376.46448"
- x="15.656854"
- y="7.3119302" />
- <rect
- style="opacity:1;fill:#ecffe9;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- id="rect3151"
- width="710.5"
- height="259.5"
- x="19.5"
- y="12.862183"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90" />
- <g
- style="opacity:1"
- id="g3113"
- transform="matrix(0.6800927,0,0,0.6800927,213.86822,241.73998)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <rect
- transform="matrix(1.3641168,0,0,0.9169701,-96.115129,-14.042082)"
- ry="4.2643418"
- rx="7.9527607"
- y="148.81375"
- x="150.73732"
- height="78.525383"
- width="131.38252"
- id="rect3115"
- style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.04604626;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter12627)" />
- <rect
- ry="5.1089139"
- rx="8.6772833"
- y="108.66392"
- x="94.870857"
- height="79.553078"
- width="189.04082"
- id="rect3117"
- style="opacity:1;fill:url(#radialGradient4338);fill-opacity:1;stroke:#747ce9;stroke-width:1.14454818;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot3119"
- style="font-size:20px;text-align:center;text-anchor:middle"
- transform="translate(-97.142857,61.846737)"><flowRegion
- id="flowRegion3121"><rect
- id="rect3123"
- width="187.14285"
- height="48.571426"
- x="192.85715"
- y="73.790756"
- style="font-size:20px;text-align:center;text-anchor:middle" /></flowRegion><flowPara
- id="flowPara3125">My Widget</flowPara></flowRoot> </g>
- <flowRoot
- xml:space="preserve"
- id="flowRoot3153"
- style="font-size:14px;opacity:1"
- transform="translate(-986.02393,-706.24807)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion3155"><rect
- id="rect3157"
- width="199"
- height="32"
- x="1011"
- y="720.36218"
- style="font-size:14px" /></flowRegion><flowPara
- id="flowPara3159">Google Web Toolkit</flowPara></flowRoot> <g
- style="opacity:1"
- id="g4148"
- transform="matrix(0.6800927,0,0,0.6800927,213.23949,-21.150155)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <rect
- transform="matrix(1.3641168,0,0,0.9169701,-96.115129,-14.042082)"
- ry="4.2643418"
- rx="7.9527607"
- y="148.81375"
- x="150.73732"
- height="78.525383"
- width="131.38252"
- id="rect4150"
- style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.04604626;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter12627)" />
- <rect
- ry="5.1089139"
- rx="8.6772833"
- y="108.66392"
- x="94.870857"
- height="79.553078"
- width="189.04082"
- id="rect4152"
- style="opacity:1;fill:url(#radialGradient2532);fill-opacity:1;stroke:#747ce9;stroke-width:1.14454818;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot4154"
- style="font-size:20px;text-align:center;text-anchor:middle"
- transform="translate(-97.142857,61.846737)"><flowRegion
- id="flowRegion4156"><rect
- id="rect4158"
- width="187.14285"
- height="48.571426"
- x="192.85715"
- y="73.790756"
- style="font-size:20px;text-align:center;text-anchor:middle" /></flowRegion><flowPara
- id="flowPara4160">Widget</flowPara></flowRoot> </g>
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#EmptyArrow2);stroke-opacity:1;display:inline"
- d="M 419.05652,172.36218 L 368.31474,111.47205"
- id="path5151"
- inkscape:connector-type="polyline"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"
- inkscape:connection-end="#g4148"
- inkscape:connection-start="#g2310" />
- <g
- style="opacity:1"
- id="g2292"
- transform="matrix(0.6800927,0,0,0.6800927,-4.131778,-20.260018)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <rect
- transform="matrix(1.3641168,0,0,0.9169701,-96.115129,-14.042082)"
- ry="4.2643418"
- rx="7.9527607"
- y="148.81375"
- x="150.73732"
- height="78.525383"
- width="131.38252"
- id="rect2294"
- style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.04604626;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter12627)" />
- <rect
- ry="5.1089139"
- rx="8.6772833"
- y="108.66392"
- x="94.870857"
- height="79.553078"
- width="189.04082"
- id="rect2296"
- style="opacity:1;fill:url(#radialGradient2306);fill-opacity:1;stroke:#747ce9;stroke-width:1.14454818;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot2298"
- style="font-size:20px;text-align:center;text-anchor:middle"
- transform="translate(-97.142857,61.846737)"><flowRegion
- id="flowRegion2300"><rect
- id="rect2302"
- width="187.14285"
- height="48.571426"
- x="192.85715"
- y="73.790756"
- style="font-size:20px;text-align:center;text-anchor:middle" /></flowRegion><flowPara
- id="flowPara2304">UIObject</flowPara></flowRoot> </g>
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#EmptyArrow2);stroke-opacity:1;display:inline"
- d="M 277.37127,82.188672 L 192.62873,82.535693"
- id="path2308"
- inkscape:connector-type="polyline"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"
- inkscape:connection-end="#g2292"
- inkscape:connection-start="#g4148" />
- <g
- style="opacity:1"
- id="g2310"
- transform="matrix(0.6800927,0,0,0.6800927,313.23949,98.849845)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <rect
- transform="matrix(1.3641168,0,0,0.9169701,-96.115129,-14.042082)"
- ry="4.2643418"
- rx="7.9527607"
- y="148.81375"
- x="150.73732"
- height="78.525383"
- width="131.38252"
- id="rect2312"
- style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.04604626;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter12627)" />
- <rect
- ry="5.1089139"
- rx="8.6772833"
- y="108.66392"
- x="94.870857"
- height="79.553078"
- width="189.04082"
- id="rect2314"
- style="opacity:1;fill:url(#radialGradient2324);fill-opacity:1;stroke:#747ce9;stroke-width:1.14454818;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot2316"
- style="font-size:20px;text-align:center;text-anchor:middle"
- transform="translate(-97.142857,61.846737)"><flowRegion
- id="flowRegion2318"><rect
- id="rect2320"
- width="187.14285"
- height="48.571426"
- x="192.85715"
- y="73.790756"
- style="font-size:20px;text-align:center;text-anchor:middle" /></flowRegion><flowPara
- id="flowPara2322">FocusWidget</flowPara></flowRoot> </g>
- <g
- style="opacity:1"
- id="g2326"
- transform="matrix(0.6800927,0,0,0.6800927,35.868222,99.739982)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <rect
- transform="matrix(1.3641168,0,0,0.9169701,-96.115129,-14.042082)"
- ry="4.2643418"
- rx="7.9527607"
- y="148.81375"
- x="150.73732"
- height="78.525383"
- width="131.38252"
- id="rect2328"
- style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.04604626;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter12627)" />
- <rect
- ry="5.1089139"
- rx="8.6772833"
- y="108.66392"
- x="94.870857"
- height="79.553078"
- width="189.04082"
- id="rect2330"
- style="opacity:1;fill:url(#radialGradient2340);fill-opacity:1;stroke:#747ce9;stroke-width:1.14454818;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot2332"
- style="font-size:20px;text-align:center;text-anchor:middle"
- transform="translate(-97.142857,61.846737)"><flowRegion
- id="flowRegion2334"><rect
- id="rect2336"
- width="187.14285"
- height="48.571426"
- x="192.85715"
- y="73.790756"
- style="font-size:20px;text-align:center;text-anchor:middle" /></flowRegion><flowPara
- id="flowPara2338">Composite</flowPara></flowRoot> </g>
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#EmptyArrow2);stroke-opacity:1;display:inline"
- d="M 209.67767,173.25232 L 300.32233,111.47205"
- id="path2342"
- inkscape:connector-type="polyline"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"
- inkscape:connection-start="#g2326"
- inkscape:connection-end="#g4148" />
- <g
- style="opacity:1"
- id="g2344"
- transform="matrix(0.6800927,0,0,0.6800927,497.86822,-20.260018)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <rect
- transform="matrix(1.3641168,0,0,0.9169701,-96.115129,-14.042082)"
- ry="4.2643418"
- rx="7.9527607"
- y="148.81375"
- x="150.73732"
- height="78.525383"
- width="131.38252"
- id="rect2346"
- style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.04604626;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter12627)" />
- <rect
- ry="5.1089139"
- rx="8.6772833"
- y="108.66392"
- x="94.870857"
- height="79.553078"
- width="189.04082"
- id="rect2348"
- style="opacity:1;fill:url(#radialGradient2358);fill-opacity:1;stroke:#747ce9;stroke-width:1.14454818;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot2350"
- style="font-size:20px;text-align:center;text-anchor:middle"
- transform="translate(-97.142857,61.846737)"><flowRegion
- id="flowRegion2352"><rect
- id="rect2354"
- width="187.14285"
- height="48.571426"
- x="192.85715"
- y="73.790756"
- style="font-size:20px;text-align:center;text-anchor:middle" /></flowRegion><flowPara
- id="flowPara2356">Panel</flowPara></flowRoot> </g>
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#EmptyArrow2);stroke-opacity:1;display:inline"
- d="M 562,82.599862 L 410,82.124503"
- id="path3347"
- inkscape:connector-type="polyline"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"
- inkscape:connection-start="#g2344"
- inkscape:connection-end="#g4148" />
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#EmptyArrow2);stroke-opacity:1;display:inline"
- d="M 307.26663,315.25232 L 203.3621,232.36218"
- id="path4340"
- inkscape:connector-type="polyline"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"
- inkscape:connection-end="#g2326"
- inkscape:connection-start="#g3113" />
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#EmptyArrow2);stroke-opacity:1;display:inline"
- d="M 364.86799,315.25232 L 423.132,231.47205"
- id="path4342"
- inkscape:connector-type="polyline"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"
- inkscape:connection-end="#g2310"
- inkscape:connection-start="#g3113" />
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#EmptyArrow2);stroke-opacity:1;display:inline"
- d="M 410.62873,315.66828 L 562.14988,249.0889"
- id="path4344"
- inkscape:connector-type="polyline"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"
- inkscape:connection-start="#g3113" />
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#EmptyArrow2);stroke-opacity:1;display:inline"
- d="M 344.24368,315.25232 L 343.75632,111.47205"
- id="path4348"
- inkscape:connector-type="polyline"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"
- inkscape:connection-end="#g4148"
- inkscape:connection-start="#g3113" />
- <g
- id="g5345"
- transform="translate(156,-76)">
- <rect
- ry="0"
- y="352.36218"
- x="110"
- height="30"
- width="20"
- id="rect4356"
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <text
- id="text4352"
- y="375.52625"
- x="119.95703"
- style="font-size:22px;font-style:normal;font-weight:bold;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
- xml:space="preserve"><tspan
- y="375.52625"
- x="119.95703"
- id="tspan4354"
- sodipodi:role="line">?</tspan></text>
- </g>
- <g
- style="opacity:1"
- id="g5350"
- transform="translate(223.49999,-75.499979)">
- <rect
- ry="0"
- y="352.36218"
- x="110"
- height="30"
- width="20"
- id="rect5352"
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <text
- id="text5354"
- y="375.52625"
- x="119.95703"
- style="font-size:22px;font-style:normal;font-weight:bold;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
- xml:space="preserve"><tspan
- y="375.52625"
- x="119.95703"
- id="tspan5356"
- sodipodi:role="line">?</tspan></text>
- </g>
- <g
- style="opacity:1"
- id="g5358"
- transform="translate(261.99999,-75.999979)">
- <rect
- ry="0"
- y="352.36218"
- x="110"
- height="30"
- width="20"
- id="rect5360"
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <text
- id="text5362"
- y="375.52625"
- x="119.95703"
- style="font-size:22px;font-style:normal;font-weight:bold;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
- xml:space="preserve"><tspan
- y="375.52625"
- x="119.95703"
- id="tspan5364"
- sodipodi:role="line">?</tspan></text>
- </g>
- <g
- style="opacity:1"
- id="g5366"
- transform="translate(339.99999,-75.999979)">
- <rect
- ry="0"
- y="352.36218"
- x="110"
- height="30"
- width="20"
- id="rect5368"
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <text
- id="text5370"
- y="375.52625"
- x="119.95703"
- style="font-size:22px;font-style:normal;font-weight:bold;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
- xml:space="preserve"><tspan
- y="375.52625"
- x="119.95703"
- id="tspan5372"
- sodipodi:role="line">?</tspan></text>
- </g>
- <g
- style="opacity:1"
- id="g7442"
- transform="matrix(0.6800927,0,0,0.6800927,490.22046,109.82903)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <rect
- transform="matrix(0.9009522,0,0,0.4664334,1.0077707,62.115564)"
- ry="4.2643418"
- rx="7.9527607"
- y="148.81375"
- x="150.73732"
- height="78.525383"
- width="131.38252"
- id="rect7444"
- style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.04604626;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter12627)" />
- <rect
- ry="2.3385966"
- rx="5.4563403"
- y="126.07393"
- x="130.99585"
- height="36.415283"
- width="118.87027"
- id="rect7446"
- style="opacity:1;fill:url(#radialGradient7456);fill-opacity:1;stroke:#747ce9;stroke-width:0.61405361;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot7448"
- style="font-size:14.70387745px;text-align:center;text-anchor:middle"
- transform="translate(-97.142857,61.846737)"><flowRegion
- id="flowRegion7450"><rect
- id="rect7452"
- width="187.14285"
- height="48.571426"
- x="192.85715"
- y="73.790756"
- style="font-size:14.70387745px;text-align:center;text-anchor:middle" /></flowRegion><flowPara
- id="flowPara7454">ComplexPanel</flowPara></flowRoot> </g>
- <g
- style="opacity:1"
- id="g7458"
- transform="matrix(0.6800927,0,0,0.6800927,441.22046,76.829031)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <rect
- transform="matrix(0.9009522,0,0,0.4664334,1.0077707,62.115564)"
- ry="4.2643418"
- rx="7.9527607"
- y="148.81375"
- x="150.73732"
- height="78.525383"
- width="131.38252"
- id="rect7460"
- style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.04604626;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter12627)" />
- <rect
- ry="2.3385966"
- rx="5.4563403"
- y="126.07393"
- x="130.99585"
- height="36.415283"
- width="118.87027"
- id="rect7462"
- style="opacity:1;fill:url(#radialGradient7472);fill-opacity:1;stroke:#747ce9;stroke-width:0.61405361;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot7464"
- style="font-size:14.70387745px;text-align:center;text-anchor:middle"
- transform="translate(-97.142857,61.846737)"><flowRegion
- id="flowRegion7466"><rect
- id="rect7468"
- width="187.14285"
- height="48.571426"
- x="192.85715"
- y="73.790756"
- style="font-size:14.70387745px;text-align:center;text-anchor:middle" /></flowRegion><flowPara
- id="flowPara7470">SimplePanel</flowPara></flowRoot> </g>
- <g
- style="opacity:1"
- id="g7474"
- transform="matrix(0.6800927,0,0,0.6800927,549.11949,142.7712)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <rect
- transform="matrix(0.9009522,0,0,0.4664334,1.0077707,62.115564)"
- ry="4.2643418"
- rx="7.9527607"
- y="148.81375"
- x="150.73732"
- height="78.525383"
- width="131.38252"
- id="rect7476"
- style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.04604626;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter12627)" />
- <rect
- ry="2.3385966"
- rx="5.4563403"
- y="126.07393"
- x="130.99585"
- height="36.415283"
- width="118.87027"
- id="rect7478"
- style="opacity:1;fill:url(#radialGradient7488);fill-opacity:1;stroke:#747ce9;stroke-width:0.61405361;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot7480"
- style="font-size:14.70387745px;text-align:center;text-anchor:middle"
- transform="translate(-97.142857,61.846737)"><flowRegion
- id="flowRegion7482"><rect
- id="rect7484"
- width="187.14285"
- height="48.571426"
- x="192.85715"
- y="73.790756"
- style="font-size:14.70387745px;text-align:center;text-anchor:middle" /></flowRegion><flowPara
- id="flowPara7486">HTMLTable</flowPara></flowRoot> </g>
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#EmptyArrow2);stroke-opacity:1;display:inline"
- d="M 581.16183,162.36218 L 610.79704,112.36218"
- id="path7490"
- inkscape:connector-type="polyline"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"
- inkscape:connection-end="#g2344"
- inkscape:connection-start="#g7458" />
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#EmptyArrow2);stroke-opacity:1;display:inline"
- d="M 622.32377,195.36218 L 626.74134,112.36218"
- id="path7492"
- inkscape:connector-type="polyline"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"
- inkscape:connection-start="#g7442"
- inkscape:connection-end="#g2344" />
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#EmptyArrow2);stroke-opacity:1;display:inline"
- d="M 675.71612,228.30435 L 637.94311,112.36218"
- id="path7494"
- inkscape:connector-type="polyline"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"
- inkscape:connection-end="#g2344"
- inkscape:connection-start="#g7474" />
- </g>
- <g
- inkscape:groupmode="layer"
- id="layer4"
- inkscape:label="Alaluokat"
- style="display:inline">
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:1;fill:#3a3aff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
- x="299.46771"
- y="40.752563"
- id="text5376"><tspan
- sodipodi:role="line"
- id="tspan5378"
- x="299.46771"
- y="40.752563">FileUpload</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:1;fill:#3a3aff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
- x="237.46774"
- y="49.078735"
- id="text6367"><tspan
- sodipodi:role="line"
- id="tspan6369"
- x="237.46774"
- y="49.078735">Hidden</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:1;fill:#3a3aff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
- x="421.6904"
- y="61.996704"
- id="text6375"><tspan
- sodipodi:role="line"
- id="tspan6377"
- x="421.6904"
- y="61.996704">Image</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:1;fill:#3a3aff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
- x="402.75195"
- y="127.47937"
- id="text6379"><tspan
- sodipodi:role="line"
- id="tspan6381"
- x="402.75195"
- y="127.47937">Label</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:1;fill:#3a3aff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
- x="427.46774"
- y="103.07874"
- id="text6383"><tspan
- sodipodi:role="line"
- id="tspan6385"
- x="427.46774"
- y="103.07874">MenuBar</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:1;fill:#3a3aff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
- x="387.48993"
- y="45.903458"
- id="text6371"><tspan
- sodipodi:role="line"
- id="tspan6373"
- x="387.48993"
- y="45.903458">Hyperlink</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:1;fill:#3a3aff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Bitstream Vera Sans"
- x="74.930115"
- y="168.28252"
- id="text7414"><tspan
- sodipodi:role="line"
- id="tspan7416"
- x="74.930115"
- y="168.28252">TabBar</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:1;fill:#3a3aff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Bitstream Vera Sans"
- x="36.035156"
- y="200.19226"
- id="text7418"><tspan
- sodipodi:role="line"
- id="tspan7420"
- x="36.035156"
- y="200.19226">TabPanel</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:1;fill:#3a3aff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Bitstream Vera Sans"
- x="61.938736"
- y="247.13531"
- id="text7422"><tspan
- sodipodi:role="line"
- id="tspan7424"
- x="61.938736"
- y="247.13531">DisclosurePanel</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:1;fill:#3a3aff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Bitstream Vera Sans"
- x="130.56972"
- y="164.74698"
- id="text7426"><tspan
- sodipodi:role="line"
- id="tspan7428"
- x="130.56972"
- y="164.74698">SuggestBox</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:1;fill:#3a3aff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Bitstream Vera Sans"
- x="424.48349"
- y="164.38301"
- id="text7430"><tspan
- sodipodi:role="line"
- id="tspan7432"
- x="424.48349"
- y="164.38301">TextBoxBase</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:1;fill:#3a3aff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Bitstream Vera Sans"
- x="438.82227"
- y="242.19226"
- id="text7434"><tspan
- sodipodi:role="line"
- id="tspan7436"
- x="438.82227"
- y="242.19226">ButtonBase</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-weight:normal;opacity:1;fill:#3a3aff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Bitstream Vera Sans"
- x="359.41599"
- y="242.26526"
- id="text7438"><tspan
- sodipodi:role="line"
- id="tspan7440"
- x="359.41599"
- y="242.26526">ListBox</tspan></text>
- </g>
- <g
- inkscape:groupmode="layer"
- id="layer3"
- inkscape:label="Luokkanuolet"
- style="display:none">
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.44561747px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#EmptyArrow2);stroke-opacity:1;display:inline"
- d="M 268.70057,41.906619 L 288.29571,52.362183"
- id="path6387"
- inkscape:connector-type="polyline"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"
- inkscape:connection-end="#g4148" />
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.44561747px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#EmptyArrow2);stroke-opacity:1;display:inline"
- d="M 337.28993,34.481998 L 339.70072,52.362183"
- id="path7380"
- inkscape:connector-type="polyline"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"
- inkscape:connection-end="#g4148" />
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.44561747px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#EmptyArrow2);stroke-opacity:1;display:inline"
- d="M 421.43563,57.816521 L 410,61.361287"
- id="path7384"
- inkscape:connector-type="polyline"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"
- inkscape:connection-end="#g4148" />
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.44561747px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#EmptyArrow2);stroke-opacity:1;display:inline"
- d="M 435.57777,77.261957 L 410,78.5577"
- id="path7386"
- inkscape:connector-type="polyline"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"
- inkscape:connection-end="#g4148" />
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.44561747px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#EmptyArrow2);stroke-opacity:1;display:inline"
- d="M 426.38538,97.060947 L 410,94.060484"
- id="path7388"
- inkscape:connector-type="polyline"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"
- inkscape:connection-end="#g4148" />
- <path
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="M 380,52.362183 L 380,52.362183"
- id="path7397"
- inkscape:connector-type="polyline"
- inkscape:connection-end="#g4148" />
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.44561747px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#EmptyArrow2);stroke-opacity:1;display:inline"
- d="M 419.31431,40.492406 L 397.64378,52.362183"
- id="path7382"
- inkscape:connector-type="polyline"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/arch/events-classdiagram.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"
- inkscape:connection-end="#g4148" />
- </g>
- <g
- inkscape:groupmode="layer"
- id="layer2"
- inkscape:label="Varjot" />
-</svg>
diff --git a/documentation/gwt/original-drawings/simplified-integration.svg b/documentation/gwt/original-drawings/simplified-integration.svg deleted file mode 100644 index a1b9c1e8f2..0000000000 --- a/documentation/gwt/original-drawings/simplified-integration.svg +++ /dev/null @@ -1,2398 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="simplified-integration.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="600.02155"
- inkscape:export-ydpi="600.02155"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10"
- guidetolerance="10"
- objecttolerance="6"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="2.4"
- inkscape:cx="496.50597"
- inkscape:cy="620.68046"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1672"
- inkscape:window-height="1019"
- inkscape:window-x="0"
- inkscape:window-y="0"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="true"
- showguides="true"
- inkscape:guide-bbox="true"
- inkscape:snap-guide="true"
- inkscape:snap-intersection-line-segments="true"
- inkscape:window-maximized="0">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false"
- originx="0mm"
- originy="0mm" />
- <sodipodi:guide
- orientation="1,0"
- position="248.0315,981.49606"
- id="guide3041" />
- <sodipodi:guide
- id="guide9173"
- position="616.53543,641.33858"
- orientation="1,0" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <linearGradient
- inkscape:collect="always"
- id="linearGradient10356">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop10358" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop10360" />
- </linearGradient>
- <pattern
- patternUnits="userSpaceOnUse"
- width="19.488184"
- height="5.3149635"
- patternTransform="translate(442.02756,179.82281)"
- id="pattern31837">
- <path
- id="path31833"
- d="M 0.88582677,4.4291368 L 18.602357,4.4291368"
- style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- id="path31835"
- d="M 0.88582677,0.88582677 L 18.602357,0.88582677"
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </pattern>
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern31837"
- id="pattern31843"
- patternTransform="matrix(0.8219623,-0.5106659,0.5106659,0.8219623,407.01829,190.47423)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern31843"
- id="pattern39357"
- patternTransform="matrix(1.2292733,-0.7637186,0.7637186,1.2292733,253.27252,439.9282)" />
- <marker
- inkscape:stockid="CurvyCross"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="CurvyCross"
- style="overflow:visible">
- <g
- id="g18903"
- transform="scale(0.6)">
- <path
- id="path18905"
- d="M 4.6254930,-5.0456926 C 1.8654930,-5.0456926 -0.37450702,-2.8056926 -0.37450702,-0.045692580 C -0.37450702,2.7143074 1.8654930,4.9543074 4.6254930,4.9543074"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none" />
- <path
- id="path18907"
- d="M -5.4129913,-5.0456926 C -2.6529913,-5.0456926 -0.41299131,-2.8056926 -0.41299131,-0.045692580 C -0.41299131,2.7143074 -2.6529913,4.9543074 -5.4129913,4.9543074"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none" />
- </g>
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4794"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4590"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient841"
- id="linearGradient4390"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9208103,1.086)"
- x1="10.800377"
- y1="-94.637573"
- x2="116.61332"
- y2="-94.637573" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4376"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3095"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1683">
- <stop
- style="stop-color:#db1f0c;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1684" />
- <stop
- style="stop-color:#761006;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1685" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient24714"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient2263">
- <stop
- style="stop-color:#ff9696;stop-opacity:0.61960787;"
- offset="0"
- id="stop2264" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.70103091;"
- offset="1.0000000"
- id="stop2265" />
- </linearGradient>
- <linearGradient
- id="linearGradient2891">
- <stop
- style="stop-color:#ff0000;stop-opacity:0.68041235;"
- offset="0"
- id="stop2892" />
- <stop
- style="stop-color:#ff0000;stop-opacity:0.14432989;"
- offset="1"
- id="stop2893" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient24524"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path3964"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.8,0.8)" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient2870"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient239278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient865">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop866" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop868" />
- </linearGradient>
- <linearGradient
- id="linearGradient1400">
- <stop
- style="stop-color:#000000;stop-opacity:0.67843139;"
- offset="0.0000000"
- id="stop1401" />
- <stop
- style="stop-color:#000000;stop-opacity:0.32941177;"
- offset="0.56999999"
- id="stop1403" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop1402" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient233706"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- y2="383.76529"
- y1="843.20789"
- xlink:href="#linearGradient1507"
- x2="547.80804"
- x1="201.38963"
- id="linearGradient1506"
- gradientTransform="scale(0.9446888,1.0585496)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3450"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1290">
- <stop
- style="stop-color:#b2a269;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1291" />
- <stop
- style="stop-color:#6d5b18;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1292" />
- </linearGradient>
- <linearGradient
- id="linearGradient846">
- <stop
- style="stop-color:#e7e7e7;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop847" />
- <stop
- style="stop-color:#a5a5a5;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop848" />
- </linearGradient>
- <linearGradient
- id="linearGradient841">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop842" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop843" />
- </linearGradient>
- <linearGradient
- id="linearGradient853">
- <stop
- style="stop-color:#000000;stop-opacity:0.29752067;"
- offset="0.00000000"
- id="stop854" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop855" />
- </linearGradient>
- <linearGradient
- y2="287.73825"
- y1="169.4436"
- xlink:href="#linearGradient1492"
- x2="622.33325"
- x1="741.63898"
- id="linearGradient1497"
- gradientTransform="scale(0.9552926,1.0467997)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1501">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1502" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1504" />
- </linearGradient>
- <linearGradient
- y2="418.53635"
- y1="236.12772"
- xlink:href="#linearGradient1501"
- x2="330.88034"
- x1="687.96375"
- id="linearGradient1499"
- gradientTransform="scale(0.9890091,1.011113)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1492">
- <stop
- style="stop-color:#dadada;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1493" />
- <stop
- style="stop-color:#f1f1f1;stop-opacity:1.0000000;"
- offset="0.34923077"
- id="stop1496" />
- <stop
- style="stop-color:#f0f0f0;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1494" />
- </linearGradient>
- <linearGradient
- y2="689.86005"
- y1="230.07422"
- xlink:href="#linearGradient1492"
- x2="351.7063"
- x1="728.96643"
- id="linearGradient1495"
- gradientTransform="scale(0.955425,1.0466546)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1507">
- <stop
- style="stop-color:#000000;stop-opacity:0.095505618;"
- offset="0.0000000"
- id="stop1508" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1510" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3877"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1699">
- <stop
- style="stop-color:#017eff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1700" />
- <stop
- style="stop-color:#ecfaff;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1701" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0"
- refX="0"
- id="DiamondEmpty"
- style="overflow:visible">
- <path
- id="path7"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="translate(-5,0)" />
- </marker>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3268"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,541.12253,30.198804)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3270"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3272"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3274"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3276"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- id="linearGradient7299">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop7301" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop7303" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3280"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- id="linearGradient5596">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop5598" />
- <stop
- style="stop-color:#e7e790;stop-opacity:0.56489879"
- offset="1"
- id="stop5600" />
- </linearGradient>
- <linearGradient
- id="linearGradient19816">
- <stop
- id="stop19818"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop19820"
- offset="1"
- style="stop-color:#e7e790;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient11508">
- <stop
- id="stop11510"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop11512"
- offset="1"
- style="stop-color:#008401;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3286">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3288" />
- <stop
- style="stop-color:#79e291;stop-opacity:1;"
- offset="1"
- id="stop3290" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2Lend"
- style="overflow:visible">
- <path
- id="path16811"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
- </marker>
- <linearGradient
- id="linearGradient7447">
- <stop
- style="stop-color:#ff6161;stop-opacity:1;"
- offset="0"
- id="stop7449" />
- <stop
- style="stop-color:#840929;stop-opacity:1;"
- offset="1"
- id="stop7451" />
- </linearGradient>
- <linearGradient
- id="linearGradient7485">
- <stop
- style="stop-color:#b6bcef;stop-opacity:1;"
- offset="0"
- id="stop7487" />
- <stop
- style="stop-color:#4026b1;stop-opacity:1;"
- offset="1"
- id="stop7489" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0"
- refX="0"
- id="EmptyArrow2"
- style="overflow:visible">
- <path
- id="path13"
- d="M 0,0 L 0,-5 L -10,0 L 0,5 L 0,0 z"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(-1,0,0,-1,-10,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient92445"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112303"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112301"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112299"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.293791,1.3701286e-2,-5.3144349e-3,0.5018339,-46.792176,73.88505)"
- r="95.092682"
- fy="112.14567"
- fx="153.46323"
- cy="112.14567"
- cx="153.46323"
- id="radialGradient112297"
- xlink:href="#linearGradient11508"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112295"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112293"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112291"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112289"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112287"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient1694">
- <stop
- id="stop1695"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:0.0000000;" />
- <stop
- id="stop1696"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient112278">
- <stop
- id="stop112280"
- offset="0.0000000"
- style="stop-color:#0c1fdb;stop-opacity:1.0000000;" />
- <stop
- id="stop112282"
- offset="1.0000000"
- style="stop-color:#062d76;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- gradientTransform="scale(1.475472,0.677749)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1686"
- inkscape:collect="always"
- x1="242.39842"
- x2="242.39842"
- xlink:href="#linearGradient1683"
- y1="1035.3337"
- y2="636.25543" />
- <linearGradient
- gradientTransform="scale(1.475472,0.677749)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1690"
- inkscape:collect="always"
- x1="240.86183"
- x2="240.86183"
- xlink:href="#linearGradient1683"
- y1="635.74658"
- y2="1038.9441" />
- <linearGradient
- gradientTransform="scale(1.479463,0.675921)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1692"
- inkscape:collect="always"
- x1="244.8598"
- x2="244.8598"
- xlink:href="#linearGradient1694"
- y1="827.01349"
- y2="646.06177" />
- <linearGradient
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient112273"
- inkscape:collect="always"
- x1="303.90472"
- x2="-93.992599"
- xlink:href="#linearGradient1683"
- y1="-492.41382"
- y2="-492.41382" />
- <linearGradient
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient112271"
- inkscape:collect="always"
- x1="-92.98716"
- x2="315.00735"
- xlink:href="#linearGradient1683"
- y1="-477.69666"
- y2="-477.69669" />
- <linearGradient
- gradientTransform="matrix(0,1.475473,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1705"
- inkscape:collect="always"
- x1="112.06259"
- x2="-170.00552"
- xlink:href="#linearGradient1694"
- y1="-485.28952"
- y2="-485.28973" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5287"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5285"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5283"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5281"
- xlink:href="#linearGradient11508"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient11602"
- xlink:href="#linearGradient19816"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient15668"
- xlink:href="#linearGradient7299"
- inkscape:collect="always" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- y2="148.38934"
- x2="389.01984"
- y1="148.38934"
- x1="96.085953"
- id="linearGradient5355"
- xlink:href="#linearGradient5349"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4152">
- <stop
- id="stop4154"
- offset="0"
- style="stop-color:#6b6bff;stop-opacity:1;" />
- <stop
- id="stop4156"
- offset="1"
- style="stop-color:#6b6bff;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient5349">
- <stop
- id="stop5351"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop5353"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient112247">
- <stop
- id="stop112249"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop112251"
- offset="1"
- style="stop-color:#a090e7;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient9263">
- <stop
- id="stop9265"
- offset="0"
- style="stop-color:#000000;stop-opacity:0" />
- <stop
- id="stop9267"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112241"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutL">
- <path
- transform="scale(0.8,0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16734" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleInL"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleInL">
- <path
- transform="scale(-0.8,-0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16743" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutM"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutM">
- <path
- transform="scale(0.4,0.4)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16731" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker112234"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend">
- <path
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path16829" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker112230"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Lend">
- <path
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- id="path112232" />
- </marker>
- <linearGradient
- id="linearGradient112224">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop112226" />
- <stop
- style="stop-color:#e7e790;stop-opacity:1;"
- offset="1"
- id="stop112228" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112220"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="matrix(-1,0,0,-1,-10,0)"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 0,-5 L -10,0 L 0,5 L 0,0 z"
- id="path112222" />
- </marker>
- <marker
- style="overflow:visible"
- id="EmptyArrow"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="matrix(-1,0,0,-1,-10,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 0,-5 L -12.5,0 L 0,5 L 0,0 z M -0.5,0 L -0.5,-4.5 L -12,0 L -0.5,4.5 L -0.5,0 z"
- id="path9" />
- </marker>
- <linearGradient
- id="linearGradient112212">
- <stop
- id="stop112214"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop112216"
- offset="1"
- style="stop-color:#79e291;stop-opacity:1;" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112208"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="translate(-5,0)"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z"
- id="path112210" />
- </marker>
- <marker
- style="overflow:visible"
- id="DiamondL"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DiamondL">
- <path
- transform="scale(0.8,0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z"
- id="path4404" />
- </marker>
- <linearGradient
- id="linearGradient112200">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop112202" />
- <stop
- style="stop-color:#e27979;stop-opacity:1"
- offset="1"
- id="stop112204" />
- </linearGradient>
- <linearGradient
- id="linearGradient11516">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop11518" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop11520" />
- </linearGradient>
- <marker
- 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 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- id="path6743" />
- </marker>
- <inkscape:perspective
- id="perspective112192"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9300"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9574"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9882"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective10244"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient10356"
- id="linearGradient10362"
- x1="407.48032"
- y1="968.17322"
- x2="669.66157"
- y2="968.17322"
- gradientUnits="userSpaceOnUse" />
- <inkscape:perspective
- id="perspective5379"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective5446"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective7010"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <marker
- id="marker18095-5"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-2"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-5"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-0"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-2"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-9"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-0"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-07"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-4"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-5"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-3"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-7" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#f39300;stroke-width:1pt;fill:#f39300"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path6738" />
- </marker>
- <marker
- id="marker18095-3"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-8"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-7"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- id="marker18095-31"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-4"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- id="marker18095-56"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-22"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-67"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-5"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-3"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-1"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-8"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-6"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-5"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-52"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-65"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-55"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8I"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8I">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#d9d9cd;stroke-width:1pt;fill:#d9d9cd"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path10009" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-11"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-9" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-551" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-1"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-9" />
- </marker>
- <marker
- id="marker18095-7"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-46"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-1"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-79"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-0"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-23"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-8"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-77"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-22"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-84"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-3"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-08"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- </defs>
- <metadata
- id="metadata2480">
- <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
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1"
- style="display:inline">
- <g
- style="display:inline"
- id="g7535-6"
- transform="translate(17.716533,283.46456)">
- <rect
- ry="5.6651931"
- y="209.0551"
- x="287.00787"
- height="95.669296"
- width="318.89764"
- id="rect18094-4"
- style="fill:#9f9f9f;fill-opacity:1;stroke:none;stroke-width:1.4955349;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-size:14.95534801px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="293.43646"
- y="298.02994"
- id="text18096-3"><tspan
- sodipodi:role="line"
- id="tspan18098-4"
- x="293.43646"
- y="298.02994">Server-Side</tspan></text>
- </g>
- <g
- id="g7535"
- transform="translate(17.716537,10.629918)">
- <rect
- ry="5.6651931"
- y="294.09448"
- x="287.00787"
- height="170.07875"
- width="318.89764"
- id="rect18094"
- style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.4955349;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-size:14.95534801px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="293.30185"
- y="312.20316"
- id="text18096"><tspan
- sodipodi:role="line"
- id="tspan18098"
- x="293.30185"
- y="312.20316">Client-Side (GWT)</tspan></text>
- </g>
- <text
- id="text4185"
- y="488.17264"
- x="379.13385"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="488.17264"
- x="379.13385"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191">RPC</tspan></text>
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"
- transform="matrix(1.4955348,0,0,1.4955348,-357.7434,-49.154891)"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="matrix(1.4955348,0,0,1.4955348,-363.08461,-14.437119)"
- id="g3178" />
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"
- transform="matrix(1.4955348,0,0,1.4955348,-357.7434,-49.154891)"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <g
- transform="matrix(0.7477674,0,0,0.7477674,-203.19038,-47.967324)"
- id="g18053" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6905"
- transform="matrix(1.4955348,0,0,1.4955348,-626.81346,-673.80827)"><flowRegion
- id="flowRegion6907"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use6909"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6911">VariableOwner</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6913"
- transform="matrix(1.4955348,0,0,1.4955348,-1034.1426,-1229.8198)"><flowRegion
- id="flowRegion6915"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use6917"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6919">VariableOwner</flowPara></flowRoot> <path
- style="fill:none;stroke:#ffffff;stroke-width:4.6062994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none;display:inline"
- d="m 407.48031,403.93698 0,-17.71653"
- id="path4600-1"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <g
- style="fill:#49c2f1;fill-opacity:1;display:inline"
- id="g39467"
- transform="matrix(1.4955348,0,0,1.4955348,50.851808,-14.202877)">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3.08003473;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39469"
- width="94.770302"
- height="35.538864"
- x="191.07704"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text39471"
- y="253.11447"
- x="238.51103"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.11447"
- x="238.51103"
- id="tspan39473"
- sodipodi:role="line"
- style="fill:#ffffff;fill-opacity:1">Widget</tspan></text>
- </g>
- <g
- style="display:inline"
- id="g17430"
- transform="matrix(1.4955348,0,0,1.4955348,68.804364,56.775859)">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect17432"
- width="94.770302"
- height="35.538864"
- x="179.07294"
- y="232.13176"
- ry="3.7880721" />
- <text
- id="text17434"
- y="254.22119"
- x="226.17159"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="254.22119"
- x="226.17159"
- id="tspan17436"
- sodipodi:role="line">Connector</tspan></text>
- </g>
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;opacity:1;fill:#49c2f1;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot80522"
- transform="matrix(1.4955348,0,0,1.4955348,152.15588,47.590195)"><flowRegion
- id="flowRegion80524"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use80526"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara80528">1</flowPara></flowRoot> <g
- style="display:inline"
- id="g29646"
- transform="matrix(1.4955348,0,0,1.4955348,72.027926,174.65172)">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect29648"
- width="94.770294"
- height="35.538868"
- x="176.91748"
- y="224.39095"
- ry="3.7880721" />
- <text
- id="text29650"
- y="245.34038"
- x="225.27211"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="245.34038"
- x="225.27211"
- id="tspan29652"
- sodipodi:role="line">Component</tspan></text>
- </g>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4.6062994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker18095);display:inline"
- d="m 407.48031,481.88974 0,-33.62587"
- id="path4600-4-3"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <g
- style="display:inline"
- id="g17430-7-9"
- transform="matrix(1.4955348,0,0,1.4955348,246.4335,112.32303)">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect17432-9-2"
- width="66.993073"
- height="36.304977"
- x="176.39357"
- y="230.52861"
- ry="3.7880721" />
- <text
- id="text17434-3-8"
- y="253.0011"
- x="193.95917"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="253.0011"
- x="193.95917"
- id="tspan17436-2-5"
- sodipodi:role="line">State</tspan></text>
- </g>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4.6062994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker18095);display:inline"
- d="m 407.48031,478.34643 0,40.38295"
- id="path4600-4-3-2"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4.6062994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker18095);display:inline"
- d="m 471.25984,538.58266 88.58268,-1e-5 0,-35.72242"
- id="path4600-4-3-5"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4.6062994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker18095);display:inline"
- d="m 559.84252,460.6299 0,-28.34646 -94.02142,0"
- id="path4600-4-3-5-9"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
- </g>
-</svg>
diff --git a/documentation/gwt/original-drawings/widget-integration.svg b/documentation/gwt/original-drawings/widget-integration.svg deleted file mode 100644 index f78ee7b07d..0000000000 --- a/documentation/gwt/original-drawings/widget-integration.svg +++ /dev/null @@ -1,2933 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="widget-integration.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="600.02155"
- inkscape:export-ydpi="600.02155"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10"
- guidetolerance="10"
- objecttolerance="6"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="2"
- inkscape:cx="416.10717"
- inkscape:cy="367.53322"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1672"
- inkscape:window-height="1019"
- inkscape:window-x="0"
- inkscape:window-y="0"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="true"
- showguides="true"
- inkscape:guide-bbox="true"
- inkscape:snap-guide="true"
- inkscape:snap-intersection-line-segments="true"
- inkscape:window-maximized="0">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false"
- originx="0mm"
- originy="0mm" />
- <sodipodi:guide
- orientation="1,0"
- position="248.0315,981.49606"
- id="guide3041" />
- <sodipodi:guide
- id="guide9173"
- position="616.53543,641.33858"
- orientation="1,0" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <linearGradient
- inkscape:collect="always"
- id="linearGradient10356">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop10358" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop10360" />
- </linearGradient>
- <pattern
- patternUnits="userSpaceOnUse"
- width="19.488184"
- height="5.3149635"
- patternTransform="translate(442.02756,179.82281)"
- id="pattern31837">
- <path
- id="path31833"
- d="M 0.88582677,4.4291368 L 18.602357,4.4291368"
- style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- id="path31835"
- d="M 0.88582677,0.88582677 L 18.602357,0.88582677"
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.77165353;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </pattern>
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern31837"
- id="pattern31843"
- patternTransform="matrix(0.8219623,-0.5106659,0.5106659,0.8219623,407.01829,190.47423)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern31843"
- id="pattern39357"
- patternTransform="matrix(1.2292733,-0.7637186,0.7637186,1.2292733,253.27252,439.9282)" />
- <marker
- inkscape:stockid="CurvyCross"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="CurvyCross"
- style="overflow:visible">
- <g
- id="g18903"
- transform="scale(0.6)">
- <path
- id="path18905"
- d="M 4.6254930,-5.0456926 C 1.8654930,-5.0456926 -0.37450702,-2.8056926 -0.37450702,-0.045692580 C -0.37450702,2.7143074 1.8654930,4.9543074 4.6254930,4.9543074"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none" />
- <path
- id="path18907"
- d="M -5.4129913,-5.0456926 C -2.6529913,-5.0456926 -0.41299131,-2.8056926 -0.41299131,-0.045692580 C -0.41299131,2.7143074 -2.6529913,4.9543074 -5.4129913,4.9543074"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none" />
- </g>
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4794"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4590"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient841"
- id="linearGradient4390"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9208103,1.086)"
- x1="10.800377"
- y1="-94.637573"
- x2="116.61332"
- y2="-94.637573" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient4376"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3095"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1683">
- <stop
- style="stop-color:#db1f0c;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1684" />
- <stop
- style="stop-color:#761006;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1685" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient24714"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient2263">
- <stop
- style="stop-color:#ff9696;stop-opacity:0.61960787;"
- offset="0"
- id="stop2264" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.70103091;"
- offset="1.0000000"
- id="stop2265" />
- </linearGradient>
- <linearGradient
- id="linearGradient2891">
- <stop
- style="stop-color:#ff0000;stop-opacity:0.68041235;"
- offset="0"
- id="stop2892" />
- <stop
- style="stop-color:#ff0000;stop-opacity:0.14432989;"
- offset="1"
- id="stop2893" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient24524"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path3964"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.8,0.8)" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient2870"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient239278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient865">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop866" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop868" />
- </linearGradient>
- <linearGradient
- id="linearGradient1400">
- <stop
- style="stop-color:#000000;stop-opacity:0.67843139;"
- offset="0.0000000"
- id="stop1401" />
- <stop
- style="stop-color:#000000;stop-opacity:0.32941177;"
- offset="0.56999999"
- id="stop1403" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop1402" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient233706"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- y2="383.76529"
- y1="843.20789"
- xlink:href="#linearGradient1507"
- x2="547.80804"
- x1="201.38963"
- id="linearGradient1506"
- gradientTransform="scale(0.9446888,1.0585496)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3450"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1290">
- <stop
- style="stop-color:#b2a269;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1291" />
- <stop
- style="stop-color:#6d5b18;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1292" />
- </linearGradient>
- <linearGradient
- id="linearGradient846">
- <stop
- style="stop-color:#e7e7e7;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop847" />
- <stop
- style="stop-color:#a5a5a5;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop848" />
- </linearGradient>
- <linearGradient
- id="linearGradient841">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop842" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop843" />
- </linearGradient>
- <linearGradient
- id="linearGradient853">
- <stop
- style="stop-color:#000000;stop-opacity:0.29752067;"
- offset="0.00000000"
- id="stop854" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop855" />
- </linearGradient>
- <linearGradient
- y2="287.73825"
- y1="169.4436"
- xlink:href="#linearGradient1492"
- x2="622.33325"
- x1="741.63898"
- id="linearGradient1497"
- gradientTransform="scale(0.9552926,1.0467997)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1501">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1502" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1504" />
- </linearGradient>
- <linearGradient
- y2="418.53635"
- y1="236.12772"
- xlink:href="#linearGradient1501"
- x2="330.88034"
- x1="687.96375"
- id="linearGradient1499"
- gradientTransform="scale(0.9890091,1.011113)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1492">
- <stop
- style="stop-color:#dadada;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1493" />
- <stop
- style="stop-color:#f1f1f1;stop-opacity:1.0000000;"
- offset="0.34923077"
- id="stop1496" />
- <stop
- style="stop-color:#f0f0f0;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1494" />
- </linearGradient>
- <linearGradient
- y2="689.86005"
- y1="230.07422"
- xlink:href="#linearGradient1492"
- x2="351.7063"
- x1="728.96643"
- id="linearGradient1495"
- gradientTransform="scale(0.955425,1.0466546)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1507">
- <stop
- style="stop-color:#000000;stop-opacity:0.095505618;"
- offset="0.0000000"
- id="stop1508" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1510" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient3877"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <linearGradient
- id="linearGradient1699">
- <stop
- style="stop-color:#017eff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1700" />
- <stop
- style="stop-color:#ecfaff;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1701" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0"
- refX="0"
- id="DiamondEmpty"
- style="overflow:visible">
- <path
- id="path7"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="translate(-5,0)" />
- </marker>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3268"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,541.12253,30.198804)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3270"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3272"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3274"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3276"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- id="linearGradient7299">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop7301" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop7303" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3280"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- id="linearGradient5596">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop5598" />
- <stop
- style="stop-color:#e7e790;stop-opacity:0.56489879"
- offset="1"
- id="stop5600" />
- </linearGradient>
- <linearGradient
- id="linearGradient19816">
- <stop
- id="stop19818"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop19820"
- offset="1"
- style="stop-color:#e7e790;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient11508">
- <stop
- id="stop11510"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop11512"
- offset="1"
- style="stop-color:#008401;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3286">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3288" />
- <stop
- style="stop-color:#79e291;stop-opacity:1;"
- offset="1"
- id="stop3290" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2Lend"
- style="overflow:visible">
- <path
- id="path16811"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
- </marker>
- <linearGradient
- id="linearGradient7447">
- <stop
- style="stop-color:#ff6161;stop-opacity:1;"
- offset="0"
- id="stop7449" />
- <stop
- style="stop-color:#840929;stop-opacity:1;"
- offset="1"
- id="stop7451" />
- </linearGradient>
- <linearGradient
- id="linearGradient7485">
- <stop
- style="stop-color:#b6bcef;stop-opacity:1;"
- offset="0"
- id="stop7487" />
- <stop
- style="stop-color:#4026b1;stop-opacity:1;"
- offset="1"
- id="stop7489" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0"
- refX="0"
- id="EmptyArrow2"
- style="overflow:visible">
- <path
- id="path13"
- d="M 0,0 L 0,-5 L -10,0 L 0,5 L 0,0 z"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(-1,0,0,-1,-10,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient92445"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38963"
- y1="843.20789"
- x2="547.80804"
- y2="383.76529" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112303"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112301"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.8305603,1.0914308e-3,-1.9528524e-3,0.2729933,281.94958,112.36765)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112299"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.293791,1.3701286e-2,-5.3144349e-3,0.5018339,-46.792176,73.88505)"
- r="95.092682"
- fy="112.14567"
- fx="153.46323"
- cy="112.14567"
- cx="153.46323"
- id="radialGradient112297"
- xlink:href="#linearGradient11508"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112295"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112293"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112291"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112289"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient112287"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient1694">
- <stop
- id="stop1695"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:0.0000000;" />
- <stop
- id="stop1696"
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient112278">
- <stop
- id="stop112280"
- offset="0.0000000"
- style="stop-color:#0c1fdb;stop-opacity:1.0000000;" />
- <stop
- id="stop112282"
- offset="1.0000000"
- style="stop-color:#062d76;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- gradientTransform="scale(1.475472,0.677749)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1686"
- inkscape:collect="always"
- x1="242.39842"
- x2="242.39842"
- xlink:href="#linearGradient1683"
- y1="1035.3337"
- y2="636.25543" />
- <linearGradient
- gradientTransform="scale(1.475472,0.677749)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1690"
- inkscape:collect="always"
- x1="240.86183"
- x2="240.86183"
- xlink:href="#linearGradient1683"
- y1="635.74658"
- y2="1038.9441" />
- <linearGradient
- gradientTransform="scale(1.479463,0.675921)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1692"
- inkscape:collect="always"
- x1="244.8598"
- x2="244.8598"
- xlink:href="#linearGradient1694"
- y1="827.01349"
- y2="646.06177" />
- <linearGradient
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient112273"
- inkscape:collect="always"
- x1="303.90472"
- x2="-93.992599"
- xlink:href="#linearGradient1683"
- y1="-492.41382"
- y2="-492.41382" />
- <linearGradient
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient112271"
- inkscape:collect="always"
- x1="-92.98716"
- x2="315.00735"
- xlink:href="#linearGradient1683"
- y1="-477.69666"
- y2="-477.69669" />
- <linearGradient
- gradientTransform="matrix(0,1.475473,-0.677749,0,0,0)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1705"
- inkscape:collect="always"
- x1="112.06259"
- x2="-170.00552"
- xlink:href="#linearGradient1694"
- y1="-485.28952"
- y2="-485.28973" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5287"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5285"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5283"
- xlink:href="#linearGradient3286"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient5281"
- xlink:href="#linearGradient11508"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient11602"
- xlink:href="#linearGradient19816"
- inkscape:collect="always" />
- <radialGradient
- r="109.42857"
- fy="97.300964"
- fx="-147.5"
- cy="97.300964"
- cx="-147.5"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient15668"
- xlink:href="#linearGradient7299"
- inkscape:collect="always" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- y2="148.38934"
- x2="389.01984"
- y1="148.38934"
- x1="96.085953"
- id="linearGradient5355"
- xlink:href="#linearGradient5349"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4152">
- <stop
- id="stop4154"
- offset="0"
- style="stop-color:#6b6bff;stop-opacity:1;" />
- <stop
- id="stop4156"
- offset="1"
- style="stop-color:#6b6bff;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient5349">
- <stop
- id="stop5351"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop5353"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient112247">
- <stop
- id="stop112249"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop112251"
- offset="1"
- style="stop-color:#a090e7;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient9263">
- <stop
- id="stop9265"
- offset="0"
- style="stop-color:#000000;stop-opacity:0" />
- <stop
- id="stop9267"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112241"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutL">
- <path
- transform="scale(0.8,0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16734" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleInL"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleInL">
- <path
- transform="scale(-0.8,-0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16743" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutM"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutM">
- <path
- transform="scale(0.4,0.4)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path16731" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker112234"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend">
- <path
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path16829" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker112230"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Lend">
- <path
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- id="path112232" />
- </marker>
- <linearGradient
- id="linearGradient112224">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop112226" />
- <stop
- style="stop-color:#e7e790;stop-opacity:1;"
- offset="1"
- id="stop112228" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112220"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="matrix(-1,0,0,-1,-10,0)"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 0,-5 L -10,0 L 0,5 L 0,0 z"
- id="path112222" />
- </marker>
- <marker
- style="overflow:visible"
- id="EmptyArrow"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="matrix(-1,0,0,-1,-10,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 0,-5 L -12.5,0 L 0,5 L 0,0 z M -0.5,0 L -0.5,-4.5 L -12,0 L -0.5,4.5 L -0.5,0 z"
- id="path9" />
- </marker>
- <linearGradient
- id="linearGradient112212">
- <stop
- id="stop112214"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop112216"
- offset="1"
- style="stop-color:#79e291;stop-opacity:1;" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker112208"
- refX="0"
- refY="0"
- orient="auto">
- <path
- transform="translate(-5,0)"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z"
- id="path112210" />
- </marker>
- <marker
- style="overflow:visible"
- id="DiamondL"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DiamondL">
- <path
- transform="scale(0.8,0.8)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z"
- id="path4404" />
- </marker>
- <linearGradient
- id="linearGradient112200">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop112202" />
- <stop
- style="stop-color:#e27979;stop-opacity:1"
- offset="1"
- id="stop112204" />
- </linearGradient>
- <linearGradient
- id="linearGradient11516">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop11518" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop11520" />
- </linearGradient>
- <marker
- 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 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- id="path6743" />
- </marker>
- <inkscape:perspective
- id="perspective112192"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9300"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9574"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective9882"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective10244"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient10356"
- id="linearGradient10362"
- x1="407.48032"
- y1="968.17322"
- x2="669.66157"
- y2="968.17322"
- gradientUnits="userSpaceOnUse" />
- <inkscape:perspective
- id="perspective5379"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective5446"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <inkscape:perspective
- id="perspective7010"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <marker
- id="marker18095-5"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-2"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-5"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-0"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-2"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-9"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-0"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-07"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-4"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-5"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-3"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-7" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#f39300;stroke-width:1pt;fill:#f39300"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path6738" />
- </marker>
- <marker
- id="marker18095-3"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-8"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-7"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- id="marker18095-31"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-4"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- id="marker18095-56"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-22"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-67"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-5"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- inkscape:connector-curvature="0" />
- </g>
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-3"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-1"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-8"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-6"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-5"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-52"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-65"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-55"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8I"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8I">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#d9d9cd;stroke-width:1pt;fill:#d9d9cd"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path10009" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu-11"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path9463-9" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-8"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-551" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu8-1"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu8">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path6738-9" />
- </marker>
- </defs>
- <metadata
- id="metadata2480">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1"
- style="display:inline">
- <g
- transform="translate(9.6407029,-336.85484)"
- id="g7540">
- <rect
- ry="5.6651931"
- y="843.54773"
- x="241.1908"
- height="301.18109"
- width="365.70398"
- id="rect29628"
- style="fill:none;stroke:#000000;stroke-width:1.4955349;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.4955348, 2.9910696;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-size:14.95534801px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="245.14299"
- y="921.89264"
- id="text39363"><tspan
- sodipodi:role="line"
- id="tspan39365"
- x="245.14299"
- y="921.89264">Server-Side</tspan><tspan
- id="tspan9618"
- sodipodi:role="line"
- x="245.14299"
- y="940.58685">Integration</tspan></text>
- <flowRoot
- style="fill:black;stroke:none;stroke-opacity:1;stroke-width:1px;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;font-family:Sans;font-style:normal;font-weight:normal;font-size:40px;line-height:125%;letter-spacing:0px;word-spacing:0px"
- id="flowRoot9620"
- xml:space="preserve"><flowRegion
- id="flowRegion9622"><rect
- y="542.53821"
- x="326.68332"
- height="317.49094"
- width="320.31937"
- id="rect9624" /></flowRegion><flowPara
- id="flowPara9626" /></flowRoot> </g>
- <rect
- style="fill:none;stroke:#000000;stroke-width:1.4955349;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.4955348, 2.9910696;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39497"
- width="368.50394"
- height="100.68364"
- x="248.03149"
- y="95.669266"
- ry="5.6651931" />
- <text
- id="text4185"
- y="458.18918"
- x="503.08469"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="458.18918"
- x="503.08469"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191">XMLHttpRequest</tspan></text>
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"
- transform="matrix(1.4955348,0,0,1.4955348,-357.7434,-49.154891)"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="matrix(1.4955348,0,0,1.4955348,-363.08461,-14.437119)"
- id="g3178" />
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"
- transform="matrix(1.4955348,0,0,1.4955348,-357.7434,-49.154891)"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <g
- transform="matrix(0.7477674,0,0,0.7477674,-203.19038,-47.967324)"
- id="g18053" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6905"
- transform="matrix(1.4955348,0,0,1.4955348,-626.81346,-673.80827)"><flowRegion
- id="flowRegion6907"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use6909"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6911">VariableOwner</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot6913"
- transform="matrix(1.4955348,0,0,1.4955348,-1034.1426,-1229.8198)"><flowRegion
- id="flowRegion6915"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use6917"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara6919">VariableOwner</flowPara></flowRoot> <g
- style="display:inline"
- id="g39423"
- transform="matrix(1.4955348,0,0,1.4955348,-54.777836,349.37892)">
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot39425"
- transform="translate(-5.2378947,106.19782)"><flowRegion
- id="flowRegion39427"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use39429"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara39431">Sizeable</flowPara></flowRoot> <g
- id="g39433"
- transform="translate(-46.062995,-30.433073)">
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot39435"
- transform="translate(-5.2378947,106.19782)"><flowRegion
- id="flowRegion39437"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use39439"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara39441">Sizeable</flowPara></flowRoot> </g>
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot39443"
- transform="translate(75.734798,-715.9695)"><flowRegion
- id="flowRegion39445"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use39447"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara39449">VariableOwner</flowPara></flowRoot> <g
- style="display:inline"
- id="g39451"
- transform="translate(123.00096,-20.40135)">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39453"
- width="138.189"
- height="35.43309"
- x="167.13719"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text39455"
- y="252.89734"
- x="171.76772"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="252.89734"
- x="171.76772"
- id="tspan39457"
- sodipodi:role="line">AbstractComponent</tspan></text>
- <text
- id="text39351-1-0-7"
- y="241.36755"
- x="171.69571"
- style="font-size:6.00000048px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="241.36755"
- x="171.69571"
- sodipodi:role="line"
- id="tspan39353-9-4-4">com.vaadin.ui</tspan></text>
- </g>
- </g>
- <g
- style="display:inline"
- id="g39459"
- transform="matrix(1.4955348,0,0,1.4955348,19.331852,-219.7147)">
- <rect
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39461"
- width="94.770302"
- height="35.433075"
- x="160.02942"
- y="229.8378"
- ry="3.7880721" />
- <text
- id="text39463"
- y="250.52808"
- x="164.65993"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="250.52808"
- x="164.65993"
- id="tspan39465"
- sodipodi:role="line">Widget</tspan></text>
- <text
- id="text31857-5-9"
- y="238.99831"
- x="164.58794"
- style="font-size:5.99999952px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="238.99831"
- x="164.58794"
- sodipodi:role="line"
- id="tspan31859-2-9">com.google.gwt.user.client.ui</tspan></text>
- </g>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:6.02362204;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#DotSu);display:inline"
- d="m 496.06298,317.00147 0,-139.84646"
- id="path4600-1"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <g
- style="fill:#49c2f1;fill-opacity:1;display:inline"
- id="g39467"
- transform="matrix(1.4955348,0,0,1.4955348,157.15102,-223.25799)">
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39469"
- width="73.446983"
- height="35.43306"
- x="191.07704"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text39471"
- y="248.15881"
- x="226.07834"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="248.15881"
- x="226.07834"
- id="tspan39473"
- sodipodi:role="line"
- style="fill:#49c2f1;fill-opacity:1">MyWidget</tspan></text>
- <text
- id="text10319"
- y="255.48111"
- x="198.09482"
- style="font-size:6.00000048px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="255.48111"
- x="198.09482"
- sodipodi:role="line"
- style="font-size:6.00000048px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan10338">An existing widget</tspan><tspan
- y="262.98111"
- x="198.09482"
- sodipodi:role="line"
- style="font-size:6.00000048px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan3455">or your own</tspan></text>
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#49c2f1;stroke-width:5.82905245;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker18095);display:inline"
- d="m 442.91339,152.36218 -46.063,0"
- id="path39475"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0" />
- <g
- style="display:inline"
- id="g17430"
- transform="matrix(1.4955348,0,0,1.4955348,114.86736,-28.263509)">
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect17432"
- width="101.67927"
- height="35.433243"
- x="179.07294"
- y="232.13176"
- ry="3.7880721" />
- <text
- id="text17434"
- y="248.08353"
- x="224.18752"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="248.08353"
- x="224.18752"
- id="tspan17436"
- sodipodi:role="line">MyConnector</tspan></text>
- </g>
- <g
- style="display:inline"
- id="g17467"
- transform="matrix(1.4955348,0,0,1.4955348,138.80507,46.145963)">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect17469"
- width="152.3622"
- height="35.433071"
- x="160.69756"
- y="232.13174"
- ry="3.7880721" />
- <text
- id="text17471"
- y="252.82204"
- x="231.55074"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="252.82204"
- x="231.55074"
- sodipodi:role="line"
- id="tspan17475">ApplicationConnection</tspan></text>
- <text
- id="text39409"
- y="241.29225"
- x="165.25607"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="241.29225"
- x="165.25607"
- sodipodi:role="line"
- id="tspan39411">com.vaadin.client</tspan></text>
- </g>
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;opacity:1;fill:#49c2f1;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot80522"
- transform="matrix(1.4955348,0,0,1.4955348,152.15588,47.590195)"><flowRegion
- id="flowRegion80524"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use80526"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara80528">1</flowPara></flowRoot> <text
- id="text18090"
- y="113.77798"
- x="254.32547"
- style="font-size:14.95534801px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="113.77798"
- x="254.32547"
- id="tspan18092"
- sodipodi:role="line">Client-Side Framework</tspan></text>
- <g
- id="g7535">
- <rect
- ry="5.6651931"
- y="209.0551"
- x="248.03149"
- height="255.1181"
- width="368.50391"
- id="rect18094"
- style="fill:none;stroke:#000000;stroke-width:1.4955349;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.4955348, 2.9910696;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-size:14.95534801px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="254.82117"
- y="231.69943"
- id="text18096"><tspan
- sodipodi:role="line"
- id="tspan18098"
- x="254.82117"
- y="231.69943">Client-Side Integration</tspan></text>
- </g>
- <g
- style="display:inline"
- id="g18100"
- transform="matrix(1.4955348,0,0,1.4955348,138.80507,177.24832)">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect18102"
- width="152.3622"
- height="35.433071"
- x="160.69756"
- y="232.13174"
- ry="3.7880721" />
- <text
- id="text18104"
- y="252.82204"
- x="237.1282"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="252.82204"
- x="237.1282"
- sodipodi:role="line"
- id="tspan18106">CommunicationManager</tspan></text>
- <text
- id="text31853"
- y="241.29227"
- x="165.25607"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="241.29227"
- x="165.25607"
- sodipodi:role="line"
- id="tspan31855">com.vaadin.server</tspan></text>
- </g>
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#49c2f1;stroke-width:5.82905245;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:url(#CurvyCross);marker-end:none;display:inline"
- d="m 496.06299,524.40943 0,-92.12599"
- id="path20937"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0" />
- <g
- style="display:inline"
- id="g29630"
- transform="matrix(1.4955348,0,0,1.4955348,129.17437,248.00185)">
- <rect
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect29632"
- width="137.41693"
- height="35.43306"
- x="167.13719"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text29634"
- y="252.89734"
- x="171.2397"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="252.89734"
- x="171.2397"
- id="tspan29636"
- sodipodi:role="line">ClientConnector</tspan></text>
- <text
- id="text31857"
- y="241.36755"
- x="171.69571"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="241.36755"
- x="171.69571"
- sodipodi:role="line"
- id="tspan31859">com.vaadin.server</tspan></text>
- </g>
- <path
- sodipodi:open="true"
- transform="matrix(1.4955348,0,0,1.4955348,-197.13554,257.02443)"
- sodipodi:end="6.2827149"
- sodipodi:start="0"
- d="m 491.94323,228.54329 a 4.7385135,4.7385135 0 1 1 -1e-5,-0.002"
- sodipodi:ry="4.7385135"
- sodipodi:rx="4.7385135"
- sodipodi:cy="228.54329"
- sodipodi:cx="487.20471"
- id="path29638"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- sodipodi:type="arc" />
- <text
- id="text29642"
- y="590.72156"
- x="519.97064"
- style="font-size:17.94641876px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="590.72156"
- x="519.97064"
- id="tspan29644"
- sodipodi:role="line">n</tspan></text>
- <g
- style="display:inline"
- id="g29646"
- transform="matrix(1.4955348,0,0,1.4955348,112.93645,393.39005)">
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect29648"
- width="137.41693"
- height="35.433044"
- x="177.9948"
- y="232.13174"
- ry="3.7880721" />
- <text
- id="text29650"
- y="248.08353"
- x="224.30263"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="248.08353"
- x="224.30263"
- id="tspan29652"
- sodipodi:role="line">MyComponent</tspan></text>
- </g>
- <rect
- style="fill:url(#pattern39357);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.83464575;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect29654"
- width="105.98283"
- height="37.093971"
- x="460.62991"
- y="467.71652"
- ry="3.9656363" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#49c2f1;stroke-width:4.23931122;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:url(#DotSu);display:inline"
- d="m 495.81616,371.6201 0,23.21146"
- id="path39383"
- inkscape:connector-type="polyline"
- inkscape:connector-curvature="0" />
- <text
- id="text4185-8"
- y="308.10019"
- x="416.72385"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="308.10019"
- x="416.72385"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191-0">«extends...»</tspan></text>
- <g
- id="g6138"
- transform="translate(245.24491,13.033297)">
- <rect
- ry="5.6651931"
- y="387.36038"
- x="-131.85909"
- height="167.3125"
- width="240.19713"
- id="rect18094-6"
- style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.4955349;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.4955348, 2.9910696;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-size:14.95534801px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- x="-124.77247"
- y="405.07693"
- id="text18096-2"><tspan
- sodipodi:role="line"
- id="tspan18098-9"
- x="-124.77247"
- y="405.07693">Shared</tspan></text>
- <g
- style="display:inline"
- id="g17430-7"
- transform="matrix(1.4955348,0,0,1.4955348,-359.25086,135.86855)">
- <rect
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect17432-9"
- width="129.86864"
- height="35.433243"
- x="166.26268"
- y="232.13176"
- ry="3.7880721" />
- <text
- id="text17434-3"
- y="248.08353"
- x="170.1252"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#49c2f1;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="248.08353"
- x="170.1252"
- id="tspan17436-2"
- sodipodi:role="line">MyComponentState</tspan></text>
- </g>
- <g
- style="display:inline"
- id="g39423-1-2"
- transform="matrix(1.4955348,0,0,1.4955348,-544.29666,101.95228)">
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot39425-7-5"
- transform="translate(-5.2378947,106.19782)"><flowRegion
- id="flowRegion39427-5-7"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use39429-4-5"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara39431-8-2">Sizeable</flowPara></flowRoot> <g
- id="g39433-4-3"
- transform="translate(-46.062995,-30.433073)">
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot39435-3-3"
- transform="translate(-5.2378947,106.19782)"><flowRegion
- id="flowRegion39437-1-5"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use39439-1-0"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara39441-0-4">Sizeable</flowPara></flowRoot> </g>
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot39443-9-0"
- transform="translate(75.734798,-715.9695)"><flowRegion
- id="flowRegion39445-0-4"><use
- transform="translate(1.467046,-91.03536)"
- x="0"
- y="0"
- xlink:href="#rect4654"
- id="use39447-0-4"
- width="744.09448"
- height="1052.3622" /></flowRegion><flowPara
- id="flowPara39449-6-9">VariableOwner</flowPara></flowRoot> <g
- style="display:inline"
- id="g39451-9-7"
- transform="translate(123.00096,-20.40135)">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect39453-6-1"
- width="130.30916"
- height="33.169598"
- x="166.99391"
- y="232.56483"
- ry="3.7880721" />
- <text
- id="text39455-6-5"
- y="252.29591"
- x="171.16541"
- style="font-size:10.69851398px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="252.29591"
- x="171.16541"
- id="tspan39457-4-0"
- sodipodi:role="line">ComponentState</tspan></text>
- </g>
- <text
- id="text39351-1"
- y="221.32399"
- x="294.55338"
- style="font-size:6.00000048px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="221.32399"
- x="294.55338"
- sodipodi:role="line"
- id="tspan39353-9">com.vaadin.shared</tspan></text>
- </g>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:6.02362204;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095);display:inline"
- d="m 38.219653,483.02968 0,-21.25985"
- id="path4600-4"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#f39300;stroke-width:6.02362204;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#DotSu8);display:inline"
- d="m -121.22916,454.68322 10.62992,0"
- id="path4600-1-5-6"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- </g>
- <path
- sodipodi:open="true"
- transform="matrix(1.8694191,0,0,1.8694191,-613.13036,5.0402525)"
- sodipodi:end="6.2827149"
- sodipodi:start="0"
- d="m 491.94323,228.54329 a 4.7385135,4.7385135 0 1 1 -1e-5,-0.002"
- sodipodi:ry="4.7385135"
- sodipodi:rx="4.7385135"
- sodipodi:cy="228.54329"
- sodipodi:cx="487.20471"
- id="path29638-1"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- sodipodi:type="arc" />
- <text
- id="text4185-8-9"
- y="306.25204"
- x="303.37244"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="306.25204"
- x="303.37244"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191-0-1">«has»</tspan></text>
- <path
- style="fill:none;stroke:#f39300;stroke-width:6.02362204;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016);display:inline"
- d="m 531.49606,669.68503 0,-28.34647"
- id="path4600-4-1"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:6.02362204;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095);display:inline"
- d="m 531.49606,740.55116 0,-21.25985"
- id="path4600-4-3"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <text
- id="text31847"
- y="479.47568"
- x="363.61795"
- style="font-size:14.95534801px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="479.47568"
- x="363.61795"
- id="tspan31849"
- sodipodi:role="line">Server connection:</tspan><tspan
- y="498.16986"
- x="363.61795"
- sodipodi:role="line"
- id="tspan31851">HTTP(S) / JSON</tspan></text>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4.96062994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#DotSu);display:inline"
- d="m 531.49606,574.01572 0,24.80315"
- id="path4600-1-6"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <text
- id="text4185-8-9-4"
- y="687.35822"
- x="333.1142"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="687.35822"
- x="333.1142"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191-0-1-4">«has»</tspan></text>
- <path
- style="fill:none;stroke:#f39300;stroke-width:6.02362204;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none;display:inline"
- d="m 124.01575,467.71651 0,226.77166 258.66142,0"
- id="path4600-1-5-6-1"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
- <g
- style="display:inline"
- id="g29630-7"
- transform="matrix(1.4955348,0,0,1.4955348,8.7019307,-106.32886)">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect29632-3"
- width="150.45576"
- height="35.43306"
- x="167.13719"
- y="232.20705"
- ry="3.7880721" />
- <text
- id="text29634-0"
- y="251.95493"
- x="169.84711"
- style="font-size:9.36119975000000082px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold;writing-mode:lr;line-height:125%"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="251.95493"
- x="169.84711"
- id="tspan29636-4"
- sodipodi:role="line">AbstractComponentConnector</tspan></text>
- <text
- id="text31857-5"
- y="240.42516"
- x="170.30312"
- style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="240.42516"
- x="170.30312"
- sodipodi:role="line"
- id="tspan31859-2">com.vaadin.client.ui</tspan></text>
- </g>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:6.02362204;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095)"
- d="m 407.48031,318.89762 0,-28.34646"
- id="path4600"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- sodipodi:open="true"
- transform="matrix(1.8694191,0,0,1.8694191,-545.82916,-133.42038)"
- sodipodi:end="6.2827149"
- sodipodi:start="0"
- d="m 491.94323,228.54329 a 4.7385135,4.7385135 0 1 1 -1e-5,-0.002"
- sodipodi:ry="4.7385135"
- sodipodi:rx="4.7385135"
- sodipodi:cy="228.54329"
- sodipodi:cx="487.20471"
- id="path29638-1-4"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.12598419;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- sodipodi:type="arc" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4.96062992;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#DotSu);display:inline"
- d="m 379.13386,421.65352 -14.17323,0 0,-127.55905"
- id="path4600-1-9"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
- <text
- id="text39405-7"
- y="311.5777"
- x="374.49985"
- style="font-size:17.94641876px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#49c2f1;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><tspan
- y="311.5777"
- x="374.49985"
- id="tspan39407-9"
- sodipodi:role="line">n</tspan></text>
- <text
- id="text4185-8-9-5"
- y="387.74811"
- x="367.15198"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="387.74811"
- x="367.15198"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191-0-1-2">«has»</tspan></text>
- <text
- id="text4185-8-9-5-5"
- y="387.74811"
- x="501.79764"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="387.74811"
- x="501.79764"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191-0-1-2-7">«knows»</tspan></text>
- <path
- style="fill:none;stroke:#f39300;stroke-width:4.96062992;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#DotSu8);display:inline"
- d="m 297.6378,294.09447 0,138.18897"
- id="path4600-1-5-6-3"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <text
- id="text4185-8-2"
- y="145.10806"
- x="409.00732"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"
- sodipodi:linespacing="125%"><tspan
- y="145.10806"
- x="409.00732"
- sodipodi:role="line"
- style="font-size:11.96427917px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="tspan4191-0-5">«...»</tspan></text>
- </g>
-</svg>
diff --git a/documentation/index.asciidoc b/documentation/index.asciidoc deleted file mode 100644 index 2dff09694e..0000000000 --- a/documentation/index.asciidoc +++ /dev/null @@ -1 +0,0 @@ -== Index
\ No newline at end of file diff --git a/documentation/introduction/chapter-introduction.asciidoc b/documentation/introduction/chapter-introduction.asciidoc deleted file mode 100644 index 111d3a23f5..0000000000 --- a/documentation/introduction/chapter-introduction.asciidoc +++ /dev/null @@ -1,17 +0,0 @@ -[[intro]] -== Introduction - -This chapter gives a brief introduction to software development with Vaadin. We -also try to give some insight about the design philosophy behind Vaadin and its -history. - - -include::intro-overview.asciidoc[leveloffset=+2] - -include::intro-walkthrough.asciidoc[leveloffset=+2] - -include::intro-eclipse.asciidoc[leveloffset=+2] - -include::intro-goals.asciidoc[leveloffset=+2] - -include::intro-background.asciidoc[leveloffset=+2] diff --git a/documentation/introduction/img/HelloWorld.png b/documentation/introduction/img/HelloWorld.png Binary files differdeleted file mode 100644 index 3991d0dbab..0000000000 --- a/documentation/introduction/img/HelloWorld.png +++ /dev/null diff --git a/documentation/introduction/img/architecture-vaadin7-hi.png b/documentation/introduction/img/architecture-vaadin7-hi.png Binary files differdeleted file mode 100644 index a28e5be7c6..0000000000 --- a/documentation/introduction/img/architecture-vaadin7-hi.png +++ /dev/null diff --git a/documentation/introduction/img/architecture-vaadin7-lo.png b/documentation/introduction/img/architecture-vaadin7-lo.png Binary files differdeleted file mode 100644 index 5ef0c0bea0..0000000000 --- a/documentation/introduction/img/architecture-vaadin7-lo.png +++ /dev/null diff --git a/documentation/introduction/img/intro-themes-faded-hi.png b/documentation/introduction/img/intro-themes-faded-hi.png Binary files differdeleted file mode 100644 index e7f4653232..0000000000 --- a/documentation/introduction/img/intro-themes-faded-hi.png +++ /dev/null diff --git a/documentation/introduction/img/intro-themes-faded-lo.png b/documentation/introduction/img/intro-themes-faded-lo.png Binary files differdeleted file mode 100644 index b9c4b5724f..0000000000 --- a/documentation/introduction/img/intro-themes-faded-lo.png +++ /dev/null diff --git a/documentation/introduction/intro-background.asciidoc b/documentation/introduction/intro-background.asciidoc deleted file mode 100644 index ec70b75d9f..0000000000 --- a/documentation/introduction/intro-background.asciidoc +++ /dev/null @@ -1,94 +0,0 @@ ---- -title: Background -order: 5 -layout: page ---- - -[[intro.background]] -= Background - -The Vaadin Framework was not written overnight. After working with web user -interfaces since the beginning of the Web, a group of developers got together in -2000 to form IT Mill. The team had a desire to develop a new programming -paradigm that would support the creation of real user interfaces for real -applications using a real programming language. - -The library was originally called Millstone Library. The first version was used -in a large production application that IT Mill designed and implemented for an -international pharmaceutical company. IT Mill made the application already in -the year 2001 and it is still in use. Since then, the company has produced -dozens of large business applications with the library and it has proven its -ability to solve hard problems easily. - -The next generation of the library, IT Mill Toolkit Release 4, was released in -2006. It introduced an entirely new AJAX-based presentation engine. This allowed -the development of AJAX applications without the need to worry about -communications between the client and the server. - -[[intro.background.toolkit-5]] -== Release 5 Into the Open - -((("IT Mill -Toolkit"))) -((("AJAX"))) -IT Mill Toolkit 5, released initially at the end of 2007, took a significant -step further into AJAX. The client-side rendering of the user interface was -completely rewritten using GWT, the Google Web Toolkit. ((("Google Web -Toolkit"))) - -IT Mill Toolkit 5 introduced many significant improvements both in the -server-side API and in the functionality. Rewriting the Client-Side Engine with -GWT allowed the use of Java both on the client and the server-side. The -transition from JavaScript to GWT made the development and integration of custom -components and customization of existing components much easier than before, and -it also allows easy integration of existing GWT components. The adoption of GWT -on the client-side did not, by itself, cause any changes in the server-side API, -because GWT is a browser technology that is hidden well behind the API. Also -theming was completely revised in IT Mill Toolkit 5. - -The Release 5 was published under the Apache License 2, an unrestrictive open -source license, to create faster expansion of the user base and to make the -formation of a developer community possible. - - -[[intro.background.vaadin6]] -== Birth of Vaadin Release 6 - -IT Mill Toolkit was renamed as __Vaadin Framework__, or Vaadin in short, in -spring 2009. Later IT Mill, the company, was also renamed as Vaadin Ltd. Vaadin -means an adult female semi-domesticated mountain reindeer in Finnish. - -With Vaadin 6, the number of developers using the framework exploded. Together -with the release, the Vaadin Plugin for Eclipse was released, helping the -creation of Vaadin projects. The introduction of Vaadin Directory in early 2010 -gave it a further boost, as the number of available components multiplied almost -overnight. Many of the originally experimental components have since then -matured and are now used by thousands of developers. In 2013, we are seeing -tremendous growth in the ecosystem around Vaadin. The size of the user -community, at least if measured by forum activity, has already gone past the -competing server-side frameworks and even GWT. - - -[[intro.background.vaadin7]] -== The Major Revision with Vaadin 7 - -Vaadin 7 was a major revision that changed the Vaadin API much more than Vaadin -6 did. It is certainly more web-oriented than Vaadin 6 was. We are doing -everything we can to help Vaadin rise high in the web universe. Some of this -work is easy and almost routine - fixing bugs and implementing features. But -going higher also requires standing firmer. That was one of the aims of Vaadin 7 -- redesigning the product so that the new architecture enables Vaadin to reach -over many long-standing challenges. Many of the changes required breaking API -compatibility with Vaadin 6, especially in the client-side, but they are made -with a strong desire to avoid carrying unnecessary legacy burden far into the -future. - -Inclusion of the Google Web Toolkit in Vaadin 7 was a significant development, -as it meant that Vaadin now provides support for GWT as well. When Google opened -the GWT development in summer 2012, Vaadin (the company) joined the new GWT -steering committee. As a member of the committee, Vaadin can work towards the -success of GWT as a foundation of the Java web development community. - - - - diff --git a/documentation/introduction/intro-eclipse.asciidoc b/documentation/introduction/intro-eclipse.asciidoc deleted file mode 100644 index b2fb127f7b..0000000000 --- a/documentation/introduction/intro-eclipse.asciidoc +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Support for the Eclipse IDE -order: 3 -layout: page ---- - -[[intro.eclipse]] -= Support for the Eclipse IDE - -While Vaadin is not bound to any specific IDE, and you can in fact easily use it -without any IDE altogether, we provide special support for the Eclipse IDE, -which has become the most used environment for Java development. The support is -provided in the Vaadin Plugin for Eclipse, which helps you in: - -* Creating new Vaadin projects - -* Creating custom themes - -* Creating custom client-side widgets - -* Easily upgrading to a newer version of the Vaadin library - - -Using the Vaadin Plugin for Eclipse is the recommended way of installing Vaadin -for development. Downloading the installation package that contains the JARs or -defining Vaadin as a Maven dependency is also possible. - -Installing and updating the Eclipse plugin is covered in -<<dummy/../../../framework/getting-started/getting-started-eclipse#getting-started.eclipse,"Vaadin -Plugin for Eclipse">> and the creation of a new Vaadin project using the plugin -in -<<dummy/../../../framework/getting-started/getting-started-first-project#getting-started.first-project.creation,"Creating -the Project">>. See -<<dummy/../../../framework/themes/themes-eclipse#themes.eclipse,"Creating a -Theme in Eclipse">> and -<<dummy/../../../framework/gwt/gwt-eclipse#gwt.eclipse,"Starting It Simple With -Eclipse">> for instructions on using the different features of the plugin. - - - diff --git a/documentation/introduction/intro-goals.asciidoc b/documentation/introduction/intro-goals.asciidoc deleted file mode 100644 index 0972a998cf..0000000000 --- a/documentation/introduction/intro-goals.asciidoc +++ /dev/null @@ -1,53 +0,0 @@ ---- -title: Goals and Philosophy -order: 4 -layout: page ---- - -[[intro.goals]] -= Goals and Philosophy - -Simply put, Vaadin's ambition is to be the best possible tool when it comes to -creating web user interfaces for business applications. It is easy to adopt, as -it is designed to support both entry-level and advanced programmers, as well as -usability experts and graphic designers. - -When designing Vaadin, we have followed the philosophy inscribed in the -following rules. - -== Right tool for the right purpose - -Because our goals are high, the focus must be clear. Vaadin is designed for -creating web applications. It is not designed for creating websites or -advertisement demos. You may find, for example, JSP/JSF or Flash more suitable -for such purposes. - - -== Simplicity and maintainability - -We have chosen to emphasize robustness, simplicity, and maintainability. This -involves following the well-established best practices in user interface -frameworks and ensuring that our implementation represents an ideal solution for -its purpose without clutter or bloat. - - -== XML is not designed for programming - -The Web is inherently document-centered and very much bound to the declarative -presentation of user interfaces. While Vaadin allows for declarative designs of -views, layouts, and even entire UIs, the programmatic approach by building the -UIs from Java components frees the programmer from these limitations. To create -highly dynamic views, it is more natural to create them by programming. - - -== Tools should not limit your work - -There should not be any limits on what you can do with the framework: if for -some reason the user interface components do not support what you need to -achieve, it must be easy to add new ones to your application. When you need to -create new components, the role of the framework is critical: it makes it easy -to create re-usable components that are easy to maintain. - - - - diff --git a/documentation/introduction/intro-overview.asciidoc b/documentation/introduction/intro-overview.asciidoc deleted file mode 100644 index fb46e6fac6..0000000000 --- a/documentation/introduction/intro-overview.asciidoc +++ /dev/null @@ -1,89 +0,0 @@ ---- -title: Overview -order: 1 -layout: page ---- - -[[intro.overview]] -= Overview - -Vaadin Framework is a Java web application development framework that is -designed to make creation and maintenance of high quality web-based user -interfaces easy. Vaadin supports two different programming models: server-side -and client-side. The server-driven programming model is the more powerful one. -It lets you forget the web and program user interfaces much like you would -program a desktop application with conventional Java toolkits such as AWT, -Swing, or SWT. But easier. - -While traditional web programming is a fun way to spend your time learning new -web technologies, you probably want to be productive and concentrate on the -application logic. The server-side Vaadin framework takes care of managing the -user interface in the browser and the __AJAX__ communications between the -browser and the server. With the Vaadin approach, you do not need to learn and -deal directly with browser technologies, such as HTML or JavaScript. - -[[figure.intro.architecture]] -.Vaadin Application Architecture -image::img/architecture-vaadin7-hi.png[] - -<<figure.intro.architecture>> illustrates the basic architectures of web -applications made with Vaadin. The server-side application architecture consists -of the __server-side framework__ and a __client-side engine__. The engine runs -in the browser as JavaScript code, rendering the user interface, and delivering -user interaction to the server. The UI logic of an application runs as a Java -Servlet in a Java application server. - -As the client-side engine is executed as JavaScript in the browser, no browser -plugins are needed for using applications made with Vaadin. This gives it an -edge over frameworks based on Flash, Java Applets, or other plugins. Vaadin -relies on the support of Google Web Toolkit for a wide range of browsers, so -that the developer does not need to worry about browser support. - -Because HTML, JavaScript, and other browser technologies are essentially -invisible to the application logic, you can think of the web browser as only a -thin client platform. A thin client displays the user interface and communicates -user events to the server at a low level. The control logic of the user -interface runs on a Java-based web server, together with your business logic. By -contrast, a normal client-server architecture with a dedicated client -application would include a lot of application specific communications between -the client and the server. Essentially removing the user interface tier from the -application architecture makes our approach a very effective one. - -Behind the server-driven development model, Vaadin makes the best use of AJAX ( -__Asynchronous JavaScript and XML__, see -<<dummy/../../../framework/architecture/architecture-technology#architecture.technology.ajax,"AJAX">> -for a description) techniques that make it possible to create Rich Internet -Applications (RIA) that are as responsive and interactive as desktop -applications. - -In addition to the server-side Java application development, you can develop on -the client-side by making new widgets in Java, and even pure client-side -applications that run solely in the browser. The Vaadin client-side framework -includes Google Web Toolkit (GWT), which provides a compiler from Java to the -JavaScript that runs in the browser, as well a full-featured user interface -framework. With this approach, Vaadin is pure Java on both sides. ((("Google Web -Toolkit"))) - -Vaadin uses a client-side engine for rendering the user interface of a -server-side application in the browser. All the client-server communications are -hidden well under the hood. -((("JavaScript"))) -Vaadin is designed to be extensible, and you can indeed use any 3rd-party -widgets easily, in addition to the component repertoire offered in Vaadin. In -fact, you can find hundreds of add-ons in the Vaadin Directory. - -Vaadin allows flexible separation between the appearance, structure, and -interaction logic of the user interface. You can design the layouts either -programmatically or declaratively, at the level of your choosing. The final -appearance is defined in __themes__ in CSS or Sass, as described in -<<dummy/../../../framework/themes/themes-overview.asciidoc#themes.overview,"Themes">>. - -We hope that this is enough about the basic architecture and features of Vaadin -for now. You can read more about it later in -<<dummy/../../../framework/architecture/architecture-overview.asciidoc#architecture.overview,"Architecture">>, -or jump straight to more practical things in -<<dummy/../../../framework/application/application-overview.asciidoc#application.overview,"Writing -a Server-Side Web Application">>. - - - diff --git a/documentation/introduction/intro-walkthrough.asciidoc b/documentation/introduction/intro-walkthrough.asciidoc deleted file mode 100644 index 218e76b337..0000000000 --- a/documentation/introduction/intro-walkthrough.asciidoc +++ /dev/null @@ -1,111 +0,0 @@ ---- -title: Example Application Walkthrough -order: 2 -layout: page ---- - -[[intro.walkthrough]] -= Example Application Walkthrough - -Let us follow the long tradition of first saying "Hello World!" when learning a -new programming framework. First, using the primary server-side API. - - -[source, java] ----- -import com.vaadin.server.VaadinRequest; -import com.vaadin.ui.Label; -import com.vaadin.ui.UI; - -@Title("My UI") -@Theme("valo") -public class HelloWorld extends UI { - @Override - protected void init(VaadinRequest request) { - // Create the content root layout for the UI - VerticalLayout content = new VerticalLayout(); - setContent(content); - - // Display the greeting - content.addComponent(new Label("Hello World!")); - - // Have a clickable button - content.addComponent(new Button("Push Me!", - new ClickListener() { - @Override - public void buttonClick(ClickEvent e) { - Notification.show("Pushed!"); - } - })); - } -} ----- - -A Vaadin application has one or more __UI__s that extend the -[classname]#com.vaadin.ui.UI# class. A UI is a part of the web page in which the -Vaadin application runs. An application can have multiple UIs in the same page, -especially in portals, or in different windows or tabs. A UI is associated with -a user session, and a session is created for each user who uses the application. -In the context of our Hello World UI, it is sufficient to know that the -underlying session is created when the user first accesses the application by -opening the page, and the [methodname]#init()# method is invoked at that time. - -The page title, which is shown in the caption of the browser window or tab, is -defined with an annotation. The example uses a layout component as the root -content of the UI, as that is the case with most Vaadin applications, which -normally have more than one component. It then creates a new [classname]#Label# -user interface component, which displays simple text, and sets the text to -"Hello World!". The label is added to the layout. - -The example also shows how to create a button and handle button click events. -Event handling is described in -<<dummy/../../../framework/architecture/architecture-events#architecture.events,"Events -and Listeners">> and on the practical side in -<<dummy/../../../framework/application/application-events#application.events,"Handling -Events with Listeners">>. In addition to listeners, in Java 8 you can handle -events with lambda expressions, which simplifies the handler code significantly. - - -[source, java] ----- -content.addComponent(new Button("Push Me!", - event -> Notification.show("Pushed!"))); ----- - -The result of the Hello World application, when opened in a browser, is shown in -<<figure.intro.walkthrough>>. - -[[figure.intro.walkthrough]] -.Hello World Application -image::img/HelloWorld.png[] - -To run a program, you need to package it as a web application WAR package and -deploy it to a server, as explained in -<<dummy/../../../framework/application/application-environment#application.environment,"Deploying -an Application">>. During development, you typically deploy to an application -server integrated with the IDE. - -Developing a pure client-side application, you could write a Hello World just as -easily, and also in Java: - - -[source, java] ----- -public class HelloWorld implements EntryPoint { - @Override - public void onModuleLoad() { - RootPanel.get().add(new Label("Hello, world!")); - } -} ----- - -We do not set the title here, because it is usually defined in the HTML page in -which the code is executed. The application would be compiled into JavaScript -with the Vaadin Client Compiler (or GWT Compiler). It is more typical, however, -to write client-side widgets, which you can then use from a server-side Vaadin -application. For more information regarding client-side development, see -<<dummy/../../../framework/clientside/clientside-overview.asciidoc#clientside.overview,"Client-Side -Vaadin Development">>. - - - diff --git a/documentation/introduction/original-drawings/architecture-vaadin7.svg b/documentation/introduction/original-drawings/architecture-vaadin7.svg deleted file mode 100644 index 581fb7aa04..0000000000 --- a/documentation/introduction/original-drawings/architecture-vaadin7.svg +++ /dev/null @@ -1,826 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<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"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="architecture-vaadin7.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/original-drawings/intro/architecture.png"
- inkscape:export-xdpi="300"
- inkscape:export-ydpi="300"
- version="1.1">
- <defs
- id="defs1903">
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective110" />
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path3520"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.8)" />
- </marker>
- <linearGradient
- id="linearGradient3503">
- <stop
- style="stop-color:#37ff40;stop-opacity:0.53608245;"
- offset="0"
- id="stop3505" />
- <stop
- style="stop-color:#ffe0e0;stop-opacity:1;"
- offset="1"
- id="stop3507" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2Lstart"
- style="overflow:visible">
- <path
- id="path6743"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- transform="matrix(1.1,0,0,1.1,1.1,0)" />
- </marker>
- <linearGradient
- id="linearGradient19816">
- <stop
- id="stop19818"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop19820"
- offset="1"
- style="stop-color:#e7e790;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient11516">
- <stop
- id="stop11518"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop11520"
- offset="1"
- style="stop-color:#a090e7;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient11508">
- <stop
- id="stop11510"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop11512"
- offset="1"
- style="stop-color:#e27979;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3286">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3288" />
- <stop
- style="stop-color:#79e291;stop-opacity:1;"
- offset="1"
- id="stop3290" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2Lend"
- style="overflow:visible">
- <path
- id="path16811"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
- </marker>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="2.8"
- inkscape:cx="230.46176"
- inkscape:cy="936.84249"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1672"
- inkscape:window-height="1019"
- inkscape:window-x="0"
- inkscape:window-y="0"
- inkscape:showpageshadow="false"
- borderlayer="false"
- showgrid="true"
- inkscape:window-maximized="0"
- showguides="true"
- inkscape:guide-bbox="true"
- inkscape:snap-bbox="true">
- <inkscape:grid
- type="xygrid"
- id="grid6362"
- visible="true"
- enabled="true"
- empspacing="5"
- snapvisiblegridlinesonly="true"
- spacingx="1px" />
- <sodipodi:guide
- orientation="0,1"
- position="27,1017"
- id="guide3154" />
- </sodipodi:namedview>
- <metadata
- id="metadata1906">
- <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
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <rect
- ry="3.7880721"
- y="30.362183"
- x="115"
- height="172"
- width="235"
- id="rect6367-4"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <g
- id="g6789"
- transform="translate(201.94598,-187.75591)">
- <rect
- ry="3.7880721"
- y="235.11809"
- x="13.054024"
- height="120.00001"
- width="54.999996"
- id="rect6791"
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot9963-2-3-6"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(131.17902,-28.711907)"><flowRegion
- id="flowRegion9965-2-7-7"><rect
- id="rect9967-3-5-6"
- width="68.012077"
- height="51.315746"
- x="-113.13708"
- y="271.51425"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara10992">UI Logic</flowPara></flowRoot> <g
- transform="matrix(0.06329721,0,0,0.06329721,12.360276,272.97423)"
- id="g6827-8">
- <g
- id="g6829-7"
- transform="matrix(29.999985,-0.03019888,0.03019888,29.999985,-11004.945,-15375.022)">
- <g
- style="fill:#ffffff;fill-opacity:1"
- transform="matrix(0.71644053,0,0,0.71644053,103.9698,144.62879)"
- id="g6831-7">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.03333332,3.3554312e-5,-3.3554312e-5,0.03333332,366.53421,512.86995)"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
- d="M 142.5625,-6.4375 40.6875,-6.34375 C 29.868538,-6.48507 19.811533,-0.790227 14.367338,8.560208 8.9231424,17.910644 8.9351814,29.468085 14.398845,38.807157 19.862509,48.14623 29.931356,53.820109 40.75,53.65625 L 142.625,53.5625 c 10.81896,0.14132 20.87597,-5.553523 26.32016,-14.903958 5.4442,-9.350436 5.43216,-20.907877 -0.0315,-30.246949 C 163.44999,-0.92748 153.38114,-6.601359 142.5625,-6.4375 l 0,0 z"
- id="path6833-7" />
- <path
- inkscape:connector-curvature="0"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65701,514.67289 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path6835-3"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </g>
- </g>
- <g
- id="g6829-2-5-6"
- transform="matrix(-1.8989154,-0.0019115,-0.0019115,1.8989154,765.271,-700.0021)">
- <g
- style="fill:#ffffff;fill-opacity:1"
- transform="matrix(0.71644053,0,0,0.71644053,103.9698,144.62879)"
- id="g6831-2-7-3">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.03333332,3.3554312e-5,-3.3554312e-5,0.03333332,366.53421,512.86995)"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
- d="M 142.5625,-6.4375 40.6875,-6.34375 C 29.868538,-6.48507 19.811533,-0.790227 14.367338,8.560208 8.9231424,17.910644 8.9351814,29.468085 14.398845,38.807157 19.862509,48.14623 29.931356,53.820109 40.75,53.65625 L 142.625,53.5625 c 10.81896,0.14132 20.87597,-5.553523 26.32016,-14.903958 5.4442,-9.350436 5.43216,-20.907877 -0.0315,-30.246949 C 163.44999,-0.92748 153.38114,-6.601359 142.5625,-6.4375 l 0,0 z"
- id="path6833-1-5-9" />
- <path
- inkscape:connector-curvature="0"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65701,514.67289 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path6835-0-9-2"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </g>
- </g>
- <g
- id="g6813"
- transform="translate(106.94598,-187.75591)">
- <rect
- ry="3.7880721"
- y="235.11809"
- x="13.054024"
- height="120.00001"
- width="90"
- id="rect6815"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot9963-2-3"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(131.17902,-28.711907)"><flowRegion
- id="flowRegion9965-2-7"><rect
- id="rect9967-3-5"
- width="95.012077"
- height="37.315746"
- x="-113.13708"
- y="271.51425"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara10160">Components</flowPara></flowRoot> <g
- id="g28403-2-5-2-40-2"
- transform="translate(15.694547,135.25927)">
- <rect
- ry="3.7880721"
- y="119.85882"
- x="7.3594728"
- height="95.000008"
- width="70"
- id="rect4680-4-4-7-0-9"
- style="fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <g
- transform="translate(-9.4510395,-55.573718)"
- id="g28403-3-5-6-2">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-0"
- width="60"
- height="25"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-4"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.43047,-878.23713)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-9"><rect
- id="rect11365-5-4-6-4-2"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-0">Built-in</flowPara><flowPara
- id="flowPara4300-0">Components</flowPara></flowRoot> </g>
- <g
- transform="translate(-9.4510395,-25.573718)"
- id="g28403-3-5-6-6-7">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5-8"
- width="60"
- height="25"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1-6"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5-3"><rect
- id="rect11365-5-4-6-4-5-9"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-9-4">Add-on</flowPara><flowPara
- id="flowPara4338-2">Components</flowPara></flowRoot> </g>
- <g
- transform="translate(-9.4510395,4.4262817)"
- id="g28403-3-5-6-6-6-5">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.5, 1.5;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5-9-2"
- width="60"
- height="25"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1-4-4"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5-8-5"><rect
- id="rect11365-5-4-6-4-5-7-3"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-9-0-2">Custom</flowPara><flowPara
- id="flowPara4338-0-3">Components</flowPara></flowRoot> </g>
- </g>
- <g
- transform="matrix(0.06329721,0,0,0.06329721,12.360273,273.14646)"
- id="g6827">
- <g
- id="g6829"
- transform="matrix(29.999985,-0.03019888,0.03019888,29.999985,-11004.221,-15375.022)">
- <g
- style="fill:#ffffff;fill-opacity:1"
- transform="matrix(0.71644053,0,0,0.71644053,103.9698,144.62879)"
- id="g6831">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.03333332,3.3554312e-5,-3.3554312e-5,0.03333332,366.53421,512.86995)"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
- d="M 142.5625,-6.4375 40.6875,-6.34375 C 29.868538,-6.48507 19.811533,-0.790227 14.367338,8.560208 8.9231424,17.910644 8.9351814,29.468085 14.398845,38.807157 19.862509,48.14623 29.931356,53.820109 40.75,53.65625 L 142.625,53.5625 c 10.81896,0.14132 20.87597,-5.553523 26.32016,-14.903958 5.4442,-9.350436 5.43216,-20.907877 -0.0315,-30.246949 C 163.44999,-0.92748 153.38114,-6.601359 142.5625,-6.4375 l 0,0 z"
- id="path6833" />
- <path
- inkscape:connector-curvature="0"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65701,514.67289 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path6835"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </g>
- </g>
- <g
- id="g6829-2-5"
- transform="matrix(-1.8989154,-0.0019115,-0.0019115,1.8989154,800.31481,-700.16918)">
- <g
- style="fill:#ffffff;fill-opacity:1"
- transform="matrix(0.71644053,0,0,0.71644053,103.9698,144.62879)"
- id="g6831-2-7">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.03333332,3.3554312e-5,-3.3554312e-5,0.03333332,366.53421,512.86995)"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
- d="M 142.5625,-6.4375 40.6875,-6.34375 C 29.868538,-6.48507 19.811533,-0.790227 14.367338,8.560208 8.9231424,17.910644 8.9351814,29.468085 14.398845,38.807157 19.862509,48.14623 29.931356,53.820109 40.75,53.65625 L 142.625,53.5625 c 10.81896,0.14132 20.87597,-5.553523 26.32016,-14.903958 5.4442,-9.350436 5.43216,-20.907877 -0.0315,-30.246949 C 163.44999,-0.92748 153.38114,-6.601359 142.5625,-6.4375 l 0,0 z"
- id="path6833-1-5" />
- <path
- inkscape:connector-curvature="0"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65701,514.67289 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path6835-0-9"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </g>
- </g>
- <g
- id="g6789-3"
- transform="translate(261.94598,-187.75591)">
- <rect
- ry="3.7880721"
- y="235.11809"
- x="13.054024"
- height="150"
- width="70"
- id="rect6791-7"
- style="fill:#00b400;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot9963-2-3-6-8"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(131.17902,-28.711907)"><flowRegion
- id="flowRegion9965-2-7-7-1"><rect
- id="rect9967-3-5-6-4"
- width="60.012077"
- height="32.315746"
- x="-113.13708"
- y="271.51425"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara10992-4">Back-End</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot9963-2-3-6-8-6"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(131.17902,18.233093)"><flowRegion
- id="flowRegion9965-2-7-7-1-9"><rect
- id="rect9967-3-5-6-4-7"
- width="70.012077"
- height="53.315746"
- x="-113.13708"
- y="271.51425"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara5520">Business</flowPara><flowPara
- id="flowPara5532">Logic</flowPara><flowPara
- id="flowPara5534" /><flowPara
- id="flowPara11082">Persistence</flowPara></flowRoot> <g
- transform="matrix(0.06329721,0,0,0.06329721,12.360276,272.99779)"
- id="g6827-8-0">
- <g
- id="g6829-7-6"
- transform="matrix(29.999985,-0.03019888,0.03019888,29.999985,-11004.221,-15375.022)">
- <g
- style="fill:#ffffff;fill-opacity:1"
- transform="matrix(0.71644053,0,0,0.71644053,103.9698,144.62879)"
- id="g6831-7-1">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.03333332,3.3554312e-5,-3.3554312e-5,0.03333332,366.53421,512.86995)"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
- d="M 142.5625,-6.4375 40.6875,-6.34375 C 29.868538,-6.48507 19.811533,-0.790227 14.367338,8.560208 8.9231424,17.910644 8.9351814,29.468085 14.398845,38.807157 19.862509,48.14623 29.931356,53.820109 40.75,53.65625 L 142.625,53.5625 c 10.81896,0.14132 20.87597,-5.553523 26.32016,-14.903958 5.4442,-9.350436 5.43216,-20.907877 -0.0315,-30.246949 C 163.44999,-0.92748 153.38114,-6.601359 142.5625,-6.4375 l 0,0 z"
- id="path6833-7-8" />
- <path
- inkscape:connector-curvature="0"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65701,514.67289 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path6835-3-1"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </g>
- </g>
- <g
- transform="matrix(0.06329721,0,0,0.06329721,12.844795,372.99779)"
- id="g6827-8-0-8">
- <g
- id="g6829-7-6-9"
- transform="matrix(29.999985,-0.03019888,0.03019888,29.999985,-11011.509,-15375.022)">
- <g
- style="fill:#ffffff;fill-opacity:1"
- transform="matrix(0.71644053,0,0,0.71644053,103.9698,144.62879)"
- id="g6831-7-1-9">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.03333332,3.3554312e-5,-3.3554312e-5,0.03333332,366.53421,512.86995)"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
- d="M 142.5625,-6.4375 40.6875,-6.34375 C 29.868538,-6.48507 19.811533,-0.790227 14.367338,8.560208 8.9231424,17.910644 8.9351814,29.468085 14.398845,38.807157 19.862509,48.14623 29.931356,53.820109 40.75,53.65625 L 142.625,53.5625 c 10.81896,0.14132 20.87597,-5.553523 26.32016,-14.903958 5.4442,-9.350436 5.43216,-20.907877 -0.0315,-30.246949 C 163.44999,-0.92748 153.38114,-6.601359 142.5625,-6.4375 l 0,0 z"
- id="path6833-7-8-5" />
- <path
- inkscape:connector-curvature="0"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65701,514.67289 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path6835-3-1-5"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </g>
- </g>
- </g>
- <g
- id="g3808"
- transform="translate(21.945976,-187.75591)">
- <rect
- ry="3.7880721"
- y="218.11809"
- x="13.054024"
- height="172.00002"
- width="74.999992"
- id="rect3810"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot9963-2-8"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(130.41902,-47.290241)"><flowRegion
- id="flowRegion9965-2-8"><rect
- id="rect9967-3-0"
- width="60.012081"
- height="52.315746"
- x="-113.13708"
- y="271.51425"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara11184">Browser</flowPara></flowRoot> <g
- id="g28403-2-5-2-40"
- transform="translate(10.694551,135.25927)">
- <rect
- ry="3.7880721"
- y="119.85882"
- x="7.3594728"
- height="95.000008"
- width="60"
- id="rect4680-4-4-7-0"
- style="fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <g
- transform="translate(-9.4510395,-55.573718)"
- id="g28403-3-5-6">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5"
- width="50"
- height="25"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.43047,-878.23713)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7"><rect
- id="rect11365-5-4-6-4"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9">Built-in</flowPara><flowPara
- id="flowPara4300">Widgets</flowPara></flowRoot> </g>
- <g
- transform="translate(-9.4510395,-25.573718)"
- id="g28403-3-5-6-6">
- <rect
- style="fill:#4fb047;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5"
- width="49"
- height="24"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5"><rect
- id="rect11365-5-4-6-4-5"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-9">Add-on</flowPara><flowPara
- id="flowPara4338">Widgets</flowPara></flowRoot> </g>
- <g
- transform="translate(-9.4510395,4.4262817)"
- id="g28403-3-5-6-6-6">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.5, 1.5;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5-9"
- width="49"
- height="24"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1-4"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5-8"><rect
- id="rect11365-5-4-6-4-5-7"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4198-9-9-0">Custom</flowPara><flowPara
- id="flowPara4338-0">Widgets</flowPara></flowRoot> </g>
- </g>
- <g
- transform="matrix(-0.06329721,0,0,0.06329721,88.282414,273.14646)"
- id="g6827-4">
- <g
- id="g6829-2"
- transform="matrix(29.999985,-0.03019888,0.03019888,29.999985,-11011.509,-15375.022)">
- <g
- style="fill:#ffffff;fill-opacity:1"
- transform="matrix(0.71644053,0,0,0.71644053,103.9698,144.62879)"
- id="g6831-2">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.03333332,3.3554312e-5,-3.3554312e-5,0.03333332,366.53421,512.86995)"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
- d="M 142.5625,-6.4375 40.6875,-6.34375 C 29.868538,-6.48507 19.811533,-0.790227 14.367338,8.560208 8.9231424,17.910644 8.9351814,29.468085 14.398845,38.807157 19.862509,48.14623 29.931356,53.820109 40.75,53.65625 L 142.625,53.5625 c 10.81896,0.14132 20.87597,-5.553523 26.32016,-14.903958 5.4442,-9.350436 5.43216,-20.907877 -0.0315,-30.246949 C 163.44999,-0.92748 153.38114,-6.601359 142.5625,-6.4375 l 0,0 z"
- id="path6833-1" />
- <path
- inkscape:connector-curvature="0"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65701,514.67289 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path6835-0"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </g>
- </g>
- <g
- transform="translate(-3.7564885,179.68555)"
- id="g28403-3-5-6-6-6-6">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.50000000000000000;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.50000000000000000, 1.50000000000000000;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-10-5-5-9-0"
- width="60"
- height="25.000002"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1-4-8"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-787.52461,-878.4214)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5-8-8"><rect
- id="rect11365-5-4-6-4-5-7-0"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara4338-0-9">Client-Side</flowPara><flowPara
- id="flowPara5189">UI</flowPara></flowRoot> </g>
- <g
- transform="matrix(-0.06329721,0,0,0.06329721,88.801543,373.00293)"
- id="g6827-4-1">
- <g
- id="g6829-2-0"
- transform="matrix(29.999985,-0.03019888,0.03019888,29.999985,-11003.16,-15375.022)">
- <g
- style="fill:#ffffff;fill-opacity:1"
- transform="matrix(0.71644053,0,0,0.71644053,103.9698,144.62879)"
- id="g6831-2-5">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.03333332,3.3554312e-5,-3.3554312e-5,0.03333332,366.53421,512.86995)"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
- d="M 142.5625,-6.4375 40.6875,-6.34375 C 29.868538,-6.48507 19.811533,-0.790227 14.367338,8.560208 8.9231424,17.910644 8.9351814,29.468085 14.398845,38.807157 19.862509,48.14623 29.931356,53.820109 40.75,53.65625 L 142.625,53.5625 c 10.81896,0.14132 20.87597,-5.553523 26.32016,-14.903958 5.4442,-9.350436 5.43216,-20.907877 -0.0315,-30.246949 C 163.44999,-0.92748 153.38114,-6.601359 142.5625,-6.4375 l 0,0 z"
- id="path6833-1-3" />
- <path
- inkscape:connector-curvature="0"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65701,514.67289 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path6835-0-2"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </g>
- </g>
- <flowRoot
- xml:space="preserve"
- id="flowRoot9963-2-3-6-8-6-1"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(130.79502,-35.256574)"><flowRegion
- id="flowRegion9965-2-7-7-1-9-6"><rect
- id="rect9967-3-5-6-4-7-9"
- width="70.012077"
- height="53.315746"
- x="-113.13708"
- y="271.51425"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara11082-4">Client-Side Engine</flowPara></flowRoot> </g>
- <g
- transform="translate(98.189487,-8.0703583)"
- id="g28403-3-5-6-6-6-6-1">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:1.5,1.5;stroke-dashoffset:0"
- id="rect4680-7-10-5-5-9-0-0"
- width="150"
- height="25"
- x="21.810513"
- y="180.43254"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-8-1-1-4-8-0"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-779.64794,-878.48467)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-7-7-5-8-8-1"><rect
- id="rect11365-5-4-6-4-5-7-0-7"
- width="138.69197"
- height="47.876488"
- x="813.87988"
- y="1064.3831"
- style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara5189-3">Service</flowPara></flowRoot> <g
- id="g6829-1"
- transform="matrix(1.8989154,-0.0019115,0.0019115,1.8989154,-675.40034,-779.73512)">
- <g
- style="fill:#ffffff;fill-opacity:1"
- transform="matrix(0.71644053,0,0,0.71644053,103.9698,144.62879)"
- id="g6831-0">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.03333332,3.3554312e-5,-3.3554312e-5,0.03333332,366.53421,512.86995)"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
- d="M 142.5625,-6.4375 40.6875,-6.34375 C 29.868538,-6.48507 19.811533,-0.790227 14.367338,8.560208 8.9231424,17.910644 8.9351814,29.468085 14.398845,38.807157 19.862509,48.14623 29.931356,53.820109 40.75,53.65625 L 142.625,53.5625 c 10.81896,0.14132 20.87597,-5.553523 26.32016,-14.903958 5.4442,-9.350436 5.43216,-20.907877 -0.0315,-30.246949 C 163.44999,-0.92748 153.38114,-6.601359 142.5625,-6.4375 l 0,0 z"
- id="path6833-6" />
- <path
- inkscape:connector-curvature="0"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65701,514.67289 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path6835-8"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </g>
- <g
- id="g6829-2-5-6-8"
- transform="matrix(-1.8989154,-0.0019115,-0.0019115,1.8989154,869.03658,-780.00348)">
- <g
- style="fill:#ffffff;fill-opacity:1"
- transform="matrix(0.71644053,0,0,0.71644053,103.9698,144.62879)"
- id="g6831-2-7-3-2">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.03333332,3.3554312e-5,-3.3554312e-5,0.03333332,366.53421,512.86995)"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
- d="M 142.5625,-6.4375 40.6875,-6.34375 C 29.868538,-6.48507 19.811533,-0.790227 14.367338,8.560208 8.9231424,17.910644 8.9351814,29.468085 14.398845,38.807157 19.862509,48.14623 29.931356,53.820109 40.75,53.65625 L 142.625,53.5625 c 10.81896,0.14132 20.87597,-5.553523 26.32016,-14.903958 5.4442,-9.350436 5.43216,-20.907877 -0.0315,-30.246949 C 163.44999,-0.92748 153.38114,-6.601359 142.5625,-6.4375 l 0,0 z"
- id="path6833-1-5-9-7" />
- <path
- inkscape:connector-curvature="0"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65701,514.67289 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path6835-0-9-2-8"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </g>
- </g>
- <flowRoot
- xml:space="preserve"
- id="flowRoot9963-2-8-1"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(233.035,-234.87615)"><flowRegion
- id="flowRegion9965-2-8-7"><rect
- id="rect9967-3-0-9"
- width="180.60732"
- height="30.82765"
- x="-113.13708"
- y="271.51425"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara11184-1">Web Server / Portal</flowPara></flowRoot> </g>
-</svg>
diff --git a/documentation/introduction/original-drawings/architecture.svg b/documentation/introduction/original-drawings/architecture.svg deleted file mode 100644 index 674cd0b959..0000000000 --- a/documentation/introduction/original-drawings/architecture.svg +++ /dev/null @@ -1,449 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<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"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="architecture.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/original-drawings/intro/architecture.png"
- inkscape:export-xdpi="300"
- inkscape:export-ydpi="300"
- version="1.1">
- <defs
- id="defs1903">
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective110" />
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path3520"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.8)" />
- </marker>
- <linearGradient
- id="linearGradient3503">
- <stop
- style="stop-color:#37ff40;stop-opacity:0.53608245;"
- offset="0"
- id="stop3505" />
- <stop
- style="stop-color:#ffe0e0;stop-opacity:1;"
- offset="1"
- id="stop3507" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2Lstart"
- style="overflow:visible">
- <path
- id="path6743"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- transform="matrix(1.1,0,0,1.1,1.1,0)" />
- </marker>
- <linearGradient
- id="linearGradient19816">
- <stop
- id="stop19818"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop19820"
- offset="1"
- style="stop-color:#e7e790;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient11516">
- <stop
- id="stop11518"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop11520"
- offset="1"
- style="stop-color:#a090e7;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient11508">
- <stop
- id="stop11510"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop11512"
- offset="1"
- style="stop-color:#e27979;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3286">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3288" />
- <stop
- style="stop-color:#79e291;stop-opacity:1;"
- offset="1"
- id="stop3290" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2Lend"
- style="overflow:visible">
- <path
- id="path16811"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
- </marker>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="2.8"
- inkscape:cx="205.74747"
- inkscape:cy="939.96477"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1672"
- inkscape:window-height="1019"
- inkscape:window-x="0"
- inkscape:window-y="0"
- inkscape:showpageshadow="false"
- borderlayer="false"
- showgrid="true"
- inkscape:window-maximized="0">
- <inkscape:grid
- type="xygrid"
- id="grid6362"
- visible="true"
- enabled="true"
- empspacing="5"
- snapvisiblegridlinesonly="true"
- spacingx="1px" />
- </sodipodi:namedview>
- <metadata
- id="metadata1906">
- <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
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <g
- id="g3808"
- transform="translate(21.945976,-187.75591)">
- <rect
- ry="3.7880721"
- y="235.11809"
- x="13.054024"
- height="120.00001"
- width="70"
- id="rect3810"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot9963-2-3-6-8-6-8"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(131.17902,3.2330926)"><flowRegion
- id="flowRegion9965-2-7-7-1-9-9"><rect
- id="rect9967-3-5-6-4-7-1"
- width="60.012081"
- height="40.370747"
- x="-113.13708"
- y="271.51425"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara11130">Client-Side</flowPara><flowPara
- id="flowPara11126">Engine</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot9963-2-8"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(131.17902,-28.711907)"><flowRegion
- id="flowRegion9965-2-8"><rect
- id="rect9967-3-0"
- width="60.012081"
- height="52.315746"
- x="-113.13708"
- y="271.51425"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara9973-8-5">Web</flowPara><flowPara
- id="flowPara11184">Browser</flowPara></flowRoot> </g>
- <g
- id="g6365"
- transform="translate(96.945976,-187.75591)">
- <rect
- ry="3.7880721"
- y="235.11809"
- x="13.054024"
- height="120"
- width="70"
- id="rect6367"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <g
- transform="matrix(0.07579619,0,0,0.07579619,12.243598,335.45189)"
- id="g5925">
- <g
- id="g5931"
- transform="matrix(29.999985,-0.03019888,0.03019888,29.999985,-11011.509,-15375.022)">
- <g
- style="fill:#ffffff;fill-opacity:1"
- transform="translate(-2.6843449e-4,0.2666665)"
- id="g5977">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.03333332,3.3554312e-5,-3.3554312e-5,0.03333332,366.53421,512.86995)"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
- d="M 142.5625,-6.4375 40.6875,-6.34375 C 29.868538,-6.48507 19.811533,-0.790227 14.367338,8.560208 8.9231424,17.910644 8.9351814,29.468085 14.398845,38.807157 19.862509,48.14623 29.931356,53.820109 40.75,53.65625 L 142.625,53.5625 c 10.81896,0.14132 20.87597,-5.553523 26.32016,-14.903958 5.4442,-9.350436 5.43216,-20.907877 -0.0315,-30.246949 C 163.44999,-0.92748 153.38114,-6.601359 142.5625,-6.4375 l 0,0 z"
- id="path3599" />
- <path
- inkscape:connector-curvature="0"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65701,514.67289 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path5935"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </g>
- </g>
- <flowRoot
- xml:space="preserve"
- id="flowRoot9963-2"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(131.17902,-28.711912)"><flowRegion
- id="flowRegion9965-2"><rect
- id="rect9967-3"
- width="50.012081"
- height="52.315746"
- x="-113.13708"
- y="271.51425"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara9969-5">Java</flowPara><flowPara
- id="flowPara9971-5">Web</flowPara><flowPara
- id="flowPara9973-8">Server</flowPara></flowRoot> </g>
- <g
- id="g6789"
- transform="translate(251.94598,-187.75591)">
- <rect
- ry="3.7880721"
- y="235.11809"
- x="13.054024"
- height="120.00001"
- width="70"
- id="rect6791"
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <g
- transform="matrix(0.07579619,0,0,0.07579619,12.253952,335.42292)"
- id="g6803">
- <g
- id="g6805"
- transform="matrix(29.999985,-0.03019888,0.03019888,29.999985,-11011.509,-15375.022)">
- <g
- style="fill:#ffffff;fill-opacity:1"
- transform="translate(-2.6843449e-4,0.2666665)"
- id="g6807">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.03333332,3.3554312e-5,-3.3554312e-5,0.03333332,366.53421,512.86995)"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
- d="M 142.5625,-6.4375 40.6875,-6.34375 C 29.868538,-6.48507 19.811533,-0.790227 14.367338,8.560208 8.9231424,17.910644 8.9351814,29.468085 14.398845,38.807157 19.862509,48.14623 29.931356,53.820109 40.75,53.65625 L 142.625,53.5625 c 10.81896,0.14132 20.87597,-5.553523 26.32016,-14.903958 5.4442,-9.350436 5.43216,-20.907877 -0.0315,-30.246949 C 163.44999,-0.92748 153.38114,-6.601359 142.5625,-6.4375 l 0,0 z"
- id="path6809" />
- <path
- inkscape:connector-curvature="0"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65701,514.67289 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path6811"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </g>
- </g>
- <flowRoot
- xml:space="preserve"
- id="flowRoot9963-2-3-6"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(131.17902,-28.711907)"><flowRegion
- id="flowRegion9965-2-7-7"><rect
- id="rect9967-3-5-6"
- width="68.012077"
- height="51.315746"
- x="-113.13708"
- y="271.51425"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara10160-1">Your</flowPara><flowPara
- id="flowPara10992">UI</flowPara></flowRoot> </g>
- <g
- id="g6813"
- transform="translate(171.94598,-187.75591)">
- <rect
- ry="3.7880721"
- y="235.11809"
- x="13.054024"
- height="120.00002"
- width="75"
- id="rect6815"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <g
- transform="matrix(0.07579619,0,0,0.07579619,12.243595,335.4519)"
- id="g6827">
- <g
- id="g6829"
- transform="matrix(29.999985,-0.03019888,0.03019888,29.999985,-11011.509,-15375.022)">
- <g
- style="fill:#ffffff;fill-opacity:1"
- transform="translate(-2.6843449e-4,0.2666665)"
- id="g6831">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.03333332,3.3554312e-5,-3.3554312e-5,0.03333332,366.53421,512.86995)"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
- d="M 142.5625,-6.4375 40.6875,-6.34375 C 29.868538,-6.48507 19.811533,-0.790227 14.367338,8.560208 8.9231424,17.910644 8.9351814,29.468085 14.398845,38.807157 19.862509,48.14623 29.931356,53.820109 40.75,53.65625 L 142.625,53.5625 c 10.81896,0.14132 20.87597,-5.553523 26.32016,-14.903958 5.4442,-9.350436 5.43216,-20.907877 -0.0315,-30.246949 C 163.44999,-0.92748 153.38114,-6.601359 142.5625,-6.4375 l 0,0 z"
- id="path6833" />
- <path
- inkscape:connector-curvature="0"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65701,514.67289 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path6835"
- sodipodi:nodetypes="cccscccsssssssscccsccc" />
- </g>
- </g>
- </g>
- <flowRoot
- xml:space="preserve"
- id="flowRoot9963-2-3"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(131.17902,-28.711907)"><flowRegion
- id="flowRegion9965-2-7"><rect
- id="rect9967-3-5"
- width="68.012077"
- height="51.315746"
- x="-113.13708"
- y="271.51425"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara9973-8-4">Vaadin</flowPara><flowPara
- id="flowPara11084">Server-</flowPara><flowPara
- id="flowPara11086">Side</flowPara><flowPara
- id="flowPara10160">Framework</flowPara></flowRoot> </g>
- <g
- id="g6789-3"
- transform="translate(326.94598,-187.75591)">
- <rect
- ry="3.7880721"
- y="235.11809"
- x="13.054024"
- height="120.00002"
- width="75"
- id="rect6791-7"
- style="fill:#00b400;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <g
- transform="matrix(0.07579619,0,0,0.07579619,12.243595,335.4519)"
- id="g6803-4">
- <g
- id="g6805-7"
- transform="matrix(29.999985,-0.03019888,0.03019888,29.999985,-11011.509,-15375.022)">
- <g
- style="fill:#ffffff;fill-opacity:1"
- transform="translate(-2.6843449e-4,0.2666665)"
- id="g6807-4">
- <path
- transform="matrix(0.03333332,3.3554312e-5,-3.3554312e-5,0.03333332,366.53421,512.86995)"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
- d="M 142.5625,-6.4375 40.6875,-6.34375 C 29.868538,-6.48507 19.811533,-0.790227 14.367338,8.560208 8.9231424,17.910644 8.9351814,29.468085 14.398845,38.807157 19.862509,48.14623 29.931356,53.820109 40.75,53.65625 L 142.625,53.5625 c 10.81896,0.14132 20.87597,-5.553523 26.32016,-14.903958 5.4442,-9.350436 5.43216,-20.907877 -0.0315,-30.246949 C 163.44999,-0.92748 153.38114,-6.601359 142.5625,-6.4375 l 0,0 z"
- id="path6809-4"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- d="m 366.65701,514.67289 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- id="path6811-3"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- inkscape:connector-curvature="0" />
- </g>
- </g>
- </g>
- <flowRoot
- xml:space="preserve"
- id="flowRoot9963-2-3-6-8"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(131.17902,-28.711907)"><flowRegion
- id="flowRegion9965-2-7-7-1"><rect
- id="rect9967-3-5-6-4"
- width="60.012077"
- height="32.315746"
- x="-113.13708"
- y="271.51425"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara10992-4">Back-End</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot9963-2-3-6-8-6"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(131.17902,-9.711907)"><flowRegion
- id="flowRegion9965-2-7-7-1-9"><rect
- id="rect9967-3-5-6-4-7"
- width="70.012077"
- height="53.315746"
- x="-113.13708"
- y="271.51425"
- style="font-size:9px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara10992-4-9">Business Logic</flowPara><flowPara
- id="flowPara11080">Persistence</flowPara><flowPara
- id="flowPara11082">Database</flowPara></flowRoot> </g>
- </g>
-</svg>
diff --git a/documentation/introduction/original-drawings/intro-layout-capture-1.png b/documentation/introduction/original-drawings/intro-layout-capture-1.png Binary files differdeleted file mode 100644 index 0823787f00..0000000000 --- a/documentation/introduction/original-drawings/intro-layout-capture-1.png +++ /dev/null diff --git a/documentation/introduction/original-drawings/intro-themes-faded.svg b/documentation/introduction/original-drawings/intro-themes-faded.svg deleted file mode 100644 index fdeb1e9ef1..0000000000 --- a/documentation/introduction/original-drawings/intro-themes-faded.svg +++ /dev/null @@ -1,143 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.48.1 r9760"
- sodipodi:docname="intro-themes-faded.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- version="1.1">
- <defs
- id="defs1903">
- <linearGradient
- id="linearGradient3942">
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="0"
- id="stop3944" />
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="1"
- id="stop3946" />
- </linearGradient>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3285" />
- <inkscape:perspective
- id="perspective3425"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3942"
- id="radialGradient3948"
- cx="266.94611"
- cy="212.33144"
- fx="266.94611"
- fy="212.33144"
- r="204.55081"
- gradientTransform="matrix(1.1694303,7.9008514e-3,-7.2468582e-3,1.1882556,-43.048357,-40.231826)"
- gradientUnits="userSpaceOnUse" />
- <filter
- inkscape:collect="always"
- id="filter4256"
- x="-0.0077072907"
- width="1.0154146"
- y="-0.10312293"
- height="1.2062459">
- <feGaussianBlur
- inkscape:collect="always"
- stdDeviation="0.9979963"
- id="feGaussianBlur4258" />
- </filter>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3942"
- id="radialGradient5489"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.1694303,0.00790085,-0.00724686,1.1882556,-43.553433,-37.706444)"
- cx="266.94611"
- cy="212.33144"
- fx="266.94611"
- fy="212.33144"
- r="204.55081" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.979899"
- inkscape:cx="312.28164"
- inkscape:cy="843.03236"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1310"
- inkscape:window-height="838"
- inkscape:window-x="602"
- inkscape:window-y="185"
- showgrid="false"
- inkscape:window-maximized="0" />
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <rect
- style="opacity:0.74493929;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4190"
- width="375.7767"
- height="321.22855"
- x="132.32999"
- y="106.85941"
- ry="15.937783" />
- <image
- sodipodi:absref="/home/magi/itmill/doc/manual/original-drawings/intro/intro-layout-capture-1.png"
- xlink:href="intro-layout-capture-1.png"
- width="365"
- height="348"
- id="image3427"
- x="137.5293"
- y="114.28848" />
- <rect
- style="fill:url(#radialGradient5489);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3431"
- width="370.97107"
- height="357.59399"
- x="134.85538"
- y="110.39493"
- ry="15.337974" />
- </g>
-</svg>
diff --git a/documentation/introduction/original-drawings/structure.graffle b/documentation/introduction/original-drawings/structure.graffle deleted file mode 100644 index 6d3f8e124b..0000000000 --- a/documentation/introduction/original-drawings/structure.graffle +++ /dev/null @@ -1,883 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
- <key>ActiveLayerIndex</key>
- <integer>0</integer>
- <key>AutoAdjust</key>
- <true/>
- <key>CanvasColor</key>
- <dict>
- <key>w</key>
- <string>1</string>
- </dict>
- <key>CanvasOrigin</key>
- <string>{0, 0}</string>
- <key>CanvasScale</key>
- <real>1</real>
- <key>ColumnAlign</key>
- <integer>1</integer>
- <key>ColumnSpacing</key>
- <real>36</real>
- <key>CreationDate</key>
- <string>2007-02-10 20:49:22 +0200</string>
- <key>Creator</key>
- <string>Sami Ekblad</string>
- <key>DisplayScale</key>
- <string>1 cm = 1 cm</string>
- <key>GraphDocumentVersion</key>
- <integer>5</integer>
- <key>GraphicsList</key>
- <array>
- <dict>
- <key>Bounds</key>
- <string>{{131.5, 135.5}, {181.5, 30}}</string>
- <key>Class</key>
- <string>ShapedGraphic</string>
- <key>ID</key>
- <integer>135</integer>
- <key>Shape</key>
- <string>Cloud</string>
- <key>Style</key>
- <dict>
- <key>fill</key>
- <dict>
- <key>FillType</key>
- <integer>2</integer>
- <key>GradientAngle</key>
- <real>70</real>
- <key>GradientColor</key>
- <dict>
- <key>w</key>
- <string>0.666667</string>
- </dict>
- </dict>
- <key>stroke</key>
- <dict>
- <key>Color</key>
- <dict>
- <key>b</key>
- <string>0.631373</string>
- <key>g</key>
- <string>0.513726</string>
- <key>r</key>
- <string>0.411765</string>
- </dict>
- </dict>
- </dict>
- <key>Text</key>
- <dict>
- <key>Text</key>
- <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 HTTP(S)}</string>
- </dict>
- </dict>
- <dict>
- <key>Class</key>
- <string>LineGraphic</string>
- <key>Head</key>
- <dict>
- <key>ID</key>
- <integer>4</integer>
- </dict>
- <key>ID</key>
- <integer>150</integer>
- <key>Points</key>
- <array>
- <string>{167.953, 101.704}</string>
- <string>{213.226, 199.296}</string>
- </array>
- <key>Style</key>
- <dict>
- <key>stroke</key>
- <dict>
- <key>HeadArrow</key>
- <string>FilledArrow</string>
- <key>TailArrow</key>
- <string>FilledArrow</string>
- </dict>
- </dict>
- <key>Tail</key>
- <dict>
- <key>ID</key>
- <integer>146</integer>
- </dict>
- </dict>
- <dict>
- <key>Bounds</key>
- <string>{{85, 42}, {138, 59.25}}</string>
- <key>Class</key>
- <string>ShapedGraphic</string>
- <key>FontInfo</key>
- <dict>
- <key>Color</key>
- <dict>
- <key>w</key>
- <string>0</string>
- </dict>
- <key>Font</key>
- <string>Helvetica</string>
- <key>NSKern</key>
- <real>0.0</real>
- <key>Size</key>
- <real>12</real>
- </dict>
- <key>ID</key>
- <integer>146</integer>
- <key>Shape</key>
- <string>Rectangle</string>
- <key>Style</key>
- <dict>
- <key>fill</key>
- <dict>
- <key>Color</key>
- <dict>
- <key>b</key>
- <string>1</string>
- <key>g</key>
- <string>0.929412</string>
- <key>r</key>
- <string>0.85098</string>
- </dict>
- <key>FillType</key>
- <integer>2</integer>
- <key>GradientAngle</key>
- <real>90</real>
- <key>GradientColor</key>
- <dict>
- <key>b</key>
- <string>0.772549</string>
- <key>g</key>
- <string>0.662745</string>
- <key>r</key>
- <string>0.568627</string>
- </dict>
- </dict>
- <key>stroke</key>
- <dict>
- <key>CornerRadius</key>
- <real>5</real>
- </dict>
- </dict>
- <key>Text</key>
- <dict>
- <key>Text</key>
- <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 \expnd0\expndtw0\kerning0
-Web Browser\
-\
-(AJAX rendering)}</string>
- <key>VerticalPad</key>
- <integer>10</integer>
- </dict>
- <key>TextPlacement</key>
- <integer>0</integer>
- </dict>
- <dict>
- <key>Class</key>
- <string>LineGraphic</string>
- <key>Head</key>
- <dict>
- <key>ID</key>
- <integer>4</integer>
- </dict>
- <key>ID</key>
- <integer>145</integer>
- <key>Points</key>
- <array>
- <string>{278.935, 101.7}</string>
- <string>{231.669, 199.3}</string>
- </array>
- <key>Style</key>
- <dict>
- <key>stroke</key>
- <dict>
- <key>HeadArrow</key>
- <string>FilledArrow</string>
- <key>TailArrow</key>
- <string>FilledArrow</string>
- </dict>
- </dict>
- <key>Tail</key>
- <dict>
- <key>ID</key>
- <integer>3</integer>
- </dict>
- </dict>
- <dict>
- <key>Class</key>
- <string>LineGraphic</string>
- <key>Head</key>
- <dict>
- <key>ID</key>
- <integer>10</integer>
- </dict>
- <key>ID</key>
- <integer>144</integer>
- <key>Points</key>
- <array>
- <string>{221.373, 238.249}</string>
- <string>{219.877, 271.501}</string>
- </array>
- <key>Style</key>
- <dict>
- <key>stroke</key>
- <dict>
- <key>HeadArrow</key>
- <string>FilledArrow</string>
- <key>TailArrow</key>
- <string>FilledArrow</string>
- </dict>
- </dict>
- <key>Tail</key>
- <dict>
- <key>ID</key>
- <integer>4</integer>
- </dict>
- </dict>
- <dict>
- <key>Class</key>
- <string>LineGraphic</string>
- <key>Head</key>
- <dict>
- <key>ID</key>
- <integer>142</integer>
- </dict>
- <key>ID</key>
- <integer>143</integer>
- <key>Points</key>
- <array>
- <string>{235.183, 310.384}</string>
- <string>{263.16, 343.893}</string>
- </array>
- <key>Style</key>
- <dict>
- <key>stroke</key>
- <dict>
- <key>HeadArrow</key>
- <string>FilledArrow</string>
- <key>Pattern</key>
- <integer>1</integer>
- <key>TailArrow</key>
- <string>0</string>
- </dict>
- </dict>
- <key>Tail</key>
- <dict>
- <key>ID</key>
- <integer>10</integer>
- </dict>
- </dict>
- <dict>
- <key>Bounds</key>
- <string>{{259, 344.25}, {54, 54}}</string>
- <key>Class</key>
- <string>ShapedGraphic</string>
- <key>ID</key>
- <integer>142</integer>
- <key>Shape</key>
- <string>Rectangle</string>
- <key>Style</key>
- <dict>
- <key>fill</key>
- <dict>
- <key>Color</key>
- <dict>
- <key>b</key>
- <string>1</string>
- <key>g</key>
- <string>0.929412</string>
- <key>r</key>
- <string>0.85098</string>
- </dict>
- <key>FillType</key>
- <integer>2</integer>
- <key>GradientAngle</key>
- <real>90</real>
- <key>GradientColor</key>
- <dict>
- <key>b</key>
- <string>0.772549</string>
- <key>g</key>
- <string>0.662745</string>
- <key>r</key>
- <string>0.568627</string>
- </dict>
- </dict>
- <key>stroke</key>
- <dict>
- <key>CornerRadius</key>
- <real>5</real>
- </dict>
- </dict>
- <key>Text</key>
- <dict>
- <key>Text</key>
- <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 DB}</string>
- </dict>
- </dict>
- <dict>
- <key>Class</key>
- <string>LineGraphic</string>
- <key>Head</key>
- <dict>
- <key>ID</key>
- <integer>140</integer>
- </dict>
- <key>ID</key>
- <integer>141</integer>
- <key>Points</key>
- <array>
- <string>{219.243, 310.5}</string>
- <string>{219.657, 343.75}</string>
- </array>
- <key>Style</key>
- <dict>
- <key>stroke</key>
- <dict>
- <key>HeadArrow</key>
- <string>FilledArrow</string>
- <key>Pattern</key>
- <integer>1</integer>
- <key>TailArrow</key>
- <string>0</string>
- </dict>
- </dict>
- <key>Tail</key>
- <dict>
- <key>ID</key>
- <integer>10</integer>
- </dict>
- </dict>
- <dict>
- <key>Class</key>
- <string>LineGraphic</string>
- <key>Head</key>
- <dict>
- <key>ID</key>
- <integer>139</integer>
- </dict>
- <key>ID</key>
- <integer>24</integer>
- <key>Points</key>
- <array>
- <string>{203.296, 310.389}</string>
- <string>{176.184, 343.861}</string>
- </array>
- <key>Style</key>
- <dict>
- <key>stroke</key>
- <dict>
- <key>HeadArrow</key>
- <string>FilledArrow</string>
- <key>Pattern</key>
- <integer>1</integer>
- <key>TailArrow</key>
- <string>0</string>
- </dict>
- </dict>
- <key>Tail</key>
- <dict>
- <key>ID</key>
- <integer>10</integer>
- </dict>
- </dict>
- <dict>
- <key>Bounds</key>
- <string>{{193, 344.25}, {54, 54}}</string>
- <key>Class</key>
- <string>ShapedGraphic</string>
- <key>ID</key>
- <integer>140</integer>
- <key>Shape</key>
- <string>Rectangle</string>
- <key>Style</key>
- <dict>
- <key>fill</key>
- <dict>
- <key>Color</key>
- <dict>
- <key>b</key>
- <string>1</string>
- <key>g</key>
- <string>0.929412</string>
- <key>r</key>
- <string>0.85098</string>
- </dict>
- <key>FillType</key>
- <integer>2</integer>
- <key>GradientAngle</key>
- <real>90</real>
- <key>GradientColor</key>
- <dict>
- <key>b</key>
- <string>0.772549</string>
- <key>g</key>
- <string>0.662745</string>
- <key>r</key>
- <string>0.568627</string>
- </dict>
- </dict>
- <key>stroke</key>
- <dict>
- <key>CornerRadius</key>
- <real>5</real>
- </dict>
- </dict>
- <key>Text</key>
- <dict>
- <key>Text</key>
- <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 EJB}</string>
- </dict>
- </dict>
- <dict>
- <key>Bounds</key>
- <string>{{127, 344.25}, {54, 54}}</string>
- <key>Class</key>
- <string>ShapedGraphic</string>
- <key>ID</key>
- <integer>139</integer>
- <key>Shape</key>
- <string>Rectangle</string>
- <key>Style</key>
- <dict>
- <key>fill</key>
- <dict>
- <key>Color</key>
- <dict>
- <key>b</key>
- <string>1</string>
- <key>g</key>
- <string>0.929412</string>
- <key>r</key>
- <string>0.85098</string>
- </dict>
- <key>FillType</key>
- <integer>2</integer>
- <key>GradientAngle</key>
- <real>90</real>
- <key>GradientColor</key>
- <dict>
- <key>b</key>
- <string>0.772549</string>
- <key>g</key>
- <string>0.662745</string>
- <key>r</key>
- <string>0.568627</string>
- </dict>
- </dict>
- <key>stroke</key>
- <dict>
- <key>CornerRadius</key>
- <real>5</real>
- </dict>
- </dict>
- <key>Text</key>
- <dict>
- <key>Text</key>
- <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 Web\
-Service}</string>
- </dict>
- </dict>
- <dict>
- <key>Bounds</key>
- <string>{{125, 272}, {188, 38}}</string>
- <key>Class</key>
- <string>ShapedGraphic</string>
- <key>FontInfo</key>
- <dict>
- <key>Color</key>
- <dict>
- <key>b</key>
- <string>1</string>
- <key>g</key>
- <string>1</string>
- <key>r</key>
- <string>1</string>
- </dict>
- </dict>
- <key>ID</key>
- <integer>10</integer>
- <key>Shape</key>
- <string>Rectangle</string>
- <key>Style</key>
- <dict>
- <key>fill</key>
- <dict>
- <key>Color</key>
- <dict>
- <key>b</key>
- <string>0.041377</string>
- <key>g</key>
- <string>0.853261</string>
- <key>r</key>
- <string>6.48952e-05</string>
- </dict>
- <key>FillType</key>
- <integer>2</integer>
- <key>GradientAngle</key>
- <real>80</real>
- <key>GradientColor</key>
- <dict>
- <key>b</key>
- <string>0.0224016</string>
- <key>g</key>
- <string>0.461957</string>
- <key>r</key>
- <string>3.51343e-05</string>
- </dict>
- </dict>
- <key>stroke</key>
- <dict>
- <key>CornerRadius</key>
- <real>5</real>
- </dict>
- </dict>
- <key>Text</key>
- <dict>
- <key>Text</key>
- <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf1 Java Application}</string>
- </dict>
- </dict>
- <dict>
- <key>Bounds</key>
- <string>{{131.5, 199.75}, {181.5, 38}}</string>
- <key>Class</key>
- <string>ShapedGraphic</string>
- <key>FontInfo</key>
- <dict>
- <key>Color</key>
- <dict>
- <key>b</key>
- <string>1</string>
- <key>g</key>
- <string>1</string>
- <key>r</key>
- <string>1</string>
- </dict>
- </dict>
- <key>ID</key>
- <integer>4</integer>
- <key>Shape</key>
- <string>Rectangle</string>
- <key>Style</key>
- <dict>
- <key>fill</key>
- <dict>
- <key>Color</key>
- <dict>
- <key>b</key>
- <string>1</string>
- <key>g</key>
- <string>0.630186</string>
- <key>r</key>
- <string>0.248129</string>
- </dict>
- <key>FillType</key>
- <integer>2</integer>
- <key>GradientAngle</key>
- <real>80</real>
- <key>GradientColor</key>
- <dict>
- <key>b</key>
- <string>0.673913</string>
- <key>g</key>
- <string>5.08933e-05</string>
- <key>r</key>
- <string>0.109836</string>
- </dict>
- <key>MiddleFraction</key>
- <real>0.579365074634552</real>
- </dict>
- <key>stroke</key>
- <dict>
- <key>CornerRadius</key>
- <real>5</real>
- </dict>
- </dict>
- <key>Text</key>
- <dict>
- <key>Text</key>
- <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf1 IT Mill Toolkit Components}</string>
- </dict>
- </dict>
- <dict>
- <key>Bounds</key>
- <string>{{231, 42}, {125, 59.25}}</string>
- <key>Class</key>
- <string>ShapedGraphic</string>
- <key>FontInfo</key>
- <dict>
- <key>Color</key>
- <dict>
- <key>w</key>
- <string>0</string>
- </dict>
- <key>Font</key>
- <string>Helvetica</string>
- <key>NSKern</key>
- <real>0.0</real>
- <key>Size</key>
- <real>12</real>
- </dict>
- <key>ID</key>
- <integer>3</integer>
- <key>Shape</key>
- <string>Rectangle</string>
- <key>Style</key>
- <dict>
- <key>fill</key>
- <dict>
- <key>FillType</key>
- <integer>2</integer>
- <key>GradientAngle</key>
- <real>70</real>
- <key>GradientColor</key>
- <dict>
- <key>w</key>
- <string>0.666667</string>
- </dict>
- </dict>
- <key>stroke</key>
- <dict>
- <key>CornerRadius</key>
- <real>5</real>
- <key>Pattern</key>
- <integer>1</integer>
- </dict>
- </dict>
- <key>Text</key>
- <dict>
- <key>Text</key>
- <string>{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
-{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
-{\colortbl;\red255\green255\blue255;}
-\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural
-
-\f0\fs24 \cf0 \expnd0\expndtw0\kerning0
-Web Browser\
-\
-(HTML rendering)}</string>
- <key>VerticalPad</key>
- <integer>10</integer>
- </dict>
- <key>TextPlacement</key>
- <integer>0</integer>
- </dict>
- </array>
- <key>GridInfo</key>
- <dict/>
- <key>GuidesLocked</key>
- <string>NO</string>
- <key>GuidesVisible</key>
- <string>YES</string>
- <key>HPages</key>
- <integer>1</integer>
- <key>ImageCounter</key>
- <integer>6</integer>
- <key>IsPalette</key>
- <string>NO</string>
- <key>KeepToScale</key>
- <false/>
- <key>Layers</key>
- <array>
- <dict>
- <key>Lock</key>
- <string>NO</string>
- <key>Name</key>
- <string>Layer 1</string>
- <key>Print</key>
- <string>YES</string>
- <key>View</key>
- <string>YES</string>
- </dict>
- </array>
- <key>LayoutInfo</key>
- <dict/>
- <key>LinksVisible</key>
- <string>NO</string>
- <key>MagnetsVisible</key>
- <string>NO</string>
- <key>MasterSheet</key>
- <string>Master 1</string>
- <key>MasterSheets</key>
- <array>
- <dict>
- <key>ActiveLayerIndex</key>
- <integer>0</integer>
- <key>AutoAdjust</key>
- <true/>
- <key>CanvasColor</key>
- <dict>
- <key>w</key>
- <string>1</string>
- </dict>
- <key>CanvasOrigin</key>
- <string>{0, 0}</string>
- <key>CanvasScale</key>
- <real>1</real>
- <key>ColumnAlign</key>
- <integer>1</integer>
- <key>ColumnSpacing</key>
- <real>36</real>
- <key>DisplayScale</key>
- <string>1 cm = 1 cm</string>
- <key>GraphicsList</key>
- <array/>
- <key>GridInfo</key>
- <dict/>
- <key>HPages</key>
- <integer>1</integer>
- <key>IsPalette</key>
- <string>NO</string>
- <key>KeepToScale</key>
- <false/>
- <key>Layers</key>
- <array>
- <dict>
- <key>Lock</key>
- <string>NO</string>
- <key>Name</key>
- <string>Layer 1</string>
- <key>Print</key>
- <string>YES</string>
- <key>View</key>
- <string>YES</string>
- </dict>
- </array>
- <key>LayoutInfo</key>
- <dict/>
- <key>Orientation</key>
- <integer>2</integer>
- <key>OutlineStyle</key>
- <string>Basic</string>
- <key>RowAlign</key>
- <integer>1</integer>
- <key>RowSpacing</key>
- <real>36</real>
- <key>SheetTitle</key>
- <string>Master 1</string>
- <key>UniqueID</key>
- <integer>1</integer>
- <key>VPages</key>
- <integer>1</integer>
- </dict>
- </array>
- <key>ModificationDate</key>
- <string>2007-02-11 12:53:28 +0200</string>
- <key>Modifier</key>
- <string>Joonas Lehtinen</string>
- <key>NotesVisible</key>
- <string>NO</string>
- <key>Orientation</key>
- <integer>2</integer>
- <key>OriginVisible</key>
- <string>NO</string>
- <key>OutlineStyle</key>
- <string>Basic</string>
- <key>PageBreaks</key>
- <string>YES</string>
- <key>PrintInfo</key>
- <dict>
- <key>NSBottomMargin</key>
- <array>
- <string>float</string>
- <string>0</string>
- </array>
- <key>NSLeftMargin</key>
- <array>
- <string>float</string>
- <string>0</string>
- </array>
- <key>NSPaperSize</key>
- <array>
- <string>size</string>
- <string>{595, 842}</string>
- </array>
- <key>NSRightMargin</key>
- <array>
- <string>float</string>
- <string>0</string>
- </array>
- <key>NSTopMargin</key>
- <array>
- <string>float</string>
- <string>0</string>
- </array>
- </dict>
- <key>ReadOnly</key>
- <string>NO</string>
- <key>RowAlign</key>
- <integer>1</integer>
- <key>RowSpacing</key>
- <real>36</real>
- <key>SheetTitle</key>
- <string>Canvas 1</string>
- <key>SmartAlignmentGuidesActive</key>
- <string>YES</string>
- <key>SmartDistanceGuidesActive</key>
- <string>YES</string>
- <key>UniqueID</key>
- <integer>1</integer>
- <key>UseEntirePage</key>
- <true/>
- <key>VPages</key>
- <integer>1</integer>
- <key>WindowInfo</key>
- <dict>
- <key>CurrentSheet</key>
- <string>0</string>
- <key>DrawerOpen</key>
- <false/>
- <key>DrawerTab</key>
- <string>Outline</string>
- <key>DrawerWidth</key>
- <real>209</real>
- <key>FitInWindow</key>
- <false/>
- <key>Frame</key>
- <string>{{78, 88}, {834, 898}}</string>
- <key>ShowRuler</key>
- <false/>
- <key>ShowStatusBar</key>
- <true/>
- <key>VisibleRegion</key>
- <string>{{-124, 0}, {819, 784}}</string>
- <key>Zoom</key>
- <string>1</string>
- </dict>
-</dict>
-</plist>
diff --git a/documentation/jpacontainer/chapter-jpacontainer.asciidoc b/documentation/jpacontainer/chapter-jpacontainer.asciidoc deleted file mode 100644 index 7ce01221d9..0000000000 --- a/documentation/jpacontainer/chapter-jpacontainer.asciidoc +++ /dev/null @@ -1,27 +0,0 @@ -[[jpacontainer]] -== Vaadin JPAContainer - -((("JPAContainer", id="term.jpacontainer", range="startofrange"))) - - -This chapter describes the use of the Vaadin JPAContainer add-on. - - -include::jpacontainer-overview.asciidoc[leveloffset=+2] - -include::jpacontainer-installation.asciidoc[leveloffset=+2] - -include::jpacontainer-domain-model.asciidoc[leveloffset=+2] - -include::jpacontainer-usage.asciidoc[leveloffset=+2] - -include::jpacontainer-entityprovider.asciidoc[leveloffset=+2] - -include::jpacontainer-filtering.asciidoc[leveloffset=+2] - -include::jpacontainer-filtering-criteria-api.asciidoc[leveloffset=+2] - -include::jpacontainer-fieldfactory.asciidoc[leveloffset=+2] - -include::jpacontainer-hibernate.asciidoc[leveloffset=+2] -(((range="endofrange", startref="term.jpacontainer"))) diff --git a/documentation/jpacontainer/img/detailed-architecture-hi.png b/documentation/jpacontainer/img/detailed-architecture-hi.png Binary files differdeleted file mode 100644 index 7acd4c6548..0000000000 --- a/documentation/jpacontainer/img/detailed-architecture-hi.png +++ /dev/null diff --git a/documentation/jpacontainer/img/detailed-architecture-lo.png b/documentation/jpacontainer/img/detailed-architecture-lo.png Binary files differdeleted file mode 100644 index a57a896e28..0000000000 --- a/documentation/jpacontainer/img/detailed-architecture-lo.png +++ /dev/null diff --git a/documentation/jpacontainer/img/domain-model-hi.png b/documentation/jpacontainer/img/domain-model-hi.png Binary files differdeleted file mode 100644 index 906194008c..0000000000 --- a/documentation/jpacontainer/img/domain-model-hi.png +++ /dev/null diff --git a/documentation/jpacontainer/img/domain-model-lo.png b/documentation/jpacontainer/img/domain-model-lo.png Binary files differdeleted file mode 100644 index 27ed54ad3c..0000000000 --- a/documentation/jpacontainer/img/domain-model-lo.png +++ /dev/null diff --git a/documentation/jpacontainer/img/fieldfactory-form.png b/documentation/jpacontainer/img/fieldfactory-form.png Binary files differdeleted file mode 100644 index 01b75424c1..0000000000 --- a/documentation/jpacontainer/img/fieldfactory-form.png +++ /dev/null diff --git a/documentation/jpacontainer/img/jpa-mapping-graphic-hi.png b/documentation/jpacontainer/img/jpa-mapping-graphic-hi.png Binary files differdeleted file mode 100644 index 05637b79fc..0000000000 --- a/documentation/jpacontainer/img/jpa-mapping-graphic-hi.png +++ /dev/null diff --git a/documentation/jpacontainer/img/jpa-mapping-graphic-lo.png b/documentation/jpacontainer/img/jpa-mapping-graphic-lo.png Binary files differdeleted file mode 100644 index 51c6f8efb0..0000000000 --- a/documentation/jpacontainer/img/jpa-mapping-graphic-lo.png +++ /dev/null diff --git a/documentation/jpacontainer/img/nested-properties.png b/documentation/jpacontainer/img/nested-properties.png Binary files differdeleted file mode 100644 index f16099a081..0000000000 --- a/documentation/jpacontainer/img/nested-properties.png +++ /dev/null diff --git a/documentation/jpacontainer/img/table-comets.png b/documentation/jpacontainer/img/table-comets.png Binary files differdeleted file mode 100644 index b4c9980033..0000000000 --- a/documentation/jpacontainer/img/table-comets.png +++ /dev/null diff --git a/documentation/jpacontainer/img/three-layer-architecture-hi.png b/documentation/jpacontainer/img/three-layer-architecture-hi.png Binary files differdeleted file mode 100644 index 8d7e2d8a46..0000000000 --- a/documentation/jpacontainer/img/three-layer-architecture-hi.png +++ /dev/null diff --git a/documentation/jpacontainer/img/three-layer-architecture-lo.png b/documentation/jpacontainer/img/three-layer-architecture-lo.png Binary files differdeleted file mode 100644 index f104e9c697..0000000000 --- a/documentation/jpacontainer/img/three-layer-architecture-lo.png +++ /dev/null diff --git a/documentation/jpacontainer/jpacontainer-domain-model.asciidoc b/documentation/jpacontainer/jpacontainer-domain-model.asciidoc deleted file mode 100644 index 4d5fe482bf..0000000000 --- a/documentation/jpacontainer/jpacontainer-domain-model.asciidoc +++ /dev/null @@ -1,265 +0,0 @@ ---- -title: Defining a Domain Model -order: 3 -layout: page ---- - -[[jpacontainer.domain-model]] -= Defining a Domain Model - -Developing a persistent application begins with defining a domain model. A -domain model consists of a number of entities (classes) and relationships -between them. - -<<figure.jpacontainer.domain-model>> illustrates a simple domain model as a UML -class diagram. It has two entities: [classname]#Country# and -[classname]#Person#. They have a "country has persons" relationship. This is a -__one-to-many relationship__ with one country having many persons, each of which -belongs to just one country. - -[[figure.jpacontainer.domain-model]] -.A Domain Model -image::img/domain-model-hi.png[] - -Realized in Java, the classes are as follows: - - ----- -public class Country { - private Long id; - private String name; - private Set<Person> persons; - - ... setters and getters ... -} - -public class Person { - private Long id; - private String name; - private Integer age; - private Country country; - - ... setters and getters ... -} ----- - -You should make the classes proper beans by defining a default constructor and -implementing the [interfacename]#Serializable# interface. A default constructor -is required by the JPA entity manager for instantiating entities. Having the -classes serializable is not required but often useful for other reasons. - -After you have a basic domain model, you need to define the entity relationship -metadata by annotating the classes. - -[[jpacontainer.domain-model.annotation]] -== Persistence Metadata - -The entity relationships are defined with metadata. The metadata can be defined -in an XML metadata file or with Java annotations defined in the -[package]#javax.persistence# package. With Vaadin JPAContainer, you need to -provide the metadata as annotations. - -For example, if we look at the Person class in the JPAContainer AddressBook -Demo, we define various database-related metadata for the member variables of a -class: - - ----- -@Entity -public class Person { - @Id - @GeneratedValue(strategy = GenerationType.AUTO) - private Long id; - - private String name; - private Integer age; - - @ManyToOne - private Country country; ----- - -The JPA implementation uses reflection to read the annotations and defines a -database model automatically from the class definitions. - -Let us look at some of the basic JPA metadata annotations. The annotations are -defined in the [package]#javax.persistence# package. Please refer to JPA -reference documentation for the complete list of possible annotations. - -[[jpacontainer.domain-model.metadata.entity]] -=== Annotation: [literal]#++@Entity++# - -Each class that is enabled as a persistent entity must have the -[literal]#++@Entity++# annotation. - - ----- -@Entity -public class Country { ----- - - -[[jpacontainer.domain-model.annotation.id]] -=== Annotation: [literal]#++@Id++# - -Entities must have an identifier that is used as the primary key for the table. -It is used for various purposes in database queries, most commonly for joining -tables. - - ----- -@Id -@GeneratedValue(strategy = GenerationType.AUTO) -private Long id; ----- - -The identifier is generated automatically in the database. The strategy for -generating the identifier is defined with the [literal]#++@GeneratedValue++# -annotation. Any generation type should work. - - -[[jpacontainer.domain-model.annotation.onetoone]] -=== Annotation: [literal]#++@OneToOne++# - -The [literal]#++@OneToOne++# annotation describes a one-to-one relationship -where each entity of one type is associated with exactly one entity of another -type. For example, the postal address of a person could be given as such. - - ----- -@OneToOne -private Address address; ----- - -When using the JPAContainer [classname]#FieldFactory# to automatically create -fields for a form, the [literal]#++@OneToOne++# relationship generates a nested -[classname]#Form# to edit the data. See -<<dummy/../../../framework/jpacontainer/jpacontainer-fieldfactory#jpacontainer.fieldfactory,"Automatic -Form Generation">> for more details. - - -[[jpacontainer.domain-model.annotation.embedded]] -=== Annotation: [literal]#++@Embedded++# - -Just as with the [literal]#++@OneToOne++# annotation, [literal]#++@Embedded++# -describes a one-to-one relationship, but says that the referenced entity should -be stored as columns in the same table as the referencing entity. - - ----- -@Embedded -private Address address; ----- - -The referenced entity class must have [literal]#++@Embeddable++# annotation. - -The JPAContainer [classname]#FieldFactory# generates a nested [classname]#Form# -for [literal]#++@Embedded++#, just as with [literal]#++@OneToOne++#. - - -[[jpacontainer.domain-model.annotation.onetomany]] -=== Annotation: [literal]#++@OneToMany++# - -The [classname]#Country# entity in the domain model has a __one-to-many__ -relationship with the [classname]#Person# entity ("country has persons"). This -relationship is represented with the [literal]#++@OneToMany++# annotation. The -[parameter]#mappedBy# parameter names the corresponding back-reference in the -[classname]#Person# entity. - - ----- -@OneToMany(mappedBy = "country") -private Set<Person> persons; ----- - -When using the JPAContainer [classname]#FieldFactory# to automatically create -fields for a form, the [literal]#++@OneToMany++# relationship generates a -[classname]#MasterDetailEditor# for editing the items. See -<<dummy/../../../framework/jpacontainer/jpacontainer-fieldfactory#jpacontainer.fieldfactory,"Automatic -Form Generation">> for more details. - - -[[jpacontainer.domain-model.annotation.elementcollection]] -=== Annotation: [literal]#++@ElementCollection++# - -The [literal]#++@ElementCollection++# annotation can be used for one-to-many -relationships to a collection of basic values such as [classname]#String# or -[classname]#Integer#, or to entities annotated as [literal]#++@Embeddable++#. -The referenced entities are stored in a separate table defined with a -[literal]#++@CollectionTable++# annotation. - - ----- -@ElementCollection -@CollectionTable( - name="OLDPEOPLE", - joinColumns=@JoinColumn(name="COUNTRY_ID")) -private Set<Person> persons; ----- - -JPAContainer [classname]#FieldFactory# generates a -[classname]#MasterDetailEditor# for the [literal]#++@ElementCollection++# -relationship, just as with [literal]#++@OneToMany++#. - - -[[jpacontainer.domain-model.annotation.manytoone]] -=== Annotation: [literal]#++@ManyToOne++# - -Many people can live in the same country. This would be represented with the -[literal]#++@ManyToOne++# annotation in the [classname]#Person# class. - - ----- -@ManyToOne -private Country country; ----- - -JPAContainer [classname]#FieldFactory# generates a [classname]#NativeSelect# for -selecting an item from the collection. You can do so yourself as well in a -custom field factory. Doing so you need to pay notice not to confuse the -container between the referenced entity and its ID, which could even result in -insertion of false entities in the database in some cases. You can handle -conversion between an entity and the entity ID using the -[classname]#SingleSelectConverter# as follows: - - ----- - -@Override -public <T extends Field> T createField(Class<?> dataType, - Class<T> fieldType) { - if (dataType == Country.class) { - JPAContainer<Country> countries = - JPAContainerFactory.make(Country.class, "mypunit"); - ComboBox cb = new ComboBox(null, countries); - cb.setConverter(new SingleSelectConverter<Country>(cb)); - return (T) cb; - } - return super.createField(dataType, fieldType); -} ----- - -The JPAContainer [classname]#FieldFactory# uses the translator internally, so -using it also avoids the problem. - - -[[jpacontainer.domain-model.annotation.transient]] -=== Annotation: [literal]#++@Transient++# - -JPA assumes that all entity properties are persisted. Properties that should not -be persisted should be marked as transient with the [literal]#++@Transient++# -annotation. - - ----- -@Transient -private Boolean superDepartment; -... -@Transient -public String getHierarchicalName() { -... ----- - - - - - diff --git a/documentation/jpacontainer/jpacontainer-entityprovider.asciidoc b/documentation/jpacontainer/jpacontainer-entityprovider.asciidoc deleted file mode 100644 index 8eb4d15462..0000000000 --- a/documentation/jpacontainer/jpacontainer-entityprovider.asciidoc +++ /dev/null @@ -1,225 +0,0 @@ ---- -title: Entity Providers -order: 5 -layout: page ---- - -[[jpacontainer.entityprovider]] -= Entity Providers - -Entity providers provide access to entities persisted in a data store. They are -essentially wrappers over a JPA entity manager, adding optimizations and other -features important when binding persistent data to a user interface. - -The choice and use of entity providers is largely invisible if you create your -[classname]#JPAContainer# instances with the [classname]#JPAContainerFactory#, -which hides such details. - -JPAContainer entity providers can be customized, which is necessary for some -purposes. Entity providers can be Enterprise JavaBeans (EJBs), which is useful -when you use them in a Java EE application server. - -[[jpacontainer.entityprovider.built-in]] -== Built-In Entity Providers - -JPAContainer includes various kinds of built-in entity providers: caching and -non-caching, read-write and read-only, and batchable. - -__Caching__ is useful for performance, but takes some memory for the cache and -makes the provider stateful. __Batching__, that is, running updates in larger -batches, can also enhance performance and be used together with caching. It is -stateless, but doing updates is a bit more complex than otherwise. - -Using a __read-only__ container is preferable if read-write capability is not -needed. - -All built-in providers are __local__ in the sense that they provide access to -entities using a local JPA entity manager. - -The [classname]#CachingMutableLocalEntityProvider# is usually recommended as the -first choise for read-write access and [classname]#CachingLocalEntityProvider# -for read-only access. - -=== [classname]#LocalEntityProvider# - -A read-only, lazy loading entity provider that does not perform caching and -reads its data directly from an entity manager. - -You can create the provider with [methodname]#makeNonCachedReadOnly()# method in -[classname]#JPAContainerFactory#. - - -=== [classname]#MutableLocalEntityProvider# - -Extends [classname]#LocalEntityProvider# with write support. All changes are -directly sent to the entity manager. - -Transactions can be handled either internally by the provider, which is the -default, or by the container. In the latter case, you can extend the class and -annotate it, for example, as described in -<<jpacontainer.entityprovider.built-in>>. - -The provider can notify about updates to entities through the -[interfacename]#EntityProviderChangeNotifier# interface. - - -=== [classname]#BatchableLocalEntityProvider# - -A simple non-caching implementation of the -[interfacename]#BatchableEntityProvider# interface. It extends -[classname]#MutableLocalEntityProvider# and simply passes itself to the -[methodname]#batchUpdate()# callback method. This will work properly if the -entities do not contain any references to other entities that are managed by the -same container. - - -=== [classname]#CachingLocalEntityProvider# - -A read-only, lazy loading entity provider that caches both entities and query -results for different filter/sortBy combinations. When the cache gets full, the -oldest entries in the cache are removed. The maximum number of entities and -entity IDs to cache for each filter/sortBy combination can be configured in the -provider. The cache can also be manually flushed. When the cache grows full, the -oldest items are removed. - -You can create the provider with [methodname]#makeReadOnly()# method in -[classname]#JPAContainerFactory#. - - -=== [classname]#CachingMutableLocalEntityProvider# - -Just like [classname]#CachingLocalEntityProvider#, but with read-write access. -For read access, caching works just like in the read-only provider. When an -entity is added or updated, the cache is flushed in order to make sure the added -or updated entity shows up correctly when using filters and/or sorting. When an -entity is removed, only the filter/sortBy-caches that actually contain the item -are flushed. - -This is perhaps the most commonly entity provider that you should consider using -for most tasks. You can create it with the [methodname]#make()# method in -[classname]#JPAContainerFactory#. - - -=== [classname]#CachingBatchableLocalEntityProvider# - -This provider supports making updates in __batches__. You need to implement a -[interfacename]#BatchUpdateCallback# that does all the updates and execute the -batch by calling [methodname]#batchUpdate()# on the provider. - -The provider is an extension of the -[classname]#CachingMutableLocalEntityProvider# that implements the -[interfacename]#BatchableEntityProvider# interface. This will work properly if -the entities do not contain any references to other entities that are managed by -the same container. - -You can create the provider with [methodname]#makeBatchable()# method in -[classname]#JPAContainerFactory#. - - - -[[jpacontainer.entityprovider.jndi]] -== Using JNDI Entity Providers in JEE6 Environment - -JPAContainer 2.0 introduced a new set of entity providers specifically for -working in a [literal]#++JEE6++# environment. In a JEE environment, you should -use an entity manager provided by the application server and, usually, -[literal]#++JTA++# transactions instead of transactions provided by JPA. Entity -providers in [package]#com.vaadin.addon.jpacontainer.provider.jndijta# package -work mostly the same way as the normal providers discussed earlier, but use JNDI -lookups to get reference to an [interfacename]#EntityManager# and to a JTA -transaction. - -The JNDI providers work with almost no special configuration at all. The -[classname]#JPAContainerFactory# has factory methods for creating various JNDI -provider types. The only thing that you commonly need to do is to expose the -[interfacename]#EntityManager# to a JNDI address. By default, the JNDI providers -look for the [interfacename]#EntityManager# from " -java:comp/env/persistence/em". This can be done with the following snippet in -[filename]#web.xml# or with similar configuration with annotations. - - ----- -<persistence-context-ref> - <persistence-context-ref-name> - persistence/em - </persistence-context-ref-name> - <persistence-unit-name>MYPU</persistence-unit-name> -</persistence-context-ref> ----- - -The " [literal]#++MYPU++#" is the identifier of your persistence unit defined in -your [filename]#persistence.xml# file. - -If you choose to annotate your servlets (instead of using the -[filename]#web.xml# file as described above), you can simply add the following -annotation to your servlet. - - ----- -@PersistenceContext(name="persistence/em",unitName="MYPU") ----- - -If you wish to use another address for the persistence context, you can define -them with the [methodname]#setJndiAddresses()# method. You can also define the -location for the JTA [classname]#UserTransaction#, but that should be always -accessible from " java:comp/UserTransaction" by the JEE6 specification. - - -[[jpacontainer.entityprovider.ejb]] -== Entity Providers as Enterprise Beans - -Entity providers can be Enterprise JavaBeans (EJB). This may be useful if you -use JPAContainer in a Java EE application server. In such case, you need to -implement a custom entity provider that allows the server to inject the entity -manager. - -For example, if you need to use Java Transaction API (JTA) for JPA transactions, -you can implement such entity provider as follows. Just extend a built-in entity -provider of your choise and annotate the entity manager member as -[literal]#++@PersistenceContext++#. Entity providers can be either stateless or -stateful session beans. If you extend a caching entity provider, it has to be -stateful. - - ----- -@Stateless -@TransactionManagement -public class MyEntityProviderBean extends - MutableLocalEntityProvider<MyEntity> { - - @PersistenceContext - private EntityManager em; - - protected LocalEntityProviderBean() { - super(MyEntity.class); - setTransactionsHandledByProvider(false); - } - - @Override - @TransactionAttribute(TransactionAttributeType.REQUIRED) - protected void runInTransaction(Runnable operation) { - super.runInTransaction(operation); - } - - @PostConstruct - public void init() { - setEntityManager(em); - /* - * The entity manager is transaction-scoped, which means - * that the entities will be automatically detached when - * the transaction is closed. Therefore, we do not need - * to explicitly detach them. - */ - setEntitiesDetached(false); - } -} ----- - -If you have more than one EJB provider, you might want to create an abstract -super class of the above and only define the entity type in implementations. You -can implement an entity provider as a managed bean in Spring Framefork the same -way. - - - - diff --git a/documentation/jpacontainer/jpacontainer-fieldfactory.asciidoc b/documentation/jpacontainer/jpacontainer-fieldfactory.asciidoc deleted file mode 100644 index f8b6eebac3..0000000000 --- a/documentation/jpacontainer/jpacontainer-fieldfactory.asciidoc +++ /dev/null @@ -1,162 +0,0 @@ ---- -title: Automatic Form Generation -order: 8 -layout: page ---- - -[[jpacontainer.fieldfactory]] -= Automatic Form Generation - -The JPAContainer [classname]#FieldFactory# is an implementation of the -[interfacename]#FormFieldFactory# and [interfacename]#TableFieldFactory# -interfaces that can generate fields based on JPA annotations in a POJO. It goes -further than the [classname]#DefaultFieldFactory#, which only creates simple -fields for the basic data types. This way, you can easily create forms to input -entities or enable editing in tables. - -The generated defaults are as follows: - -[options="header"] -|=============== -|Annotation|Class Mapping -|[literal]#++@ManyToOne++#|[classname]#NativeSelect# -|[literal]#++@OneToOne++#, [literal]#++@Embedded++#|Nested [classname]#Form# -|[literal]#++@OneToMany++#, [literal]#++@ElementCollection++#|[classname]#MasterDetailEditor# (see below) -|[literal]#++@ManyToMany++#|Selectable [classname]#Table# - -|=============== - - - -The field factory is recusive, so that you can edit a complex object tree with -one form. - -[[jpacontainer.fieldfactory.configuring]] -== Configuring the Field Factory - -The [classname]#FieldFactory# is highly configurable with various configuration -settings and by -extending.//// -You need to make the configuration -before -//// - -The [methodname]#setMultiSelectType()# and [methodname]#setSingleSelectType()# -allow you to specify a selection component that is used instead of the default -for a field with [literal]#++@ManyToMany++# and [literal]#++@ManyToOne++# -annotation, respectively. The first parameter is the class type of the field, -and the second parameter is the class type of a selection component. It must be -a sub-class of [classname]#AbstractSelect#. - -The [methodname]#setVisibleProperties()# controls which properties (fields) are -visible in generated forms, subforms, and tables. The first paramater is the -class type for which the setting should be made, followed by the IDs of the -visible properties. - -The configuration should be done before binding the form to a data source as -that is when the field generation is done. - -Further configuration must be done by extending the many protected methods. -Please see the API documentation for the complete list. - - -[[jpacontainer.fieldfactory.using]] -== Using the Field Factory - -The most basic use case for the JPAContainer [classname]#FieldFactory# is with a -[classname]#Form# bound to a container item: - - ----- -// Have a persistent container -final JPAContainer<Country> countries = - JPAContainerFactory.make(Country.class, "book-examples"); - -// For selecting an item to edit -final ComboBox countrySelect = - new ComboBox("Select a Country", countries); -countrySelect.setItemCaptionMode(Select.ITEM_CAPTION_MODE_PROPERTY); -countrySelect.setItemCaptionPropertyId("name"); - -// Country Editor -final Form countryForm = new Form(); -countryForm.setCaption("Country Editor"); -countryForm.addStyleName("bordered"); // Custom style -countryForm.setWidth("420px"); -countryForm.setBuffered(true); -countryForm.setEnabled(false); - -// When an item is selected from the list... -countrySelect.addValueChangeListener(new ValueChangeListener(){ - @Override - public void valueChange(ValueChangeEvent event) { - // Get the item to edit in the form - Item countryItem = - countries.getItem(event.getProperty().getValue()); - - // Use a JPAContainer field factory - // - no configuration is needed here - final FieldFactory fieldFactory = new FieldFactory(); - countryForm.setFormFieldFactory(fieldFactory); - - // Edit the item in the form - countryForm.setItemDataSource(countryItem); - countryForm.setEnabled(true); - - // Handle saves on the form - final Button save = new Button("Save"); - countryForm.getFooter().removeAllComponents(); - countryForm.getFooter().addComponent(save); - save.addClickListener(new ClickListener() { - @Override - public void buttonClick(ClickEvent event) { - try { - countryForm.commit(); - countryForm.setEnabled(false); - } catch (InvalidValueException e) { - } - } - }); - } -}); -countrySelect.setImmediate(true); -countrySelect.setNullSelectionAllowed(false); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#jpacontainer.fieldfactory.formonetoone[on-line example, window="_blank"]. - -This would create a form shown in <<figure.jpacontainer.fieldfactory.using>>. - -[[figure.jpacontainer.fieldfactory.using]] -.Using FieldFactory with One-to-Many Relationship -image::img/fieldfactory-form.png[] - -If you use Hibernate, you also need to pass an -[classname]#EntityManagerPerRequestHelper#, either for the constructor or with -[methodname]#setEntityManagerPerRequestHelper()# -ifdef::web[] -, as described in -<<dummy/../../../framework/jpacontainer/jpacontainer-hibernate#jpacontainer.hibernate.em-per-request,"The -EntityManager-Per-Request -pattern">> -endif::web[] -. - - -[[jpacontainer.fieldfactory.masterdetaileditor]] -== Master-Detail Editor - -The [classname]#MasterDetailEditor# is a field component that allows editing an -item property that has one-to-many relationship. The item can be a row in a -table or bound to a form. It displays the referenced collection as an editable -[classname]#Table# and allows adding and removing items in it. - -You can use the [classname]#MasterDetailEditor# manually, or perhaps more -commonly use a JPAContainer [classname]#FieldFactory# to create it -automatically. As shown in the example in -<<figure.jpacontainer.fieldfactory.using>>, the factory creates a -[classname]#MasterDetailEditor# for all properties with a -[literal]#++@OneToMany++# or an [literal]#++@ElementCollection++# annotation. - - - - diff --git a/documentation/jpacontainer/jpacontainer-filtering-criteria-api.asciidoc b/documentation/jpacontainer/jpacontainer-filtering-criteria-api.asciidoc deleted file mode 100644 index 9f6efbe1b6..0000000000 --- a/documentation/jpacontainer/jpacontainer-filtering-criteria-api.asciidoc +++ /dev/null @@ -1,95 +0,0 @@ ---- -title: Querying with the Criteria API -order: 7 -layout: page ---- - -[[jpacontainer.filtering.criteria-api]] -= Querying with the Criteria API - -When the [interfacename]#Filterable# API is not enough and you need to have more -control, you can make queries directly with the JPA Criteria API. You may also -need to customize sorting or joins, or otherwise modify the query in some way. -To do so, you need to implement a [interfacename]#QueryModifierDelegate# that -the JPAContainer entity provider calls when making a query. The easiest way to -do this is to extend [classname]#DefaultQueryModifierDelegate#, which has empty -implementations of all the methods so that you can only override the ones you -need. - -The entity provider calls specific [interfacename]#QueryModifierDelegate# -methods at different stages while making a query. The stages are: - -. Start building a query - -. Add " [literal]#++ORDER BY++#" expression - -. Add " [literal]#++WHERE++#" expression (filter) - -. Finish building a query - - -Methods where you can modify the query are called before and after each stage as -listed in the following table: - -[[table.jpacontainer.filtering.criteria-api.methods]] -.[classname]#QueryModifierDelegate# Methods - -|=============== -|[methodname]#queryWillBeBuilt()# -|[methodname]#orderByWillBeAdded()# -|[methodname]#orderByWasAdded()# -|[methodname]#filtersWillBeAdded()# -|[methodname]#filtersWereAdded()# -|[methodname]#queryHasBeenBuilt()# - -|=============== - - - -All the methods get two parameters. The [interfacename]#CriteriaBuilder# is a -builder that you can use to build queries. The [interfacename]#CriteriaQuery# is -the query being built. - -You can use the [methodname]#getRoots().iterator().next()# in -[interfacename]#CriteriaQuery# to get the "root" that is queried, for example, -the [literal]#++PERSON++# table, etc. - -[[jpacontainer.filtering.criteria-api.filters]] -== Filtering the Query - -Let us consider a case where we modify the query for a [classname]#Person# -container so that it includes only people over 116. This trivial example is -identical to the one given earlier using the [classname]#Filterable# interface. - - ----- - -persons.getEntityProvider().setQueryModifierDelegate( - new DefaultQueryModifierDelegate () { - @Override - public void filtersWillBeAdded( - CriteriaBuilder criteriaBuilder, - CriteriaQuery<?> query, - List<Predicate> predicates) { - Root<?> fromPerson = query.getRoots().iterator().next(); - - // Add a "WHERE age > 116" expression - Path<Integer> age = fromPerson.<Integer>get("age"); - predicates.add(criteriaBuilder.gt(age, 116)); - } -}); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#jpacontainer.criteria.querymodification[on-line example, window="_blank"]. - - -[[jpacontainer.filtering.criteria-api.compatibility]] -== Compatibility - -When building queries, you should consider the capabilities of the different JPA -implementations. Regarding Hibernate, see -<<dummy/../../../framework/jpacontainer/jpacontainer-hibernate#jpacontainer.hibernate.joins,"Joins -in Hibernate vs EclipseLink">>. - - - - diff --git a/documentation/jpacontainer/jpacontainer-filtering.asciidoc b/documentation/jpacontainer/jpacontainer-filtering.asciidoc deleted file mode 100644 index 98d062b8d0..0000000000 --- a/documentation/jpacontainer/jpacontainer-filtering.asciidoc +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Filtering JPAContainer -order: 6 -layout: page ---- - -[[jpacontainer.filtering]] -= Filtering [classname]#JPAContainer# - -Normally, a [classname]#JPAContainer# contains all instances of a particular -entity type in the persistence context. Hence, it is equivalent to a database -table or query. Just like with database queries, you often want to narrow the -results down. [classname]#JPAContainer# implements the -[interfacename]#Filterable# interface in Vaadin containers, described in -<<dummy/../../../framework/datamodel/datamodel-container#datamodel.container.filtered,"Filterable -Containers">>. All filtering is done at the database level with queries, not in -the container. - -For example, let us filter all the people older than 117: - - ----- -Filter filter = new Compare.Greater("age", 117); -persons.addContainerFilter(filter); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#jpacontainer.filtering.basic[on-line example, window="_blank"]. - -This would create a JPQL query somewhat as follows: - - ----- -SELECT id FROM Person WHERE (AGE > 117) ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#jpacontainer.filtering.basic[on-line example, window="_blank"]. - -The filtering implementation uses the JPA 2.0 Criteria API transparently. As the -filtering is done at the database-level, custom filters that use the -[interfacename]#Filterable# API do not work. - -When using Hibernate, note that it does not support implicit joins. See -<<dummy/../../../framework/jpacontainer/jpacontainer-hibernate#jpacontainer.hibernate.joins,"Joins -in Hibernate vs EclipseLink">> for more details. - - - diff --git a/documentation/jpacontainer/jpacontainer-hibernate.asciidoc b/documentation/jpacontainer/jpacontainer-hibernate.asciidoc deleted file mode 100644 index de7f26d9a0..0000000000 --- a/documentation/jpacontainer/jpacontainer-hibernate.asciidoc +++ /dev/null @@ -1,180 +0,0 @@ ---- -title: Using JPAContainer with Hibernate -order: 9 -layout: page ---- - -[[jpacontainer.hibernate]] -= Using JPAContainer with Hibernate - -Hibernate needs special handling in some cases. - -[[jpacontainer.hibernate.lazyloading]] -== Lazy loading - -In order for lazy loading to work automatically, an entity must be attached to -an entity manager. Unfortunately, Hibernate can not keep entity managers for -long without problems. To work around the problem, you need to use a special -lazy loading delegate for Hibernate. - -JPAContainer entity providers handle lazy loading in delegates defined by the -[interfacename]#LazyLoadingDelegate# interface. The default implementation for -Hibernate is defined in [classname]#HibernateLazyLoadingDelegate#. You can -instantiate one and use it in an entity provider with -[methodname]#setLazyLoadingDelegate()#. - -The default implementation works so that whenever a lazy property is accessed -through the Vaadin Property interface, the value is retrieved with a separate -(JPA Criteria API) query using the currently active entity manager. The value is -then manually attached to the entity instance, which is detached from the entity -manager. If this default implementation is not good enough, you may need to make -your own implementation. - - -ifdef::web[] -[[jpacontainer.hibernate.em-per-request]] -== The EntityManager-Per-Request pattern - -One issue with Hibernate is that it is designed for short-lived sessions, but -the lifetime of an entity manager is normally roughly that of a user session. -The problem is that if an error occurs in a session or an entity manager, the -manager becomes unuseable. This causes big problems with long-lived sessions -that would work fine with EclipseLink. - -The recommended solution is to use the __EntityManager-per-Request__ pattern. It -is highly recommended always when using Hibernate. - -An entity manager can only be open during the request-response cycle of the -Vaadin servlet, so that one is created at the beginning of the request and -closed at the end. - -[[jpacontainer.hibernate.em-per-request.provider]] -=== Storing an Entity Manager - -You first need to implement an [interfacename]#EntityManagerProvider# that -returns a stored [interfacename]#EntityManager# with -[methodname]#getEntityManager()#. The entity manager must be stored in a -[classname]#ThreadLocal# variable. - - ----- -public class LazyHibernateEntityManagerProvider - implements EntityManagerProvider { - private static ThreadLocal<EntityManager> - entityManagerThreadLocal = - new ThreadLocal<EntityManager>(); - - @Override - public EntityManager getEntityManager() { - return entityManagerThreadLocal.get(); - } - - public static void setCurrentEntityManager( - EntityManager em) { - entityManagerThreadLocal.set(em); - } -} ----- - -You need to create and store the per-request instance at the beginning of each -request with [methodname]#setCurrentEntityManager()# and clear it at the end by -setting it as [literal]#++null++#. - - -[[jpacontainer.hibernate.em-per-request.provider]] -=== Creating Entity Managers in a Servlet Filter - -You can create the entity managers for each request either by extending -[classname]#VaadinServlet# and overriding the [methodname]#service()# method or -by implementing a servlet filter. In the following, we describe how to implement -a servlet filter to do the task, but overriding the servlet could be even -easier. - - ----- -public class LazyHibernateServletFilter - implements Filter { - - private EntityManagerFactory entityManagerFactory; - - @Override - public void init(FilterConfig filterConfig) - throws ServletException { - entityManagerFactory = Persistence - .createEntityManagerFactory("lazyhibernate"); - } - - @Override - public void doFilter(ServletRequest servletRequest, - ServletResponse servletResponse, - FilterChain filterChain) - throws IOException, ServletException { - try { - // Create and set the entity manager - LazyHibernateEntityManagerProvider - .setCurrentEntityManager( - entityManagerFactory - .createEntityManager()); - - // Handle the request - filterChain.doFilter(servletRequest, - servletResponse); - } finally { - // Reset the entity manager - LazyHibernateEntityManagerProvider - .setCurrentEntityManager(null); - } - } - - @Override - public void destroy() { - entityManagerFactory = null; - } -} ----- - -You need to define the servlet filter in the [filename]#web.xml# deployment -descriptor as follows: - -[subs="normal"] ----- -<filter> - <filter-name>**LazyHibernateServletFilter**</filter-name> - <filter-class>**com.example.LazyHibernateServletFilter**</filter-class> -</filter> -<filter-mapping> - <filter-name>**LazyHibernateServletFilter**</filter-name> - <url-pattern>**/++*++**</url-pattern> -</filter-mapping> ----- -The [literal]#++url-pattern++# must match the pattern for your Vaadin servlet. - - -endif::web[] - -[[jpacontainer.hibernate.joins]] -== Joins in Hibernate vs EclipseLink - -EclipseLink supports implicit joins, while Hibernate requires explicit joins. In -SQL terms, an explicit join is a " [literal]#++FROM a INNER JOIN b ON a.bid = -b.id++#" expression, while an implicit join is done in a WHERE clause, such as: -" [literal]#++FROM a,b WHERE a.bid = b.id++#". - -In a JPAContainer filter with EclipseLink, an implicit join would have form: - - ----- -new Equal("skills.skill", s) ----- - -In Hibernate you would need to use [classname]#JoinFilter# for the explicit -join: - - ----- -new JoinFilter("skills", new Equal("skill", s)) ----- - - - - diff --git a/documentation/jpacontainer/jpacontainer-installation.asciidoc b/documentation/jpacontainer/jpacontainer-installation.asciidoc deleted file mode 100644 index b678746712..0000000000 --- a/documentation/jpacontainer/jpacontainer-installation.asciidoc +++ /dev/null @@ -1,311 +0,0 @@ ---- -title: Installing -order: 2 -layout: page ---- - -[[jpacontainer.installation]] -= Installing - -Vaadin JPAContainer can be installed either as an installation package, -downloaded from the Vaadin Directory, or as a Maven dependency. You can also -create a new JPAContainer-enabled Vaadin project using a Maven archetype. - -[[jpacontainer.installation.download]] -== Downloading the Package - -Vaadin JPAContainer is available for download from the -link:http://vaadin.com/directory[Vaadin Directory]. Please see -<<dummy/../../../framework/addons/addons-downloading#addons.downloading,"Downloading -Add-ons from Vaadin Directory">> for basic instructions for downloading from -Directory. The download page also gives the dependency declaration needed for -retrieving the library with Maven. - -JPAContainer is a purely server-side component, so it does not include a widget -set that you would need to compile. - - -[[jpacontainer.installation.package]] -== Installation Package Content - -Once extracted to a local folder, the contents of the installation directory are -as follows: - -[filename]#README#:: A readme file describing the package contents. - -[filename]#LICENSE#:: The full license text for the library. - -[filename]#vaadin-jpacontainer-3.x.x.jar#:: The actual Vaadin JPAContainer library. - -[filename]#vaadin-jpacontainer-3.x.x-sources.jar#:: Source JAR for the library. You can use it for example in Eclipse by associating -the JavaDoc JAR with the JPAContainer JAR in the build path settings of your -project. - -[filename]#jpacontainer-tutorial.pdf#:: The tutorial in PDF format. - -[filename]#jpacontainer-tutorial-html#:: The tutorial in HTML format. - -[filename]#jpacontainer-addressbook-demo#:: The JPAContainer AddressBook Demo project covered in this tutorial. You can -compile and package the application as a WAR with " [command]#mvn# -[parameter]#package#" or launch it in the Jetty web browser with " -[command]#mvn# [parameter]#jetty:run#". You can also import the demo project in -Eclipse. - - - - -[[jpacontainer.installation.maven]] -== Downloading with Maven - -The link:http://vaadin.com/directory[download page in Vaadin Directory] gives -the dependency declaration needed for retrieving the Vaadin JPAContainer library -with Maven. - - ----- -<dependency> - <groupId>com.vaadin.addon</groupId> - <artifactId>jpacontainer-addon</artifactId> - <version>3.1.0</version> -</dependency> ----- - -Use the [literal]#++LATEST++# version tag to automatically download the latest -stable release or use a specific version number as done above. - -See <<dummy/../../../framework/addons/addons-maven#addons.maven,"Using Add-ons -in a Maven Project">> for detailed instructions for using a Vaadin add-on with -Maven. - -[[jpacontainer.installation.maven.archetype]] -=== Using the Maven Archetype - -If you wish to create a new JPAContainer-enabled Vaadin project with Maven, you -can use the [literal]#++vaadin-archetype-jpacontainer++# archetype. Please see -<<dummy/../../../framework/getting-started/getting-started-maven#getting-started.maven,"Using -Vaadin with Maven">> for details on creating a Vaadin project with a Maven -archetype. - - - -[[jpacontainer.installation.libraries]] -== Including Libraries in Your Project - -The Vaadin JPAContainer JAR must be included in the library folder of the web -application. It is located in [filename]#WEB-INF/lib# path in a web application. -In a normal Eclipse web projects the path is [filename]#WebContent/WEB-INF/lib#. -In Maven projects the JARs are automatically included in the folder, as long as -the dependencies are defined correctly. - -You will need the following JARs: - -* Vaadin Framework Library - -* Vaadin JPAContainer - -* Java Persistence API 2.0 (javax.persistence package) - -* JPA implementation (EclipseLink, Hibernate, ...) - -* Database driver or embedded engine (H2, HSQLDB, MySQL, PostgreSQL, ...) - - -If you use Eclipse, the Vaadin Framework library is automatically downloaded and -updated by the Vaadin Plugin for Eclipse. - -To use bean validation, you need an implementation of the Bean Validation, such -as Hibernate Validator.//TODO -elaborate - - -[[jpacontainer.installation.configuration]] -== Persistence Configuration - -Persistence configuration is done in a [filename]#persistence.xml# file. In a -regular Eclipse project, it should be located in -[filename]#WebContent/WEB-INF/classes/META-INF#. In a Maven project, it should -be in [filename]#src/main/resources/META-INF#. The configuration includes the -following: - -* The persistence unit - -* The persistence provider - -* The database driver and connection - -* Logging - - -The [filename]#persistence.xml# file is packaged as -[filename]#WEB-INF/classes/META-INF/persistence.xml# in the WAR. This is done -automatically in a Maven build at the package phase. - -[[jpacontainer.installation.configuration.schema]] -=== Persistence XML Schema - -The beginning of a [filename]#persistence.xml# file defines the used schema and -namespaces: - - ----- -<?xml version="1.0" encoding="UTF-8"?> -<persistence - xmlns="http://java.sun.com/xml/ns/persistence" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation=" - http://java.sun.com/xml/ns/persistence - http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd" - version="2.0"> ----- - - -[[jpacontainer.installation.configuration.unit]] -=== Defining the Persistence Unit - -The root element of the persistence definition is persistence-unit. The name of -the persistence unit is needed for creating [classname]#JPAContainer# instances -from a [classname]#JPAContainerFactory#, as described in -<<dummy/../../../framework/jpacontainer/jpacontainer-usage#jpacontainer.usage.jpacontainerfactory,"Creating -JPAContainer with JPAContainerFactory">> or when creating a JPA entity manager. - - ----- -<persistence-unit name="addressbook"> ----- - -Persistence provider is the JPA provider implementation used. For example, the -JPAContainer AddressBook demo uses the EclipseLink JPA, which is defined as -follows: - - ----- -<provider> - org.eclipse.persistence.jpa.PersistenceProvider -</provider> ----- - -The persistent classes need to be listed with a [literal]#++<class>++# element. -Alternatively, you can allow including unlisted classes for persistence by -overriding the [literal]#++exclude-unlisted-classes++# default as follows: - - ----- -<exclude-unlisted-classes>false</exclude-unlisted-classes> ----- - -JPA provider specific parameters are given under the [literal]#++properties++# -element. - - ----- -<properties> - ... ----- - -In the following section we give parameters for the EclipseLink JPA and H2 -database used in the JPAContainer AddressBook Demo. Please refer to the -documentation of the JPA provider you use for a complete reference of -parameters. - - -[[jpacontainer.installation.configuration.database]] -=== Database Connection - -EclipseLink allows using JDBC for database connection. For example, if we use -the the H2 database, we define its driver here as follows: - - ----- -<property name="eclipselink.jdbc.platform" - value="org.eclipse.persistence.platform.database.H2Platform"/> -<property name="eclipselink.jdbc.driver" - value="org.h2.Driver" /> ----- - -Database connection is specified with a URL. For example, using an embedded H2 -database stored in the home directory it would be as follows: - - ----- -<property name="eclipselink.jdbc.url" - value="jdbc:h2:~/my-app-h2db"/> ----- - -A hint: when using an embedded H2 database while developing a Vaadin application -in Eclipse, you may want to add [literal]#++;FILE_LOCK=NO++# to the URL to avoid -locking issues when redeploying. - -We can just use the default user name and password for the H2 database: - - ----- -<property name="eclipselink.jdbc.user" value="sa"/> -<property name="eclipselink.jdbc.password" value="sa"/> ----- - - -[[jpacontainer.installation.configuration.logging]] -=== Logging Configuration - -JPA implementations as well as database engines like to produce logs and they -should be configured in the persistence configuration. For example, if using -EclipseLink JPA, you can get log that includes all SQL statements with the -[literal]#++FINE++# logging level: - - ----- -<property name="eclipselink.logging.level" - value="FINE" /> ----- - - -[[jpacontainer.installation.configuration.other]] -=== Other Settings - -The rest is some Data Definition Language settings for EclipseLink. During -development, when we use generated example data, we want EclipseLink to drop -tables before trying to create them. In production environments, you should use -[literal]#++create-tables++#. - - ----- -<property name="eclipselink.ddl-generation" - value="drop-and-create-tables" /> ----- - -And there is no need to generate SQL files, just execute them directly to the -database. - - ----- -<property name="eclipselink.ddl-generation.output-mode" - value="database"/> - </properties> - </persistence-unit> -</persistence> ----- - - - -[[jpacontainer.installation.troubleshooting]] -== Troubleshooting - -Below are some typical errors that you might get when using JPA. These are not -specific to JPAContainer. - -[classname]#javax.persistence.PersistenceException#: No Persistence provider for EntityManager:: The most typical cases for this error are that the persistence unit name is -wrong in the source code or in the [filename]#persistence.xml# file, or that the -[filename]#persistence.xml# is at a wrong place or has some other problem. Make -sure that the persistence unit name matches and the [filename]#persistence.xml# -is in [filename]#WEB-INF/classes/META-INF# folder in the deployment. - -[classname]#java.lang.IllegalArgumentException#: The class is not an entity:: The class is missing from the set of persistent entities. If the -[filename]#persistence.xml# does not have [parameter]#exclude-unlisted-classes# -defined as [literal]#++false++#, the persistent entity classes should be listed -with [literal]#++<class>++# elements. - - - - - - diff --git a/documentation/jpacontainer/jpacontainer-overview.asciidoc b/documentation/jpacontainer/jpacontainer-overview.asciidoc deleted file mode 100644 index a622c0509d..0000000000 --- a/documentation/jpacontainer/jpacontainer-overview.asciidoc +++ /dev/null @@ -1,123 +0,0 @@ ---- -title: Overview -order: 1 -layout: page ---- - -[[jpacontainer.overview]] -= Overview - -Vaadin JPAContainer add-on makes it possible to bind user interface components -to a database easily using the Java Persistence API (JPA). It is an -implementation of the [interfacename]#Container# interface described in -<<dummy/../../../framework/datamodel/datamodel-container#datamodel.container,"Collecting -Items in Containers">>. It supports a typical three-layer application -architecture with an intermediate __domain model__ between the user interface -and the data access layer. - -[[figure.jpacontainer.overview.architecture]] -.Three-Layer Architecture Using JPAContainer And JPA -image::img/three-layer-architecture-hi.png[] - -The role of Java Persistence API is to handle persisting the domain model in the -database. The database is typically a relational database. Vaadin JPAContainer -binds the user interface components to the domain model and handles database -access with JPA transparently. - -JPA is really just an API definition and has many alternative implementations. -Vaadin JPAContainer supports especially EclipseLink, which is the reference -implementation of JPA, and Hibernate. Any other compliant implementation should -work just as well. The architecture of an application using JPAContainer is -shown in <<figure.jpacontainer.overview.detailed-architecture>>. - -[[figure.jpacontainer.overview.detailed-architecture]] -.JPAContainer Architecture -image::img/detailed-architecture-hi.png[] - -Vaadin JPAContainer also plays together with the Vaadin support for Java Bean -Validation (JSR 303). - -[[jpacontainer.overview.jpa]] -== Java Persistence API - -Java Persistence API (JPA) is an API for object-relational mapping (ORM) of Java -objects to a relational database. In JPA and entity-relationship modeling in -general, a Java class is considered an __entity__. Class (or entity) instances -correspond with a row in a database table and member variables of a class with -columns. Entities can also have relationships with other entities. - -The object-relational mapping is illustrated in -<<figure.jpacontainer.overview.jpa.orm>> with two entities with a one-to-many -relationship. - -[[figure.jpacontainer.overview.jpa.orm]] -.Object-Relational Mapping -image::img/jpa-mapping-graphic-hi.png[] - -The entity relationships are declared with metadata. With Vaadin JPAContainer, -you provide the metadata with annotations in the entity classes. The JPA -implementation uses reflection to read the annotations and defines a database -model automatically from the class definitions. Definition of the domain model -and the annotations are described in -<<dummy/../../../framework/jpacontainer/jpacontainer-domain-model#jpacontainer.domain-model.annotation,"Persistence -Metadata">>. - -The main interface in JPA is the [interfacename]#EntityManager#, which allows -making different kinds of queries either with the Java Persistence Query -Language (JPQL), native SQL, or the Criteria API in JPA 2.0. You can always use -the interface directly as well, using Vaadin JPAContainer only for binding the -data to the user interface. - -Vaadin JPAContainer supports JPA 2.0 (JSR 317). It is available under the Apache -License 2.0. - - -[[jpacontainer.overview.concepts]] -== JPAContainer Concepts - -The [classname]#JPAContainer# is an implementation of the Vaadin -[interfacename]#Container# interface that you can bind to user interface -components such as [classname]#Table#, [classname]#ComboBox#, etc. - -The data access to the persistent entities is handled with a __entity -provider__, as defined in the [interfacename]#EntityProvider# interface. -JPAContainer provides a number of different entity providers for different use -cases and optimizations. The built-in providers are described in -<<dummy/../../../framework/jpacontainer/jpacontainer-entityprovider#jpacontainer.entityprovider,"Entity -Providers">>. - -[classname]#JPAContainer# is by default __unbuffered__, so that any entity -property changes are written immediately to the database when you call -[methodname]#setValue()# for a property, or when a user edits a bound field. A -container can be set as __buffered__, so that changes are written on calling -[methodname]#commit()#. Buffering can be done both at item level, such as when -updating item property values, or at container level, such as when adding or -deleting items. Only __batchable__ containers, that is, containers with a -batchable entity provider, can be buffered. Note that buffering is recommended -for situations where two users could update the same entity simultaneously, and -when this would be a problem. In an unbuffered container, the entity is -refreshed before writing an update, so the last write wins and a conflicting -simultaneous update written before it is lost. A buffered container throws an -[classname]#OptimisticLockException# when two users edit the same item (an -unbuffered container never throws it), thereby allowing to handle the situation -with application logic. - - -[[jpacontainer.overview.documentation]] -== Documentation and Support - -In addition to this chapter in the book, the installation package includes the -following documentation about JPAContainer: - -* API Documentation - -* JPAContainer Tutorial - -* JPAContainer AddressBook Demo - -* JPAContainer Demo - - - - - diff --git a/documentation/jpacontainer/jpacontainer-usage.asciidoc b/documentation/jpacontainer/jpacontainer-usage.asciidoc deleted file mode 100644 index c4ba3b2a3f..0000000000 --- a/documentation/jpacontainer/jpacontainer-usage.asciidoc +++ /dev/null @@ -1,386 +0,0 @@ ---- -title: Basic Use of JPAContainer -order: 4 -layout: page ---- - -[[jpacontainer.usage]] -= Basic Use of JPAContainer - -Vaadin JPAContainer offers a highly flexible API that makes things easy in -simple cases while allowing extensive flexibility in demanding cases. To begin -with, it is a [classname]#Container#, as described in -<<dummy/../../../framework/datamodel/datamodel-container#datamodel.container,"Collecting -Items in Containers">>. - -In this section, we look how to create and use [classname]#JPAContainer# -instances. We assume that you have defined a domain model with JPA annotations, -as described in the previous section. - -[[jpacontainer.usage.jpacontainerfactory]] -== Creating [classname]#JPAContainer# with [classname]#JPAContainerFactory# - -The [classname]#JPAContainerFactory# is the easy way to create -[classname]#JPAContainer#s. It provides a set of __make...()__ factory methods -for most cases that you will likely meet. Each factory method uses a different -type of entity provider, which are described in -<<dummy/../../../framework/jpacontainer/jpacontainer-entityprovider#jpacontainer.entityprovider,"Entity -Providers">>. - -The factory methods take the class type of the entity class as the first -parameter. The second parameter is either a persistence unit name (persistence -context) or an [classname]#EntityManager# instance. - - ----- -// Create a persistent person container -JPAContainer<Person> persons = - JPAContainerFactory.make(Person.class, "book-examples"); - -// You can add entities to the container as well -persons.addEntity(new Person("Marie-Louise Meilleur", 117)); - -// Set up sorting if the natural order is not appropriate -persons.sort(new String[]{"age", "name"}, - new boolean[]{false, false}); - -// Bind it to a component -Table personTable = new Table("The Persistent People", persons); -personTable.setVisibleColumns("id","name","age"); -layout.addComponent(personTable); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#jpacontainer.basic[on-line example, window="_blank"]. - -It's that easy. In fact, if you run the above code multiple times, you'll be -annoyed by getting a new set of persons for each run - that's how persistent the -container is. The basic [methodname]#make()# uses a -[classname]#CachedMutableLocalEntityProvider#, which allows modifying the -container and its entities, as we do above by adding new entities. - -When using just the persistence unit name, the factory creates an instance of -[classname]#EntityManagerFactory# for the persistence unit and uses it to build -entity managers. You can also create the entity managers yourself, as described -later. - -The entity providers associated with the different factory methods are as -follows: - -[[table.jpacontainer.usage.jpacontainerfactory]] -.[classname]#JPAContainerFactory# Methods - -|=============== -|[methodname]#make()#|[classname]#CachingMutableLocalEntityProvider# -|[methodname]#makeReadOnly()#|[classname]#CachingLocalEntityProvider# -|[methodname]#makeBatchable()#|[classname]#BatchableLocalEntityProvider# -|[methodname]#makeNonCached()#|[classname]#MutableLocalEntityProvider# -|[methodname]#makeNonCachedReadOnly()#|[classname]#LocalEntityProvider# - -|=============== - - - -[classname]#JPAContainerFactory# holds a cache of entity manager factories for -the different persistence units, making sure that any entity manager factory is -created only once, as it is a heavy operation. You can access the cache to get a -new entity manager with the -[methodname]#createEntityManagerForPersistenceUnit()# method. - - ----- -// Get an entity manager -EntityManager em = JPAContainerFactory. - createEntityManagerForPersistenceUnit("book-examples"); - -// Do a query -em.getTransaction().begin(); -em.createQuery("DELETE FROM Person p").executeUpdate(); -em.persist(new Person("Jeanne Calment", 122)); -em.persist(new Person("Sarah Knauss", 119)); -em.persist(new Person("Lucy Hannah", 117)); -em.getTransaction().commit(); - -... ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#jpacontainer.basic[on-line example, window="_blank"]. - -Notice that if you use update the persistent data with an entity manager outside -a [classname]#JPAContainer# bound to the data, you need to refresh the container -as described in <<jpacontainer.usage.entitites>>. - -[[jpacontainer.usage.jpacontainerfactory.thehardway]] -=== Creating [classname]#JPAContainer# Manually - -While it is normally easiest to use a [classname]#JPAContainerFactory# to create -[classname]#JPAContainer# instances, you may need to create them manually. It is -necessary, for example, when you need to use a custom entity provider or extend -[classname]#JPAContainer#. - -First, we need to create an entity manager and then the entity provider, which -we bind to a [classname]#JPAContainer#. - - ----- -// We need a factory to create entity manager -EntityManagerFactory emf = - Persistence.createEntityManagerFactory("book-examples"); - -// We need an entity manager to create entity provider -EntityManager em = emf.createEntityManager(); - -// We need an entity provider to create a container -CachingMutableLocalEntityProvider<Person> entityProvider = - new CachingMutableLocalEntityProvider<Person>(Person.class, - em); - -// And there we have it -JPAContainer<Person> persons = - new JPAContainer<Person> (Person.class); -persons.setEntityProvider(entityProvider); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#jpacontainer.thehardway[on-line example, window="_blank"]. - -You could save the first step by asking the entity manager from the -[classname]#JPAContainerFactory#. - - - -[[jpacontainer.usage.entitites]] -== Creating and Accessing Entities - -JPAContainer integrates with the JPA entity manager, which you would normally -use to create and access entities with JPA. You can use the entity manager for -any purposes you may have, and then [classname]#JPAContainer# to bind entities -to user interface components such as [classname]#Table#, [classname]#Tree#, any -selection components, or a [classname]#Form#. - -You can add new entities to a [classname]#JPAContainer# with the -[methodname]#addEntity()# method. It returns the item ID of the new entity. - - ----- -Country france = new Country("France"); -Object itemId = countries.addEntity(france); ----- - -The item ID used by [classname]#JPAContainer# is the value of the ID property -(column) defined with the [literal]#++@Id++# annotation. In our -[classname]#Country# entity, it would have [classname]#Long# type. It is -generated by the entity manager when the entity is persisted and set with the -setter for the ID proeprty. - -Notice that the [methodname]#addEntity()# method does __not__ attach the entity -instance given as the parameter. Instead, it creates a new instance. If you need -to use the entity for some purpose, you need to get the actual managed entity -from the container. You can get it with the item ID returned by -[methodname]#addEntity()#. - - ----- -// Create a new entity and add it to a container -Country france = new Country("France"); -Object itemId = countries.addEntity(france); - -// Get the managed entity -france = countries.getItem(itemId).getEntity(); - -// Use the managed entity in entity references -persons.addEntity(new Person("Jeanne Calment", 122, france)); ----- - -[[jpacontainer.usage.entitites.items]] -=== Entity Items - -The [methodname]#getItem()# method is defined in the normal Vaadin -[interfacename]#Container# interface. It returns an [classname]#EntityItem#, -which is a wrapper over the actual entity object. You can get the entity object -with [methodname]#getEntity()#. - -An [classname]#EntityItem# can have a number of states: persistent, modified, -dirty, and deleted. The dirty and deleted states are meaningful when using -__container buffering__, while the modified state is meaningful when using -__item buffering__. Both levels of buffering can be used together - user input -is first written to the item buffer, then to the entity instance, and finally to -the database. - -The [methodname]#isPersistent()# method tells if the item is actually -persistent, that is, fetched from a persistent storage, or if it is just a -transient entity created and buffered by the container. - -The [methodname]#isModified()# method checks whether the [classname]#EntityItem# -has changes that are not yet committed to the entity instance. It is only -relevant if the item buffering is enabled with [methodname]#setBuffered(true)# -for the item. - -The [methodname]#isDirty()# method checks whether the entity object has been -modified after it was fetched from the entity provider. The dirty state is -possible only when buffering is enabled for the container. - -The [methodname]#isDeleted()# method checks whether the item has been marked for -deletion with [methodname]#removeItem()# in a buffered container. - - -[[jpacontainer.usage.entitites.refreshing]] -=== Refreshing JPAContainer - -In cases where you change [classname]#JPAContainer# items outside the container, -for example by through an [interfacename]#EntityManager#, or when they change in -the database, you need to refresh the container. - -The [interfacename]#EntityContainer# interface implemented by -[classname]#JPAContainer# provides two methods to refresh a container. The -[methodname]#refresh()# discards all container caches and buffers and refreshes -all loaded items in the container. All changes made to items provided by the -container are discarded. The [methodname]#refreshItem()# refreshes a single -item. - - - -[[jpacontainer.usage.nested-properties]] -== Nested Properties - -If you have a one-to-one or many-to-one relationship, you can define the -properties of the referenced entity as __nested__ in a -[classname]#JPAContainer#. This way, you can access the properties directly -through the container of the first entity type as if they were its properties. -The interface is the same as with [classname]#BeanContainer# described in -<<dummy/../../../framework/datamodel/datamodel-container#datamodel.container.beancontainer,"BeanContainer">>. -You just need to add each nested property with -[methodname]#addNestedContainerProperty()# using dot-separated path to the -property. - - ----- -// Have a persistent container -JPAContainer<Person> persons = - JPAContainerFactory.make(Person.class, "book-examples"); - -// Add a nested property to a many-to-one property -persons.addNestedContainerProperty("country.name"); - -// Show the persons in a table, except the "country" column, -// which is an object - show the nested property instead -Table personTable = new Table("The Persistent People", persons); -personTable.setVisibleColumns("name", "age", "country.name"); - -// Have a nicer caption for the country.name column -personTable.setColumnHeader("country.name", "Nationality"); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#jpacontainer.nested[on-line example, window="_blank"]. - -The result is shown in <<figure.jpacontainer.usage.nested-properties>>. Notice -that the [literal]#++country++# property in the container remains after adding -the nested property, so we had to make that column invisible. Alternatively, we -could have redefined the [methodname]#toString()# method in the country object -to show the name instead of an object reference. - -[[figure.jpacontainer.usage.nested-properties]] -.Nested Properties -image::img/nested-properties.png[] - -You can use the [literal]#++*++# wildcard to add all properties in a nested -item, for example, " [literal]#++country.*++#". - - -[[jpacontainer.usage.hierarchical]] -== Hierarchical Container - -[classname]#JPAContainer# implements the [interfacename]#Container.Hierarchical# -interface and can be bound to hierarchical components such as a -[classname]#Tree# or [classname]#TreeTable#. The feature requires that the -hierarchy is represented with a __parent__ property that refers to the parent -item. At database level, this would be a column with IDs. - -The representation would be as follows: - - ----- -@Entity -public class CelestialBody implements Serializable { - @Id - @GeneratedValue(strategy = GenerationType.IDENTITY) - private Long id; - - private String name; - - @ManyToOne - private CelestialBody parent; - ... -} ... - -// Create some entities -CelestialBody sun = new CelestialBody("The Sun", null); -CelestialBody mercury = new CelestialBody("Mercury", sun); -CelestialBody venus = new CelestialBody("Venus", sun); -CelestialBody earth = new CelestialBody("Earth", sun); -CelestialBody moon = new CelestialBody("The Moon", earth); -CelestialBody mars = new CelestialBody("Mars", sun); -... ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#jpacontainer.hierarchical[on-line example, window="_blank"]. - -You set up a [classname]#JPAContainer# to have hierarchy by calling -[methodname]#setParentProperty()# with the name of the property that refers to -the parent. Coincidentally, it is named " [literal]#++parent++#" in the example: - - ----- -// Create the container -JPAContainer<CelestialBody> bodies = - JPAContainerFactory.make(CelestialBody.class, "my-unit"); - -// Set it up for hierarchical representation -bodies.setParentProperty("parent"); - -// Bind it to a hierarhical component -Tree tree = new Tree("Celestial Bodies", bodies); -tree.setItemCaptionMode(Tree.ITEM_CAPTION_MODE_PROPERTY); -tree.setItemCaptionPropertyId("name"); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#jpacontainer.hierarchical[on-line example, window="_blank"]. - -You can use the [methodname]#rootItemIds()# to acquire the item IDs of the root -elements with no parent. - - ----- -// Expand the tree -for (Object rootId: bodies.rootItemIds()) - tree.expandItemsRecursively(rootId); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#jpacontainer.hierarchical[on-line example, window="_blank"]. - -[[jpacontainer.usage.hierarchical.unsupported]] -=== Unsupported Hierarchical Features - -Using [methodname]#setParent()# in the container to define parenthood is not -supported. - -Also, the current implementation does not support __setChildrenAllowed()__, -which controls whether the user can expand a node by clicking a toggle. The -toggle is by default visible for all nodes, even if they have no children. The -method is not supported because it would require storing the information outside -the entities. You can override [methodname]#areChildrenAllowed()# to implement -the functionality using a custom logic. - - ----- -// Customize JPAContainer to define the logic for -// displaying the node expansion indicator -JPAContainer<CelestialBody> bodies = - new JPAContainer<CelestialBody>(CelestialBody.class) { - @Override - public boolean areChildrenAllowed(Object itemId) { - // Some simple logic - return getChildren(itemId).size() > 0; - } -}; -bodies.setEntityProvider( - new CachingLocalEntityProvider<CelestialBody>( - CelestialBody.class, em)); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#jpacontainer.hierarchical[on-line example, window="_blank"]. - - - - - diff --git a/documentation/jpacontainer/original-drawings/detailed-architecture-web.svg b/documentation/jpacontainer/original-drawings/detailed-architecture-web.svg deleted file mode 100644 index f033114a86..0000000000 --- a/documentation/jpacontainer/original-drawings/detailed-architecture-web.svg +++ /dev/null @@ -1,1165 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<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"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="detailed-architecture.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="300.01001"
- inkscape:export-ydpi="300.01001"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#000000"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="1"
- inkscape:pageshadow="2"
- inkscape:zoom="2.4"
- inkscape:cx="283.98078"
- inkscape:cy="818.03558"
- inkscape:document-units="mm"
- inkscape:current-layer="g7762-4-7-0-8"
- showgrid="true"
- inkscape:window-width="1680"
- inkscape:window-height="1027"
- inkscape:window-x="-4"
- inkscape:window-y="-4"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="true"
- inkscape:window-maximized="1"
- borderlayer="false"
- showguides="true"
- inkscape:guide-bbox="true">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false"
- snapvisiblegridlinesonly="true" />
- <sodipodi:guide
- orientation="1,0"
- position="301.1811,924.80315"
- id="guide4415" />
- <sodipodi:guide
- orientation="1,0"
- position="478.34646,995.66929"
- id="guide4503" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuNS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuNS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1pt;fill:#49c2f1"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5020" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuNSX"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuNSX">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1pt;fill:#49c2f1"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5565" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN4"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN4">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1pt;fill:#49c2f1"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5568" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuNSX-5"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuNSX">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path5565-5" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN4-0"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN4">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path5568-1" />
- </marker>
- <marker
- id="marker18095-5"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-7"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-9"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-1"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-8"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-4"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-0"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-9"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-9"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-09"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-3"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-1"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-8"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-7"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-16"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-1"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-9"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-4"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-6"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-07"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-36"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- </defs>
- <metadata
- id="metadata2480">
- <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">
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="translate(-3.5714286,23.214286)"
- id="g3178" />
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <g
- transform="matrix(0.5,0,0,0.5,103.34299,0.7940752)"
- id="g18053" />
- <g
- transform="translate(17.716536,30.629919)"
- id="g7762-4">
- <rect
- ry="3.5433073"
- y="60.236198"
- x="106.29921"
- height="33.647148"
- width="353.4187"
- id="rect3822-3-8-1-4-7"
- style="fill:#49c2f1;fill-opacity:1;stroke:none;stroke-width:3.00001287;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(-142.77617,-83.381937)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4-6"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46-5"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="24.626196"
- width="126.83217"
- id="rect4154-5-0-6" /></flowRegion><flowPara
- id="flowPara4160-60-5-9">Vaadin UI</flowPara></flowRoot> <g
- id="g5611-3-7-7"
- transform="matrix(0,-1,-1,0,432.28344,228.03148)">
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path5607-1-7-6"
- d="m 131.10236,315.35431 c 21.25984,0 10.62992,0 10.62992,0"
- style="fill:none;stroke:#000000;stroke-width:2.48031497;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- sodipodi:nodetypes="ccc"
- inkscape:connector-curvature="0"
- id="path5609-2-9-01"
- d="m 138.18898,311.811 3.5433,3.54331 -3.5433,3.54331"
- style="fill:none;stroke:#000000;stroke-width:2.48031497;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- </g>
- <g
- id="g5611-3-7-7-2"
- transform="matrix(0,-1,-1,0,609.4488,228.03147)">
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path5607-1-7-6-1"
- d="m 131.10236,315.35431 c 21.25984,0 10.62992,0 10.62992,0"
- style="fill:none;stroke:#000000;stroke-width:2.48031497;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- sodipodi:nodetypes="ccc"
- inkscape:connector-curvature="0"
- id="path5609-2-9-01-3"
- d="m 138.18898,311.811 3.5433,3.54331 -3.5433,3.54331"
- style="fill:none;stroke:#000000;stroke-width:2.48031497;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- </g>
- </g>
- <g
- transform="translate(17.716538,70.866142)"
- id="g7762-4-7">
- <rect
- ry="3.7880719"
- y="60.236198"
- x="106.29921"
- height="53.149605"
- width="173.62206"
- id="rect3822-3-8-1-4-7-7"
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3.00001287;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(-142.77617,-83.381937)"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4-6-5"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46-5-4"><rect
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="65.812325"
- width="146.17204"
- id="rect4154-5-0-6-8" /></flowRegion><flowPara
- id="flowPara4160-60-5-9-1">Vaadin JPAContainer</flowPara></flowRoot> <g
- id="g5611-3-7-7-2-1"
- transform="matrix(-1,0,0,1,414.56693,-248.0315)">
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path5607-1-7-6-1-2"
- d="m 131.10236,315.35431 c 21.25984,0 10.62992,0 10.62992,0"
- style="fill:none;stroke:#000000;stroke-width:2.48031497;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- sodipodi:nodetypes="ccc"
- inkscape:connector-curvature="0"
- id="path5609-2-9-01-3-4"
- d="m 138.18898,311.811 3.5433,3.54331 -3.5433,3.54331"
- style="fill:none;stroke:#000000;stroke-width:2.48031497;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- </g>
- </g>
- <g
- transform="translate(17.716538,131.10235)"
- id="g7762-4-7-0-2">
- <rect
- ry="3.7880719"
- y="60.236198"
- x="106.29921"
- height="35.433075"
- width="354.33072"
- id="rect3822-3-8-1-4-7-7-6-2"
- style="fill:#464646;fill-opacity:1;stroke:none;stroke-width:3.00001287;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(-142.66415,-80.090961)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4-6-5-4-2"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46-5-4-7-7"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="20.285051"
- width="219.66949"
- id="rect4154-5-0-6-8-4-0" /></flowRegion><flowPara
- id="flowPara4160-60-5-9-1-8-3">Entity Beans</flowPara></flowRoot> <g
- id="g5611-3-7"
- transform="matrix(0,1,-1,0,432.28346,-74.409466)">
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path5607-1-7"
- d="m 131.10236,315.35431 c 21.25984,0 10.62992,0 10.62992,0"
- style="fill:none;stroke:#000000;stroke-width:2.48031497;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- sodipodi:nodetypes="ccc"
- inkscape:connector-curvature="0"
- id="path5609-2-9"
- d="m 138.18898,311.811 3.5433,3.54331 -3.5433,3.54331"
- style="fill:none;stroke:#000000;stroke-width:2.48031497;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- </g>
- <g
- id="g5611-3-7-8"
- transform="matrix(0,1,-1,0,609.4488,-74.409466)">
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path5607-1-7-1"
- d="m 131.10236,315.35431 c 21.25984,0 10.62992,0 10.62992,0"
- style="fill:none;stroke:#000000;stroke-width:2.48031497;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- sodipodi:nodetypes="ccc"
- inkscape:connector-curvature="0"
- id="path5609-2-9-0"
- d="m 138.18898,311.811 3.5433,3.54331 -3.5433,3.54331"
- style="fill:none;stroke:#000000;stroke-width:2.48031497;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- </g>
- </g>
- <g
- transform="translate(17.536534,173.90542)"
- id="g7762-4-7-0-2-4">
- <rect
- ry="3.7880719"
- y="60.236198"
- x="106.29921"
- height="35.149689"
- width="354.51071"
- id="rect3822-3-8-1-4-7-7-6-2-4"
- style="fill:#696969;fill-opacity:1;stroke:none;stroke-width:3.00001287;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(-142.44415,-80.414346)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4-6-5-4-2-3"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46-5-4-7-7-9"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="23.584976"
- width="248.77592"
- id="rect4154-5-0-6-8-4-0-7" /></flowRegion><flowPara
- id="flowPara4160-60-5-9-1-8-3-2">JPA 2.0 Implementation (JSR 317)</flowPara></flowRoot> <g
- id="g5611-3"
- transform="matrix(0,1,-1,0,432.46347,-74.692851)">
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path5607-1"
- d="m 131.10236,315.35431 c 21.25984,0 10.62992,0 10.62992,0"
- style="fill:none;stroke:#000000;stroke-width:2.48031497;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- sodipodi:nodetypes="ccc"
- inkscape:connector-curvature="0"
- id="path5609-2"
- d="m 138.18898,311.811 3.5433,3.54331 -3.5433,3.54331"
- style="fill:none;stroke:#000000;stroke-width:2.48031497;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- </g>
- </g>
- <g
- transform="translate(17.716538,216.14172)"
- id="g7762-4-7-0-2-4-4">
- <rect
- ry="3.7880719"
- y="60.236198"
- x="106.29921"
- height="35.433075"
- width="354.33072"
- id="rect3822-3-8-1-4-7-7-6-2-4-7"
- style="fill:#898989;fill-opacity:1;stroke:none;stroke-width:3.00001287;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(-142.62415,-80.130961)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4-6-5-4-2-3-6"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46-5-4-7-7-9-5"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="24.626196"
- width="126.83217"
- id="rect4154-5-0-6-8-4-0-7-7" /></flowRegion><flowPara
- id="flowPara4160-60-5-9-1-8-3-2-1">Database</flowPara></flowRoot> <g
- id="g5611"
- transform="matrix(0,1,-1,0,432.28347,-74.409465)">
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path5607"
- d="m 131.10236,315.35431 c 21.25984,0 10.62992,0 10.62992,0"
- style="fill:none;stroke:#000000;stroke-width:2.48031497;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- sodipodi:nodetypes="ccc"
- inkscape:connector-curvature="0"
- id="path5609"
- d="m 138.18898,311.811 3.5433,3.54331 -3.5433,3.54331"
- style="fill:none;stroke:#000000;stroke-width:2.48031497;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- </g>
- </g>
- <g
- transform="translate(198.4252,70.866142)"
- id="g7762-4-7-0-8">
- <rect
- ry="3.7880719"
- y="60.236198"
- x="106.29921"
- height="53.149605"
- width="173.62206"
- id="rect3822-3-8-1-4-7-7-6-7"
- style="fill:#272727;fill-opacity:1;stroke:#272727;stroke-width:1.77165353;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(-142.04418,-83.634269)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr;text-anchor:start;fill:#8a8a8a;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4-6-5-4-6"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46-5-4-7-3"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#8a8a8a;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="41.261509"
- width="152.52666"
- id="rect4154-5-0-6-8-4-5" /></flowRegion><flowPara
- id="flowPara4160-60-5-9-1-8-0">Vaadin Bean Validation</flowPara><flowPara
- id="flowPara5785">(JSR 303)</flowPara></flowRoot> </g>
- </g>
-</svg>
diff --git a/documentation/jpacontainer/original-drawings/detailed-architecture.svg b/documentation/jpacontainer/original-drawings/detailed-architecture.svg deleted file mode 100644 index 8272df4f82..0000000000 --- a/documentation/jpacontainer/original-drawings/detailed-architecture.svg +++ /dev/null @@ -1,1088 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<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"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="detailed-architecture.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="300.01001"
- inkscape:export-ydpi="300.01001"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.6970563"
- inkscape:cx="387.41885"
- inkscape:cy="840.10526"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1920"
- inkscape:window-height="1060"
- inkscape:window-x="-4"
- inkscape:window-y="-3"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="true"
- inkscape:window-maximized="1"
- borderlayer="false"
- showguides="true"
- inkscape:guide-bbox="true">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false"
- snapvisiblegridlinesonly="true" />
- <sodipodi:guide
- orientation="1,0"
- position="301.1811,924.80315"
- id="guide4415" />
- <sodipodi:guide
- orientation="1,0"
- position="478.34646,995.66929"
- id="guide4503" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuNS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuNS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1pt;fill:#49c2f1"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5020" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuNSX"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuNSX">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1pt;fill:#49c2f1"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5565" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN4"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN4">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1pt;fill:#49c2f1"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5568" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuNSX-5"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuNSX">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path5565-5" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN4-0"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN4">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path5568-1" />
- </marker>
- <marker
- id="marker18095-5"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-7"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-9"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-1"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-8"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-4"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-0"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-9"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-9"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-09"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-3"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-1"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-8"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-7"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-16"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-1"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-9"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-4"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-6"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-07"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-36"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- </defs>
- <metadata
- id="metadata2480">
- <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">
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="translate(-3.5714286,23.214286)"
- id="g3178" />
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <g
- transform="matrix(0.5,0,0,0.5,103.34299,0.7940752)"
- id="g18053" />
- <g
- transform="translate(17.716536,30.629919)"
- id="g7762-4">
- <rect
- ry="3.5433073"
- y="60.236198"
- x="106.29921"
- height="33.647148"
- width="353.4187"
- id="rect3822-3-8-1-4-7"
- style="fill:#49c2f1;fill-opacity:1;stroke:none;stroke-width:3.00001287;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(-142.77617,-83.381937)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4-6"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46-5"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="24.626196"
- width="126.83217"
- id="rect4154-5-0-6" /></flowRegion><flowPara
- id="flowPara4160-60-5-9">Vaadin UI</flowPara></flowRoot> <path
- inkscape:connector-curvature="0"
- d="m 120.47244,89.8425 -3.54331,-3.5433 -3.54331,3.5433 m 3.54331,7.08662 c 0,-21.25984 0,-10.62992 0,-10.62992"
- style="fill:none;stroke:#ffffff;stroke-width:2.48031496999999979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="path5609-2-9-01" />
- <path
- inkscape:connector-curvature="0"
- d="m 297.63779,89.8425 -3.54332,-3.5433 -3.54331,3.5433 m 3.54331,7.086619 c 0,-21.259839 0,-10.629919 0,-10.629919"
- style="fill:none;stroke:#ffffff;stroke-width:2.48031497;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="path5609-2-9-01-1" />
- </g>
- <g
- transform="translate(17.716538,70.866142)"
- id="g7762-4-7">
- <rect
- ry="3.7880719"
- y="60.236198"
- x="106.29921"
- height="53.149605"
- width="173.62206"
- id="rect3822-3-8-1-4-7-7"
- style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.00001286999999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(-142.77617,-83.381937)"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4-6-5"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46-5-4"><rect
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="65.812325"
- width="146.17204"
- id="rect4154-5-0-6-8" /></flowRegion><flowPara
- id="flowPara4160-60-5-9-1">Vaadin JPAContainer</flowPara></flowRoot> <path
- inkscape:connector-curvature="0"
- d="m 276.37794,63.779492 -3.5433,3.54332 3.5433,3.54331 m 7.08661,-3.54331 c -21.25983,0 -10.62991,0 -10.62991,0"
- style="fill:none;stroke:#ffffff;stroke-width:2.48031497;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="path5609-2-9-01-1-0" />
- </g>
- <g
- transform="translate(17.716538,131.10235)"
- id="g7762-4-7-0-2">
- <rect
- ry="3.7880719"
- y="60.236198"
- x="106.29921"
- height="35.433075"
- width="354.33072"
- id="rect3822-3-8-1-4-7-7-6-2"
- style="fill:#464646;fill-opacity:1;stroke:none;stroke-width:3.00001287;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(-142.66415,-80.090961)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4-6-5-4-2"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46-5-4-7-7"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="20.285051"
- width="219.66949"
- id="rect4154-5-0-6-8-4-0" /></flowRegion><flowPara
- id="flowPara4160-60-5-9-1-8-3">Entity Beans</flowPara></flowRoot> <path
- inkscape:connector-curvature="0"
- d="m 297.63781,63.779525 -3.54332,3.5433 -3.54331,-3.5433 m 3.54331,-7.08662 c 0,21.25984 0,10.62992 0,10.62992"
- style="fill:none;stroke:#ffffff;stroke-width:2.48031497;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="path5609-2-9-01-1-4" />
- <path
- inkscape:connector-curvature="0"
- d="m 120.47245,63.779525 -3.54332,3.5433 -3.54331,-3.5433 m 3.54331,-7.08662 c 0,21.25984 0,10.62992 0,10.62992"
- style="fill:none;stroke:#ffffff;stroke-width:2.48031497;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="path5609-2-9-01-1-4-0" />
- </g>
- <g
- transform="translate(17.536534,173.90542)"
- id="g7762-4-7-0-2-4">
- <rect
- ry="3.7880719"
- y="60.236198"
- x="106.29921"
- height="35.149689"
- width="354.51071"
- id="rect3822-3-8-1-4-7-7-6-2-4"
- style="fill:#696969;fill-opacity:1;stroke:none;stroke-width:3.00001287;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(-142.44415,-80.414346)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4-6-5-4-2-3"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46-5-4-7-7-9"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="23.584976"
- width="248.77592"
- id="rect4154-5-0-6-8-4-0-7" /></flowRegion><flowPara
- id="flowPara4160-60-5-9-1-8-3-2">JPA 2.0 Implementation (JSR 317)</flowPara></flowRoot> <path
- inkscape:connector-curvature="0"
- d="m 120.65246,63.49614 -3.54332,3.5433 -3.54331,-3.5433 m 3.54331,-7.08662 c 0,21.25984 0,10.62992 0,10.62992"
- style="fill:none;stroke:#ffffff;stroke-width:2.48031497;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="path5609-2-9-01-1-4-9" />
- </g>
- <g
- transform="translate(17.716538,216.14172)"
- id="g7762-4-7-0-2-4-4">
- <rect
- ry="3.7880719"
- y="60.236198"
- x="106.29921"
- height="35.433075"
- width="354.33072"
- id="rect3822-3-8-1-4-7-7-6-2-4-7"
- style="fill:#898989;fill-opacity:1;stroke:none;stroke-width:3.00001287;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(-142.62415,-80.130961)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4-6-5-4-2-3-6"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46-5-4-7-7-9-5"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="24.626196"
- width="126.83217"
- id="rect4154-5-0-6-8-4-0-7-7" /></flowRegion><flowPara
- id="flowPara4160-60-5-9-1-8-3-2-1">Database</flowPara></flowRoot> <path
- inkscape:connector-curvature="0"
- d="m 120.47245,63.779525 -3.54332,3.5433 -3.54331,-3.5433 m 3.54331,-7.08662 c 0,21.25984 0,10.62992 0,10.62992"
- style="fill:none;stroke:#ffffff;stroke-width:2.48031497;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="path5609-2-9-01-1-4-3" />
- </g>
- <g
- transform="translate(198.4252,70.866142)"
- id="g7762-4-7-0-8">
- <rect
- ry="3.7880719"
- y="60.236198"
- x="106.29921"
- height="53.149605"
- width="173.62206"
- id="rect3822-3-8-1-4-7-7-6-7"
- style="fill:#272727;fill-opacity:1;stroke:#272727;stroke-width:1.77165353;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(-142.04418,-83.634269)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr;text-anchor:start;fill:#8a8a8a;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4-6-5-4-6"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46-5-4-7-3"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#8a8a8a;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="41.261509"
- width="152.52666"
- id="rect4154-5-0-6-8-4-5" /></flowRegion><flowPara
- id="flowPara4160-60-5-9-1-8-0">Vaadin Bean Validation</flowPara><flowPara
- id="flowPara5785">(JSR 303)</flowPara></flowRoot> </g>
- </g>
-</svg>
diff --git a/documentation/jpacontainer/original-drawings/domain-model.svg b/documentation/jpacontainer/original-drawings/domain-model.svg deleted file mode 100644 index 29164b9f89..0000000000 --- a/documentation/jpacontainer/original-drawings/domain-model.svg +++ /dev/null @@ -1,938 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<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"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="domain-model.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="300.01001"
- inkscape:export-ydpi="300.01001"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="3.3941125"
- inkscape:cx="447.08547"
- inkscape:cy="609.40826"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1920"
- inkscape:window-height="1060"
- inkscape:window-x="-4"
- inkscape:window-y="-3"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="true"
- inkscape:window-maximized="1">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuNS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuNS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1pt;fill:#49c2f1"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5020" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuNSX"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuNSX">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1pt;fill:#49c2f1"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5565" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN4"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN4">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1pt;fill:#49c2f1"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5568" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuNSX-5"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuNSX">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path5565-5" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN4-0"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN4">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path5568-1" />
- </marker>
- </defs>
- <metadata
- id="metadata2480">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1">
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="translate(-3.5714286,23.214286)"
- id="g3178" />
- <g
- transform="translate(287.00786,159.44882)"
- id="g3820">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3822"
- width="99.212593"
- height="56.692913"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3824"
- transform="translate(20.586428,253.63916)"><flowRegion
- id="flowRegion3826" /><flowPara
- id="flowPara3830">Country</flowPara></flowRoot> <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- x="21.095966"
- y="269.65045"
- id="text84151"
- sodipodi:linespacing="125%"
- inkscape:transform-center-x="7.0447343"
- inkscape:transform-center-y="1.4910516"><tspan
- sodipodi:role="line"
- id="tspan84153"
- x="21.095966"
- y="269.65045">id : Long</tspan><tspan
- sodipodi:role="line"
- x="21.095966"
- y="282.15045"
- id="tspan3271">name : String</tspan></text>
- </g>
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <g
- transform="matrix(0.5,0,0,0.5,103.34299,0.7940752)"
- id="g18053" />
- <g
- transform="translate(464.17321,159.44882)"
- id="g3820-6">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3822-3"
- width="95.669289"
- height="67.322838"
- x="14.173247"
- y="237.40155"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot3824-6"
- transform="translate(20.586428,253.57675)"><flowRegion
- id="flowRegion3826-8" /><flowPara
- id="flowPara3830-4">Person</flowPara></flowRoot> <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- x="24.803171"
- y="269.29132"
- id="text84151-6"
- sodipodi:linespacing="125%"
- inkscape:transform-center-x="7.0447348"
- inkscape:transform-center-y="1.4910597"><tspan
- sodipodi:role="line"
- id="tspan84153-6"
- x="24.803171"
- y="269.29132">id : Long</tspan><tspan
- sodipodi:role="line"
- x="24.803171"
- y="281.79132"
- id="tspan3316">name : String</tspan><tspan
- sodipodi:role="line"
- x="24.803171"
- y="294.29132"
- id="tspan3328">age : Integer</tspan></text>
- </g>
- <g
- id="g5797"
- transform="translate(0,1.7716289)">
- <path
- transform="matrix(1.2499999,0,0,1.2499999,-108.95668,-114.27159)"
- sodipodi:open="true"
- sodipodi:end="6.2827149"
- sodipodi:start="0"
- d="m 414.56693,428.74014 c 0,3.91383 -3.17278,7.08662 -7.08661,7.08662 -3.91383,0 -7.08662,-3.17279 -7.08662,-7.08662 0,-3.91383 3.17279,-7.08661 7.08662,-7.08661 3.91252,0 7.08477,3.17075 7.08661,7.08328"
- sodipodi:ry="7.0866141"
- sodipodi:rx="7.0866141"
- sodipodi:cy="428.74014"
- sodipodi:cx="407.48032"
- id="path5752"
- style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- sodipodi:type="arc" />
- <path
- transform="matrix(1.2499999,0,0,1.2499999,-31.003898,-114.27159)"
- sodipodi:open="true"
- sodipodi:end="6.2827149"
- sodipodi:start="0"
- d="m 414.56693,428.74014 c 0,3.91383 -3.17278,7.08662 -7.08661,7.08662 -3.91383,0 -7.08662,-3.17279 -7.08662,-7.08662 0,-3.91383 3.17279,-7.08661 7.08662,-7.08661 3.91252,0 7.08477,3.17075 7.08661,7.08328"
- sodipodi:ry="7.0866141"
- sodipodi:rx="7.0866141"
- sodipodi:cy="428.74014"
- sodipodi:cx="407.48032"
- id="path5752-0"
- style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- sodipodi:type="arc" />
- <path
- inkscape:connector-curvature="0"
- id="path3375"
- d="m 478.34646,421.65352 -77.95276,0"
- style="fill:none;stroke:#49c2f1;stroke-width:5.31496048;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#DotSuNSX);marker-end:url(#DotSuN4)"
- sodipodi:nodetypes="cc" />
- </g>
- <text
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- x="402.35632"
- y="414.56689"
- id="text84151-4"
- sodipodi:linespacing="125%"
- inkscape:transform-center-x="7.0447431"
- inkscape:transform-center-y="1.4910516"><tspan
- sodipodi:role="line"
- x="402.35632"
- y="414.56689"
- id="tspan3271-2">1</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- x="468.04114"
- y="414.56689"
- id="text84151-4-0"
- sodipodi:linespacing="125%"
- inkscape:transform-center-x="7.0447343"
- inkscape:transform-center-y="1.4910516"><tspan
- sodipodi:role="line"
- x="468.04114"
- y="414.56689"
- id="tspan3271-2-4">n</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- x="432.50925"
- y="437.64047"
- id="text84151-4-4-7-2"
- sodipodi:linespacing="125%"
- inkscape:transform-center-x="7.0447343"
- inkscape:transform-center-y="1.4910516"><tspan
- sodipodi:role="line"
- x="432.50925"
- y="437.64047"
- id="tspan3271-2-9-1-2">+persons</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- x="402.54776"
- y="400.80167"
- id="text84151-4-4-7-2-7"
- sodipodi:linespacing="125%"
- inkscape:transform-center-x="7.0447343"
- inkscape:transform-center-y="1.4910516"><tspan
- sodipodi:role="line"
- x="402.54776"
- y="400.80167"
- id="tspan3271-2-9-1-2-7">+country</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- x="426.82224"
- y="416.52689"
- id="text84151-4-4-7-2-7-9"
- sodipodi:linespacing="125%"
- inkscape:transform-center-x="7.0447343"
- inkscape:transform-center-y="1.4910516"><tspan
- sodipodi:role="line"
- x="426.82224"
- y="416.52689"
- id="tspan3271-2-9-1-2-7-1">«has»</tspan></text>
- </g>
-</svg>
diff --git a/documentation/jpacontainer/original-drawings/jpa-mapping-graphic.svg b/documentation/jpacontainer/original-drawings/jpa-mapping-graphic.svg deleted file mode 100644 index 39f826ee30..0000000000 --- a/documentation/jpacontainer/original-drawings/jpa-mapping-graphic.svg +++ /dev/null @@ -1,1504 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<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"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="jpa-mapping-graphic.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="300.01001"
- inkscape:export-ydpi="300.01001"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="2.4"
- inkscape:cx="304.49234"
- inkscape:cy="905.93199"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1680"
- inkscape:window-height="1027"
- inkscape:window-x="-4"
- inkscape:window-y="-4"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="true"
- inkscape:window-maximized="1">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuNS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuNS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1pt;fill:#49c2f1"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5020" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuNSX"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuNSX">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1pt;fill:#49c2f1"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5565" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN4"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN4">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1pt;fill:#49c2f1"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5568" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuNSX-5"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuNSX">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path5565-5" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN4-0"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN4">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path5568-1" />
- </marker>
- <marker
- id="marker18095-5"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-7"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-9"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-1"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-8"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-4"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-0"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-9"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-9"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-09"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-3"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-1"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-8"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-7"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-16"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-1"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-9"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-4"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-6"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-07"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-36"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuNSX-9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuNSX">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path5565-7" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN4-7"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN4">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path5568-6" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker3755"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN4">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path3757" />
- </marker>
- <marker
- id="marker52016-8"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-4"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-8"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-1"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuNSX-55"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuNSX">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path5565-2" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN4-9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN4">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path5568-0" />
- </marker>
- <marker
- id="marker52016-7"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-3"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- </defs>
- <metadata
- id="metadata2480">
- <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">
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="translate(-3.5714286,23.214286)"
- id="g3178" />
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <g
- transform="matrix(0.5,0,0,0.5,103.34299,0.7940752)"
- id="g18053" />
- <g
- id="g7749"
- transform="translate(-187.79528,14.173227)">
- <rect
- ry="3.7880721"
- y="60.236198"
- x="265.74802"
- height="198.4252"
- width="134.64569"
- id="rect3822-3-8-1"
- style="fill:none;stroke:#49c2f1;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(16.672646,-83.381937)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4-4"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46-4"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="24.626196"
- width="126.83217"
- id="rect4154-5-0-2" /></flowRegion><flowPara
- id="flowPara4160-60-5-4">Domain Entities</flowPara></flowRoot> </g>
- <g
- id="g7734"
- transform="translate(-187.79526,12.673228)">
- <rect
- ry="3.7880721"
- y="61.736198"
- x="425.19684"
- height="196.9252"
- width="152.36223"
- id="rect3822-3-8-1-3"
- style="fill:none;stroke:#00d800;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(176.12147,-83.381937)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4-4-4"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46-4-9"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="24.626196"
- width="126.83217"
- id="rect4154-5-0-2-8" /></flowRegion><flowPara
- id="flowPara4160-60-5-4-4">Data Access Layer</flowPara></flowRoot> <text
- inkscape:transform-center-y="1.4910597"
- inkscape:transform-center-x="7.0447348"
- sodipodi:linespacing="125%"
- id="text84151-6-5-6-4"
- y="99.212578"
- x="435.82678"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- id="tspan7585-0"
- y="99.212578"
- x="435.82678"
- sodipodi:role="line">CREATE TABLE Country (</tspan><tspan
- id="tspan7722"
- y="111.71258"
- x="435.82678"
- sodipodi:role="line"> id INTEGER PRIMARY KEY,</tspan><tspan
- id="tspan7724"
- y="124.21258"
- x="435.82678"
- sodipodi:role="line"> name VARCHAR(20)</tspan><tspan
- id="tspan7732"
- y="136.71257"
- x="435.82678"
- sodipodi:role="line">)</tspan><tspan
- y="149.21257"
- x="435.82678"
- sodipodi:role="line"
- id="tspan3987">CREATE TABLE Person (</tspan><tspan
- y="161.71257"
- x="435.82678"
- sodipodi:role="line"
- id="tspan3989"> id INTEGER PRIMARY KEY,</tspan><tspan
- y="174.21257"
- x="435.82678"
- sodipodi:role="line"
- id="tspan3995"> country INTEGER,</tspan><tspan
- y="186.71257"
- x="435.82678"
- sodipodi:role="line"
- id="tspan3997"> name VARCHAR(20),</tspan><tspan
- y="199.21257"
- x="435.82678"
- sodipodi:role="line"
- id="tspan4001"> age INTEGER</tspan><tspan
- y="211.71257"
- x="435.82678"
- sodipodi:role="line"
- id="tspan3993">)</tspan><tspan
- y="224.21257"
- x="435.82678"
- sodipodi:role="line"
- id="tspan5470">INSERT INTO ...</tspan></text>
- </g>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:3.54330707;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095)"
- d="m 212.59842,248.03148 24.80315,0"
- id="path8208"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#00d800;stroke-width:3.54330707;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016)"
- d="m 237.40157,99.212575 -24.80315,0"
- id="path8208-1-5"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <flowRoot
- transform="translate(-301.1811,-106.29922)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485-7"
- xml:space="preserve"><flowRegion
- id="flowRegion2487-3"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489-6" /></flowRegion><flowPara
- id="flowPara2491-5" /></flowRoot> <g
- transform="translate(-304.75253,-83.08493)"
- id="g3178-6" />
- <flowRoot
- transform="translate(-301.1811,-106.29922)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724-3"
- xml:space="preserve"><flowRegion
- id="flowRegion8726-9"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728-4" /></flowRegion><flowPara
- id="flowPara8730-8" /></flowRoot> <g
- transform="matrix(0.5,0,0,0.5,-197.83811,-105.50514)"
- id="g18053-1" />
- <g
- id="g7734-3"
- transform="translate(-6.7346151,16.072536)">
- <rect
- ry="3.7880721"
- y="58.336891"
- x="421.30154"
- height="194.88188"
- width="152.3622"
- id="rect3822-3-8-1-3-0"
- style="fill:none;stroke:#00b500;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(172.22616,-85.329245)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4-4-4-4"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46-4-9-4"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="24.626196"
- width="126.83217"
- id="rect4154-5-0-2-8-4" /></flowRegion><flowPara
- id="flowPara4160-60-5-4-4-4">Database</flowPara></flowRoot> <g
- id="g5787"
- transform="translate(-6.526603,-0.11339051)">
- <rect
- ry="0"
- y="168.2928"
- x="442.00137"
- height="70.866142"
- width="127.55905"
- id="rect5308-4"
- style="fill:#e6e6e6;fill-opacity:1;stroke:#00d800;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- x="445.08475"
- y="178.78271"
- id="text84151-6-5-6-4-1"
- sodipodi:linespacing="125%"
- inkscape:transform-center-x="7.0447348"
- inkscape:transform-center-y="1.4910597"><tspan
- id="tspan5470-6"
- sodipodi:role="line"
- x="445.08475"
- y="178.78271">id</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- x="458.93793"
- y="178.78271"
- id="text84151-6-5-6-4-1-4"
- sodipodi:linespacing="125%"
- inkscape:transform-center-x="7.0447348"
- inkscape:transform-center-y="1.4910597"><tspan
- id="tspan5470-6-1"
- sodipodi:role="line"
- x="458.93793"
- y="178.78271">country</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- x="498.69427"
- y="178.92273"
- id="text84151-6-5-6-4-1-4-2"
- sodipodi:linespacing="125%"
- inkscape:transform-center-x="7.0447348"
- inkscape:transform-center-y="1.4910597"><tspan
- id="tspan5470-6-1-8"
- sodipodi:role="line"
- x="498.69427"
- y="178.92273">name</tspan></text>
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- x="536.86066"
- y="178.78271"
- id="text84151-6-5-6-4-1-4-2-8"
- sodipodi:linespacing="125%"
- inkscape:transform-center-x="7.0447348"
- inkscape:transform-center-y="1.4910597"><tspan
- id="tspan5470-6-1-8-9"
- sodipodi:role="line"
- x="536.86066"
- y="178.78271">age</tspan></text>
- <path
- inkscape:connector-curvature="0"
- id="path5472"
- d="m 456.17464,168.29279 0,70.86614"
- style="color:#000000;fill:none;stroke:#00d800;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- inkscape:connector-curvature="0"
- id="path5472-4"
- d="m 495.15098,168.2928 0,70.86614"
- style="fill:none;stroke:#00d800;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- id="path5472-3"
- d="m 534.12736,168.2928 0,70.86614"
- style="fill:none;stroke:#00d800;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path5472-5"
- d="m 569.56043,182.46603 -127.55902,-2e-5"
- style="fill:none;stroke:#00d800;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- <g
- id="g5805"
- transform="translate(6.7346125,-19.615843)">
- <rect
- ry="0"
- y="90.340034"
- x="442.0014"
- height="70.866142"
- width="127.55905"
- id="rect5308"
- style="fill:#e6e6e6;fill-opacity:1;stroke:#00d800;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- transform="translate(-13.261246,15.959156)" />
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- x="459.15793"
- y="101.08334"
- id="text84151-6-5-6-4-1-4-3"
- sodipodi:linespacing="125%"
- inkscape:transform-center-x="7.0447348"
- inkscape:transform-center-y="1.4910597"
- transform="translate(-13.261246,15.959156)"><tspan
- id="tspan5470-6-1-83"
- sodipodi:role="line"
- x="459.15793"
- y="101.08334">name</tspan></text>
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path5472-2"
- d="m 442.91339,106.29919 0,70.86614"
- style="color:#000000;fill:none;stroke:#00d800;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path5472-5-8"
- d="m 556.29921,120.47242 -127.55905,0"
- style="fill:none;stroke:#00d800;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- x="431.50348"
- y="117.0425"
- id="text84151-6-5-6-4-1-6"
- sodipodi:linespacing="125%"
- inkscape:transform-center-x="7.0447348"
- inkscape:transform-center-y="1.4910597"><tspan
- id="tspan5470-6-8"
- sodipodi:role="line"
- x="431.50348"
- y="117.0425">id</tspan></text>
- </g>
- </g>
- <path
- style="fill:none;stroke:#00d800;stroke-width:3.54330707;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016)"
- d="m 389.76378,248.03147 24.80315,0"
- id="path8208-1-5-0"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <g
- id="g3949"
- transform="translate(18.389969,-150.88328)">
- <g
- id="g3820"
- transform="translate(56.692894,17.716538)">
- <rect
- ry="3.7880721"
- y="237.40155"
- x="14.173247"
- height="56.692913"
- width="99.212593"
- id="rect3822"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(20.586428,253.63916)"
- id="flowRoot3824"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion3826" /><flowPara
- id="flowPara3830">Country</flowPara></flowRoot> <text
- inkscape:transform-center-y="1.4910516"
- inkscape:transform-center-x="7.0447343"
- sodipodi:linespacing="125%"
- id="text84151"
- y="269.65045"
- x="21.095966"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="269.65045"
- x="21.095966"
- id="tspan84153"
- sodipodi:role="line">id : Long</tspan><tspan
- id="tspan3271"
- y="282.15045"
- x="21.095966"
- sodipodi:role="line">name : String</tspan></text>
- </g>
- <g
- id="g3820-6"
- transform="translate(56.692892,106.29922)">
- <rect
- ry="3.7880721"
- y="237.40155"
- x="14.173247"
- height="63.779526"
- width="99.212601"
- id="rect3822-3"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(20.586428,253.57675)"
- id="flowRoot3824-6"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion3826-8" /><flowPara
- id="flowPara3830-4">Person</flowPara></flowRoot> <text
- inkscape:transform-center-y="1.4910597"
- inkscape:transform-center-x="7.0447348"
- sodipodi:linespacing="125%"
- id="text84151-6"
- y="269.29132"
- x="24.803171"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="269.29132"
- x="24.803171"
- id="tspan84153-6"
- sodipodi:role="line">id : Long</tspan><tspan
- id="tspan3316"
- y="281.79132"
- x="24.803171"
- sodipodi:role="line">name : String</tspan><tspan
- id="tspan3328"
- y="294.29132"
- x="24.803171"
- sodipodi:role="line">age : Integer</tspan></text>
- </g>
- <g
- transform="translate(-279.92126,-109.84252)"
- id="g5797">
- <path
- sodipodi:type="arc"
- style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="path5752"
- sodipodi:cx="407.48032"
- sodipodi:cy="428.74014"
- sodipodi:rx="7.0866141"
- sodipodi:ry="7.0866141"
- d="m 414.56693,428.74014 c 0,3.91383 -3.17278,7.08662 -7.08661,7.08662 -3.91383,0 -7.08662,-3.17279 -7.08662,-7.08662 0,-3.91383 3.17279,-7.08661 7.08662,-7.08661 3.91252,0 7.08477,3.17075 7.08661,7.08328"
- sodipodi:start="0"
- sodipodi:end="6.2827149"
- sodipodi:open="true"
- transform="matrix(1.2499999,0,0,1.2499999,-108.95668,-114.27159)" />
- <path
- sodipodi:type="arc"
- style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="path5752-0"
- sodipodi:cx="407.48032"
- sodipodi:cy="428.74014"
- sodipodi:rx="7.0866141"
- sodipodi:ry="7.0866141"
- d="m 414.56693,428.74014 c 0,3.91383 -3.17278,7.08662 -7.08661,7.08662 -3.91383,0 -7.08662,-3.17279 -7.08662,-7.08662 0,-3.91383 3.17279,-7.08661 7.08662,-7.08661 3.91252,0 7.08477,3.17075 7.08661,7.08328"
- sodipodi:start="0"
- sodipodi:end="6.2827149"
- sodipodi:open="true"
- transform="matrix(1.2499999,0,0,1.2499999,-108.95278,-82.38185)" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#49c2f1;stroke-width:5.31496048;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#DotSuNSX);marker-end:url(#DotSuN4)"
- d="m 400.3937,453.54329 0,-31.88977"
- id="path3375"
- inkscape:connector-curvature="0" />
- </g>
- <text
- inkscape:transform-center-y="1.4910516"
- inkscape:transform-center-x="7.0447431"
- sodipodi:linespacing="125%"
- id="text84151-4"
- y="325.2243"
- x="102.71852"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- id="tspan3271-2"
- y="325.2243"
- x="102.71852"
- sodipodi:role="line">1</tspan></text>
- <text
- inkscape:transform-center-y="1.4910516"
- inkscape:transform-center-x="7.0447343"
- sodipodi:linespacing="125%"
- id="text84151-4-0"
- y="340.15747"
- x="103.29121"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- id="tspan3271-2-4"
- y="340.15747"
- x="103.29121"
- sodipodi:role="line">n</tspan></text>
- <text
- inkscape:transform-center-y="1.4910516"
- inkscape:transform-center-x="7.0447343"
- sodipodi:linespacing="125%"
- id="text84151-4-4-7-2-7"
- y="320.40091"
- x="130.47559"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- id="tspan3271-2-9-1-2-7"
- y="320.40091"
- x="130.47559"
- sodipodi:role="line">+country</tspan></text>
- <text
- inkscape:transform-center-y="1.4910516"
- inkscape:transform-center-x="7.0447343"
- sodipodi:linespacing="125%"
- id="text84151-4-4-7-2-7-9"
- y="330.93085"
- x="126.23299"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- id="tspan3271-2-9-1-2-7-1"
- y="330.93085"
- x="126.23299"
- sodipodi:role="line">«has»</tspan></text>
- </g>
- <text
- inkscape:transform-center-y="1.4910516"
- inkscape:transform-center-x="7.0447343"
- sodipodi:linespacing="125%"
- id="text84151-4-4-7-2-7-5"
- y="189.04587"
- x="149.49229"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- id="tspan3271-2-9-1-2-7-9"
- y="189.04587"
- x="149.49229"
- sodipodi:role="line">+persons</tspan></text>
- <path
- style="fill:none;stroke:#00d800;stroke-width:3.54330707;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016)"
- d="m 414.56693,95.669269 -24.80315,0"
- id="path8208-1-5-5"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- </g>
-</svg>
diff --git a/documentation/jpacontainer/original-drawings/jpa-mapping.svg b/documentation/jpacontainer/original-drawings/jpa-mapping.svg deleted file mode 100644 index ebd5686e8e..0000000000 --- a/documentation/jpacontainer/original-drawings/jpa-mapping.svg +++ /dev/null @@ -1,1428 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="jpa-mapping.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="300.01001"
- inkscape:export-ydpi="300.01001"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.6970563"
- inkscape:cx="308.11688"
- inkscape:cy="805.649"
- inkscape:document-units="mm"
- inkscape:current-layer="g7734-3"
- showgrid="true"
- inkscape:window-width="1680"
- inkscape:window-height="1027"
- inkscape:window-x="-4"
- inkscape:window-y="-4"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="true"
- inkscape:window-maximized="1">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuNS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuNS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1pt;fill:#49c2f1"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5020" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuNSX"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuNSX">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1pt;fill:#49c2f1"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5565" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN4"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN4">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1pt;fill:#49c2f1"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5568" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuNSX-5"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuNSX">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path5565-5" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN4-0"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN4">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path5568-1" />
- </marker>
- <marker
- id="marker18095-5"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-7"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-9"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-1"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-8"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-4"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-0"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-9"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-9"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-09"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-3"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-1"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-8"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-7"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-16"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-1"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-9"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-4"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-6"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-07"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-36"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuNSX-9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuNSX">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path5565-7" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN4-7"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN4">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path5568-6" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker3755"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN4">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path3757" />
- </marker>
- <marker
- id="marker52016-8"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-4"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-8"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-1"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- </defs>
- <metadata
- id="metadata2480">
- <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">
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="translate(-3.5714286,23.214286)"
- id="g3178" />
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <g
- transform="matrix(0.5,0,0,0.5,103.34299,0.7940752)"
- id="g18053" />
- <g
- id="g7762"
- transform="translate(-232.74257,-3.0916667)">
- <image
- width="105"
- height="106"
- xlink:href="file:///home/magi/itmill/book-7/manual/img/jpacontainer/table-comets.png"
- id="image6646"
- x="121.12263"
- y="88.582657" />
- <rect
- ry="3.7880719"
- y="60.236198"
- x="106.29921"
- height="141.73227"
- width="134.64684"
- id="rect3822-3-8-1-4"
- style="fill:none;stroke:#000000;stroke-width:3.00001287;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(-142.77617,-83.381937)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="24.626196"
- width="126.83217"
- id="rect4154-5-0" /></flowRegion><flowPara
- id="flowPara4160-60-5">Presentation Layer</flowPara></flowRoot> </g>
- <g
- id="g7749"
- transform="translate(-187.79528,14.173227)">
- <rect
- ry="3.7880721"
- y="60.236198"
- x="265.74802"
- height="198.4252"
- width="134.64569"
- id="rect3822-3-8-1"
- style="fill:none;stroke:#49c2f1;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- inkscape:transform-center-y="1.4910597"
- inkscape:transform-center-x="7.0447348"
- sodipodi:linespacing="125%"
- id="text84151-6-5-6"
- y="99.212578"
- x="276.37796"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- id="tspan3328-7-5"
- y="99.212578"
- x="276.37796"
- sodipodi:role="line"><tspan
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="tspan8118">class</tspan> Department {</tspan><tspan
- id="tspan7587"
- y="114.21258"
- x="276.37796"
- sodipodi:role="line"> int <tspan
- style="fill:#0000ff;fill-opacity:1"
- id="tspan8136">id</tspan>;</tspan><tspan
- id="tspan7589"
- y="129.21259"
- x="276.37796"
- sodipodi:role="line"> String <tspan
- style="fill:#0000ff;fill-opacity:1"
- id="tspan8146">name</tspan>;</tspan><tspan
- id="tspan7591"
- y="144.21259"
- x="276.37796"
- sodipodi:role="line"> ...</tspan><tspan
- id="tspan7585"
- y="159.21259"
- x="276.37796"
- sodipodi:role="line">}</tspan><tspan
- y="174.21259"
- x="276.37796"
- sodipodi:role="line"
- id="tspan4003">class Person {</tspan><tspan
- y="189.21259"
- x="276.37796"
- sodipodi:role="line"
- id="tspan4005"> int id;</tspan><tspan
- y="204.21259"
- x="276.37796"
- sodipodi:role="line"
- id="tspan4007"> String firstName;</tspan><tspan
- y="219.21259"
- x="276.37796"
- sodipodi:role="line"
- id="tspan4013"> String lastName;</tspan><tspan
- y="234.21259"
- x="276.37796"
- sodipodi:role="line"
- id="tspan4009"> ...</tspan><tspan
- y="249.21259"
- x="276.37796"
- sodipodi:role="line"
- id="tspan4011">}</tspan></text>
- <flowRoot
- transform="translate(16.672646,-83.381937)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4-4"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46-4"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="24.626196"
- width="126.83217"
- id="rect4154-5-0-2" /></flowRegion><flowPara
- id="flowPara4160-60-5-4">Domain Layer</flowPara></flowRoot> </g>
- <g
- id="g7734"
- transform="translate(-187.79528,14.173227)">
- <rect
- ry="3.7880721"
- y="61.736198"
- x="425.19684"
- height="161.49213"
- width="159.44884"
- id="rect3822-3-8-1-3"
- style="fill:none;stroke:#00d800;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(176.12147,-83.381937)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4-4-4"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46-4-9"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="24.626196"
- width="126.83217"
- id="rect4154-5-0-2-8" /></flowRegion><flowPara
- id="flowPara4160-60-5-4-4">Data Access Layer</flowPara></flowRoot> <text
- inkscape:transform-center-y="1.4910597"
- inkscape:transform-center-x="7.0447348"
- sodipodi:linespacing="125%"
- id="text84151-6-5-6-4"
- y="99.212578"
- x="435.82678"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- id="tspan7585-0"
- y="99.212578"
- x="435.82678"
- sodipodi:role="line">CREATE TABLE Departments (</tspan><tspan
- id="tspan7722"
- y="111.71258"
- x="435.82678"
- sodipodi:role="line"> id INTEGER PRIMARY KEY,</tspan><tspan
- id="tspan7724"
- y="124.21258"
- x="435.82678"
- sodipodi:role="line"> name VARCHAR(20)</tspan><tspan
- id="tspan7732"
- y="136.71257"
- x="435.82678"
- sodipodi:role="line">)</tspan><tspan
- y="149.21257"
- x="435.82678"
- sodipodi:role="line"
- id="tspan3987">CREATE TABLE Persons (</tspan><tspan
- y="161.71257"
- x="435.82678"
- sodipodi:role="line"
- id="tspan3989"> id INTEGER PRIMARY KEY,</tspan><tspan
- y="174.21257"
- x="435.82678"
- sodipodi:role="line"
- id="tspan3995"> department INTEGER,</tspan><tspan
- y="186.71257"
- x="435.82678"
- sodipodi:role="line"
- id="tspan3997"> firstName VARCHAR(20),</tspan><tspan
- y="199.21257"
- x="435.82678"
- sodipodi:role="line"
- id="tspan4001"> lastName VARCHAR(20)</tspan><tspan
- y="211.71257"
- x="435.82678"
- sodipodi:role="line"
- id="tspan3993">)</tspan></text>
- </g>
- <path
- style="fill:none;stroke:#000000;stroke-width:4.00039387;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker64887);display:inline"
- d="m 8.2023144,181.16028 24.8031496,0.0301"
- id="path10684-4"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:3.54330707;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095)"
- d="m 212.59842,198.42518 24.80315,0"
- id="path8208"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:3.54330707;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095)"
- d="m 33.005464,85.490988 -24.8031496,0"
- id="path8208-1"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#00d800;stroke-width:3.54330707;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016)"
- d="m 237.40157,99.212575 -24.80315,0"
- id="path8208-1-5"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <flowRoot
- transform="translate(-301.1811,-106.29922)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485-7"
- xml:space="preserve"><flowRegion
- id="flowRegion2487-3"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489-6" /></flowRegion><flowPara
- id="flowPara2491-5" /></flowRoot> <g
- transform="translate(-304.75253,-83.08493)"
- id="g3178-6" />
- <flowRoot
- transform="translate(-301.1811,-106.29922)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724-3"
- xml:space="preserve"><flowRegion
- id="flowRegion8726-9"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728-4" /></flowRegion><flowPara
- id="flowPara8730-8" /></flowRoot> <g
- transform="matrix(0.5,0,0,0.5,-197.83811,-105.50514)"
- id="g18053-1" />
- <g
- id="g3949"
- transform="translate(-14.173202,93.897613)">
- <g
- id="g3820"
- transform="translate(56.692894,17.716538)">
- <rect
- ry="3.7880721"
- y="237.40155"
- x="14.173247"
- height="56.692913"
- width="99.212593"
- id="rect3822"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(20.586428,253.63916)"
- id="flowRoot3824"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion3826" /><flowPara
- id="flowPara3830">Department</flowPara></flowRoot> <text
- inkscape:transform-center-y="1.4910516"
- inkscape:transform-center-x="7.0447343"
- sodipodi:linespacing="125%"
- id="text84151"
- y="269.65045"
- x="21.095966"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="269.65045"
- x="21.095966"
- id="tspan84153"
- sodipodi:role="line">id : Long</tspan><tspan
- id="tspan3271"
- y="282.15045"
- x="21.095966"
- sodipodi:role="line">name : String</tspan></text>
- </g>
- <g
- id="g3820-6"
- transform="translate(56.692892,106.29922)">
- <rect
- ry="3.7880721"
- y="237.40155"
- x="14.173247"
- height="63.779526"
- width="99.212601"
- id="rect3822-3"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(20.586428,253.57675)"
- id="flowRoot3824-6"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- xml:space="preserve"><flowRegion
- id="flowRegion3826-8" /><flowPara
- id="flowPara3830-4">Person</flowPara></flowRoot> <text
- inkscape:transform-center-y="1.4910597"
- inkscape:transform-center-x="7.0447348"
- sodipodi:linespacing="125%"
- id="text84151-6"
- y="269.29132"
- x="24.803171"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- y="269.29132"
- x="24.803171"
- id="tspan84153-6"
- sodipodi:role="line">id : Long</tspan><tspan
- id="tspan3316"
- y="281.79132"
- x="24.803171"
- sodipodi:role="line">firstName : String</tspan><tspan
- id="tspan3328"
- y="294.29132"
- x="24.803171"
- sodipodi:role="line">lastName : String</tspan></text>
- </g>
- <g
- transform="translate(-279.92126,-109.84252)"
- id="g5797">
- <path
- sodipodi:type="arc"
- style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="path5752"
- sodipodi:cx="407.48032"
- sodipodi:cy="428.74014"
- sodipodi:rx="7.0866141"
- sodipodi:ry="7.0866141"
- d="m 414.56693,428.74014 c 0,3.91383 -3.17278,7.08662 -7.08661,7.08662 -3.91383,0 -7.08662,-3.17279 -7.08662,-7.08662 0,-3.91383 3.17279,-7.08661 7.08662,-7.08661 3.91252,0 7.08477,3.17075 7.08661,7.08328"
- sodipodi:start="0"
- sodipodi:end="6.2827149"
- sodipodi:open="true"
- transform="matrix(1.2499999,0,0,1.2499999,-108.95668,-114.27159)" />
- <path
- sodipodi:type="arc"
- style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="path5752-0"
- sodipodi:cx="407.48032"
- sodipodi:cy="428.74014"
- sodipodi:rx="7.0866141"
- sodipodi:ry="7.0866141"
- d="m 414.56693,428.74014 c 0,3.91383 -3.17278,7.08662 -7.08661,7.08662 -3.91383,0 -7.08662,-3.17279 -7.08662,-7.08662 0,-3.91383 3.17279,-7.08661 7.08662,-7.08661 3.91252,0 7.08477,3.17075 7.08661,7.08328"
- sodipodi:start="0"
- sodipodi:end="6.2827149"
- sodipodi:open="true"
- transform="matrix(1.2499999,0,0,1.2499999,-108.95278,-82.38185)" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;stroke:#49c2f1;stroke-width:5.31496048;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#DotSuNSX);marker-end:url(#DotSuN4)"
- d="m 400.3937,453.54329 0,-31.88977"
- id="path3375"
- inkscape:connector-curvature="0" />
- </g>
- <text
- inkscape:transform-center-y="1.4910516"
- inkscape:transform-center-x="7.0447431"
- sodipodi:linespacing="125%"
- id="text84151-4"
- y="325.2243"
- x="102.71852"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- id="tspan3271-2"
- y="325.2243"
- x="102.71852"
- sodipodi:role="line">1</tspan></text>
- <text
- inkscape:transform-center-y="1.4910516"
- inkscape:transform-center-x="7.0447343"
- sodipodi:linespacing="125%"
- id="text84151-4-0"
- y="340.15747"
- x="103.29121"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- id="tspan3271-2-4"
- y="340.15747"
- x="103.29121"
- sodipodi:role="line">n</tspan></text>
- <text
- inkscape:transform-center-y="1.4910516"
- inkscape:transform-center-x="7.0447343"
- sodipodi:linespacing="125%"
- id="text84151-4-4-7-2-7"
- y="320.40091"
- x="130.47559"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- id="tspan3271-2-9-1-2-7"
- y="320.40091"
- x="130.47559"
- sodipodi:role="line">+department</tspan></text>
- <text
- inkscape:transform-center-y="1.4910516"
- inkscape:transform-center-x="7.0447343"
- sodipodi:linespacing="125%"
- id="text84151-4-4-7-2-7-9"
- y="330.93085"
- x="126.23299"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- id="tspan3271-2-9-1-2-7-1"
- y="330.93085"
- x="126.23299"
- sodipodi:role="line">«has»</tspan></text>
- </g>
- <text
- inkscape:transform-center-y="1.4910516"
- inkscape:transform-center-x="7.0447343"
- sodipodi:linespacing="125%"
- id="text84151-4-4-7-2-7-5"
- y="433.82675"
- x="116.92913"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- id="tspan3271-2-9-1-2-7-9"
- y="433.82675"
- x="116.92913"
- sodipodi:role="line">+persons</tspan></text>
- <g
- id="g7734-3"
- transform="translate(-6.1746196,15.959149)">
- <rect
- ry="3.7880721"
- y="61.736198"
- x="425.19684"
- height="161.49213"
- width="159.44884"
- id="rect3822-3-8-1-3-0"
- style="fill:none;stroke:#00d800;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(176.12147,-83.381937)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4-4-4-4"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46-4-9-4"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="24.626196"
- width="126.83217"
- id="rect4154-5-0-2-8-4" /></flowRegion><flowPara
- id="flowPara4160-60-5-4-4-4">Database</flowPara></flowRoot> <rect
- style="fill:#e6e6e6;fill-opacity:1;stroke:#00d800;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="rect5308"
- width="131.10236"
- height="49.606304"
- x="435.82678"
- y="106.29919"
- transform="translate(6.1746196,-15.959149)"
- ry="0" />
- <rect
- style="fill:#e6e6e6;fill-opacity:1;stroke:#00d800;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- id="rect5308-4"
- width="131.10236"
- height="49.606304"
- x="442.88721"
- y="147.91878"
- ry="0" />
- </g>
- <path
- style="fill:none;stroke:#00d800;stroke-width:3.54330707;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016)"
- d="m 396.85039,198.42517 21.25985,0"
- id="path8208-1-5-0"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- </g>
-</svg>
diff --git a/documentation/jpacontainer/original-drawings/three-layer-architecture.svg b/documentation/jpacontainer/original-drawings/three-layer-architecture.svg deleted file mode 100644 index 64e3792e7c..0000000000 --- a/documentation/jpacontainer/original-drawings/three-layer-architecture.svg +++ /dev/null @@ -1,1069 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="744.09448"
- height="1052.3622"
- id="svg2475"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="three-layer-architecture.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/magi/itmill/doc/cheatsheet/vaadin-cheatsheet.png"
- inkscape:export-xdpi="300.01001"
- inkscape:export-ydpi="300.01001"
- version="1.0">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.6970563"
- inkscape:cx="386.4544"
- inkscape:cy="871.88436"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1680"
- inkscape:window-height="1027"
- inkscape:window-x="-4"
- inkscape:window-y="-4"
- inkscape:snap-nodes="true"
- inkscape:snap-bbox="true"
- units="mm"
- inkscape:snap-global="true"
- inkscape:window-maximized="1">
- <inkscape:grid
- spacingy="1mm"
- spacingx="1mm"
- empspacing="5"
- units="mm"
- enabled="true"
- visible="true"
- id="grid4674"
- type="xygrid"
- dotted="false" />
- </sodipodi:namedview>
- <defs
- id="defs2477">
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lstart"
- style="overflow:visible">
- <path
- id="path5210"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="matrix(0.8,0,0,0.8,10,0)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path3636" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS"
- style="overflow:visible">
- <path
- id="path3717"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <inkscape:path-effect
- copytype="single_stretched"
- pattern="M 349.202,225.086 L 405.895,331.386 L 370.462,338.472 "
- prop_scale="1"
- id="path-effect2503"
- effect="skeletal" />
- <inkscape:path-effect
- prop_scale="1"
- id="path-effect2499"
- effect="skeletal" />
- <inkscape:path-effect
- pattern-nodetypes="cc"
- pattern="M 432.28346,272.83462 L 403.93701,216.14171"
- prop_scale="1"
- id="path-effect2497"
- effect="skeletal" />
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3641" />
- </marker>
- <marker
- 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-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
- id="path3629" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective3487" />
- <marker
- style="overflow:visible"
- id="Arrow2Sendp"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendp">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:0.625;stroke-linejoin:round"
- id="path28139" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSK"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSK">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36611" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSH"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSH">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36614" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSA">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36617" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutSKF"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutSKF">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36620" />
- </marker>
- <marker
- style="overflow:visible"
- id="TriangleOutS9"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="TriangleOutS9">
- <path
- transform="scale(0.2,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- id="path36623" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2SendpA"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2SendpA">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:0.625;stroke-linejoin:round"
- id="path3396" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow2Sendpg"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow2Sendpg">
- <path
- transform="matrix(-0.3,0,0,-0.3,0.69,0)"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z"
- style="font-size:12px;fill:#fcc988;fill-rule:evenodd;stroke:#fcc988;stroke-width:0.625;stroke-linejoin:round"
- id="path3360" />
- </marker>
- <filter
- id="filter2780"
- inkscape:label="White Halo"
- width="1.1"
- height="1.1">
- <feMorphology
- id="feMorphology2782"
- operator="dilate"
- radius="3"
- result="result0" />
- <feFlood
- id="feFlood2786"
- flood-color="rgb(255,255,255)"
- flood-opacity="1"
- in="result0"
- result="result3" />
- <feComposite
- id="feComposite2623"
- in="result3"
- in2="result0"
- operator="in"
- result="result4" />
- <feMerge
- id="feMerge2629">
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2631"
- in="result4" />
- <feMergeNode
- inkscape:collect="always"
- id="feMergeNode2633"
- in="SourceGraphic" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSn"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSn"
- style="overflow:visible">
- <path
- id="path4441"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutS9F"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutS9F"
- style="overflow:visible">
- <path
- id="path4444"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI"
- style="overflow:visible">
- <path
- id="path4447"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSO"
- style="overflow:visible">
- <path
- id="path4450"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSW"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSW"
- style="overflow:visible">
- <path
- id="path4453"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSB"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSB"
- style="overflow:visible">
- <path
- id="path4456"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSZ"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSZ"
- style="overflow:visible">
- <path
- id="path4459"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSq"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSq">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#d9d9cd;fill-rule:evenodd;stroke:#d9d9cd;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5853" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSBO"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSBO"
- style="overflow:visible">
- <path
- id="path7501"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSu"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSu">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path9463" />
- </marker>
- <filter
- height="1.1"
- width="1.1"
- inkscape:label="Black Halo"
- id="filter10694">
- <feMorphology
- result="result0"
- radius="3"
- operator="dilate"
- id="feMorphology10696" />
- <feFlood
- result="result3"
- in="result0"
- flood-opacity="1"
- flood-color="rgb(0,0,0)"
- id="feFlood10698" />
- <feComposite
- result="result4"
- operator="in"
- in2="result0"
- in="result3"
- id="feComposite10700" />
- <feMerge
- id="feMerge10702">
- <feMergeNode
- in="result4"
- id="feMergeNode10704"
- inkscape:collect="always" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode10706"
- inkscape:collect="always" />
- </feMerge>
- </filter>
- <marker
- inkscape:stockid="TriangleOutSu"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSu"
- style="overflow:visible">
- <path
- id="path8127"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSI8"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSI8"
- style="overflow:visible">
- <path
- id="path8130"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSr"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSr"
- style="overflow:visible">
- <path
- id="path8133"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSM"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSM"
- style="overflow:visible">
- <path
- id="path8136"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutSb"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutSb"
- style="overflow:visible">
- <path
- id="path8139"
- d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none"
- transform="scale(0.2,0.2)" />
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker64887"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297255">
- <g
- id="g64855"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path64857"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path64859"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker4057"
- orient="auto"
- markerHeight="5.745079"
- markerWidth="4.6297302">
- <g
- id="g51986"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path51988"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path51990"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker72805"
- orient="auto"
- markerHeight="4.5568175"
- markerWidth="4.0334239">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18057"
- d="M -2.0167119,0.50456824 L 0.29578813,0.50456824 L -0.61046187,1.4108182 C -0.80893187,1.6092982 -0.80893187,1.9310982 -0.61046187,2.1295682 C -0.41198187,2.3280482 -0.090181874,2.3280482 0.10828813,2.1295682 L 1.8270381,0.39519824 L 1.8739181,0.36394824 C 1.8768781,0.36103824 1.8710181,0.35130824 1.8739181,0.34831824 C 1.9016181,0.31973824 1.9314681,0.28982824 1.9520381,0.25456824 C 1.9663581,0.23002824 1.9734781,0.20252824 1.9832881,0.17644824 C 1.9894681,0.16108824 1.9943181,0.14535824 1.9989181,0.12956824 C 2.0144781,0.07151824 2.0202881,0.01710824 2.0145381,-0.04230176 C 2.0126081,-0.07122176 2.0058581,-0.09213176 1.9989181,-0.12043176 C 1.9934681,-0.14075176 1.9913481,-0.16326176 1.9832881,-0.18293176 C 1.9750781,-0.20334176 1.9630581,-0.22603176 1.9520381,-0.24543176 C 1.9293181,-0.28436176 1.9052381,-0.32406176 1.8739181,-0.35480176 L 0.10828813,-2.1204318 C 0.003838126,-2.2318118 -0.14579187,-2.2893518 -0.29796187,-2.2766818 C -0.49535187,-2.2632018 -0.66784187,-2.1344918 -0.73546187,-1.9485518 C -0.80308187,-1.7626218 -0.75309187,-1.5544218 -0.61046187,-1.4173018 L 0.32703813,-0.49543176 L -2.0167119,-0.49543176"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- id="marker72808"
- orient="auto"
- markerHeight="4.5568123"
- markerWidth="4.0334177">
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path72801"
- d="M -2.016709,0.50457301 L 0.29579105,0.50457301 L -0.61045895,1.410823 C -0.80893895,1.609293 -0.80893895,1.931093 -0.61045895,2.129573 C -0.41198895,2.328043 -0.090188953,2.328043 0.10829105,2.129573 L 1.827041,0.39519301 L 1.873911,0.36394301 C 1.876881,0.36103301 1.871021,0.35130301 1.873911,0.34832301 C 1.901621,0.31974301 1.931461,0.28982301 1.952041,0.25457301 C 1.966361,0.23003301 1.973481,0.20252301 1.983291,0.17644301 C 1.989471,0.16108301 1.994321,0.14536301 1.998911,0.12957301 C 2.014471,0.071523013 2.020281,0.017103013 2.014541,-0.042306987 C 2.012611,-0.071226987 2.005851,-0.092126987 1.998911,-0.12042699 C 1.993461,-0.14075699 1.991351,-0.16325699 1.983291,-0.18292699 C 1.975071,-0.20334699 1.963051,-0.22602699 1.952041,-0.24542699 C 1.929311,-0.28436699 1.905241,-0.32405699 1.873911,-0.35480699 L 0.10829105,-2.120427 C 0.003831047,-2.231807 -0.14578895,-2.289357 -0.29795895,-2.276677 C -0.49534895,-2.263207 -0.66784895,-2.134487 -0.73545895,-1.948557 C -0.80307895,-1.762617 -0.75308895,-1.554427 -0.61045895,-1.417307 L 0.32704105,-0.49542699 L -2.016709,-0.49542699"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#f39300;fill-rule:evenodd;stroke:#f39300;stroke-width:1pt;marker-start:none;marker-end:none"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path81580" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuNS"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuNS">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1pt;fill:#49c2f1"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5020" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuNSX"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuNSX">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1pt;fill:#49c2f1"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5565" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN4"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN4">
- <path
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="marker-end:none;fill-rule:evenodd;marker-start:none;stroke:#49c2f1;stroke-width:1pt;fill:#49c2f1"
- d="M -2.5,-1 C -2.5,1.76 -4.74,4 -7.5,4 C -10.26,4 -12.5,1.76 -12.5,-1 C -12.5,-3.76 -10.26,-6 -7.5,-6 C -4.74,-6 -2.5,-3.76 -2.5,-1 z"
- id="path5568" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuNSX-5"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuNSX">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path5565-5" />
- </marker>
- <marker
- style="overflow:visible"
- id="DotSuN4-0"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="DotSuN4">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(0.2,0,0,0.2,1.48,0.2)"
- style="fill:#49c2f1;fill-rule:evenodd;stroke:#49c2f1;stroke-width:1pt;marker-start:none;marker-end:none"
- d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
- id="path5568-1" />
- </marker>
- <marker
- id="marker18095-5"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-7"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-9"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-1"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-8"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-4"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-0"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-9"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-9"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-09"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-3"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-1"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-8"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-7"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-16"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-1"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-9"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-4"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-6"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-07"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-36"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- </defs>
- <metadata
- id="metadata2480">
- <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
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1">
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot2485"
- xml:space="preserve"><flowRegion
- id="flowRegion2487"><rect
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="238.07646"
- x="262.85715"
- height="120"
- width="184.28572"
- id="rect2489" /></flowRegion><flowPara
- id="flowPara2491" /></flowRoot> <g
- transform="translate(-3.5714286,23.214286)"
- id="g3178" />
- <flowRoot
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- id="flowRoot8724"
- xml:space="preserve"><flowRegion
- id="flowRegion8726"><rect
- style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- y="752.14441"
- x="39.286312"
- height="22.868153"
- width="29.904507"
- id="rect8728" /></flowRegion><flowPara
- id="flowPara8730" /></flowRoot> <g
- transform="matrix(0.5,0,0,0.5,103.34299,0.7940752)"
- id="g18053" />
- <g
- id="g7762">
- <image
- width="105"
- height="106"
- xlink:href="file:///home/magi/itmill/book-7/manual/img/jpacontainer/table-comets.png"
- id="image6646"
- x="121.12263"
- y="88.582657" />
- <rect
- ry="3.7880719"
- y="60.236198"
- x="106.29921"
- height="141.73227"
- width="134.64684"
- id="rect3822-3-8-1-4"
- style="fill:none;stroke:#000000;stroke-width:3.00001287;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(-142.77617,-83.381937)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="24.626196"
- width="126.83217"
- id="rect4154-5-0" /></flowRegion><flowPara
- id="flowPara4160-60-5">Presentation Layer</flowPara></flowRoot> </g>
- <g
- id="g7749">
- <rect
- ry="3.7880721"
- y="60.236198"
- x="265.74802"
- height="141.73228"
- width="134.64568"
- id="rect3822-3-8-1"
- style="fill:none;stroke:#49c2f1;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <text
- inkscape:transform-center-y="1.4910597"
- inkscape:transform-center-x="7.0447348"
- sodipodi:linespacing="125%"
- id="text84151-6-5-6"
- y="99.212578"
- x="276.37796"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr;text-anchor:start;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- id="tspan3328-7-5"
- y="99.212578"
- x="276.37796"
- sodipodi:role="line"><tspan
- style="-inkscape-font-specification:Helvetica Rounded LT Std Bold;font-family:Helvetica Rounded LT Std;font-weight:bold;font-style:normal;font-stretch:normal;font-variant:normal"
- id="tspan8118">class</tspan> Comet {</tspan><tspan
- id="tspan7587"
- y="116.71258"
- x="276.37796"
- sodipodi:role="line"> int <tspan
- style="fill:#0000ff;fill-opacity:1"
- id="tspan8136">id</tspan>;</tspan><tspan
- id="tspan7589"
- y="134.21257"
- x="276.37796"
- sodipodi:role="line"> String <tspan
- style="fill:#0000ff;fill-opacity:1"
- id="tspan8146">name</tspan>;</tspan><tspan
- id="tspan7591"
- y="151.71257"
- x="276.37796"
- sodipodi:role="line"> ...</tspan><tspan
- id="tspan7585"
- y="169.21257"
- x="276.37796"
- sodipodi:role="line">}</tspan></text>
- <flowRoot
- transform="translate(16.672646,-83.381937)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4-4"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46-4"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="24.626196"
- width="126.83217"
- id="rect4154-5-0-2" /></flowRegion><flowPara
- id="flowPara4160-60-5-4">Domain Layer</flowPara></flowRoot> </g>
- <g
- id="g7734">
- <rect
- ry="3.7880721"
- y="61.736198"
- x="425.19684"
- height="140.23227"
- width="162.99214"
- id="rect3822-3-8-1-3"
- style="fill:none;stroke:#00d800;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- transform="translate(176.12147,-83.381937)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot4150-9-4-4-4"
- xml:space="preserve"><flowRegion
- id="flowRegion4152-05-46-4-9"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="152.21526"
- x="255.26555"
- height="24.626196"
- width="126.83217"
- id="rect4154-5-0-2-8" /></flowRegion><flowPara
- id="flowPara4160-60-5-4-4">Data Access Layer</flowPara></flowRoot> <text
- inkscape:transform-center-y="1.4910597"
- inkscape:transform-center-x="7.0447348"
- sodipodi:linespacing="125%"
- id="text84151-6-5-6-4"
- y="99.212578"
- x="435.82678"
- style="font-size:10px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- xml:space="preserve"><tspan
- id="tspan7585-0"
- y="99.212578"
- x="435.82678"
- sodipodi:role="line">CREATE TABLE Comets (</tspan><tspan
- id="tspan7722"
- y="111.71258"
- x="435.82678"
- sodipodi:role="line"> id INTEGER PRIMARY KEY,</tspan><tspan
- id="tspan7724"
- y="124.21258"
- x="435.82678"
- sodipodi:role="line"> name VARCHAR(20)</tspan><tspan
- id="tspan7726"
- y="136.71257"
- x="435.82678"
- sodipodi:role="line">)</tspan><tspan
- id="tspan7728"
- y="149.21257"
- x="435.82678"
- sodipodi:role="line">INSERT INTO Comets (id, name) </tspan><tspan
- id="tspan7730"
- y="161.71257"
- x="435.82678"
- sodipodi:role="line"> VALUES (1, 'Halley');</tspan><tspan
- id="tspan7732"
- y="174.21257"
- x="435.82678"
- sodipodi:role="line">...</tspan></text>
- </g>
- <path
- style="fill:none;stroke:#000000;stroke-width:4.00039387;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-mid:none;marker-end:url(#marker64887);display:inline"
- d="m 240.94488,184.25195 24.80315,0.0301"
- id="path10684-4"
- inkscape:connector-type="polyline"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:3.54330707;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095)"
- d="m 400.3937,184.25195 24.80315,0"
- id="path8208"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:3.54330707;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095)"
- d="m 265.74803,88.582655 -24.80315,0"
- id="path8208-1"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#00d800;stroke-width:3.54330708999999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016)"
- d="m 425.19685,85.039348 -24.80315,0"
- id="path8208-1-5"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- </g>
-</svg>
diff --git a/documentation/layout/chapter-layout.asciidoc b/documentation/layout/chapter-layout.asciidoc deleted file mode 100644 index 176a29a4fa..0000000000 --- a/documentation/layout/chapter-layout.asciidoc +++ /dev/null @@ -1,124 +0,0 @@ -[[layout]] -== Managing Layout - -ifdef::web[] -Ever since the ancient xeroxians invented graphical user interfaces, programmers -have wanted to make GUI programming ever easier for themselves. Solutions -started simple. When GUIs appeared on PC desktops, practically all screens were -of the VGA type and fixed into 640x480 size. Mac or X Window System on UNIX were -not much different. Everyone was so happy with such awesome graphics resolutions -that they never thought that an application would have to work on a radically -different screen size. At worst, screens could only grow, they thought, giving -more space for more windows. In the 80s, the idea of having a computer screen in -your pocket was simply not realistic. Hence, the GUI APIs allowed placing UI -components using screen coordinates. Visual Basic and some other systems -provided an easy way for the designer to drag and drop components on a -fixed-sized window. One would have thought that at least translators would have -complained about the awkwardness of such a solution, but apparently they were -not, as non-engineers, heard or at least cared about. At best, engineers could -throw at them a resource editor that would allow them to resize the UI -components by hand. Such was the spirit back then. -endif::web[] - -ifdef::web[] -After the web was born, layout design was doomed to change for ever. At first, -layout didn't matter much, as everyone was happy with plain headings, -paragraphs, and a few hyperlinks here and there. Designers of HTML wanted the -pages to run on any screen size. The screen size was actually not pixels but -rows and columns of characters, as the baby web was really just hyper __text__, -not graphics. That was soon to be changed. The first GUI-based browser, NCSA -Mosaic, launched a revolution that culminated in Netscape Navigator. Suddenly, -people who had previously been doing advertisement brochures started writing -HTML. This meant that layout design had to be easy not just for programmers, but -also allow the graphics designer to do his or her job without having to know a -thing about programming. The W3C committee designing web standards came up with -the CSS (Cascading Style Sheet) specification, which allowed trivial separation -of appearance from content. Later versions of HTML followed, XHTML and HTML 5 -appeared, as did countless other standards. -endif::web[] - -ifdef::web[] -Page description and markup languages are a wonderful solution for static -presentations, such as books and most web pages. Real applications, however, -need to have more control. They need to be able to change the state of user -interface components and even their layout on the run. This creates a need to -separate the presentation from content on exactly the right -level.//// -Vaadin provides a solution for this, using themes and CSS, but let us first look -at what Java did for UI -programming. -//// -//// -Changing the layout steps right on the feet of the graphics designers, so we -have a conflict. We will discuss this conflict later, but let us first look at -what Java did for UI -programming. -//// -endif::web[] - -ifdef::web[] -Thanks to the attack of graphics designers, desktop applications were, when it -comes to appearance, far behind web design. Sun Microsystems had come in 1995 -with a new programming language, Java, for writing cross-platform desktop -applications. Java's original graphical user interface toolkit, AWT (Abstract -Windowing Toolkit), was designed to work on multiple operating systems as well -as embedded in web browsers. One of the special aspects of AWT was the layout -manager, which allowed user interface components to be flexible, growing and -shrinking as needed. This made it possible for the user to resize the windows of -an application flexibly and also served the needs of localization, as text -strings were not limited to some fixed size in pixels. It became even possible -to resize the pixel size of fonts, and the rest of the layout adapted to the new -size. -endif::web[] - -Layout management of Vaadin is a direct successor of the web-based concept for -separation of content and appearance and of the Java AWT solution for binding -the layout and user interface components into objects in programs. Vaadin layout -components allow you to position your UI components on the screen in a -hierarchical fashion, much like in conventional Java UI toolkits such as AWT, -Swing, or SWT. In addition, you can approach the layout from the direction of -the web with the [classname]#CustomLayout# component, which you can use to write -your layout as a template in HTML that provides locations of any contained -components. The [classname]#AbsoluteLayout# allows the old-style pixel-position -based layouting, but it also supports percentual values, which makes it usable -for scalable layouts. It is also useful as an area on which the user can -position items with drag and drop. - -ifdef::web[] -The moral of the story is that, because Vaadin is intended for web applications, -appearance is of high importance. The solutions have to be the best of both -worlds and satisfy artists of both kind: code and graphics. On the API side, the -layout is controlled by UI components, particularly the layout components. On -the visual side, it is controlled by themes. Themes can contain any HTML, Sass, -CSS, and JavaScript that you or your web artists create to make people feel good -about your software. -endif::web[] - - -include::layout-overview.asciidoc[leveloffset=+2] - -include::layout-root-layout.asciidoc[leveloffset=+2] - -include::layout-orderedlayout.asciidoc[leveloffset=+2] - -include::layout-gridlayout.asciidoc[leveloffset=+2] - -include::layout-formlayout.asciidoc[leveloffset=+2] - -include::layout-panel.asciidoc[leveloffset=+2] - -include::layout-sub-window.asciidoc[leveloffset=+2] - -include::layout-splitpanel.asciidoc[leveloffset=+2] - -include::layout-tabsheet.asciidoc[leveloffset=+2] - -include::layout-accordion.asciidoc[leveloffset=+2] - -include::layout-absolutelayout.asciidoc[leveloffset=+2] - -include::layout-csslayout.asciidoc[leveloffset=+2] - -include::layout-settings.asciidoc[leveloffset=+2] - -include::layout-customlayout.asciidoc[leveloffset=+2] diff --git a/documentation/layout/img/absolutelayout-area.png b/documentation/layout/img/absolutelayout-area.png Binary files differdeleted file mode 100644 index 7788d0de98..0000000000 --- a/documentation/layout/img/absolutelayout-area.png +++ /dev/null diff --git a/documentation/layout/img/absolutelayout-bottomright.png b/documentation/layout/img/absolutelayout-bottomright.png Binary files differdeleted file mode 100644 index c2402d7c1e..0000000000 --- a/documentation/layout/img/absolutelayout-bottomright.png +++ /dev/null diff --git a/documentation/layout/img/absolutelayout-proportional.png b/documentation/layout/img/absolutelayout-proportional.png Binary files differdeleted file mode 100644 index 0298e94914..0000000000 --- a/documentation/layout/img/absolutelayout-proportional.png +++ /dev/null diff --git a/documentation/layout/img/accordion-example1.png b/documentation/layout/img/accordion-example1.png Binary files differdeleted file mode 100644 index c6bc6db39f..0000000000 --- a/documentation/layout/img/accordion-example1.png +++ /dev/null diff --git a/documentation/layout/img/csslayout-basic.png b/documentation/layout/img/csslayout-basic.png Binary files differdeleted file mode 100644 index 0f71568279..0000000000 --- a/documentation/layout/img/csslayout-basic.png +++ /dev/null diff --git a/documentation/layout/img/csslayout-getcss.png b/documentation/layout/img/csslayout-getcss.png Binary files differdeleted file mode 100644 index 64c3a7255c..0000000000 --- a/documentation/layout/img/csslayout-getcss.png +++ /dev/null diff --git a/documentation/layout/img/csslayout-styling.png b/documentation/layout/img/csslayout-styling.png Binary files differdeleted file mode 100644 index 435947f80c..0000000000 --- a/documentation/layout/img/csslayout-styling.png +++ /dev/null diff --git a/documentation/layout/img/customlayout-example1.png b/documentation/layout/img/customlayout-example1.png Binary files differdeleted file mode 100644 index adad457f5d..0000000000 --- a/documentation/layout/img/customlayout-example1.png +++ /dev/null diff --git a/documentation/layout/img/formlayout-example1.png b/documentation/layout/img/formlayout-example1.png Binary files differdeleted file mode 100644 index 6ebc4aaddb..0000000000 --- a/documentation/layout/img/formlayout-example1.png +++ /dev/null diff --git a/documentation/layout/img/gridlayout.png b/documentation/layout/img/gridlayout.png Binary files differdeleted file mode 100644 index 6d1f283918..0000000000 --- a/documentation/layout/img/gridlayout.png +++ /dev/null diff --git a/documentation/layout/img/gridlayout_sizing_expanding.png b/documentation/layout/img/gridlayout_sizing_expanding.png Binary files differdeleted file mode 100644 index 8467d7b0dd..0000000000 --- a/documentation/layout/img/gridlayout_sizing_expanding.png +++ /dev/null diff --git a/documentation/layout/img/horizontallayout_sizing.png b/documentation/layout/img/horizontallayout_sizing.png Binary files differdeleted file mode 100644 index 2461577ed7..0000000000 --- a/documentation/layout/img/horizontallayout_sizing.png +++ /dev/null diff --git a/documentation/layout/img/horizontallayout_width_defined.png b/documentation/layout/img/horizontallayout_width_defined.png Binary files differdeleted file mode 100644 index 160dd6a005..0000000000 --- a/documentation/layout/img/horizontallayout_width_defined.png +++ /dev/null diff --git a/documentation/layout/img/horizontallayout_width_expand_percentage.png b/documentation/layout/img/horizontallayout_width_expand_percentage.png Binary files differdeleted file mode 100644 index ee3a817cee..0000000000 --- a/documentation/layout/img/horizontallayout_width_expand_percentage.png +++ /dev/null diff --git a/documentation/layout/img/horizontallayout_width_expand_ratios-2.png b/documentation/layout/img/horizontallayout_width_expand_ratios-2.png Binary files differdeleted file mode 100644 index 2d7b496232..0000000000 --- a/documentation/layout/img/horizontallayout_width_expand_ratios-2.png +++ /dev/null diff --git a/documentation/layout/img/horizontallayout_width_expand_ratios.png b/documentation/layout/img/horizontallayout_width_expand_ratios.png Binary files differdeleted file mode 100644 index 92fef5c91d..0000000000 --- a/documentation/layout/img/horizontallayout_width_expand_ratios.png +++ /dev/null diff --git a/documentation/layout/img/horizontallayout_width_expand_uniform.png b/documentation/layout/img/horizontallayout_width_expand_uniform.png Binary files differdeleted file mode 100644 index 7d2ecc398d..0000000000 --- a/documentation/layout/img/horizontallayout_width_expand_uniform.png +++ /dev/null diff --git a/documentation/layout/img/horizontallayout_width_expanding.png b/documentation/layout/img/horizontallayout_width_expanding.png Binary files differdeleted file mode 100644 index 4a7a44c8aa..0000000000 --- a/documentation/layout/img/horizontallayout_width_expanding.png +++ /dev/null diff --git a/documentation/layout/img/horizontallayout_width_undefined.png b/documentation/layout/img/horizontallayout_width_undefined.png Binary files differdeleted file mode 100644 index f0009f54c1..0000000000 --- a/documentation/layout/img/horizontallayout_width_undefined.png +++ /dev/null diff --git a/documentation/layout/img/layout-intro-example-1.png b/documentation/layout/img/layout-intro-example-1.png Binary files differdeleted file mode 100644 index e69ffb1ba1..0000000000 --- a/documentation/layout/img/layout-intro-example-1.png +++ /dev/null diff --git a/documentation/layout/img/layout_alignment.png b/documentation/layout/img/layout_alignment.png Binary files differdeleted file mode 100644 index 79d9f49aed..0000000000 --- a/documentation/layout/img/layout_alignment.png +++ /dev/null diff --git a/documentation/layout/img/layout_margin.png b/documentation/layout/img/layout_margin.png Binary files differdeleted file mode 100644 index 27937c72d7..0000000000 --- a/documentation/layout/img/layout_margin.png +++ /dev/null diff --git a/documentation/layout/img/layout_size_undefined_vs_defined.png b/documentation/layout/img/layout_size_undefined_vs_defined.png Binary files differdeleted file mode 100644 index ef81d1c012..0000000000 --- a/documentation/layout/img/layout_size_undefined_vs_defined.png +++ /dev/null diff --git a/documentation/layout/img/layout_spacing.png b/documentation/layout/img/layout_spacing.png Binary files differdeleted file mode 100644 index f7220adf85..0000000000 --- a/documentation/layout/img/layout_spacing.png +++ /dev/null diff --git a/documentation/layout/img/orderedlayout-sizing-undefined.png b/documentation/layout/img/orderedlayout-sizing-undefined.png Binary files differdeleted file mode 100644 index 82f594b9a8..0000000000 --- a/documentation/layout/img/orderedlayout-sizing-undefined.png +++ /dev/null diff --git a/documentation/layout/img/orderedlayout_horizontal.png b/documentation/layout/img/orderedlayout_horizontal.png Binary files differdeleted file mode 100644 index dc91a62f54..0000000000 --- a/documentation/layout/img/orderedlayout_horizontal.png +++ /dev/null diff --git a/documentation/layout/img/orderedlayout_vertical.png b/documentation/layout/img/orderedlayout_vertical.png Binary files differdeleted file mode 100644 index 2798ac4f3d..0000000000 --- a/documentation/layout/img/orderedlayout_vertical.png +++ /dev/null diff --git a/documentation/layout/img/panel-scrolling.png b/documentation/layout/img/panel-scrolling.png Binary files differdeleted file mode 100644 index 16f695fdd9..0000000000 --- a/documentation/layout/img/panel-scrolling.png +++ /dev/null diff --git a/documentation/layout/img/panel.png b/documentation/layout/img/panel.png Binary files differdeleted file mode 100644 index 5bc85a1f66..0000000000 --- a/documentation/layout/img/panel.png +++ /dev/null diff --git a/documentation/layout/img/splitpanel-example1.png b/documentation/layout/img/splitpanel-example1.png Binary files differdeleted file mode 100644 index d0a90586af..0000000000 --- a/documentation/layout/img/splitpanel-example1.png +++ /dev/null diff --git a/documentation/layout/img/splitpanel-splitposition.png b/documentation/layout/img/splitpanel-splitposition.png Binary files differdeleted file mode 100644 index 35bf6ffb29..0000000000 --- a/documentation/layout/img/splitpanel-splitposition.png +++ /dev/null diff --git a/documentation/layout/img/subwindow-basic.png b/documentation/layout/img/subwindow-basic.png Binary files differdeleted file mode 100644 index b2fc46a263..0000000000 --- a/documentation/layout/img/subwindow-basic.png +++ /dev/null diff --git a/documentation/layout/img/subwindow-modal.png b/documentation/layout/img/subwindow-modal.png Binary files differdeleted file mode 100644 index 6571e16ee6..0000000000 --- a/documentation/layout/img/subwindow-modal.png +++ /dev/null diff --git a/documentation/layout/img/tabsheet-example1.png b/documentation/layout/img/tabsheet-example1.png Binary files differdeleted file mode 100644 index a1eb00e05d..0000000000 --- a/documentation/layout/img/tabsheet-example1.png +++ /dev/null diff --git a/documentation/layout/img/tabsheet-example2.png b/documentation/layout/img/tabsheet-example2.png Binary files differdeleted file mode 100644 index 9819a637ae..0000000000 --- a/documentation/layout/img/tabsheet-example2.png +++ /dev/null diff --git a/documentation/layout/img/tabsheet-tabclose.png b/documentation/layout/img/tabsheet-tabclose.png Binary files differdeleted file mode 100644 index 28689c9e82..0000000000 --- a/documentation/layout/img/tabsheet-tabclose.png +++ /dev/null diff --git a/documentation/layout/layout-absolutelayout.asciidoc b/documentation/layout/layout-absolutelayout.asciidoc deleted file mode 100644 index 8576cfb09b..0000000000 --- a/documentation/layout/layout-absolutelayout.asciidoc +++ /dev/null @@ -1,144 +0,0 @@ ---- -title: AbsoluteLayout -order: 11 -layout: page ---- - -[[layout.absolutelayout]] -= [classname]#AbsoluteLayout# - -[classname]#AbsoluteLayout# allows placing components in arbitrary positions in -the layout area. The positions are specified in the [methodname]#addComponent()# -method with horizontal and vertical coordinates relative to an edge of the -layout area. The positions can include a third depth dimension, the __z-index__, -which specifies which components are displayed in front and which behind other -components. - -The positions are specified by a CSS absolute position string, using the -[literal]#++left++#, [literal]#++right++#, [literal]#++top++#, -[literal]#++bottom++#, and [literal]#++z-index++# properties known from CSS. In -the following example, we have a 300 by 150 pixels large layout and position a -text field 50 pixels from both the left and the top edge: - - -[source, java] ----- -// A 400x250 pixels size layout -AbsoluteLayout layout = new AbsoluteLayout(); -layout.setWidth("400px"); -layout.setHeight("250px"); - -// A component with coordinates for its top-left corner -TextField text = new TextField("Somewhere someplace"); -layout.addComponent(text, "left: 50px; top: 50px;"); ----- - -The [literal]#++left++# and [literal]#++top++# specify the distance from the -left and top edge, respectively. The [literal]#++right++# and -[literal]#++bottom++# specify the distances from the right and top edge. - - -[source, java] ----- -// At the top-left corner -Button button = new Button( "left: 0px; top: 0px;"); -layout.addComponent(button, "left: 0px; top: 0px;"); - -// At the bottom-right corner -Button buttCorner = new Button( "right: 0px; bottom: 0px;"); -layout.addComponent(buttCorner, "right: 0px; bottom: 0px;"); - -// Relative to the bottom-right corner -Button buttBrRelative = new Button( "right: 50px; bottom: 50px;"); -layout.addComponent(buttBrRelative, "right: 50px; bottom: 50px;"); - -// On the bottom, relative to the left side -Button buttBottom = new Button( "left: 50px; bottom: 0px;"); -layout.addComponent(buttBottom, "left: 50px; bottom: 0px;"); - -// On the right side, up from the bottom -Button buttRight = new Button( "right: 0px; bottom: 100px;"); -layout.addComponent(buttRight, "right: 0px; bottom: 100px;"); ----- - -The result of the above code examples is shown in -<<figure.layout.absolutelayout.bottomright>>. - -[[figure.layout.absolutelayout.bottomright]] -.Components Positioned Relative to Various Edges -image::img/absolutelayout-bottomright.png[] - -Drag and drop is very useful for moving the components contained in an -[classname]#AbsoluteLayout#. Check out the example in -<<dummy/../../../framework/advanced/advanced-dragndrop#advanced.dragndrop.drop-on-component,"Dropping -on a Component">>. - -[[layout.absolutelayout.area]] -== Placing a Component in an Area - -Earlier, we had components of undefined size and specified the positions of -components by a single pair of coordinates. The other possibility is to specify -an area and let the component fill the area by specifying a proportinal size for -the component, such as " [literal]#++100%++#". Normally, you use -[methodname]#setSizeFull()# to take the entire area given by the layout. - - -[source, java] ----- -// Specify an area that a component should fill -Panel panel = new Panel("A Panel filling an area"); -panel.setSizeFull(); // Fill the entire given area -layout.addComponent(panel, "left: 25px; right: 50px; "+ - "top: 100px; bottom: 50px;"); ----- - -The result is shown in <<figure.layout.absolutelayout.area>> - -[[figure.layout.absolutelayout.area]] -.Component Filling an Area Specified by Coordinates -image::img/absolutelayout-area.png[] - - -[[layout.absolutelayout.proportional]] -== Proportional Coordinates - -You can also use proportional coordinates to specify the placement of -components: - - -[source, java] ----- -// A panel that takes 30% to 90% horizontally and -// 20% to 80% vertically -Panel panel = new Panel("A Panel"); -panel.setSizeFull(); // Fill the specified area -layout.addComponent(panel, "left: 30%; right: 10%;" + - "top: 20%; bottom: 20%;"); ----- - -The result is shown in <<figure.layout.absolutelayout.proportional>> - -[[figure.layout.absolutelayout.proportional]] -.Specifying an Area by Proportional Coordinates -image::img/absolutelayout-proportional.png[] - - -[[layout.absolutelayout.css]] -== Styling with CSS - - -[source, css] ----- -.v-absolutelayout {} -.v-absolutelayout-wrapper {} ----- - -The [classname]#AbsoluteLayout# component has [literal]#++v-absolutelayout++# -root style. Each component in the layout is contained within an element that has -the [literal]#++v-absolutelayout-wrapper++#. The component captions are outside -the wrapper elements, in a separate element with the usual -[literal]#++v-caption++# style. - - - - diff --git a/documentation/layout/layout-accordion.asciidoc b/documentation/layout/layout-accordion.asciidoc deleted file mode 100644 index 37bbe9e529..0000000000 --- a/documentation/layout/layout-accordion.asciidoc +++ /dev/null @@ -1,85 +0,0 @@ ---- -title: Accordion -order: 10 -layout: page ---- - -[[layout.accordion]] -= [classname]#Accordion# - -[classname]#Accordion# is a multicomponent container similar to -[classname]#TabSheet#, except that the "tabs" are arranged vertically. Clicking -on a tab opens its contained component in the space between the tab and the next -one. You can use an [classname]#Accordion# identically to a -[classname]#TabSheet#, which it actually inherits. See -<<dummy/../../../framework/layout/layout-tabsheet#layout.tabsheet,"TabSheet">> -for more information. - -The following example shows how you can create a simple accordion. As the -[classname]#Accordion# is rather naked alone, we put it inside a Panel that acts -as its caption and provides it a border. - - -[source, java] ----- -// Create the accordion -Accordion accordion = new Accordion(); - -// Create the first tab, specify caption when adding -Layout tab1 = new VerticalLayout(); // Wrap in a layout -tab1.addComponent(new Image(null, // No component caption - new ThemeResource("img/planets/Mercury.jpg"))); -accordion.addTab(tab1, "Mercury", - new ThemeResource("img/planets/Mercury_symbol.png")); - -// This tab gets its caption from the component caption -Component tab2 = new Image("Venus", - new ThemeResource("img/planets/Venus.jpg")); -accordion.addTab(tab2).setIcon( - new ThemeResource("img/planets/Venus_symbol.png")); - -// And so forth the other tabs... -String[] tabs = {"Earth", "Mars", "Jupiter", "Saturn"}; -for (String caption: tabs) { - String basename = "img/planets/" + caption; - VerticalLayout tab = new VerticalLayout(); - tab.addComponent(new Embedded(null, - new ThemeResource(basename + ".jpg"))); - accordion.addTab(tab, caption, - new ThemeResource(basename + "_symbol.png")); -} ----- - -<<figure.accordion.example1>> shows what the example would look like with the -default theme. - -[[figure.accordion.example1]] -.An Accordion -image::img/accordion-example1.png[] - -== CSS Style Rules - - -[source, css] ----- -.v-accordion {} - .v-accordion-item, - .v-accordion-item-open, - .v-accordion-item-first {} - .v-accordion-item-caption {} - .v-caption {} - .v-accordion-item-content {} - .v-scollable {} ----- - -The top-level element of [classname]#Accordion# has the -[literal]#++v-accordion++# style. An [classname]#Accordion# consists of a -sequence of item elements, each of which has a caption element (the tab) and a -content area element. - -The selected item (tab) has also the [literal]#++v-accordion-open++# style. The -content area is not shown for the closed items. - - - - diff --git a/documentation/layout/layout-csslayout.asciidoc b/documentation/layout/layout-csslayout.asciidoc deleted file mode 100644 index 0b60f78245..0000000000 --- a/documentation/layout/layout-csslayout.asciidoc +++ /dev/null @@ -1,179 +0,0 @@ ---- -title: CssLayout -order: 12 -layout: page ---- - -[[layout.csslayout]] -= [classname]#CssLayout# - -[classname]#CssLayout# allows strong control over styling of the components -contained inside the layout. The components are contained in a simple DOM -structure consisting of [literal]#++<div>++# elements. By default, the contained -components are laid out horizontally and wrap naturally when they reach the -width of the layout, but you can control this and most other behaviour with CSS. -You can also inject custom CSS for each contained component. As -[classname]#CssLayout# has a very simple DOM structure and no dynamic rendering -logic, relying purely on the built-in rendering logic of the browsers, it is the -fastest of the layout components. - -The basic use of [classname]#CssLayout# is just like with any other layout -component: - - -[source, java] ----- -CssLayout layout = new CssLayout(); - -// Component with a layout-managed caption and icon -TextField tf = new TextField("A TextField"); -tf.setIcon(new ThemeResource("icons/user.png")); -layout.addComponent(tf); - -// Labels are 100% wide by default so must unset width -Label label = new Label("A Label"); -label.setWidth(Sizeable.SIZE_UNDEFINED, 0); -layout.addComponent(label); - -layout.addComponent(new Button("A Button")); ----- - -The result is shown in <<figure.layout.csslayout.basic>>. Notice that the -default spacing and alignment of the layout is quite crude and CSS styling is -nearly always needed. - -[[figure.layout.csslayout.basic]] -.Basic Use of [classname]#CssLayout# -image::img/csslayout-basic.png[] - -The [literal]#++display++# attribute of [classname]#CssLayout# is -[literal]#++inline-block++# by default, so the components are laid out -horizontally following another. [classname]#CssLayout# has 100% width by -default. If the components reach the width of the layout, they are wrapped to -the next "line" just as text would be. If you add a component with 100% width, -it will take an entire line by wrapping before and after the component. - -[[layout.csslayout.injection]] -== CSS Injection - -Overriding the [methodname]#getCss()# method allows injecting custom CSS for -each component. The CSS returned by the method is inserted in the -[parameter]#style# attribute of the [literal]#++<div>++# element of the -component, so it will override any style definitions made in CSS files. - - -[source, java] ----- -CssLayout layout = new CssLayout() { - @Override - protected String getCss(Component c) { - if (c instanceof Label) { - // Color the boxes with random colors - int rgb = (int) (Math.random()*(1<<24)); - return "background: #" + Integer.toHexString(rgb); - } - return null; - } -}; -layout.setWidth("400px"); // Causes to wrap the contents - -// Add boxes of various sizes -for (int i=0; i<40; i++) { - Label box = new Label(" ", ContentMode.HTML); - box.addStyleName("flowbox"); - box.setWidth((float) Math.random()*50, - Sizeable.UNITS_PIXELS); - box.setHeight((float) Math.random()*50, - Sizeable.UNITS_PIXELS); - layout.addComponent(box); -} ----- - -The style name added to the components allows making common styling in a CSS -file: - - -[source, css] ----- -.v-label-flowbox { - border: thin black solid; -} ----- - -<<figure.layout.csslayout.getcss>> shows the rendered result. - -[[figure.layout.csslayout.getcss]] -.Use of [methodname]#getCss()# and line wrap -image::img/csslayout-getcss.png[] - - -[[layout.csslayout.compatibility]] -== Browser Compatibility - -The stregth of the [classname]#CssLayout# is also its weakness. Much of the -logic behind the other layout components is there to give nice default behaviour -and to handle the differences in different browsers. Some browsers, no need to -say which, are notoriously incompatible with the CSS standards, so they require -a lot of custom CSS. You may need to make use of the browser-specific style -classes in the root element of the -application.//// -TODO: described in <xref -linkend="advanced.browserinfo"/> -//// -Some features in the other layouts are not even solvable in pure CSS, at least -in all browsers. - - -[[layout.csslayout.css]] -== Styling with CSS - - -[source, css] ----- -.v-csslayout {} -.v-csslayout-margin {} -.v-csslayout-container {} ----- - -The [classname]#CssLayout# component has [literal]#++v-csslayout++# root style. -The margin element with [literal]#++v-csslayout-margin++# style is always -enabled. The components are contained in an element with -[literal]#++v-csslayout-container++# style. - -For example, we could style the basic [classname]#CssLayout# example shown -earlier as follows: - - -[source, css] ----- -/* Have the caption right of the text box, bottom-aligned */ -.csslayoutexample .mylayout .v-csslayout-container { - direction: rtl; - line-height: 24px; - vertical-align: bottom; -} - -/* Have some space before and after the caption */ -.csslayoutexample .mylayout .v-csslayout-container .v-caption { - padding-left: 3px; - padding-right: 10px; -} ----- - -The example would now be rendered as shown in -<<figure.layout.csslayout.styling>>. - -[[figure.layout.csslayout.styling]] -.Styling [classname]#CssLayout# -image::img/csslayout-styling.png[] - -Captions and icons that are managed by the layout are contained in an element -with [literal]#++v-caption++# style. These caption elements are contained flat -at the same level as the actual component elements. This may cause problems with -wrapping in [literal]#++inline-block++# mode, as wrapping can occur between the -caption and its corresponding component element just as well as between -components. Such use case is therefore not feasible. - - - - diff --git a/documentation/layout/layout-customlayout.asciidoc b/documentation/layout/layout-customlayout.asciidoc deleted file mode 100644 index e5acff75d1..0000000000 --- a/documentation/layout/layout-customlayout.asciidoc +++ /dev/null @@ -1,100 +0,0 @@ ---- -title: Custom Layouts -order: 14 -layout: page ---- - -[[layout.customlayout]] -= Custom Layouts - -While it is possible to create almost any typical layout with the standard -layout components, it is sometimes best to separate the layout completely from -code. With the [classname]#CustomLayout# component, you can write your layout as -a template in HTML that provides locations of any contained components. The -layout template is included in a theme. This separation allows the layout to be -designed separately from code, for example using WYSIWYG web designer tools such -as Adobe Dreamweaver. - -A template is a HTML file located under [filename]#layouts# folder under a theme -folder under the [filename]#WebContent/VAADIN/themes/# folder, for example, -[filename]#WebContent/VAADIN/themes/__themename/layouts/mylayout.html__#. -(Notice that the root path [filename]#WebContent/VAADIN/themes/# for themes is -fixed.) A template can also be provided dynamically from an -[classname]#InputStream#, as explained below. A template includes -[literal]#++<div>++# elements with a [parameter]#location# attribute that -defines the location identifier. All custom layout HTML-files must be saved -using UTF-8 character encoding. - -[subs="normal"] ----- -<table width="100%" height="100%"> - <tr height="100%"> - <td> - <table align="center"> - <tr> - <td align="right">User&nbsp;name:</td> - <td>**<div location="username"></div>**</td> - </tr> - <tr> - <td align="right">Password:</td> - <td>**<div location="password"></div>**</td> - </tr> - </table> - </td> - </tr> - <tr> - <td align="right" colspan="2"> - **<div location="okbutton">**</div> - </td> - </tr> -</table> ----- -The client-side engine of Vaadin will replace contents of the location elements -with the components. The components are bound to the location elements by the -location identifier given to [methodname]#addComponent()#, as shown in the -example below. - - -[source, java] ----- -Panel loginPanel = new Panel("Login"); -CustomLayout content = new CustomLayout("layoutname"); -content.setSizeUndefined(); -loginPanel.setContent(content); -loginPanel.setSizeUndefined(); - -// No captions for fields is they are provided in the template -content.addComponent(new TextField(), "username"); -content.addComponent(new TextField(), "password"); -content.addComponent(new Button("Login"), "okbutton"); ----- - -The resulting layout is shown below in <<figure.layout.customlayout>>. - -[[figure.layout.customlayout]] -.Example of a Custom Layout Component -image::img/customlayout-example1.png[] - -You can use [methodname]#addComponent()# also to replace an existing component -in the location given in the second parameter. - -In addition to a static template file, you can provide a template dynamically -with the [classname]#CustomLayout# constructor that accepts an -[classname]#InputStream# as the template source. For example: - - -[source, java] ----- -new CustomLayout(new ByteArrayInputStream("<b>Template</b>".getBytes())); ----- - -or - - -[source, java] ----- -new CustomLayout(new FileInputStream(file)); ----- - - - diff --git a/documentation/layout/layout-formlayout.asciidoc b/documentation/layout/layout-formlayout.asciidoc deleted file mode 100644 index b22750f2c8..0000000000 --- a/documentation/layout/layout-formlayout.asciidoc +++ /dev/null @@ -1,94 +0,0 @@ ---- -title: FormLayout -order: 5 -layout: page ---- - -[[layout.formlayout]] -= [classname]#FormLayout# - -[classname]#FormLayout# lays the components and their captions out in two -columns, with optional indicators for required fields and errors that can be -shown for each field. The field captions can have an icon in addition to the -text. [classname]#FormLayout# is an ordered layout and much like -[classname]#VerticalLayout#. For description of margins, spacing, and other -features in ordered layouts, see -<<dummy/../../../framework/layout/layout-orderedlayout#layout.orderedlayout,"VerticalLayout -and HorizontalLayout">>. - -The following example shows typical use of [classname]#FormLayout# in a form: - - -[source, java] ----- -FormLayout form = new FormLayout(); -TextField tf1 = new TextField("Name"); -tf1.setIcon(FontAwesome.USER); -tf1.setRequired(true); -tf1.addValidator(new NullValidator("Must be given", false)); -form.addComponent(tf1); - -TextField tf2 = new TextField("Street address"); -tf2.setIcon(FontAwesome.ROAD); -form.addComponent(tf2); - -TextField tf3 = new TextField("Postal code"); -tf3.setIcon(FontAwesome.ENVELOPE); -tf3.addValidator(new IntegerRangeValidator("Doh!", 1, 99999)); -form.addComponent(tf3); ----- - -The resulting layout will look as follows. The error message shows in a tooptip -when you hover the mouse pointer over the error indicator. - -[[figure.layout.formlayout]] -.A [classname]#FormLayout# Layout for Forms -image::img/formlayout-example1.png[] - -[[layout.formlayout.css]] -== CSS Style Rules - - -[source, css] ----- -.v-formlayout {} -.v-formlayout .v-caption {} - -/* Columns in a field row. */ -.v-formlayout-contentcell {} /* Field content. */ -.v-formlayout-captioncell {} /* Field caption. */ -.v-formlayout-errorcell {} /* Field error indicator. */ - -/* Overall style of field rows. */ -.v-formlayout-row {} -.v-formlayout-firstrow {} -.v-formlayout-lastrow {} - -/* Required field indicator. */ -.v-formlayout .v-required-field-indicator {} -.v-formlayout-captioncell .v-caption - .v-required-field-indicator {} - -/* Error indicator. */ -.v-formlayout-cell .v-errorindicator {} -.v-formlayout-error-indicator .v-errorindicator {} ----- - -The top-level element of [classname]#FormLayout# has the -[literal]#++v-formlayout++# style. The layout is tabular with three columns: the -caption column, the error indicator column, and the field column. These can be -styled with [literal]#++v-formlayout-captioncell++#, -[literal]#++v-formlayout-errorcell++#, and -[literal]#++v-formlayout-contentcell++#, respectively. While the error indicator -is shown as a dedicated column, the indicator for required fields is currently -shown as a part of the caption column. - -For information on setting margins and spacing, see also -<<dummy/../../../framework/layout/layout-orderedlayout#layout.orderedlayout.spacing,"Spacing -in Ordered Layouts">> and -<<dummy/../../../framework/layout/layout-settings#layout.settings.margins,"Layout -Margins">>. - - - - diff --git a/documentation/layout/layout-gridlayout.asciidoc b/documentation/layout/layout-gridlayout.asciidoc deleted file mode 100644 index 17666d0e8e..0000000000 --- a/documentation/layout/layout-gridlayout.asciidoc +++ /dev/null @@ -1,239 +0,0 @@ ---- -title: GridLayout -order: 4 -layout: page ---- - -[[layout.gridlayout]] -= [classname]#GridLayout# - -[classname]#GridLayout# container lays components out on a grid, defined by the -number of columns and rows. The columns and rows of the grid serve as -coordinates that are used for laying out components on the grid. Each component -can use multiple cells from the grid, defined as an area (x1,y1,x2,y2), although -they typically take up only a single grid cell. - -The grid layout maintains a cursor for adding components in left-to-right, -top-to-bottom order. If the cursor goes past the bottom-right corner, it will -automatically extend the grid downwards by adding a new row. - -The following example demonstrates the use of [classname]#GridLayout#. The -[methodname]#addComponent# takes a component and optional coordinates. The -coordinates can be given for a single cell or for an area in x,y (column,row) -order. The coordinate values have a base value of 0. If coordinates are not -given, the cursor will be used. - - -[source, java] ----- -// Create a 4 by 4 grid layout. -GridLayout grid = new GridLayout(4, 4); -grid.addStyleName("example-gridlayout"); - -// Fill out the first row using the cursor. -grid.addComponent(new Button("R/C 1")); -for (int i = 0; i < 3; i++) { - grid.addComponent(new Button("Col " + (grid.getCursorX() + 1))); -} - -// Fill out the first column using coordinates. -for (int i = 1; i < 4; i++) { - grid.addComponent(new Button("Row " + i), 0, i); -} - -// Add some components of various shapes. -grid.addComponent(new Button("3x1 button"), 1, 1, 3, 1); -grid.addComponent(new Label("1x2 cell"), 1, 2, 1, 3); -InlineDateField date = new InlineDateField("A 2x2 date field"); -date.setResolution(DateField.RESOLUTION_DAY); -grid.addComponent(date, 2, 2, 3, 3); ----- - -The resulting layout will look as follows. The borders have been made visible to -illustrate the layout cells. - -[[figure.ui.gridlayout]] -.The Grid Layout Component -image::img/gridlayout.png[] - -A component to be placed on the grid must not overlap with existing components. -A conflict causes throwing a [classname]#GridLayout.OverlapsException#. - -== Sizing Grid Cells - -You can define the size of both a grid layout and its components in either fixed -or percentual units, or leave the size undefined altogether, as described in -<<dummy/../../../framework/components/components-features#components.features.sizeable,"Sizing -Components">>. -<<dummy/../../../framework/layout/layout-settings#layout.settings.size,"Layout -Size">> gives an introduction to sizing of layouts. - -The size of the [classname]#GridLayout# component is undefined by default, so it -will shrink to fit the size of the components placed inside it. In most cases, -especially if you set a defined size for the layout but do not set the contained -components to full size, there will be some unused space. The position of the -non-full components within the grid cells will be determined by their -__alignment__. See -<<dummy/../../../framework/layout/layout-settings#layout.settings.alignment,"Layout -Cell Alignment">> for details on how to align the components inside the cells. - -The components contained within a [classname]#GridLayout# layout can be laid out -in a number of different ways depending on how you specify their height or -width. The layout options are similar to [classname]#HorizontalLayout# and -[classname]#VerticalLayout#, as described in -<<dummy/../../../framework/layout/layout-orderedlayout#layout.orderedlayout,"VerticalLayout -and HorizontalLayout">>. - - -[WARNING] -.A layout that contains components with percentual size must have a defined size! -==== -If a layout has undefined size and a contained component has, say, 100% size, -the component would fill the space given by the layout, while the layout would -shrink to fit the space taken by the component, which is a paradox. This -requirement holds for height and width separately. The debug mode allows -detecting such invalid cases; see -<<dummy/../../../framework/advanced/advanced-debug#advanced.debug.mode,"Enabling -the Debug Mode">>. - -==== - - - -Often, you want to have one or more rows or columns that take all the available -space left over from non-expanding rows or columns. You need to set the rows or -columns as __expanding__ with [methodname]#setRowExpandRatio()# and -[methodname]#setColumnExpandRatio()#. The first parameter for these methods is -the index of the row or column to set as expanding. The second parameter for the -methods is an expansion ratio, which is relevant if there are more than one -expanding row or column, but its value is irrelevant if there is only one. With -multiple expanding rows or columns, the ratio parameter sets the relative -portion how much a specific row/column will take in relation with the other -expanding rows/columns. - - -[source, java] ----- -GridLayout grid = new GridLayout(3,2); - -// Layout containing relatively sized components must have -// a defined size, here is fixed size. -grid.setWidth("600px"); -grid.setHeight("200px"); - -// Add some content -String labels [] = { - "Shrinking column<br/>Shrinking row", - "Expanding column (1:)<br/>Shrinking row", - "Expanding column (5:)<br/>Shrinking row", - "Shrinking column<br/>Expanding row", - "Expanding column (1:)<br/>Expanding row", - "Expanding column (5:)<br/>Expanding row" -}; -for (int i=0; i<labels.length; i++) { - Label label = new Label(labels[i], ContentMode.HTML); - label.setWidth(null); // Set width as undefined - grid.addComponent(label); -} - -// Set different expansion ratios for the two columns -grid.setColumnExpandRatio(1, 1); -grid.setColumnExpandRatio(2, 5); - -// Set the bottom row to expand -grid.setRowExpandRatio(1, 1); - -// Align and size the labels. -for (int col=0; col<grid.getColumns(); col++) { - for (int row=0; row<grid.getRows(); row++) { - Component c = grid.getComponent(col, row); - grid.setComponentAlignment(c, Alignment.TOP_CENTER); - - // Make the labels high to illustrate the empty - // horizontal space. - if (col != 0 || row != 0) - c.setHeight("100%"); - } -} ----- - -[[figure.ui.gridlayout.sizing.expanding]] -.Expanding Rows and Columns in [classname]#GridLayout# -image::img/gridlayout_sizing_expanding.png[] - -If the size of the contained components is undefined or fixed, the expansion -ratio is of the __excess__ space, as in -<<figure.ui.gridlayout.sizing.expanding>> (excess horizontal space is shown in -white). However, if the size of the all the contained components in the -expanding rows or columns is defined as a percentage, the ratio is calculated -from the __overall__ space available for the percentually sized components. For -example, if we had a 100 pixels wide grid layout with two columns with 1.0 and -4.0 respective expansion ratios, and all the components in the grid were set as -[methodname]#setWidth("100%")#, the columns would have respective widths of 20 -and 80 pixels, regardless of the minimum size of their contained components. - - -== CSS Style Rules - - -[source, css] ----- -.v-gridlayout {} -.v-gridlayout-margin {} ----- - -The v-gridlayout is the root element of the [classname]#GridLayout# component. -The v-gridlayout-margin is a simple element inside it that allows setting a -padding between the outer element and the cells. - -For styling the individual grid cells, you should style the components inserted -in the cells. The implementation structure of the grid can change, so depending -on it, as is done in the example below, is not generally recommended. Normally, -if you want to have, for example, a different color for a certain cell, just -make set the component inside it [methodname]#setSizeFull()#, and add a style -name for it. Sometimes you may need to use a layout component between a cell and -its actual component just for styling. - -The following example shows how to make the grid borders visible, as in -<<figure.ui.gridlayout.sizing.expanding>>. - - -[source, java] ----- -.v-gridlayout-gridexpandratio { - background: blue; /* Creates a "border" around the grid. */ - margin: 10px; /* Empty space around the layout. */ -} - -/* Add padding through which the background color shows. */ -.v-gridlayout-gridexpandratio .v-gridlayout-margin { - padding: 2px; -} - -/* Add cell borders and make the cell backgrounds white. - * Warning: This depends heavily on the HTML structure. */ -.v-gridlayout-gridexpandratio > div > div > div { - padding: 2px; /* Layout background will show through. */ - background: white; /* The cells will be colored white. */ -} - -/* Components inside the layout are a safe way to style cells. */ -.v-gridlayout-gridexpandratio .v-label { - text-align: left; - background: #ffffc0; /* Pale yellow */ -} ----- - -You should beware of [literal]#++margin++#, [literal]#++padding++#, and -[literal]#++border++# settings in CSS as they can mess up the layout. The -dimensions of layouts are calculated in the Client-Side Engine of Vaadin and -some settings can interfere with these calculations. For more information, on -margins and spacing, see -<<dummy/../../../framework/layout/layout-settings#layout.settings.spacing,"Layout -Cell Spacing">> and -<<dummy/../../../framework/layout/layout-settings#layout.settings.margins,"Layout -Margins">> - - - - diff --git a/documentation/layout/layout-orderedlayout.asciidoc b/documentation/layout/layout-orderedlayout.asciidoc deleted file mode 100644 index 7cd2c7772d..0000000000 --- a/documentation/layout/layout-orderedlayout.asciidoc +++ /dev/null @@ -1,356 +0,0 @@ ---- -title: VerticalLayout and HorizontalLayout -order: 3 -layout: page ---- - -[[layout.orderedlayout]] -= [classname]#VerticalLayout# and [classname]#HorizontalLayout# - -[classname]#VerticalLayout# and [classname]#HorizontalLayout# are ordered -layouts for laying components out either vertically or horizontally, -respectively. They both extend from [classname]#AbstractOrderedLayout#, together -with the [classname]#FormLayout#. These are the two most important layout -components in Vaadin, and typically you have a [classname]#VerticalLayout# as -the root content of a UI. - -[classname]#VerticalLayout# has 100% default width and undefined height, so it -fills the containing layout (or UI) horizontally, and fits its content -vertically. [classname]#HorizontalLayout# has undefined size in both dimensions. - -Typical use of the layouts goes as follows: - - -[source, java] ----- -VerticalLayout vertical = new VerticalLayout (); -vertical.addComponent(new TextField("Name")); -vertical.addComponent(new TextField("Street address")); -vertical.addComponent(new TextField("Postal code")); -layout.addComponent(vertical); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#layout.orderedlayout.basic[on-line example, window="_blank"]. - -The component captions are placed above the component, so the layout will look -as follows: - -image::img/orderedlayout_vertical.png[] - -Using [classname]#HorizontalLayout# gives the following layout: - -image::img/orderedlayout_horizontal.png[] - -[[layout.orderedlayout.properties]] -== Properties or Attributes - -Ordered layouts have the following properties: - -[[layout.orderedlayout.properties.table]] -.Properties and Declarative Attributes - -|=============== -|Property|Declarative Attribute -|[parameter]#componentAlignment#|In child components:[literal]#++:left++#(default),[literal]#++:center++#,[literal]#++:right++#,[literal]#++:top++#(default),[literal]#++:middle++#,[literal]#++:bottom++# -|[parameter]#spacing#|[parameter]#spacing#[replaceable]#[=<boolean>]# -|[parameter]#margin#|[parameter]#margin#[replaceable]#[=<boolean>]# -|[parameter]#expandRatio#|In child components:[parameter]#:expand#=[replaceable]#<integer>#or[parameter]#:expand#(implies ratio 1) - -|=============== - - - - -[[layout.orderedlayout.spacing]] -== Spacing in Ordered Layouts - -The ordered layouts can have spacing between the horizontal or vertical cells. -The spacing can be enabled with [methodname]#setSpacing(true)# or declaratively -with the [literal]#++spacing++# attribute. - -The spacing as a default height or width, which can be customized in CSS. You -need to set the height or width for spacing elements with -[literal]#++v-spacing++# style. You also need to specify an enclosing rule -element in a CSS selector, such as [literal]#++v-verticallayout++# for a -[classname]#VerticalLayout# or [literal]#++v-horizontallayout++# for a -[classname]#HorizontalLayout#. You can also use [literal]#++v-vertical++# and -[literal]#++v-horizontal++# for all vertically or horizontally ordered layouts, -such as [classname]#FormLayout#. - -For example, the following sets the amount of spacing for all -[classname]#VerticalLayout#s, as well as [classname]#FormLayout#, in the UI: - - -[source, css] ----- -.v-vertical > .v-spacing { - height: 30px; -} ----- - -Or for [classname]#HorizontalLayout#: - - -[source, css] ----- -.v-horizontal > .v-spacing { - width: 50px; -} ----- - - -[[layout.orderedlayout.sizing]] -== Sizing Contained Components - -The components contained within an ordered layout can be laid out in a number of -different ways depending on how you specify their height or width in the primary -direction of the layout component. - -[[figure.layout.orderedlayout.size.summary]] -.Component Widths in [classname]#HorizontalLayout# -image::img/horizontallayout_sizing.png[] - -<<figure.layout.orderedlayout.size.summary>> gives a summary of the sizing -options for a [classname]#HorizontalLayout#. The figure is broken down in the -following subsections. - -[[layout.orderedlayout.sizing.undefined]] -=== Layout with Undefined Size - -If a [classname]#VerticalLayout# has undefined height or -[classname]#HorizontalLayout# undefined width, the layout will shrink to fit the -contained components so that there is no extra space between them. - - -[source, java] ----- -HorizontalLayout fittingLayout = new HorizontalLayout(); -fittingLayout.setWidth(Sizeable.SIZE_UNDEFINED, 0); // Default -fittingLayout.addComponent(new Button("Small")); -fittingLayout.addComponent(new Button("Medium-sized")); -fittingLayout.addComponent(new Button("Quite a big component")); -parentLayout.addComponent(fittingLayout); ----- - -The both layouts actually have undefined height by default and -[classname]#HorizontalLayout# has also undefined width, while -[classname]#VerticalLayout# has 100% relative width. - -If such a vertical layout with undefined height continues below the bottom of a -window (a [classname]#Window# object), the window will pop up a vertical scroll -bar on the right side of the window area. This way, you get a "web page". The -same applies to [classname]#Panel#. - - -[WARNING] -.A layout that contains components with percentual size must have a defined size! -==== -If a layout has undefined size and a contained component has, say, 100% size, -the component would fill the space given by the layout, while the layout would -shrink to fit the space taken by the component, which would be a paradox. This -requirement holds for height and width separately. The debug window allows -detecting such invalid cases; see -<<dummy/../../../framework/advanced/advanced-debug#advanced.debug.hierarchy,"Inspecting -Component Hierarchy">>. - -==== - - - -An exception to the above rule is a case where you have a layout with undefined -size that contains a component with a fixed or undefined size together with one -or more components with relative size. In this case, the contained component -with fixed (or undefined) size in a sense defines the size of the containing -layout, removing the paradox. That size is then used for the relatively sized -components. - -The technique can be used to define the width of a [classname]#VerticalLayout# -or the height of a [classname]#HorizontalLayout#. - - -[source, java] ----- -// Vertical layout would normally have 100% width -VerticalLayout vertical = new VerticalLayout(); - -// Shrink to fit the width of contained components -vertical.setWidth(Sizeable.SIZE_UNDEFINED, 0); - -// Label has normally 100% width, but we set it as -// undefined so that it will take only the needed space -Label label = - new Label("\u2190 The VerticalLayout shrinks to fit "+ - "the width of this Label \u2192"); -label.setWidth(Sizeable.SIZE_UNDEFINED, 0); -vertical.addComponent(label); - -// Button has undefined width by default -Button butt = new Button("\u2190 This Button takes 100% "+ - "of the width \u2192"); -butt.setWidth("100%"); -vertical.addComponent(butt); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#layout.orderedlayout.sizing.sizing-undefined-defining[on-line example, window="_blank"]. - -[[figure.layout.orderedlayout.sizing.undefined.defining]] -.Defining the Size with a Component -image::img/orderedlayout-sizing-undefined.png[] - - -=== Layout with Defined Size - -If you set a [classname]#HorizontalLayout# to a defined size horizontally or a -[classname]#VerticalLayout# vertically, and there is space left over from the -contained components, the extra space is distributed equally between the -component cells. The components are aligned within these cells according to -their alignment setting, top left by default, as in the example below. - - -[source, java] ----- -fixedLayout.setWidth("400px"); ----- - -Using percentual sizes for components contained in a layout requires answering -the question, "Percentage of what?" There is no sensible default answer for this -question in the current implementation of the layouts, so in practice, you may -not define "100%" size alone. - - -=== Expanding Components - -Often, you want to have one component that takes all the available space left -over from other components. You need to set its size as 100% and set it as -__expanding__ with [methodname]#setExpandRatio()#. The second parameter for the -method is an expansion ratio, which is relevant if there are more than one -expanding component, but its value is irrelevant for a single expanding -component. - - -[source, java] ----- -HorizontalLayout layout = new HorizontalLayout(); -layout.setWidth("400px"); - -// These buttons take the minimum size. -layout.addComponent(new Button("Small")); -layout.addComponent(new Button("Medium-sized")); - -// This button will expand. -Button expandButton = new Button("Expanding component"); - -// Use 100% of the expansion cell's width. -expandButton.setWidth("100%"); - -// The component must be added to layout before setting the ratio. -layout.addComponent(expandButton); - -// Set the component's cell to expand. -layout.setExpandRatio(expandButton, 1.0f); - -parentLayout.addComponent(layout); ----- - -In the declarative format, you need to specify the [literal]#++:expand++# -attribute in the child components. The attribute defaults to expand ratio 1. - -Notice that you can not call [methodname]#setExpandRatio()# before you have -added the component to the layout, because it can not operate on an component -that it doesn't yet have. - - -=== Expand Ratios - -If you specify an expand ratio for multiple components, they will all try to use -the available space according to the ratio. - - -[source, java] ----- -HorizontalLayout layout = new HorizontalLayout(); -layout.setWidth("400px"); - -// Create three equally expanding components. -String[] captions = { "Small", "Medium-sized", - "Quite a big component" }; -for (int i = 1; i <= 3; i++) { - Button button = new Button(captions[i-1]); - button.setWidth("100%"); - layout.addComponent(button); - - // Have uniform 1:1:1 expand ratio. - layout.setExpandRatio(button, 1.0f); -} ----- - -As the example used the same ratio for all components, the ones with more -content may have the content cut. Below, we use differing ratios: - - -[source, java] ----- -// Expand ratios for the components are 1:2:3. -layout.setExpandRatio(button, i * 1.0f); ----- - -If the size of the expanding components is defined as a percentage (typically -"100%"), the ratio is calculated from the __overall__ space available for the -relatively sized components. For example, if you have a 100 pixels wide layout -with two cells with 1.0 and 4.0 respective expansion ratios, and both the -components in the layout are set as [methodname]#setWidth("100%")#, the cells -will have respective widths of 20 and 80 pixels, regardless of the minimum size -of the components. - -However, if the size of the contained components is undefined or fixed, the -expansion ratio is of the __excess__ available space. In this case, it is the -excess space that expands, not the components. - - -[source, java] ----- -for (int i = 1; i <= 3; i++) { - // Button with undefined size. - Button button = new Button(captions[i - 1]); - - layout4.addComponent(button); - - // Expand ratios are 1:2:3. - layout4.setExpandRatio(button, i * 1.0f); -} ----- - -It is not meaningful to combine expanding components with percentually defined -size and components with fixed or undefined size. Such combination can lead to a -very unexpected size for the percentually sized components. - - -=== Percentage of Cells - -A percentual size of a component defines the size of the component __within its -cell__. Usually, you use "100%", but a smaller percentage or a fixed size -(smaller than the cell size) will leave an empty space in the cell and align the -component within the cell according to its alignment setting, top left by -default. - - -[source, java] ----- -HorizontalLayout layout50 = new HorizontalLayout(); -layout50.setWidth("400px"); - -String[] captions1 = { "Small 50%", "Medium 50%", - "Quite a big 50%" }; -for (int i = 1; i <= 3; i++) { - Button button = new Button(captions1[i-1]); - button.setWidth("50%"); - layout50.addComponent(button); - - // Expand ratios for the components are 1:2:3. - layout50.setExpandRatio(button, i * 1.0f); -} -parentLayout.addComponent(layout50); ----- - - - - - diff --git a/documentation/layout/layout-overview.asciidoc b/documentation/layout/layout-overview.asciidoc deleted file mode 100644 index ba1bb603ae..0000000000 --- a/documentation/layout/layout-overview.asciidoc +++ /dev/null @@ -1,74 +0,0 @@ ---- -title: Overview -order: 1 -layout: page ---- - -[[layout.overview]] -= Overview - -The user interface components in Vaadin can roughly be divided in two groups: -components that the user can interact with and layout components for placing the -other components to specific places in the user interface. The layout components -are identical in their purpose to layout managers in regular desktop frameworks -for Java and you can use plain Java to accomplish sophisticated component -layouting. - -You start by creating a content layout for the UI and then add other layout -components hierarchically, and finally the interaction components as the leaves -of the component tree. - - -[source, java] ----- -// Set the root layout for the UI -VerticalLayout content = new VerticalLayout(); -setContent(content); - -// Add the topmost component. -content.addComponent(new Label("The Ultimate Cat Finder")); - -// Add a horizontal layout for the bottom part. -HorizontalLayout bottom = new HorizontalLayout(); -content.addComponent(bottom); - -bottom.addComponent(new Tree("Major Planets and Their Moons")); -bottom.addComponent(new Panel()); -... ----- - -Or in the declarative format: - - -[source, html] ----- -<v-vertical-layout> - <v-label>The Ultimate Cat Finder</v-label> - - <v-horizontal-layout> - <v-tree caption="Major Planets and Their Moons"/> - <v-panel/> - </v-horizontal-layout> -</v-vertical-layout> ----- - -You will usually need to tune the layout components a bit by setting sizes, -expansion ratios, alignments, spacings, and so on. The general settings are -described in -<<dummy/../../../framework/layout/layout-settings#layout.settings,"Layout -Formatting">>. - -Layouts are coupled with themes that specify various layout features, such as -backgrounds, borders, text alignment, and so on. Definition and use of themes is -described in -<<dummy/../../../framework/themes/themes-overview.asciidoc#themes.overview,"Themes">>. - -You can see a finished version of the above example in -<<figure.layout.intro.simple>>. - -[[figure.layout.intro.simple]] -.Layout Example -image::img/layout-intro-example-1.png[] - - - diff --git a/documentation/layout/layout-panel.asciidoc b/documentation/layout/layout-panel.asciidoc deleted file mode 100644 index 8d7f3d6f06..0000000000 --- a/documentation/layout/layout-panel.asciidoc +++ /dev/null @@ -1,137 +0,0 @@ ---- -title: Panel -order: 6 -layout: page ---- - -[[layout.panel]] -= [classname]#Panel# - -[classname]#Panel# is a single-component container with a frame around the -content. It has an optional caption and an icon which are handled by the panel -itself, not its containing layout. The panel itself does not manage the caption -of its contained component. You need to set the content with -[methodname]#setContent()#. - -[classname]#Panel# has 100% width and undefined height by default. This -corresponds with the default sizing of [classname]#VerticalLayout#, which is -perhaps most commonly used as the content of a [classname]#Panel#. If the width -or height of a panel is undefined, the content must have a corresponding -undefined or fixed size in the same direction to avoid a sizing paradox. - - -[source, java] ----- -Panel panel = new Panel("Astronomer Panel"); -panel.addStyleName("mypanelexample"); -panel.setSizeUndefined(); // Shrink to fit content -layout.addComponent(panel); - -// Create the content -FormLayout content = new FormLayout(); -content.addStyleName("mypanelcontent"); -content.addComponent(new TextField("Participant")); -content.addComponent(new TextField("Organization")); -content.setSizeUndefined(); // Shrink to fit -content.setMargin(true); -panel.setContent(content); ----- - -The resulting layout is shown in <<figure.layout.panel>>. - -[[figure.layout.panel]] -.A [classname]#Panel# -image::img/panel.png[] - -[[layout.panel.scrolling]] -== Scrolling the Panel Content - -((("scroll bars", id="term.layout.panel.scrolling.scrollbars", range="startofrange"))) - - -Normally, if a panel has undefined size in a direction, as it has by default -vertically, it will fit the size of the content and grow as the content grows. -However, if it has a fixed or percentual size and its content becomes too big to -fit in the content area, a scroll bar will appear for the particular direction. -Scroll bars in a [classname]#Panel# are handled natively by the browser with the -[literal]#++overflow: auto++# property in CSS. (((overflow CSS -property))) - -In the following example, we have a 300 pixels wide and very high -[classname]#Image# component as the panel content. - - -[source, java] ----- -// Display an image stored in theme -Image image = new Image(null, - new ThemeResource("img/Ripley_Scroll-300px.jpg")); - -// To enable scrollbars, the size of the panel content -// must not be relative to the panel size -image.setSizeUndefined(); // Actually the default - -// The panel will give it scrollbars. -Panel panel = new Panel("Scroll"); -panel.setWidth("300px"); -panel.setHeight("300px"); -panel.setContent(image); - -layout.addComponent(panel); ----- - -The result is shown in <<figure.layout.panel.scrolling>>. Notice that also the -horizontal scrollbar has appeared even though the panel has the same width as -the content (300 pixels) - the 300px width for the panel includes the panel -border and vertical scrollbar. - -[[figure.layout.panel.scrolling]] -.Panel with Scroll Bars -image::img/panel-scrolling.png[] - -((("[interfacename]#Scrollable#", id="term.layout.panel.scrolling.scrollable", range="startofrange"))) - - -[[layout.panel.scrolling.programmatic]] -=== Programmatic Scrolling - -[classname]#Panel# implements the [interfacename]#Scrollable# interface to allow -programmatic scrolling. You can set the scroll position in pixels with -[methodname]#setScrollTop()# and [methodname]#setScrollLeft()#. You can also get -the scroll position set previously, but scrolling the panel in the browser does -not update the scroll position to the server-side. - -(((range="endofrange", startref="term.layout.panel.scrolling.scrollable"))) -(((range="endofrange", startref="term.layout.panel.scrolling.scrollbars"))) - - -ifdef::web[] -[[layout.panel.css]] -== CSS Style Rules - - -[source, css] ----- -.v-panel {} -.v-panel-caption {} -.v-panel-nocaption {} -.v-panel-content {} -.v-panel-deco {} ----- - -The entire panel has [literal]#++v-panel++# style. A panel consists of three -parts: the caption, content, and bottom decorations (shadow). These can be -styled with [literal]#++v-panel-caption++#, [literal]#++v-panel-content++#, and -[literal]#++v-panel-deco++#, respectively. If the panel has no caption, the -caption element will have the style [literal]#++v-panel-nocaption++#. - -The built-in [literal]#++light++# style in the Reindeer and Runo themes has no -borders or border decorations for the [classname]#Panel#. You can use the -[parameter]#Reindeer.PANEL_LIGHT# and [parameter]#Runo.PANEL_LIGHT# constants to -add the style to a panel. Other themes may also provide the light and other -styles for [classname]#Panel# as well. - -endif::web[] - - - diff --git a/documentation/layout/layout-root-layout.asciidoc b/documentation/layout/layout-root-layout.asciidoc deleted file mode 100644 index 86bab9d587..0000000000 --- a/documentation/layout/layout-root-layout.asciidoc +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: UI, Window, and Panel Content -order: 2 -layout: page ---- - -[[layout.root-layout]] -= UI, Window, and Panel Content - -The [classname]#UI#, [classname]#Window#, and [classname]#Panel# all have a -single content component, which you need to set with [methodname]#setContent()#. -The content is usually a layout component, although any component is allowed. - - -[source, java] ----- -Panel panel = new Panel("This is a Panel"); -VerticalLayout panelContent = new VerticalLayout(); -panelContent.addComponent(new Label("Hello!")); -panel.setContent(panelContent); - -// Set the panel as the content of the UI -setContent(panel); ----- - -The size of the content is the default size of the particular layout component, -for example, a [classname]#VerticalLayout# has 100% width and undefined height -by default (this coincides with the defaults for [classname]#Panel# and -[classname]#Label#). If such a layout with undefined height grows higher than -the browser window, it will flow out of the view and scrollbars will appear. In -many applications, you want to use the full area of the browser view. Setting -the components contained inside the content layout to full size is not enough, -and would actually lead to an invalid state if the height of the content layout -is undefined. - - -[source, java] ----- -// First set the root content for the UI -VerticalLayout content = new VerticalLayout(); -setContent(content); - -// Set the content size to full width and height -content.setSizeFull(); - -// Add a title area on top of the screen. This takes -// just the vertical space it needs. -content.addComponent(new Label("My Application")); - -// Add a menu-view area that takes rest of vertical space -HorizontalLayout menuview = new HorizontalLayout(); -menuview.setSizeFull(); -content.addComponent(menuview); ----- - -See -<<dummy/../../../framework/layout/layout-settings#layout.settings.size,"Layout -Size">> for more information about setting layout sizes. - - - diff --git a/documentation/layout/layout-settings.asciidoc b/documentation/layout/layout-settings.asciidoc deleted file mode 100644 index 682cf93563..0000000000 --- a/documentation/layout/layout-settings.asciidoc +++ /dev/null @@ -1,376 +0,0 @@ ---- -title: Layout Formatting -order: 13 -layout: page ---- - -[[layout.settings]] -= Layout Formatting - -While the formatting of layouts is mainly done with style sheets, just as with -other components, style sheets are not ideal or even possible to use in some -situations. For example, CSS does not allow defining the spacing of table cells, -which is done with the [parameter]#cellspacing# attribute in HTML. - -Moreover, as many layout sizes are calculated dynamically in the Client-Side -Engine of Vaadin, some CSS settings can fail altogether. - -[[layout.settings.size]] -== Layout Size - -The size of a layout component can be specified with the -[methodname]#setWidth()# and [methodname]#setHeight()# methods defined in the -[classname]#Sizeable# interface, just like for any component. It can also be -undefined, in which case the layout shrinks to fit the component(s) inside it. -<<dummy/../../../framework/components/components-features#components.features.sizeable,"Sizing -Components">> gives details on the interface. - -[[figure.layout.settings.size.undefined]] -.[classname]#HorizontalLayout# with Undefined vs Defined size -image::img/layout_size_undefined_vs_defined.png[] - -Many layout components take 100% width by default, while they have the height -undefined. - -The sizes of components inside a layout can also be defined as a percentage of -the space available in the layout, for example with -[methodname]#setWidth("100%");# or with the (most commonly used method) -[methodname]#setFullSize()# that sets 100% size in both directions. If you use a -percentage in a [classname]#HorizontalLayout#, [classname]#VerticalLayout#, or -[classname]#GridLayout#, you will also have to set the component as -__expanding__, as noted below. - - -[WARNING] -==== -__A layout that contains components with percentual size must have a defined -size__! - -If a layout has undefined size and a contained component has, say, 100% size, -the component will try to fill the space given by the layout, while the layout -will shrink to fit the space taken by the component, which is a paradox. This -requirement holds for height and width separately. The debug mode allows -detecting such invalid cases; see -<<dummy/../../../framework/advanced/advanced-debug#advanced.debug.hierarchy,"Inspecting -Component Hierarchy">>. - -==== - - - -For example: - - -[source, java] ----- -// This takes 100% width but has undefined height. -VerticalLayout layout = new VerticalLayout(); - -// A button that takes all the space available in the layout. -Button button = new Button("100%x100% button"); -button.setSizeFull(); -layout.addComponent(button); - -// We must set the layout to a defined height vertically, in -// this case 100% of its parent layout, which also must -// not have undefined size. -layout.setHeight("100%"); ----- - -If you have a layout with undefined height, such as [classname]#VerticalLayout#, -in a [classname]#UI#, [classname]#Window#, or [classname]#Panel#, and put enough -content in it so that it extends outside the bottom of the view area, scrollbars -will appear. If you want your application to use all the browser view, nothing -more or less, you should use [methodname]#setFullSize()# for the root layout. - - -[source, java] ----- -// Create the UI content -VerticalLayout content = new VerticalLayout(); - -// Use entire view area -content.setSizeFull(); - -setContent(content); ----- - - -[[layout.settings.size.expanding]] -== Expanding Components - -If you set a [classname]#HorizontalLayout# to a defined size horizontally or a -[classname]#VerticalLayout# vertically, and there is space left over from the -contained components, the extra space is distributed equally between the -component cells. The components are aligned within these cells, according to -their alignment setting, top left by default, as in the example below. - -Often, you don't want such empty space, but want one or more components to take -all the leftover space. You need to set such a component to 100% size and use -[methodname]#setExpandRatio()#. If there is just one such expanding component in -the layout, the ratio parameter is irrelevant. - -If you set multiple components as expanding, the expand ratio dictates how large -proportion of the available space (overall or excess depending on whether the -components are sized as a percentage or not) each component takes. In the -example below, the buttons have 1:2:3 ratio for the expansion. - -[classname]#GridLayout# has corresponding method for both of its directions, -[methodname]#setRowExpandRatio()# and [methodname]#setColumnExpandRatio()#. - -Expansion is dealt in detail in the documentation of the layout components that -support it. See -<<dummy/../../../framework/layout/layout-orderedlayout#layout.orderedlayout,"VerticalLayout -and HorizontalLayout">> and -<<dummy/../../../framework/layout/layout-gridlayout#layout.gridlayout,"GridLayout">> -for details on components with relative sizes. - - -[[layout.settings.alignment]] -== Layout Cell Alignment - -((("Alignment", id="term.alignment", range="startofrange"))) - - -((("[methodname]#setComponentAlignment()#", id="term.setcomponentalignment", range="startofrange"))) - - -When a component in a layout cell has size (width or height) smaller than the -size of the cell, it will by default be aligned in the top-left corner of the -cell. You can set the alignment with the [methodname]#setComponentAlignment()# -method. The method takes as its parameters the component contained in the cell -to be formatted, and the horizontal and vertical alignment. The component must -have been added to the layout before setting the alignment. - -<<figure.layout.settings.alignment>> illustrates the alignment of components -within a [classname]#GridLayout#. - -[[figure.layout.settings.alignment]] -.Cell Alignments -image::img/layout_alignment.png[] - -Note that __a component with 100% relative size can not be aligned__, as it will -take the entire width or height of the cell, in which case alignment is -meaningless. This should especially be noted with the [classname]#Label# -component, which has 100% default width, and the text alignment __within__ the -component is separate, defined by the CSS [literal]#++text-align++# property. - -The easiest way to set alignments is to use the constants defined in the -[classname]#Alignment# class. Let us look how the buttons in the top row of the -above [classname]#GridLayout# are aligned with constants: - - -[source, java] ----- -// Create a grid layout -GridLayout grid = new GridLayout(3, 3); - -grid.setWidth(400, Sizeable.UNITS_PIXELS); -grid.setHeight(200, Sizeable.UNITS_PIXELS); - -Button topleft = new Button("Top Left"); -grid.addComponent(topleft, 0, 0); -grid.setComponentAlignment(topleft, Alignment.TOP_LEFT); - -Button topcenter = new Button("Top Center"); -grid.addComponent(topcenter, 1, 0); -grid.setComponentAlignment(topcenter, Alignment.TOP_CENTER); - -Button topright = new Button("Top Right"); -grid.addComponent(topright, 2, 0); -grid.setComponentAlignment(topright, Alignment.TOP_RIGHT); -... ----- - -The following table lists all the [classname]#Alignment# constants by their -respective locations: - -.Alignment Constants - -|=============== -|[parameter]#TOP_LEFT#|[parameter]#TOP_CENTER#|[parameter]#TOP_RIGHT# -|[parameter]#MIDDLE_LEFT#|[parameter]#MIDDLE_CENTER#|[parameter]#MIDDLE_RIGHT# -|[parameter]#BOTTOM_LEFT#|[parameter]#BOTTOM_CENTER#|[parameter]#BOTTOM_RIGHT# - -|=============== - - - -Another way to specify the alignments is to create an [classname]#Alignment# -object and specify the horizontal and vertical alignment with separate -constants. You can specify either of the directions, in which case the other -alignment direction is not modified, or both with a bitmask operation between -the two directions. - - -[source, java] ----- -Button middleleft = new Button("Middle Left"); -grid.addComponent(middleleft, 0, 1); -grid.setComponentAlignment(middleleft, - new Alignment(Bits.ALIGNMENT_VERTICAL_CENTER | - Bits.ALIGNMENT_LEFT)); - -Button middlecenter = new Button("Middle Center"); -grid.addComponent(middlecenter, 1, 1); -grid.setComponentAlignment(middlecenter, - new Alignment(Bits.ALIGNMENT_VERTICAL_CENTER | - Bits.ALIGNMENT_HORIZONTAL_CENTER)); - -Button middleright = new Button("Middle Right"); -grid.addComponent(middleright, 2, 1); -grid.setComponentAlignment(middleright, - new Alignment(Bits.ALIGNMENT_VERTICAL_CENTER | - Bits.ALIGNMENT_RIGHT)); ----- - -Obviously, you may combine only one vertical bitmask with one horizontal -bitmask, though you may leave either one out. The following table lists the -available alignment bitmask constants: - -.Alignment Bitmasks - -|=============== -|Horizontal|[parameter]#Bits.ALIGNMENT_LEFT# -|[parameter]#Bits.ALIGNMENT_HORIZONTAL_CENTER# -|[parameter]#Bits.ALIGNMENT_RIGHT# -|Vertical|[parameter]#Bits.ALIGNMENT_TOP# -|[parameter]#Bits.ALIGNMENT_VERTICAL_CENTER# -|[parameter]#Bits.ALIGNMENT_BOTTOM# - -|=============== - - - -You can determine the current alignment of a component with -[methodname]#getComponentAlignment()#, which returns an [classname]#Alignment# -object. The class provides a number of getter methods for decoding the -alignment, which you can also get as a bitmask value. - -[[layout.settings.alignment.size]] -=== Size of Aligned Components - -You can only align a component that is smaller than its containing cell in the -direction of alignment. If a component has 100% width, as many components have -by default, horizontal alignment does not have any effect. For example, -[classname]#Label# is 100% wide by default and can not therefore be horizontally -aligned as such. The problem can be hard to notice, as the text inside a -[classname]#Label# is left-aligned. - -You usually need to set either a fixed size, undefined size, or less than a 100% -relative size for the component to be aligned - a size that is smaller than the -containing layout has. - -For example, assuming that a [classname]#Label# has short content that is less -wide than the containing [classname]#VerticalLayout#, you could center it as -follows: - - -[source, java] ----- -VerticalLayout layout = new VerticalLayout(); // 100% default width -Label label = new Label("Hello"); // 100% default width -label.setSizeUndefined(); -layout.addComponent(label); -layout.setComponentAlignment(label, Alignment.MIDDLE_CENTER); ----- - -If you set the size as undefined and the component itself contains components, -make sure that the contained components also have either undefined or fixed -size. For example, if you set the size of a [classname]#Form# as undefined, its -containing layout [classname]#FormLayout# has 100% default width, which you also -need to set as undefined. But then, any components inside the -[classname]#FormLayout# must have either undefined or fixed size. - - -(((range="endofrange", startref="term.alignment"))) -(((range="endofrange", startref="term.setcomponentalignment"))) - -[[layout.settings.spacing]] -== Layout Cell Spacing - -The [classname]#VerticalLayout#, [classname]#HorizontalLayout#, and -[classname]#GridLayout# layouts offer a [methodname]#setSpacing()# method to -enable spacing between the cells of the layout. - -For example: - - -[source, java] ----- -VerticalLayout layout = new VerticalLayout(); -layout.setSpacing(true); -layout.addComponent(new Button("Component 1")); -layout.addComponent(new Button("Component 2")); -layout.addComponent(new Button("Component 3")); ----- - -The effect of spacing in [classname]#VerticalLayout# and -[classname]#HorizontalLayout# is illustrated in <<figure.layout.spacing>>. - -[[figure.layout.spacing]] -.Layout Spacings -image::img/layout_spacing.png[] - -The exact amount of spacing is defined in CSS. If the default is not suitable, -you can customize it in a custom theme. - -In the Valo theme, you can specify the spacing with the -$v-layout-spacing-vertical and $v-layout-spacing-horizontal parameters, as -described in -<<dummy/../../../framework/themes/themes-valo#themes.valo.variables,"Common -Settings">>. The spacing defaults to the $v-unit-size measure. - -When adjusting spacing in other themes, you should note that it is implemented -in a bit different ways in different layouts. In the ordered layouts, it is done -with spacer elements, while in the [classname]#GridLayout# it has special -handling. Please see the sections on the individual components for more details. - - -[[layout.settings.margins]] -== Layout Margins - -Most layout components do not have any margin around them by default. The -ordered layouts, as well as [classname]#GridLayout#, support enabling a margin -with [methodname]#setMargin()#. This enables CSS classes for each margin in the -HTML element of the layout component. - -In the Valo theme, the margin sizes default to $v-unit-size. You can customize -them with $v-layout-margin-top, right, bottom, and left. See -<<dummy/../../../framework/themes/themes-valo#themes.valo.variables,"Common -Settings">> for a description of the parameters. - -To customize the default margins in other themes, you can define each margin -with the [literal]#++padding++# property in CSS. You may want to have a custom -CSS class for the layout component to enable specific customization of the -margins, as is done in the following with the [literal]#++mymargins++# class: - -[subs="normal"] ----- - -.**mymargins**.v-margin-left {padding-left: **10**px;} -.**mymargins**.v-margin-right {padding-right: **20**px;} -.**mymargins**.v-margin-top {padding-top: **40**px;} -.**mymargins**.v-margin-bottom {padding-bottom: **80**px;} ----- -You can enable only specific margins by passing a [classname]#MarginInfo# to the -[methodname]#setMargin()#. The margins are specified in clockwise order for top, -right, bottom, and left margin. The following would enable the left and right -margins: - - -[source, java] ----- -layout.setMargin(new MarginInfo(false, true, false, true)); ----- - -The resulting margins are shown in <<figure.layout.margin>> below. The two ways -produce identical margins. - -[[figure.layout.margin]] -.Layout Margins -image::img/layout_margin.png[] - - - - diff --git a/documentation/layout/layout-splitpanel.asciidoc b/documentation/layout/layout-splitpanel.asciidoc deleted file mode 100644 index 34768d9b70..0000000000 --- a/documentation/layout/layout-splitpanel.asciidoc +++ /dev/null @@ -1,135 +0,0 @@ ---- -title: HorizontalSplitPanel and VerticalSplitPanel -order: 8 -layout: page ---- - -[[layout.splitpanel]] -= [classname]#HorizontalSplitPanel# and [classname]#VerticalSplitPanel# - -((("[classname]#HorizontalSplitPanel#", id="term.layout.splitpanel.horizontal", range="startofrange"))) - - -((("[classname]#VerticalSplitPanel#", id="term.layout.splitpanel.vertical", range="startofrange"))) - - -[classname]#HorizontalSplitPanel# and [classname]#VerticalSplitPanel# are a -two-component containers that divide the available space into two areas to -accomodate the two components. [classname]#HorizontalSplitPanel# makes the split -horizontally with a vertical splitter bar, and [classname]#VerticalSplitPanel# -vertically with a horizontal splitter bar. The user can drag the bar to adjust -its position. - -You can set the two components with the [methodname]#setFirstComponent()# and -[methodname]#setSecondComponent()# methods, or with the regular -[methodname]#addComponent()# method. - - -[source, java] ----- -// Have a panel to put stuff in -Panel panel = new Panel("Split Panels Inside This Panel"); - -// Have a horizontal split panel as its content -HorizontalSplitPanel hsplit = new HorizontalSplitPanel(); -panel.setContent(hsplit); - -// Put a component in the left panel -Tree tree = new Tree("Menu", TreeExample.createTreeContent()); -hsplit.setFirstComponent(tree); - -// Put a vertical split panel in the right panel -VerticalSplitPanel vsplit = new VerticalSplitPanel(); -hsplit.setSecondComponent(vsplit); - -// Put other components in the right panel -vsplit.addComponent(new Label("Here's the upper panel")); -vsplit.addComponent(new Label("Here's the lower panel")); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#layout.splitpanel.basic[on-line example, window="_blank"]. - -The result is shown in <<figure.splitpanel.basic>>. Observe that the tree is cut -horizontally as it can not fit in the layout. If its height exceeds the height -of the panel, a vertical scroll bar will appear automatically. If horizontal -scroll bar is necessary, you could put the content in a [classname]#Panel#, -which can have scroll bars in both directions. - -[[figure.splitpanel.basic]] -.[classname]#HorizontalSplitPanel# and [classname]#VerticalSplitPanel# -image::img/splitpanel-example1.png[] - -You can set the split position with [methodname]#setSplitPosition()#. It accepts -any units defined in the [classname]#Sizeable# interface, with percentual size -relative to the size of the component. - - -[source, java] ----- -// Have a horizontal split panel -HorizontalSplitPanel hsplit = new HorizontalSplitPanel(); -hsplit.setFirstComponent(new Label("75% wide panel")); -hsplit.setSecondComponent(new Label("25% wide panel")); - -// Set the position of the splitter as percentage -hsplit.setSplitPosition(75, Sizeable.UNITS_PERCENTAGE); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#layout.splitpanel.splitposition[on-line example, window="_blank"]. - -Another version of the [methodname]#setSplitPosition()# method allows leaving -out the unit, using the same unit as previously. The method also has versions -take take a boolean parameter, [parameter]#reverse#, which allows defining the -size of the right or bottom panel instead of the left or top panel. - -The split bar allows the user to adjust the split position by dragging the bar -with mouse. To lock the split bar, use [methodname]#setLocked(true)#. When -locked, the move handle in the middle of the bar is disabled. - - -[source, java] ----- -// Lock the splitter -hsplit.setLocked(true); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#layout.splitpanel.splitposition[on-line example, window="_blank"]. - -Setting the split position programmatically and locking the split bar is -illustrated in <<figure.component.splitpanel.splitposition>>. - -[[figure.component.splitpanel.splitposition]] -.A Layout With Nested SplitPanels -image::img/splitpanel-splitposition.png[] - -Notice that the size of a split panel must not be undefined in the split -direction. - -== CSS Style Rules - - -[source, css] ----- -/* For a horizontal SplitPanel. */ -.v-splitpanel-horizontal {} -.v-splitpanel-hsplitter {} -.v-splitpanel-hsplitter-locked {} - -/* For a vertical SplitPanel. */ -.v-splitpanel-vertical {} -.v-splitpanel-vsplitter {} -.v-splitpanel-vsplitter-locked {} - -/* The two container panels. */ -.v-splitpanel-first-container {} /* Top or left panel. */ -.v-splitpanel-second-container {} /* Bottom or right panel. */ ----- - -The entire split panel has the style [literal]#++v-splitpanel-horizontal++# or -[literal]#++v-splitpanel-vertical++#, depending on the panel direction. The -split bar or __splitter__ between the two content panels has either the -[literal]#++...-splitter++# or [literal]#++...-splitter-locked++# style, -depending on whether its position is locked or not. - - -(((range="endofrange", startref="term.layout.splitpanel.horizontal"))) -(((range="endofrange", startref="term.layout.splitpanel.vertical"))) - - diff --git a/documentation/layout/layout-sub-window.asciidoc b/documentation/layout/layout-sub-window.asciidoc deleted file mode 100644 index 09ec09ead0..0000000000 --- a/documentation/layout/layout-sub-window.asciidoc +++ /dev/null @@ -1,211 +0,0 @@ ---- -title: Sub-Windows -order: 7 -layout: page ---- - -[[layout.sub-window]] -= Sub-Windows - -__Sub-windows__ are floating panels within a native browser window. Unlike -native browser windows, sub-windows are managed by the client-side runtime of -Vaadin using HTML features. Vaadin allows opening, closing, resizing, maximizing -and restoring sub-windows, as well as scrolling the window content. - -[[figure.layout.sub-window.basic]] -.A Sub-Window -image::img/subwindow-basic.png[] - -Sub-windows are typically used for __Dialog Windows__ and __Multiple Document -Interface__ applications. Sub-windows are by default not modal; you can set them -modal as described in <<layout.sub-window.modal>>. - -[[layout.sub-window.openclose]] -== Opening and Closing Sub-Windows - -You can open a new sub-window by creating a new [classname]#Window# object and -adding it to the UI with [methodname]#addWindow()#, typically in some event -listener. A sub-window needs a content component, which is typically a layout. - -In the following, we display a sub-window immediately when a UI opens: - - -[source, java] ----- -public static class SubWindowUI extends UI { - @Override - protected void init(VaadinRequest request) { - // Some other UI content - setContent(new Label("Here's my UI")); - - // Create a sub-window and set the content - Window subWindow = new Window("Sub-window"); - VerticalLayout subContent = new VerticalLayout(); - subContent.setMargin(true); - subWindow.setContent(subContent); - - // Put some components in it - subContent.addComponent(new Label("Meatball sub")); - subContent.addComponent(new Button("Awlright")); - - // Center it in the browser window - subWindow.center(); - - // Open it in the UI - addWindow(subWindow); - } -} ----- - -The result was shown in <<figure.layout.sub-window.basic>>. Sub-windows by -default have undefined size in both dimensions, so they will shrink to fit the -content. - -The user can close a sub-window by clicking the close button in the upper-right -corner of the window. The button is controlled by the __closable__ property, so -you can disable it with [methodname]#setClosable(false)#. - -You close a sub-window also programmatically by calling the -[methodname]#close()# for the sub-window, typically in a click listener for an -[guibutton]#OK# or [guibutton]#Cancel# button. You can also call -[methodname]#removeWindow()# for the current [classname]#UI#. - -ifdef::web[] -[[layout.sub-window.openclose.example]] -=== Sub-Window Management - -Usually, you would extend the [classname]#Window# class for your specific -sub-window as follows: - - -[source, java] ----- -// Define a sub-window by inheritance -class MySub extends Window { - public MySub() { - super("Subs on Sale"); // Set window caption - center(); - - // Some basic content for the window - VerticalLayout content = new VerticalLayout(); - content.addComponent(new Label("Just say it's OK!")); - content.setMargin(true); - setContent(content); - - // Disable the close button - setClosable(false); - - // Trivial logic for closing the sub-window - Button ok = new Button("OK"); - ok.addClickListener(new ClickListener() { - public void buttonClick(ClickEvent event) { - close(); // Close the sub-window - } - }); - content.addComponent(ok); - } -} ----- - -You could open the window as follows: - - -[source, java] ----- -// Some UI logic to open the sub-window -final Button open = new Button("Open Sub-Window"); -open.addClickListener(new ClickListener() { - public void buttonClick(ClickEvent event) { - MySub sub = new MySub(); - - // Add it to the root component - UI.getCurrent().addWindow(sub); - } -}); ----- - -endif::web[] - - -[[layout.sub-window.position]] -== Window Positioning - -When created, a sub-window will have an undefined default size and position. You -can specify the size of a window with [methodname]#setHeight()# and -[methodname]#setWidth()# methods. You can set the position of the window with -[methodname]#setPositionX()# and [methodname]#setPositionY()# methods. - - -[source, java] ----- -// Create a new sub-window -mywindow = new Window("My Dialog"); - -// Set window size. -mywindow.setHeight("200px"); -mywindow.setWidth("400px"); - -// Set window position. -mywindow.setPositionX(200); -mywindow.setPositionY(50); - -UI.getCurrent().addWindow(mywindow); ----- - - -[[layout.sub-window.scrolling]] -== Scrolling Sub-Window Content - -((("scroll bars", id="term.layout.sub-window.scrolling.scrollbars", range="startofrange"))) - - -If a sub-window has a fixed or percentual size and its content becomes too big -to fit in the content area, a scroll bar will appear for the particular -direction. On the other hand, if the sub-window has undefined size in the -direction, it will fit the size of the content and never get a scroll bar. -Scroll bars in sub-windows are handled with regular HTML features, namely -[literal]#++overflow: auto++# property in CSS. -((("overflow"))) - -((("[interfacename]#Scrollable#"))) -As [classname]#Window# extends [classname]#Panel#, windows are also -[interfacename]#Scrollable#. Note that the interface defines __programmatic -scrolling__, not scrolling by the user. Please see -<<dummy/../../../framework/layout/layout-panel#layout.panel,"Panel">>. - -(((range="endofrange", startref="term.layout.sub-window.scrolling.scrollbars"))) - -[[layout.sub-window.modal]] -== Modal Sub-Windows - -A modal window is a sub-window that prevents interaction with the other UI. -Dialog windows, as illustrated in <<figure.layout.sub-window.modal>>, are -typical cases of modal windows. The advantage of modal windows is limiting the -scope of user interaction to a sub-task, so changes in application state are -more limited. The disadvantage of modal windows is that they can restrict -workflow too much. - -You can make a sub-window modal with [methodname]#setModal(true)#. - -[[figure.layout.sub-window.modal]] -.Modal Sub-Window -image::img/subwindow-modal.png[] - -Depending on the theme, the parent window may be grayed when the modal window is -open. - - -[WARNING] -.Security Warning -==== -Modality of child windows is purely a client-side feature and can be -circumvented with client-side attack code. You should not trust in the modality -of child windows in security-critical situations such as login windows. - -==== - - - - - - diff --git a/documentation/layout/layout-tabsheet.asciidoc b/documentation/layout/layout-tabsheet.asciidoc deleted file mode 100644 index 6fa324c4e7..0000000000 --- a/documentation/layout/layout-tabsheet.asciidoc +++ /dev/null @@ -1,250 +0,0 @@ ---- -title: TabSheet -order: 9 -layout: page ---- - -[[layout.tabsheet]] -= [classname]#TabSheet# - -The [classname]#TabSheet# is a multicomponent container that allows switching -between the components with "tabs". The tabs are organized as a tab bar at the -top of the tab sheet. Clicking on a tab opens its contained component in the -main display area of the layout. If there are more tabs than fit in the tab bar, -navigation buttons will appear. - -[[figure.tabsheet.example1]] -.A Simple TabSheet Layout -image::img/tabsheet-example1.png[] - -[[layout.tabsheet.adding]] -== Adding Tabs - -You add new tabs to a tab sheet with the [methodname]#addTab()# method. The -simple version of the method takes as its parameter the root component of the -tab. You can use the root component to retrieve its corresponding -[classname]#Tab# object. Typically, you put a layout component as the root -component. - -You can also give the caption and the icon as parameters for the -[methodname]#addTab()# method. The following example demonstrates the creation -of a simple tab sheet, where each tab shows a different [classname]#Label# -component. The tabs have an icon, which are (in this example) loaded as Java -class loader resources from the application. - - -[source, java] ----- -TabSheet tabsheet = new TabSheet(); -layout.addComponent(tabsheet); - -// Create the first tab -VerticalLayout tab1 = new VerticalLayout(); -tab1.addComponent(new Embedded(null, - new ThemeResource("img/planets/Mercury.jpg"))); -tabsheet.addTab(tab1, "Mercury", - new ThemeResource("img/planets/Mercury_symbol.png")); - -// This tab gets its caption from the component caption -VerticalLayout tab2 = new VerticalLayout(); -tab2.addComponent(new Embedded(null, - new ThemeResource("img/planets/Venus.jpg"))); -tab2.setCaption("Venus"); -tabsheet.addTab(tab2).setIcon( - new ThemeResource("img/planets/Venus_symbol.png")); -... ----- - - -[[layout.tabsheet.tab]] -== Tab Objects - -Each tab in a tab sheet is represented as a [classname]#Tab# object, which -manages the tab caption, icon, and attributes such as hidden and visible. You -can set the caption with [methodname]#setCaption()# and the icon with -[methodname]#setIcon()#. If the component added with [methodname]#addTab()# has -a caption or icon, it is used as the default for the [classname]#Tab# object. -However, changing the attributes of the root component later does not affect the -tab, but you must make the setting through the [classname]#Tab# object. The -[methodname]#addTab()# returns the new [classname]#Tab# object, so you can -easily set an attribute using the reference. - - -[source, java] ----- -// Set an attribute using the returned reference -tabsheet.addTab(myTab).setCaption("My Tab"); ----- - -[[layout.tabsheet.tab.disabling]] -=== Disabling and Hiding Tabs - -A tab can be disabled by setting [methodname]#setEnabled(false)# for the -[classname]#Tab# object, thereby disallowing selecting it. - -A tab can be made invisible by setting [methodname]#setVisible(false)# for the -[classname]#Tab# object. The [methodname]#hideTabs()# method allows hiding the -tab bar entirely. This can be useful in tabbed document interfaces (TDI) when -there is only one tab. - -ifdef::web[] -[[figure.tabsheet.example2]] -.A TabSheet with Hidden and Disabled Tabs -image::img/tabsheet-example2.png[] -endif::web[] - - - -[[layout.tabsheet.events]] -== Tab Change Events - -Clicking on a tab selects it. This fires a -[classname]#TabSheet.SelectedTabChangeEvent#, which you can handle by -implementing the [classname]#TabSheet.SelectedTabChangeListener# interface. You -can access the tabsheet of the event with [methodname]#getTabSheet()#, and find -the new selected tab with [methodname]#getSelectedTab()#. - -You can programmatically select a tab with [methodname]#setSelectedTab()#, which -also fires the [classname]#SelectedTabChangeEvent# (beware of recursive events). -Reselecting the currently selected tab does not fire the event. - -Notice that when the first tab is added, it is selected and the change event is -fired, so if you want to catch that, you need to add your listener before adding -any tabs. - -ifdef::web[] -[[layout.tabsheet.events.dynamic]] -=== Creating Tab Content Dynamically - -In the following example, we create the tabs as empty content layouts, and add -the tab content dynamically when a tab is selected: - - -[source, java] ----- -TabSheet tabsheet = new TabSheet(); - -// Create tab content dynamically when tab is selected -tabsheet.addSelectedTabChangeListener( - new TabSheet.SelectedTabChangeListener() { - public void selectedTabChange(SelectedTabChangeEvent event) { - // Find the tabsheet - TabSheet tabsheet = event.getTabSheet(); - - // Find the tab (here we know it's a layout) - Layout tab = (Layout) tabsheet.getSelectedTab(); - - // Get the tab caption from the tab object - String caption = tabsheet.getTab(tab).getCaption(); - - // Fill the tab content - tab.removeAllComponents(); - tab.addComponent(new Image(null, - new ThemeResource("img/planets/"+caption+".jpg"))); - } -}); - -// Have some tabs -String[] tabs = {"Mercury", "Venus", "Earth", "Mars"}; -for (String caption: tabs) - tabsheet.addTab(new VerticalLayout(), caption, - new ThemeResource("img/planets/"+caption+"_symbol.png")); ----- - -endif::web[] - - -[[layout.tabsheet.closing]] -== Enabling and Handling Closing Tabs - -You can enable a close button for individual tabs with the -[literal]#++closable++# property in the [classname]#TabSheet.Tab# objects. - - -[source, java] ----- -// Enable closing the tab -tabsheet.getTab(tabComponent).setClosable(true); ----- - -[[figure.layout.tabsheet.closing]] -.TabSheet with Closable Tabs -image::img/tabsheet-tabclose.png[] - -[[layout.tabsheet.closing.handling]] -=== Handling Tab Close Events - -You can handle closing tabs by implementing a custom -[classname]#TabSheet.CloseHandler#. The default implementation simply calls -[methodname]#removeTab()# for the tab to be closed, but you can prevent the -close by not calling it. This allows, for example, opening a dialog window to -confirm the close. - - -[source, java] ----- -tabsheet.setCloseHandler(new CloseHandler() { - @Override - public void onTabClose(TabSheet tabsheet, - Component tabContent) { - Tab tab = tabsheet.getTab(tabContent); - Notification.show("Closing " + tab.getCaption()); - - // We need to close it explicitly in the handler - tabsheet.removeTab(tab); - } -}); ----- - - - -ifdef::web[] -[[layout.tabsheet.css]] -== CSS Style Rules - - -[source, css] ----- -.v-tabsheet {} -.v-tabsheet-tabs {} -.v-tabsheet-content {} -.v-tabsheet-deco {} -.v-tabsheet-tabcontainer {} -.v-tabsheet-tabsheetpanel {} -.v-tabsheet-hidetabs {} - -.v-tabsheet-scroller {} -.v-tabsheet-scrollerPrev {} -.v-tabsheet-scrollerNext {} -.v-tabsheet-scrollerPrev-disabled{} -.v-tabsheet-scrollerNext-disabled{} - -.v-tabsheet-tabitem {} -.v-tabsheet-tabitem-selected {} -.v-tabsheet-tabitemcell {} -.v-tabsheet-tabitemcell-first {} - -.v-tabsheet-tabs td {} -.v-tabsheet-spacertd {} ----- - -The entire tabsheet has the [literal]#++v-tabsheet++# style. A tabsheet consists -of three main parts: the tabs on the top, the main content pane, and decorations -around the tabsheet. - -The tabs area at the top can be styled with [literal]#++v-tabsheet-tabs++#, -[literal]#++v-tabsheet-tabcontainer++# and [literal]#++v-tabsheet-tabitem*++#. - -The style [literal]#++v-tabsheet-spacertd++# is used for any empty space after -the tabs. If the tabsheet has too little space to show all tabs, scroller -buttons enable browsing the full tab list. These use the styles -[literal]#++v-tabsheet-scroller*++#. - -The content area where the tab contents are shown can be styled with -[literal]#++v-tabsheet-content++#, and the surrounding decoration with -[literal]#++v-tabsheet-deco++#. - -endif::web[] - - - diff --git a/documentation/portal/chapter-portal.asciidoc b/documentation/portal/chapter-portal.asciidoc deleted file mode 100644 index 269a538419..0000000000 --- a/documentation/portal/chapter-portal.asciidoc +++ /dev/null @@ -1,19 +0,0 @@ -[[portal]] -== Portal Integration - -((("portal integration", id="term.portal", range="startofrange"))) - - - -include::portal-overview.asciidoc[leveloffset=+2] - -include::portal-eclipse.asciidoc[leveloffset=+2] - -include::portal-liferay.asciidoc[leveloffset=+2] - -include::portal-ui.asciidoc[leveloffset=+2] - -include::portal-deployment.asciidoc[leveloffset=+2] - -include::portal-liferay-ipc.asciidoc[leveloffset=+2] -(((range="endofrange", startref="term.portal"))) diff --git a/documentation/portal/img/liferay-add-application.png b/documentation/portal/img/liferay-add-application.png Binary files differdeleted file mode 100644 index aca2ed3bf7..0000000000 --- a/documentation/portal/img/liferay-add-application.png +++ /dev/null diff --git a/documentation/portal/img/liferay-display-hi.png b/documentation/portal/img/liferay-display-hi.png Binary files differdeleted file mode 100644 index a5633665e5..0000000000 --- a/documentation/portal/img/liferay-display-hi.png +++ /dev/null diff --git a/documentation/portal/img/liferay-display-lo.png b/documentation/portal/img/liferay-display-lo.png Binary files differdeleted file mode 100644 index 60b6c0e211..0000000000 --- a/documentation/portal/img/liferay-display-lo.png +++ /dev/null diff --git a/documentation/portal/img/liferay-helloworld.png b/documentation/portal/img/liferay-helloworld.png Binary files differdeleted file mode 100644 index 0ed995ba65..0000000000 --- a/documentation/portal/img/liferay-helloworld.png +++ /dev/null diff --git a/documentation/portal/img/liferay-ipc-architecture-hi.png b/documentation/portal/img/liferay-ipc-architecture-hi.png Binary files differdeleted file mode 100644 index 17d4823b9d..0000000000 --- a/documentation/portal/img/liferay-ipc-architecture-hi.png +++ /dev/null diff --git a/documentation/portal/img/liferay-ipc-architecture-lo.png b/documentation/portal/img/liferay-ipc-architecture-lo.png Binary files differdeleted file mode 100644 index 5692f97fcb..0000000000 --- a/documentation/portal/img/liferay-ipc-architecture-lo.png +++ /dev/null diff --git a/documentation/portal/img/liferay-ipc-demo-annotated-hi.png b/documentation/portal/img/liferay-ipc-demo-annotated-hi.png Binary files differdeleted file mode 100644 index c705dbe895..0000000000 --- a/documentation/portal/img/liferay-ipc-demo-annotated-hi.png +++ /dev/null diff --git a/documentation/portal/img/liferay-ipc-demo-annotated-lo.png b/documentation/portal/img/liferay-ipc-demo-annotated-lo.png Binary files differdeleted file mode 100644 index 5d98c2c3d9..0000000000 --- a/documentation/portal/img/liferay-ipc-demo-annotated-lo.png +++ /dev/null diff --git a/documentation/portal/img/liferay-ipc-demo.png b/documentation/portal/img/liferay-ipc-demo.png Binary files differdeleted file mode 100644 index d503ea928b..0000000000 --- a/documentation/portal/img/liferay-ipc-demo.png +++ /dev/null diff --git a/documentation/portal/img/liferay-maven-profile.png b/documentation/portal/img/liferay-maven-profile.png Binary files differdeleted file mode 100644 index f78f109c9a..0000000000 --- a/documentation/portal/img/liferay-maven-profile.png +++ /dev/null diff --git a/documentation/portal/img/liferay-maven-project.png b/documentation/portal/img/liferay-maven-project.png Binary files differdeleted file mode 100644 index d1669443cf..0000000000 --- a/documentation/portal/img/liferay-maven-project.png +++ /dev/null diff --git a/documentation/portal/img/liferay-project.png b/documentation/portal/img/liferay-project.png Binary files differdeleted file mode 100644 index 6dbe2ae376..0000000000 --- a/documentation/portal/img/liferay-project.png +++ /dev/null diff --git a/documentation/portal/img/portal-mode-edit.png b/documentation/portal/img/portal-mode-edit.png Binary files differdeleted file mode 100644 index e4c90d9708..0000000000 --- a/documentation/portal/img/portal-mode-edit.png +++ /dev/null diff --git a/documentation/portal/img/portal-mode-help.png b/documentation/portal/img/portal-mode-help.png Binary files differdeleted file mode 100644 index d259329329..0000000000 --- a/documentation/portal/img/portal-mode-help.png +++ /dev/null diff --git a/documentation/portal/img/portal-mode-view.png b/documentation/portal/img/portal-mode-view.png Binary files differdeleted file mode 100644 index e510a0f971..0000000000 --- a/documentation/portal/img/portal-mode-view.png +++ /dev/null diff --git a/documentation/portal/img/wsrp-architecture-hi.png b/documentation/portal/img/wsrp-architecture-hi.png Binary files differdeleted file mode 100644 index 9b23ccd842..0000000000 --- a/documentation/portal/img/wsrp-architecture-hi.png +++ /dev/null diff --git a/documentation/portal/img/wsrp-architecture-lo.png b/documentation/portal/img/wsrp-architecture-lo.png Binary files differdeleted file mode 100644 index 884c5d39a4..0000000000 --- a/documentation/portal/img/wsrp-architecture-lo.png +++ /dev/null diff --git a/documentation/portal/img/wsrp-consumer-config.png b/documentation/portal/img/wsrp-consumer-config.png Binary files differdeleted file mode 100644 index 925e9d76b6..0000000000 --- a/documentation/portal/img/wsrp-consumer-config.png +++ /dev/null diff --git a/documentation/portal/img/wsrp-provider-config.png b/documentation/portal/img/wsrp-provider-config.png Binary files differdeleted file mode 100644 index 200eed1c6f..0000000000 --- a/documentation/portal/img/wsrp-provider-config.png +++ /dev/null diff --git a/documentation/portal/original-drawings/liferay-display.svg b/documentation/portal/original-drawings/liferay-display.svg deleted file mode 100644 index 15315e0354..0000000000 --- a/documentation/portal/original-drawings/liferay-display.svg +++ /dev/null @@ -1,213 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="liferay-display.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- version="1.1">
- <defs
- id="defs1903">
- <marker
- inkscape:stockid="Arrow2Mend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow2Mend"
- style="overflow:visible;">
- <path
- id="path3333"
- style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- transform="scale(0.6) rotate(180) translate(0,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow2Send"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow2Send"
- style="overflow:visible;">
- <path
- id="path3339"
- style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- transform="scale(0.3) rotate(180) translate(-2.3,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow2Lend"
- style="overflow:visible;">
- <path
- id="path3327"
- style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- transform="scale(1.1) rotate(180) translate(1,0)" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective7" />
- <inkscape:perspective
- id="perspective2446"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath3287">
- <rect
- style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.29999998;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect3289"
- width="265"
- height="90"
- x="-400"
- y="752.36218"
- ry="0"
- clip-path="none" />
- </clipPath>
- <clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath3292">
- <rect
- clip-path="none"
- ry="0"
- y="92.362183"
- x="20.000019"
- height="140"
- width="268.57141"
- id="rect3294"
- style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.29999998;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- </clipPath>
- <clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath3297">
- <rect
- clip-path="none"
- ry="0"
- y="412.36218"
- x="420"
- height="220"
- width="270"
- id="rect3299"
- style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.29999998;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- </clipPath>
- <inkscape:perspective
- id="perspective6621"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="0.98994949"
- inkscape:cx="1067.1427"
- inkscape:cy="462.25637"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="2529"
- inkscape:window-height="1019"
- inkscape:window-x="350"
- inkscape:window-y="0"
- showgrid="true"
- inkscape:snap-nodes="true"
- guidetolerance="10000"
- inkscape:snap-global="true"
- inkscape:snap-bbox="true"
- objecttolerance="10000"
- inkscape:window-maximized="0">
- <inkscape:grid
- type="xygrid"
- id="grid2380"
- visible="true"
- enabled="true"
- empspacing="10"
- spacingx="10px"
- spacingy="10px" />
- </sodipodi:namedview>
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <image
- sodipodi:absref="/home/magi/itmill/book-7/manual/original-drawings/portal/../../img/portal/liferay-add-application.png"
- xlink:href="../../img/portal/liferay-add-application.png"
- width="262"
- height="437"
- id="image6623"
- x="208"
- y="375.36218" />
- <path
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow2Mend);stroke-miterlimit:4;stroke-dasharray:none"
- d="M 500,682.36218 C 450,682.36218 380,682.36218 380,682.36218"
- id="path3301"
- sodipodi:nodetypes="cc" />
- <text
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans"
- x="504"
- y="686.36218"
- id="text6163"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan6165"
- x="504"
- y="686.36218">The Example Portlet</tspan></text>
- <path
- style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow2Mend);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 500,572.36218 C 450,572.36218 380,572.36218 380,572.36218"
- id="path6567"
- sodipodi:nodetypes="cc" />
- <text
- xml:space="preserve"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans"
- x="504"
- y="576.36218"
- id="text6569"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan6571"
- x="504"
- y="576.36218">Portlet Category</tspan></text>
- </g>
-</svg>
diff --git a/documentation/portal/original-drawings/liferay-ipc-architecture.svg b/documentation/portal/original-drawings/liferay-ipc-architecture.svg deleted file mode 100644 index 4ba77455ba..0000000000 --- a/documentation/portal/original-drawings/liferay-ipc-architecture.svg +++ /dev/null @@ -1,1141 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="liferay-ipc-architecture.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- version="1.1">
- <defs
- id="defs1903">
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective206" />
- <linearGradient
- id="linearGradient11516">
- <stop
- id="stop11518"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop11520"
- offset="1"
- style="stop-color:#a090e7;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient11508">
- <stop
- id="stop11510"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop11512"
- offset="1"
- style="stop-color:#e27979;stop-opacity:1" />
- </linearGradient>
- <marker
- inkscape:stockid="DiamondL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="DiamondL"
- style="overflow:visible">
- <path
- id="path4404"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.8)" />
- </marker>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="DiamondEmpty"
- style="overflow:visible">
- <path
- id="path7"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z "
- style="fill-rule:evenodd;fill:#ffffff;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(1.0) translate(-5,0)" />
- </marker>
- <linearGradient
- id="linearGradient3286">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3288" />
- <stop
- style="stop-color:#79e291;stop-opacity:1;"
- offset="1"
- id="stop3290" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="EmptyArrow"
- style="overflow:visible;">
- <path
- id="path9"
- d="M 0.0,0.0 L 0.0,-5.0 L -12.5,0.0 L 0.0,5.0 L 0.0,0.0 z M -0.5,0.0 L -0.5,-4.5 L -12.0,0.0 L -0.5,4.5 L -0.5,0.0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(1.0) rotate(180) translate(10,0)" />
- </marker>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="EmptyArrow2"
- style="overflow:visible;">
- <path
- id="path13"
- d="M 0.0,0.0 L 0.0,-5.0 L -10.0,0.0 L 0.0,5.0 L 0.0,0.0 z"
- style="fill-rule:evenodd;fill:#ffffff;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(1.0) rotate(180) translate(10,0)" />
- </marker>
- <linearGradient
- id="linearGradient19816">
- <stop
- id="stop19818"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop19820"
- offset="1"
- style="stop-color:#e7e790;stop-opacity:1;" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow2Lend"
- style="overflow:visible;">
- <path
- id="path16811"
- style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- transform="scale(1.1) rotate(180) translate(1,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow1Lend"
- style="overflow:visible;">
- <path
- id="path16829"
- d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(0.8) rotate(180) translate(12.5,0)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutM"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleOutM"
- style="overflow:visible">
- <path
- id="path16731"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.4)" />
- </marker>
- <marker
- inkscape:stockid="TriangleInL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleInL"
- style="overflow:visible">
- <path
- id="path16743"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(-0.8)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path16734"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.8)" />
- </marker>
- <linearGradient
- id="linearGradient9263">
- <stop
- style="stop-color:#000000;stop-opacity:0"
- offset="0"
- id="stop9265" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop9267" />
- </linearGradient>
- <linearGradient
- id="linearGradient7299">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop7301" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop7303" />
- </linearGradient>
- <linearGradient
- id="linearGradient5349">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop5351" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop5353" />
- </linearGradient>
- <linearGradient
- id="linearGradient4152">
- <stop
- style="stop-color:#6b6bff;stop-opacity:1;"
- offset="0"
- id="stop4154" />
- <stop
- style="stop-color:#6b6bff;stop-opacity:0;"
- offset="1"
- id="stop4156" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5349"
- id="linearGradient5355"
- x1="96.085953"
- y1="148.38934"
- x2="389.01985"
- y2="148.38934"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient12637"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,265.61411,78.560061)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient15668"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient17873"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,541.12253,30.198804)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient17875"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient20832"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22790"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22806"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22822"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22838"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient2303"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3306"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2251403,2.385383e-3,-2.8806072e-3,0.5966421,625.8055,-4.9637231)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3307"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.634924,2.3804409e-3,-3.8441097e-3,0.5954059,670.96002,-4.81581)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3327"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient8322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient8338"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient8354"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient11393"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2251403,2.385383e-3,-2.8806072e-3,0.5966421,625.8055,-4.9637231)"
- cx="-145.65326"
- cy="87.697487"
- fx="-145.65326"
- fy="87.697487"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient11490"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11508"
- id="radialGradient11506"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11516"
- id="linearGradient11514"
- x1="402.58597"
- y1="24.440832"
- x2="535.59796"
- y2="190.61652"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient11602"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11508"
- id="radialGradient11604"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11516"
- id="linearGradient13616"
- x1="174.35712"
- y1="96.654701"
- x2="220.02124"
- y2="192.93446"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient14623"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9722636,1.8198108e-3,-2.2860317e-3,0.4551788,579.72294,2.0165387)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="linearGradient16644"
- x1="160.84073"
- y1="73.780838"
- x2="239.77594"
- y2="207.50426"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11516"
- id="linearGradient18644"
- x1="1036.6514"
- y1="1185.2882"
- x2="1076.5066"
- y2="1351.074"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient19653"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-3"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-8"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-2"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-7"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-2"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker3452"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g3454"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path3456"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path3458"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-29"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-0"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-28"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-38"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-2"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-4"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-9"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-1"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-9"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-2"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-0"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-7"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-3"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-1"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-6"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-98"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-1"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-3"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-79"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-8"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.8159691"
- inkscape:cx="306.23869"
- inkscape:cy="795.29855"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1672"
- inkscape:window-height="1019"
- inkscape:window-x="0"
- inkscape:window-y="0"
- showgrid="true"
- showguides="false"
- inkscape:connector-spacing="10"
- inkscape:guide-bbox="true"
- inkscape:window-maximized="0">
- <sodipodi:guide
- orientation="0,1"
- position="31.938869,788.55965"
- id="guide17449" />
- <sodipodi:guide
- orientation="1,0"
- position="224.67342,882.17358"
- id="guide17453" />
- <sodipodi:guide
- orientation="0,1"
- position="285.41744,976.57155"
- id="guide23390" />
- <sodipodi:guide
- orientation="0,1"
- position="285.79781,806.73177"
- id="guide23439" />
- <sodipodi:guide
- orientation="1,0"
- position="561.68355,823.80254"
- id="guide23441" />
- <sodipodi:guide
- orientation="1,0"
- position="415.75596,833.7146"
- id="guide23443" />
- <sodipodi:guide
- orientation="1,0"
- position="61.675057,822.15053"
- id="guide23607" />
- <inkscape:grid
- type="xygrid"
- id="grid4485"
- empspacing="5"
- visible="true"
- enabled="true"
- snapvisiblegridlinesonly="true"
- spacingx="5px"
- spacingy="5px" />
- </sodipodi:namedview>
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <rect
- style="fill:#e6e6e6;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6642-43"
- width="390"
- height="215"
- x="130"
- y="217.36218"
- ry="3.7880721" />
- <g
- id="g3412"
- transform="translate(1.6520105,5)">
- <rect
- ry="3.7880721"
- y="235.1693"
- x="137.6749"
- height="101.31999"
- width="179.50377"
- id="rect6642-4"
- style="fill:#c8c8c8;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-671.85539,-822.33805)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361"
- xml:space="preserve"><flowRegion
- id="flowRegion11363"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="17.67767"
- width="94.752312"
- id="rect11365" /></flowRegion><flowPara
- id="flowPara11367">Vaadin Portlet</flowPara></flowRoot> <g
- id="g28403-3"
- transform="translate(131.9976,81.929642)">
- <rect
- ry="3.7880721"
- y="180.43254"
- x="21.810513"
- height="60.488556"
- width="149.53987"
- id="rect4680-7"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-782.52461,-874.63204)"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-1"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-0"><rect
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="42.457775"
- width="136.60326"
- id="rect11365-5-4" /></flowRegion><flowPara
- id="flowPara17609">LiferayIPC</flowPara></flowRoot> </g>
- </g>
- <g
- id="g3425"
- transform="translate(-5.5067016,5)">
- <rect
- ry="3.7880721"
- y="235.72"
- x="338.66949"
- height="181.64218"
- width="176.8372"
- id="rect6642-4-4"
- style="fill:#c8c8c8;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-470.31012,-822.33804)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-7"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-6"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="17.67767"
- width="94.752312"
- id="rect11365-56" /></flowRegion><flowPara
- id="flowPara11367-9">Vaadin Portlet</flowPara></flowRoot> <g
- id="g28403-3-3"
- transform="translate(332.12052,84.197633)">
- <rect
- ry="3.7880721"
- y="178.16455"
- x="23.386181"
- height="60.488556"
- width="149.53987"
- id="rect4680-7-7"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-780.48882,-876.90003)"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-1-4"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-0-5"><rect
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="42.457775"
- width="136.60326"
- id="rect11365-5-4-2" /></flowRegion><flowPara
- id="flowPara17609-5">LiferayIPC</flowPara></flowRoot> </g>
- </g>
- <flowRoot
- xml:space="preserve"
- id="flowRoot11369-1"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-680.19986,-843.98059)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11371-4"><rect
- id="rect11373-9"
- width="207.53137"
- height="11.92172"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara11375-2">Liferay Portal</flowPara></flowRoot> <rect
- style="fill:#e6e6e6;fill-opacity:1;stroke:#000000;stroke-width:1.77199996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect6642-43-5"
- width="390"
- height="125"
- x="130"
- y="82.362183"
- ry="3.7880721" />
- <g
- transform="translate(140.34646,-71.363951)"
- id="g28403-3-0-2-9">
- <rect
- style="fill:#c8c8c8;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.772;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;stroke-miterlimit:4;stroke-dasharray:none"
- id="rect4680-7-0-1-0"
- width="370"
- height="90"
- x="-0.34646001"
- y="178.72614"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-1-0-5"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-804.22146,-876.33845)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-64-5-6"><rect
- id="rect11365-5-4-5-11-7"
- width="304.99512"
- height="20.681526"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara17609-3-8-7">Vaadin Client-Side Engine (Widget Set)</flowPara></flowRoot> </g>
- <g
- transform="translate(150.34646,-36.363951)"
- id="g28403-3-0-2">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-0-1"
- width="150"
- height="50.000004"
- x="4.6535401"
- y="173.72614"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-1-0"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-799.22146,-881.33845)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-64-5"><rect
- id="rect11365-5-4-5-11"
- width="136.60326"
- height="42.457775"
- x="813.87988"
- y="1064.3831"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara17609-3-8">LiferayIPC Widget</flowPara></flowRoot> </g>
- <flowRoot
- xml:space="preserve"
- id="flowRoot11369-1-5"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-678.875,-976.17532)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11371-4-0"><rect
- id="rect11373-9-6"
- width="297.23941"
- height="17.201656"
- x="813.87988"
- y="1064.3831"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara11375-2-4">Web Browser</flowPara></flowRoot> <g
- transform="translate(329.99847,165.28806)"
- id="g28403-3-9-1-2">
- <rect
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-1-2-5"
- width="150"
- height="64.999992"
- x="20.00153"
- y="182.07413"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-2-2-3"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-783.87347,-872.99046)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-6-9-4"><rect
- id="rect11365-5-4-9-5-9"
- width="142.10995"
- height="56.224495"
- x="813.87988"
- y="1064.3831"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara17650-4-2">Liferay IPC</flowPara><flowPara
- id="flowPara5302">Event Listener</flowPara></flowRoot> </g>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095)"
- d="m 475,322.36218 0,35"
- id="path4780-1"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095)"
- d="m 285,272.36218 0,-95"
- id="path4780-1-1"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <g
- transform="translate(320.34646,-36.363951)"
- id="g28403-3-0-2-7">
- <rect
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect4680-7-0-1-00"
- width="150"
- height="50"
- x="29.65354"
- y="173.72614"
- ry="3.7880721" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot11361-6-1-1-0-3"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- transform="translate(-774.22146,-881.33845)"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90"><flowRegion
- id="flowRegion11363-2-0-64-5-4"><rect
- id="rect11365-5-4-5-11-9"
- width="136.60326"
- height="42.457775"
- x="813.87988"
- y="1064.3831"
- style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold" /></flowRegion><flowPara
- id="flowPara17609-3-8-2">LiferayIPC Widget</flowPara></flowRoot> </g>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095)"
- d="m 475,182.36218 0,95"
- id="path4780-1-1-3"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095)"
- d="m 300,172.36218 60,0"
- id="path4780-1-1-7"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- </g>
- <g
- inkscape:groupmode="layer"
- id="layer2"
- inkscape:label="Varjot" />
-</svg>
diff --git a/documentation/portal/original-drawings/liferay-ipc-demo-annotated.svg b/documentation/portal/original-drawings/liferay-ipc-demo-annotated.svg deleted file mode 100644 index c0dca8ada5..0000000000 --- a/documentation/portal/original-drawings/liferay-ipc-demo-annotated.svg +++ /dev/null @@ -1,182 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="744.09448819"
- height="1052.3622047"
- id="svg2"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="liferay-ipc-demo-annotated.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- version="1.1">
- <defs
- id="defs4">
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="M 370,508.65625 C 369.13933,508.715 368.39056,509.27755 368.09375,510.09375 C 367.82399,510.83551 368.03605,511.62868 368.53125,512.21875 L 366.78125,512.21875 C 366.73884,512.21408 366.69882,512.22093 366.65625,512.21875 L 366.65625,516.59375 L 366.78125,516.59375 L 368.53125,516.59375 C 367.85229,517.45345 367.83424,518.70924 368.625,519.5 C 369.47591,520.35091 370.89909,520.35091 371.75,519.5 L 375.09375,516.125 C 375.12672,516.09552 375.15802,516.06422 375.1875,516.03125 C 375.21972,516.01191 375.25101,515.99105 375.28125,515.96875 C 375.28162,515.96839 375.49976,515.68796 375.5,515.6875 C 375.50005,515.68741 375.49338,515.64282 375.5,515.625 C 375.5011,515.62203 375.53002,515.62832 375.53125,515.625 C 375.57039,515.57293 375.58228,515.57321 375.625,515.5 C 375.76199,515.26524 375.79184,515.12809 375.78125,515.15625 C 375.81807,515.06473 375.79977,515.04374 375.8125,515 C 375.82311,514.98978 375.83353,514.97936 375.84375,514.96875 C 375.90379,514.74477 375.93181,514.45186 375.90625,514.1875 C 375.89266,513.98387 375.84739,513.88985 375.84375,513.875 C 375.84389,513.86458 375.84389,513.85417 375.84375,513.84375 C 375.86975,513.94071 375.85901,513.85978 375.75,513.59375 C 375.69753,513.46336 375.66014,513.37439 375.625,513.3125 C 375.57262,513.22275 375.49154,513.05015 375.28125,512.84375 L 371.75,509.3125 C 371.29355,508.82579 370.66491,508.60087 370,508.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="M 366.65625,515.40625 L 371.28125,515.40625 L 369.46875,517.21875 C 369.0718,517.6157 369.0718,518.2593 369.46875,518.65625 C 369.8657,519.0532 370.5093,519.0532 370.90625,518.65625 L 374.34375,515.1875 L 374.4375,515.125 C 374.44343,515.11918 374.43171,515.09972 374.4375,515.09375 C 374.49291,515.03659 374.5526,514.97676 374.59375,514.90625 C 374.62239,514.85717 374.63663,514.80216 374.65625,514.75 C 374.66861,514.71928 374.67831,514.68783 374.6875,514.65625 C 374.71862,514.54015 374.73024,514.43132 374.71875,514.3125 C 374.71489,514.25466 374.70138,514.21285 374.6875,514.15625 C 374.6766,514.1156 374.67237,514.07059 374.65625,514.03125 C 374.63982,513.99042 374.61578,513.94505 374.59375,513.90625 C 374.5483,513.82838 374.50015,513.74899 374.4375,513.6875 L 370.90625,510.15625 C 370.69734,509.93349 370.39809,509.8184 370.09375,509.84375 C 369.69897,509.8707 369.35398,510.12813 369.21875,510.5 C 369.08351,510.87187 369.18349,511.28826 369.46875,511.5625 L 371.34375,513.40625 L 366.65625,513.40625"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective10" />
- <inkscape:perspective
- id="perspective2481"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <marker
- id="marker18095-8"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-5"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-0"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-9"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-0"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-4"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-1"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-0"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- gridtolerance="10000"
- guidetolerance="10"
- objecttolerance="10"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.4"
- inkscape:cx="391.82548"
- inkscape:cy="881.70712"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:window-width="1437"
- inkscape:window-height="1005"
- inkscape:window-x="186"
- inkscape:window-y="30"
- inkscape:window-maximized="0">
- <inkscape:grid
- type="xygrid"
- id="grid4349"
- empspacing="5"
- visible="true"
- enabled="true"
- snapvisiblegridlinesonly="true"
- spacingx="5px"
- spacingy="5px" />
- </sodipodi:namedview>
- <metadata
- id="metadata7">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1">
- <image
- y="50.362183"
- x="58"
- id="image3092"
- xlink:href="file:///home/magi/itmill/doc/manual/img/portal/liferay-ipc-demo.png"
- height="302"
- width="642" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095-8)"
- d="m 150,247.36218 c 60,0 235,-70 235,-70"
- id="path4386"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- </g>
-</svg>
diff --git a/documentation/portal/original-drawings/wsrp-architecture.svg b/documentation/portal/original-drawings/wsrp-architecture.svg deleted file mode 100644 index c73854b4c1..0000000000 --- a/documentation/portal/original-drawings/wsrp-architecture.svg +++ /dev/null @@ -1,1310 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.48.2 r9819"
- sodipodi:docname="wsrp-architecture.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- version="1.1">
- <defs
- id="defs1903">
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective206" />
- <linearGradient
- id="linearGradient11516">
- <stop
- id="stop11518"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1" />
- <stop
- id="stop11520"
- offset="1"
- style="stop-color:#a090e7;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient11508">
- <stop
- id="stop11510"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop11512"
- offset="1"
- style="stop-color:#e27979;stop-opacity:1" />
- </linearGradient>
- <marker
- inkscape:stockid="DiamondL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="DiamondL"
- style="overflow:visible">
- <path
- id="path4404"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.8)" />
- </marker>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="DiamondEmpty"
- style="overflow:visible">
- <path
- id="path7"
- d="M 0,-5 L -5,0 L 0,5 L 5,0 L 0,-5 z "
- style="fill-rule:evenodd;fill:#ffffff;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(1.0) translate(-5,0)" />
- </marker>
- <linearGradient
- id="linearGradient3286">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop3288" />
- <stop
- style="stop-color:#79e291;stop-opacity:1;"
- offset="1"
- id="stop3290" />
- </linearGradient>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="EmptyArrow"
- style="overflow:visible;">
- <path
- id="path9"
- d="M 0.0,0.0 L 0.0,-5.0 L -12.5,0.0 L 0.0,5.0 L 0.0,0.0 z M -0.5,0.0 L -0.5,-4.5 L -12.0,0.0 L -0.5,4.5 L -0.5,0.0 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(1.0) rotate(180) translate(10,0)" />
- </marker>
- <marker
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="EmptyArrow2"
- style="overflow:visible;">
- <path
- id="path13"
- d="M 0.0,0.0 L 0.0,-5.0 L -10.0,0.0 L 0.0,5.0 L 0.0,0.0 z"
- style="fill-rule:evenodd;fill:#ffffff;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(1.0) rotate(180) translate(10,0)" />
- </marker>
- <linearGradient
- id="linearGradient19816">
- <stop
- id="stop19818"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop19820"
- offset="1"
- style="stop-color:#e7e790;stop-opacity:1;" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow2Lend"
- style="overflow:visible;">
- <path
- id="path16811"
- style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- transform="scale(1.1) rotate(180) translate(1,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow1Lend"
- style="overflow:visible;">
- <path
- id="path16829"
- d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(0.8) rotate(180) translate(12.5,0)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutM"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleOutM"
- style="overflow:visible">
- <path
- id="path16731"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.4)" />
- </marker>
- <marker
- inkscape:stockid="TriangleInL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleInL"
- style="overflow:visible">
- <path
- id="path16743"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(-0.8)" />
- </marker>
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path16734"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.8)" />
- </marker>
- <linearGradient
- id="linearGradient9263">
- <stop
- style="stop-color:#000000;stop-opacity:0"
- offset="0"
- id="stop9265" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop9267" />
- </linearGradient>
- <linearGradient
- id="linearGradient7299">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop7301" />
- <stop
- style="stop-color:#a090e7;stop-opacity:1"
- offset="1"
- id="stop7303" />
- </linearGradient>
- <linearGradient
- id="linearGradient5349">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop5351" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop5353" />
- </linearGradient>
- <linearGradient
- id="linearGradient4152">
- <stop
- style="stop-color:#6b6bff;stop-opacity:1;"
- offset="0"
- id="stop4154" />
- <stop
- style="stop-color:#6b6bff;stop-opacity:0;"
- offset="1"
- id="stop4156" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5349"
- id="linearGradient5355"
- x1="96.085953"
- y1="148.38934"
- x2="389.01985"
- y2="148.38934"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient12637"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,265.61411,78.560061)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient15668"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,262.24281,78.560061)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient17873"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9214039,2.3896193e-3,-2.166448e-3,0.5977017,541.12253,30.198804)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient17875"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient20832"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22790"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22806"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22822"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient22838"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient2303"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3306"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2251403,2.385383e-3,-2.8806072e-3,0.5966421,625.8055,-4.9637231)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient3307"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.634924,2.3804409e-3,-3.8441097e-3,0.5954059,670.96002,-4.81581)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient3327"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3286"
- id="radialGradient8322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6000725,2.3808346e-3,-3.7621654e-3,0.5955044,664.61868,-4.8275956)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient8338"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient8354"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient11393"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2251403,2.385383e-3,-2.8806072e-3,0.5966421,625.8055,-4.9637231)"
- cx="-145.65326"
- cy="87.697487"
- fx="-145.65326"
- fy="87.697487"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient11490"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11508"
- id="radialGradient11506"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11516"
- id="linearGradient11514"
- x1="402.58597"
- y1="24.440832"
- x2="535.59796"
- y2="190.61652"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient11602"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11508"
- id="radialGradient11604"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11516"
- id="linearGradient13616"
- x1="174.35712"
- y1="96.654701"
- x2="220.02124"
- y2="192.93446"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="radialGradient14623"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9722636,1.8198108e-3,-2.2860317e-3,0.4551788,579.72294,2.0165387)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient7299"
- id="linearGradient16644"
- x1="160.84073"
- y1="73.780838"
- x2="239.77594"
- y2="207.50426"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient11516"
- id="linearGradient18644"
- x1="1036.6514"
- y1="1185.2882"
- x2="1076.5066"
- y2="1351.074"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient19816"
- id="radialGradient19653"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3208501,2.3843471e-3,-3.1056446e-3,0.596383,334.93437,78.721097)"
- cx="-147.5"
- cy="97.300964"
- fx="-147.5"
- fy="97.300964"
- r="109.42857" />
- <marker
- id="marker52016"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-3"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-8"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-2"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-7"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-2"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker3452"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g3454"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path3456"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path3458"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker52016-29"
- orient="auto"
- markerHeight="5.7450786"
- markerWidth="4.6297302">
- <g
- id="g52010-0"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path52012-28"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path52014-38"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#f39300;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-2"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-4"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-7"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-9"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-1"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-9"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-6"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-2"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-0"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-7"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-3"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-1"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-6"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-98"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-1"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-3"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-3"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-79"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-8"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-6"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-4"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-6"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-2"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-5"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-47"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-2"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-4"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-0"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-09"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-1"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-9"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-62"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker44971-2"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059-6"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061-5"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063-2"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#d9d9cd;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <marker
- id="marker18095-04"
- orient="auto"
- markerHeight="5.7450776"
- markerWidth="4.6297302">
- <g
- id="g11064-10"
- transform="matrix(0.5,0,0,0.5,-185.64298,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path11050-48"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path11035-7"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="2.5681681"
- inkscape:cx="274.07458"
- inkscape:cy="704.33931"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1672"
- inkscape:window-height="1019"
- inkscape:window-x="0"
- inkscape:window-y="0"
- showgrid="true"
- showguides="false"
- inkscape:connector-spacing="10"
- inkscape:guide-bbox="true"
- inkscape:window-maximized="0">
- <sodipodi:guide
- orientation="0,1"
- position="31.938869,788.55965"
- id="guide17449" />
- <sodipodi:guide
- orientation="1,0"
- position="224.67342,882.17358"
- id="guide17453" />
- <sodipodi:guide
- orientation="0,1"
- position="285.41744,976.57155"
- id="guide23390" />
- <sodipodi:guide
- orientation="0,1"
- position="285.79781,806.73177"
- id="guide23439" />
- <sodipodi:guide
- orientation="1,0"
- position="561.68355,823.80254"
- id="guide23441" />
- <sodipodi:guide
- orientation="1,0"
- position="415.75596,833.7146"
- id="guide23443" />
- <sodipodi:guide
- orientation="1,0"
- position="61.675057,822.15053"
- id="guide23607" />
- <inkscape:grid
- type="xygrid"
- id="grid4485"
- empspacing="5"
- visible="true"
- enabled="true"
- snapvisiblegridlinesonly="true"
- spacingx="5px"
- spacingy="5px" />
- </sodipodi:namedview>
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <g
- id="g3412"
- transform="translate(-7.6748962,-7.8071136)">
- <rect
- ry="3.7880721"
- y="235.1693"
- x="137.6749"
- height="85"
- width="179.50375"
- id="rect6642-4"
- style="fill:#c8c8c8;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-671.85539,-822.33805)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361"
- xml:space="preserve"><flowRegion
- id="flowRegion11363"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="13.12429"
- width="115.65041"
- id="rect11365" /></flowRegion><flowPara
- id="flowPara11367">Consumer Portal</flowPara></flowRoot> <g
- id="g28403-3"
- transform="translate(131.9976,81.929642)">
- <rect
- ry="3.7880721"
- y="180.43254"
- x="21.810513"
- height="30.488556"
- width="74.539879"
- id="rect4680-7"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2, 2;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-787.52461,-876.85286)"
- style="font-size:11px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-1"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-0"><rect
- style="font-size:11px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="42.457775"
- width="136.60326"
- id="rect11365-5-4" /></flowRegion><flowPara
- id="flowPara17609">Portlet 1</flowPara></flowRoot> </g>
- <g
- id="g28403-3-4"
- transform="translate(211.32451,99.248199)">
- <rect
- ry="3.7880721"
- y="180.43254"
- x="21.810513"
- height="30.488556"
- width="74.539879"
- id="rect4680-7-44"
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2, 2;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-787.52461,-876.85286)"
- style="font-size:11px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-1-47"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-0-6"><rect
- style="font-size:11px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="42.457775"
- width="136.60326"
- id="rect11365-5-4-3" /></flowRegion><flowPara
- id="flowPara17609-1">Portlet 2</flowPara></flowRoot> </g>
- </g>
- <g
- id="g3169"
- transform="translate(0,75)">
- <rect
- ry="3.7880721"
- y="82.362183"
- x="130"
- height="55"
- width="370"
- id="rect6642-43-5"
- style="fill:#e6e6e6;fill-opacity:1;stroke:#000000;stroke-width:1.77199996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-678.875,-976.17532)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11369-1-5"
- xml:space="preserve"><flowRegion
- id="flowRegion11371-4-0"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="17.201656"
- width="297.23941"
- id="rect11373-9-6" /></flowRegion><flowPara
- id="flowPara11375-2-4">Web Browser</flowPara></flowRoot> </g>
- <g
- id="g3412-1"
- transform="translate(182.3251,-7.8071136)">
- <rect
- ry="3.7880721"
- y="235.1693"
- x="137.6749"
- height="85"
- width="179.50375"
- id="rect6642-4-8"
- style="fill:#c8c8c8;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-671.85539,-822.33805)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-9"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-64"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="18.12429"
- width="125.65041"
- id="rect11365-3" /></flowRegion><flowPara
- id="flowPara11367-3">Consumer Portal</flowPara></flowRoot> <g
- id="g28403-3-38"
- transform="translate(201.32451,84.248199)">
- <rect
- ry="3.7880721"
- y="180.43254"
- x="21.810513"
- height="30.488556"
- width="74.539879"
- id="rect4680-7-6"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2, 2;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-787.52461,-876.85286)"
- style="font-size:11px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-1-0"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-0-4"><rect
- style="font-size:11px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="42.457775"
- width="136.60326"
- id="rect11365-5-4-8" /></flowRegion><flowPara
- id="flowPara17609-8">Portlet 1</flowPara></flowRoot> </g>
- </g>
- <g
- id="g3412-3"
- transform="translate(-7.6748962,92.192886)">
- <rect
- ry="3.7880721"
- y="235.1693"
- x="137.6749"
- height="75"
- width="179.50375"
- id="rect6642-4-0"
- style="fill:#9b9b9b;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-671.85539,-822.33805)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-3"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-0"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="13.12429"
- width="115.65041"
- id="rect11365-9" /></flowRegion><flowPara
- id="flowPara11367-2">Producer Portal</flowPara></flowRoot> <g
- id="g28403-3-5"
- transform="translate(191.32451,89.2482)">
- <rect
- ry="3.7880721"
- y="180.43254"
- x="21.810513"
- height="30.488556"
- width="74.539879"
- id="rect4680-7-4"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-787.52461,-876.85286)"
- style="font-size:11px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-1-05"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-0-9"><rect
- style="font-size:11px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="42.457775"
- width="136.60326"
- id="rect11365-5-4-4" /></flowRegion><flowPara
- id="flowPara17609-6">Portlet 1</flowPara></flowRoot> </g>
- </g>
- <g
- id="g3412-3-2"
- transform="translate(182.3251,92.192886)">
- <rect
- ry="3.7880721"
- y="235.1693"
- x="137.6749"
- height="75"
- width="179.50375"
- id="rect6642-4-0-8"
- style="fill:#9b9b9b;fill-opacity:1;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-671.85539,-822.33805)"
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-3-9"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-0-3"><rect
- style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="13.12429"
- width="115.65041"
- id="rect11365-9-6" /></flowRegion><flowPara
- id="flowPara11367-2-8">Producer Portal</flowPara></flowRoot> <g
- id="g28403-3-4-9-1"
- transform="translate(190.86439,88.56861)">
- <rect
- ry="3.7880721"
- y="180.43254"
- x="21.810513"
- height="30.488556"
- width="74.539879"
- id="rect4680-7-44-2-0"
- style="fill:#f39300;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
- <flowRoot
- inkscape:export-ydpi="90"
- inkscape:export-xdpi="90"
- inkscape:export-filename="/home/magi/itmill/toolkit5/doc/manual/img/intro/toolchain.png"
- transform="translate(-787.52461,-876.85286)"
- style="font-size:11px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- id="flowRoot11361-6-1-47-2-8"
- xml:space="preserve"><flowRegion
- id="flowRegion11363-2-0-6-4-5"><rect
- style="font-size:11px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Helvetica Rounded LT Std;-inkscape-font-specification:Helvetica Rounded LT Std Bold"
- y="1064.3831"
- x="813.87988"
- height="42.457775"
- width="136.60326"
- id="rect11365-5-4-3-7-0" /></flowRegion><flowPara
- id="flowPara17609-1-7-6">Portlet 2</flowPara></flowRoot> </g>
- </g>
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker18095)"
- d="m 265,322.36218 0,45.55067"
- id="path4780-1-1-8"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 205,322.36218 215,0"
- id="path4780-1-1-8-6"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 205,282.36218 0,40"
- id="path4780-1-1-8-6-0"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#49c2f1;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 420,282.36218 0,40"
- id="path4780-1-1-8-6-0-4"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#e6e6e6;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker44971)"
- d="m 295,207.36218 0,25"
- id="path4780-1-1-8-5"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#e6e6e6;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker44971)"
- d="m 485,207.36218 0,25"
- id="path4780-1-1-8-5-6"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#f39300;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 290,317.36218 165,0"
- id="path4780-1-1-8-6-9"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#f39300;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#marker52016-29)"
- d="m 455,317.36218 0,50"
- id="path4780-1-1-8-0"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#f39300;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
- d="m 290,297.36218 0,20"
- id="path4780-1-1-8-6-9-7"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- </g>
- <g
- inkscape:groupmode="layer"
- id="layer2"
- inkscape:label="Varjot" />
-</svg>
diff --git a/documentation/portal/portal-deployment.asciidoc b/documentation/portal/portal-deployment.asciidoc deleted file mode 100644 index dc3cf49e00..0000000000 --- a/documentation/portal/portal-deployment.asciidoc +++ /dev/null @@ -1,305 +0,0 @@ ---- -title: Deploying to a Portal -order: 5 -layout: page ---- - -[[portal.deployment]] -= Deploying to a Portal - -To deploy a portlet WAR in a portal, you need to provide a -[filename]#portlet.xml# descriptor specified in the Java Portlet API 2.0 -standard (JSR-286). In addition, you may need to include possible portal vendor -specific deployment descriptors. The ones required by Liferay are described -below. - -Deploying a Vaadin UI as a portlet is essentially just as easy as deploying a -regular application to an application server. You do not need to make any -changes to the UI itself, but only the following: - -[options="compact"] -* Application packaged as a WAR - -[options="compact"] -** [filename]#WEB-INF/portlet.xml# descriptor - -** [filename]#WEB-INF/liferay-portlet.xml# descriptor for Liferay - -** [filename]#WEB-INF/liferay-display.xml# descriptor for Liferay - -** [filename]#WEB-INF/liferay-plugin-package.properties# for Liferay - - -* Widget set installed to portal (optional) -* Themes installed to portal (optional) -* Vaadin libraries installed to portal (optional) -* Portal configuration settings (optional) - -The Vaadin Plugin for Eclipse creates these files for you, when you create a -portlet project as described in -<<dummy/../../../framework/portal/portal-eclipse#portal.eclipse,"Creating a -Generic Portlet in Eclipse">>. - -Installing the widget set and themes to the portal is required for running two -or more Vaadin portlets simultaneously in a single portal page. As this -situation occurs quite easily, we recommend installing them in any case. -Instructions for Liferay are given in -<<dummy/../../../framework/portal/portal-liferay#portal.liferay,"Developing -Vaadin Portlets for Liferay">> and the procedure is similar for other portals. - -In addition to the Vaadin libraries, you will need to have the -[filename]#portlet.jar# in your project classpath. However, notice that you must -__not__ put the [filename]#portlet.jar# in the same [filename]#WEB-INF/lib# -directory as the Vaadin JAR or otherwise include it in the WAR to be deployed, -because it would create a conflict with the internal portlet library of the -portal. The conflict would cause errors such as " -[literal]#++ClassCastException: ...VaadinPortlet cannot be cast to -javax.portlet.Portlet++#". - -[[portal.deployment.descriptor]] -== Portlet Deployment Descriptor - -The portlet WAR must include a portlet descriptor located at -[filename]#WEB-INF/portlet.xml#. A portlet definition includes the portlet name, -mapping to a servlet, modes supported by the portlet, and other configuration. -Below is an example of a simple portlet definition in [filename]#portlet.xml# -descriptor. - -[subs="normal"] ----- -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<portlet-app - xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - version="2.0" - xsi:schemaLocation= - "http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd - http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd"> - - <portlet> - <portlet-name>**Portlet Example portlet**</portlet-name> - <display-name>**Vaadin Portlet Example**</display-name> - - <!-- Map portlet to a servlet. --> - <portlet-class> - com.vaadin.server.VaadinPortlet - </portlet-class> - <init-param> - <name>UI</name> - - <!-- The application class with package name. --> - <value>**com.example.myportlet.MyportletUI**</value> - </init-param> - - <!-- Supported portlet modes and content types. --> - <supports> - <mime-type>text/html</mime-type> - <portlet-mode>view</portlet-mode> - <portlet-mode>edit</portlet-mode> - <portlet-mode>help</portlet-mode> - </supports> - - <!-- Not always required but Liferay requires these. --> - <portlet-info> - <title>**Vaadin Portlet Example**</title> - <short-title>**Portlet Example**</short-title> - </portlet-info> - </portlet> -</portlet-app> ----- -Listing supported portlet modes in [filename]#portlet.xml# enables the -corresponding portlet controls in the portal user interface that allow changing -the mode, as described later. - - -[[portal.deployment.liferay]] -== Liferay Portlet Descriptor - -((("Liferay", "portlet descriptor", id="term.portal.liferay.descriptor.liferay-portlet.liferay", range="startofrange"))) - - -Liferay requires a special [filename]#liferay-portlet.xml# descriptor file that -defines Liferay-specific parameters. Especially, Vaadin portlets must be defined -as " __instanceable__", but not " __ajaxable__". - -Below is an example descriptor for the earlier portlet example: - -[subs="normal"] ----- -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE liferay-portlet-app PUBLIC - "-//Liferay//DTD Portlet Application 4.3.0//EN" - "http://www.liferay.com/dtd/liferay-portlet-app_4_3_0.dtd"> - -<liferay-portlet-app> - <portlet> - <!-- Matches definition in portlet.xml. --> - <!-- Note: Must not be the same as servlet name. --> - <portlet-name>**Portlet Example portlet**</portlet-name> - - <instanceable>true</instanceable> - <ajaxable>false</ajaxable> - </portlet> -</liferay-portlet-app> ----- -See Liferay documentation for further details on the -[filename]#liferay-portlet.xml# deployment descriptor. - -(((range="endofrange", startref="term.portal.liferay.descriptor.liferay-portlet.liferay"))) - -[[portal.deployment.liferay-display]] -== Liferay Display Descriptor - -((("[filename]#liferay-display.xml#", id="term.portal.liferay.descriptor.liferay-display", range="startofrange"))) - - -((("Liferay", "display descriptor", id="term.portal.liferay.descriptor.liferay-display.liferay", range="startofrange"))) - - -The [filename]#WEB-INF/liferay-display.xml# file defines the portlet category -under which portlets are located in the [guilabel]#Add Application# window in -Liferay. Without this definition, portlets will be organized under the -"Undefined" category. - -The following display configuration, which is included in the demo WAR, puts the -Vaadin portlets under the "Vaadin" category, as shown in -<<figure.portal.liferay.descriptor.display>>. - - ----- -<?xml version="1.0"?> -<!DOCTYPE display PUBLIC - "-//Liferay//DTD Display 4.0.0//EN" - "http://www.liferay.com/dtd/liferay-display_4_0_0.dtd"> - -<display> - <category name="Vaadin"> - <portlet id="Portlet Example portlet" /> - </category> -</display> ----- - -[[figure.portal.liferay.descriptor.display]] -.Portlet Categories in Add Application Window -image::img/liferay-display-hi.png[] - -See Liferay documentation for further details on how to configure the categories -in the [filename]#liferay-display.xml# deployment descriptor. - -(((range="endofrange", startref="term.portal.liferay.descriptor.liferay-display"))) -(((range="endofrange", startref="term.portal.liferay.descriptor.liferay-display.liferay"))) - -[[portal.deployment.liferay-plugin]] -== Liferay Plugin Package Properties - -((("[filename]#liferay-plugin-package.xml#", id="term.portal.liferay.descriptor.liferay-plugin", range="startofrange"))) - - -((("Liferay", "plugin properties", id="term.portal.liferay.descriptor.liferay-plugin.liferay", range="startofrange"))) - - -The [filename]#liferay-plugin-package.properties# file defines a number of -settings for the portlet, most importantly the Vaadin JAR to be used. - -[subs="normal"] ----- -name=**Portlet Example portlet** -short-description=**myportlet** -module-group-id=**Vaadin** -module-incremental-version=1 -#change-log= -#page-uri= -#author= -license=Proprietary -portal-dependency-jars=\ - **vaadin.jar** ----- -[parameter]#name#:: The plugin name must match the portlet name. - -[parameter]#short-description#:: A short description of the plugin. This is by default the project name. - -[parameter]#module-group-id#:: The application group, same as the category id defined in -[filename]#liferay-display.xml#. - -[parameter]#license#:: The plugin license type; "proprietary" by default. - -[parameter]#portal-dependency-jars#:: The JAR libraries on which this portlet depends. This should have value -[filename]#vaadin.jar#, unless you need to use a specific version. The JAR must -be installed in the portal, for example, in Liferay bundled with Tomcat to -[filename]#tomcat-x.x.x/webapps/ROOT/WEB-INF/lib/vaadin.jar#. - - - -(((range="endofrange", startref="term.portal.liferay.descriptor.liferay-plugin"))) -(((range="endofrange", startref="term.portal.liferay.descriptor.liferay-plugin.liferay"))) - -[[portal.deployment.widgetset]] -== Using a Single Widget Set - -If you have just one Vaadin application that you ever need to run in your -portal, you can just deploy the WAR as described above and that's it. However, -if you have multiple applications, especially ones that use different custom -widget sets, you run into problems, because a portal window can load only a -single Vaadin widget set at a time. You can solve this problem by combining all -the different widget sets in your different applications into a single widget -set using inheritance or composition. - -For example, if using the default widget set for portlets, you should have the -following for all portlets so that they will all use the same widget set: - - ----- -<portlet> - ... - <!-- Use the portal default widget set for all portal demos. --> - <init-param> - <name>widgetset</name> - <value>com.vaadin.portal.PortalDefaultWidgetSet</value> - </init-param> - ... ----- - -The [classname]#PortalDefaultWidgetSet# extends [classname]#SamplerWidgetSet#, -which extends the [classname]#DefaultWidgetSet#. The -[classname]#DefaultWidgetSet# is therefore essentially a subset of -[classname]#PortalDefaultWidgetSet#, which contains also the widgets required by -the Sampler demo. Other applications that would otherwise require only the -regular [classname]#DefaultWidgetSet#, and do not define their own widgets, can -just as well use the larger set, making them compatible with the demos. The -[classname]#PortalDefaultWidgetSet# will also be the default Vaadin widgetset -bundled in Liferay 5.3 and later. - -If your portlets are contained in multiple WARs, which can happen quite -typically, you need to install the widget set and theme portal-wide so that all -the portlets can use them. See -<<dummy/../../../framework/portal/portal-liferay#portal.liferay,"Developing -Vaadin Portlets for Liferay">> on configuring the widget sets in the portal -itself. - - -[[portal.deployment.war]] -== Building the WAR Package - -To deploy the portlet, you need to build a WAR package. For production -deployment, you probably want to either use Maven or an Ant script to build the -package. In Eclipse, you can right-click on the project and select "Export > -WAR". Choose a name for the package and a target. If you have installed Vaadin -in the portal as described in -<<dummy/../../../framework/portal/portal-liferay#portal.liferay,"Developing -Vaadin Portlets for Liferay">>, you should exclude all the Vaadin libraries, as -well as widget set and themes from the WAR. - - -[[portal.deployment.deploy]] -== Deploying the WAR Package - -How you actually deploy a WAR package depends on the portal. In Liferay, you -simply drop it to the [filename]#deploy# subdirectory under the Liferay -installation directory. The deployment depends on the application server under -which Liferay runs; for example, if you use Liferay bundled with Tomcat, you -will find the extracted package in the [filename]#webapps# directory under the -Tomcat installation directory included in Liferay. - - - - diff --git a/documentation/portal/portal-eclipse.asciidoc b/documentation/portal/portal-eclipse.asciidoc deleted file mode 100644 index 32d50e5a9d..0000000000 --- a/documentation/portal/portal-eclipse.asciidoc +++ /dev/null @@ -1,98 +0,0 @@ ---- -title: Creating a Generic Portlet in Eclipse -order: 2 -layout: page ---- - -[[portal.eclipse]] -= Creating a Generic Portlet in Eclipse - -Here we describe the creation of a generic portlet project in Eclipse. You can -use the Maven archetypes also in other IDEs or without an IDE. - -For Liferay portlet development, you may instead want to use the Maven archetype -or Liferay IDE to create the project, as described in -<<dummy/../../../framework/portal/portal-liferay#portal.liferay,"Developing -Vaadin Portlets for Liferay">>. - -[[portal.eclipse.vaadin]] -== Creating a Project with Vaadin Plugin - -The Vaadin Plugin for Eclipse has a wizard for easy creation of generic portlet -projects. It creates a UI class and all the necessary descriptor files. - -Creating a portlet project is almost identical to the creation of a regular -Vaadin servlet application project. For a full treatment of the New Project -Wizard and the possible options, please see -<<dummy/../../../framework/getting-started/getting-started-first-project#getting-started.first-project.creation,"Creating -the Project">>. - -. Start creating a new project by selecting from the menu "File > New > Project..."+ -//TODO Use ellipsis - -//<?dbfo-need height="8cm" ?> -. In the [guilabel]#New Project# window that opens, select "Web > Vaadin 7 Project" and click [guibutton]#Next#. -//<?dbfo-need height="10cm" ?> -. In the [guilabel]#Vaadin Project# step, you need to set the basic web project -settings. You need to give at least the project name, the runtime, select -[guilabel]#Generic Portlet# for the [guilabel]#Deployment configuration#; the -default values should be good for the other settings. - -ifdef::web[] -+ -image::img/project-new-portlet-1.png[] -endif::web[] - -+ -You can click [guibutton]#Finish# here to use the defaults for the rest of the -settings, or click [guibutton]#Next#. - -. The settings in the [guilabel]#Web Module# step define the basic servlet-related -settings and the structure of the web application project. All the settings are -pre-filled, and you should normally accept them as they are and click -[guibutton]#Next#. - -. The [guilabel]#Vaadin project# step page has various Vaadin-specific application -settings. These are largely the same as for regular applications. Setting them -here is easiest - later some of the changes require changes in several different -files. The [guilabel]#Create portlet template# option should be automatically -selected. You can give another portlet title of you want. You can change most of -the settings afterward. - -+ -image::img/project-new-portlet-3.png[] - -[guilabel]#Create project template#:: Creates a UI class and all the needed portlet deployment descriptors. - -[guilabel]#Application name#:: The application name is used in the title of the browser window, which is -usually invisible in portlets, and as an identifier, either as is or with a -suffix, in various deployment descriptors. - -[guilabel]#Base package name#:: Java package for the UI class. - -[guilabel]#Application class name#:: Name of the UI class. The default is derived from the project name. - -[guilabel]#Theme name#:: Name of the custom portlet theme to use. - -[guilabel]#Portlet version#:: Same as in the project settings. - -[guilabel]#Portlet title#:: The portlet title, defined in [filename]#portlet.xml#, can be used as the -display name of the portlet (at least in Liferay). The default value is the -project name. The title is also used as a short description in -[filename]#liferay-plugin-package.properties#. - -[guilabel]#Vaadin version#:: Same as in the project settings. - - - -+ -Finally, click [guibutton]#Finish# to create the project. - -. Eclipse may ask you to switch to J2EE perspective. A Dynamic Web Project uses an -external web server and the J2EE perspective provides tools to control the -server and manage application deployment. Click [guibutton]#Yes#. - - - - - diff --git a/documentation/portal/portal-liferay-ipc.asciidoc b/documentation/portal/portal-liferay-ipc.asciidoc deleted file mode 100644 index f60ff58bf5..0000000000 --- a/documentation/portal/portal-liferay-ipc.asciidoc +++ /dev/null @@ -1,361 +0,0 @@ ---- -title: Vaadin IPC for Liferay -order: 6 -layout: page ---- - -[[portal.liferay-ipc]] -= Vaadin IPC for Liferay - -((("IPC add-on", id="term.portal.liferay-ipc", range="startofrange"))) - - -Portlets rarely live alone. A page can contain multiple portlets and when the -user interacts with one portlet, you may need to have the other portlets react -to the change immediately. This is not normally possible with Vaadin portlets, -as Vaadin applications need to get an Ajax request from the client-side to -change their user interface. On the other hand, the regular inter-portlet -communication (IPC) mechanism in Portlet 2.0 Specification requires a complete -page reload, but that is not appropriate with Vaadin or in general Ajax -applications, which do not require a page reload. One solution is to communicate -between the portlets on the server-side and then use a server-push mechanism to -update the client-side. - -The Vaadin IPC for Liferay Add-on takes another approach by communicating -between the portlets through the client-side. Events (messages) are sent through -the [classname]#LiferayIPC# component and the client-side widget relays them to -the other portlets, as illustrated in -<<figure.portal.liferay-ipc.architecture>>. - -[[figure.portal.liferay-ipc.architecture]] -.Vaadin IPC for Liferay Architecture -image::img/liferay-ipc-architecture-hi.png[] - -Vaadin IPC for Liferay uses the Liferay JavaScript event API for client-side -inter-portlet communication, so you can communicate just as easily with other -Liferay portlets. - -Notice that you can use this communication only between portlets on the same -page. - -<<figure.portal.liferay-ipc.demo>> shows Vaadin IPC for Liferay in action. -Entering a new item in one portlet is updated interactively in the other. - -[[figure.portal.liferay-ipc.demo]] -.Vaadin IPC Add-on Demo with Two Portlets -image::img/liferay-ipc-demo-annotated-lo.png[] - -[[portal.liferay-ipc.installation]] -== Installing the Add-on - -The Vaadin IPC for Liferay add-on is available from the Vaadin Directory as well -as from a Maven repository. To download the installation package or find out the -Maven or Ivy dependency, see the -link:https://vaadin.com/directory#addon/vaadin-ipc-for-liferay[add-on page at -Vaadin Directory], and install the add-on as described in -<<dummy/../../../framework/addons/addons-overview.asciidoc#addons.overview,"Using -Vaadin Add-ons">>. - -The contents of the installation package are as follows: - -[filename]#vaadin-ipc-for-liferay-x.x.x.jar#:: The add-on JAR in the installation package must be installed in the [filename]#WEB-INF/lib# directory under the root context. The location depends on the server - for example in Liferay running in Tomcat it is located under the [filename]#webapps/ROOT# folder of the server. -[filename]#doc#:: The documentation folder includes a [filename]#README.TXT# file that describes the contents of the installation package briefly, and [filename]#licensing.txt# and [filename]#license-asl-2.0.txt#, which describe the licensing under the Apache License 2.0. Under the [filename]#doc/api# folder is included the complete JavaDoc API documentation for the add-on. -[filename]#vaadin-ipc-for-liferay-x.x.x-demo.war#:: A WAR containing demo portlets. After installing the add-on library and compiling the widget set, as described below, you can deploy the WAR to Liferay and add the two demo portlets to a page, as shown in <<figure.portal.liferay-ipc.demo>>. The source of the demo is available at link:http://dev.vaadin.com/svn/addons/IPCforLiferay/trunk/demo/src/com/vaadin/addon/ipcforliferay/demo/[dev.vaadin.com/svn/addons/IPCforLiferay/trunk/]. - - -The add-on contains a widget set, which you must compile into the Vaadin widget -set installed in the portal. - - -[[portal.liferay-ipc.communication]] -== Basic Communication - -[classname]#LiferayIPC# is an invisible user interface component that can be -used to send messages between two or more Vaadin portlets. You add it to an -application layout as you would any regular user interface component. - - ----- -LiferayIPC liferayipc = new LiferayIPC(); -layout.addComponent(liferayipc); ----- - -You should be careful not to remove the invisible component from the portlet -later if you modify the layout of the portlet. - -The component can be used both for sending and receiving messages, as described -next. - -[[portal.liferay-ipc.communication.sending]] -=== Sending Events - -You can send an event (a message) with the [methodname]#sendEvent()# method, -which takes an event ID and the message data as parameters. The event is -broadcast to all listening portlets. The event ID is a string that can be used -to identify the recipient of an event or the event type. - - ----- -liferayipc.sendEvent("hello", "This is Data"); ----- - -If you need to send more complex data, you need to format or serialize it to a -string representation as described in <<portal.liferay-ipc.serialization>>. - - -[[portal.liferay-ipc.communication.receiving]] -=== Receiving Events - -A portlet wishing to receive events (messages) from other portlets needs to -register a listener in the component with [methodname]#addListener()#. The -listener receives the messages in a [classname]#LiferayIPCEvent# object. -Filtering events by the ID is built in into the listener handler, you give the -listened event ID as the first parameter for the [methodname]#addListener()#. -The actual message data is held in the [parameter]#data# property, which you can -read with [methodname]#getData()#. - - ----- -liferayipc.addListener("hello", new LiferayIPCEventListener() { - public void eventReceived(LiferayIPCEvent event) { - // Do something with the message data - String data = event.getData(); - Notification.show("Received hello: " + data); - } -}); ----- - -A listener added to a [classname]#LiferayIPC# can be removed with -[methodname]#removeListener()#. - - - -[[portal.liferay-ipc.concerns]] -== Considerations - -Both security and efficiency should be considered with inter-portlet -communications when using the Vaadin IPC for Liferay. - -[[portal.liferay-ipc.concerns.security]] -=== Browser Security - -As the message data is passed through the client-side (browser), any code -running in the browser has access to the data. You should be careful not to -expose any security-critical data in client-side messaging. Also, malicious code -running in the browser could alter or fake messages. Sanitization can help with -the latter problem and encryption to solve the both issues. You can also share -the sensitive data through session attributes or a database and use the -client-side IPC only to notify that the data is available. - - -[[portal.liferay-ipc.concerns.efficiency]] -=== Efficiency - -Sending data through the browser requires loading and sending it in HTTP -requests. The data is held in the memory space of the browser, and handling -large data in the client-side JavaScript code can take time. Noticeably large -message data can therefore reduce the responsiveness of the application and -could, in extreme cases, go over browser limits for memory consumption or -JavaScript execution time. - - - -[[portal.liferay-ipc.attributes]] -== Communication Through Session Attributes - -In many cases, such as when considering security or efficiency, it is better to -pass the bulk data on the server-side and use the client-side IPC only for -notifying the other portlet(s) that the data is available. Session attributes -are a conveninent way of sharing data on the server-side. You can also share -objects through them, not just strings. - -The session variables have a __scope__, which should be -[parameter]#APPLICATION_SCOPE#. The "application" refers to the scope of the -Java web application (WAR) that contains the portlets. - -If the communicating portlets are in the same Java web application (WAR), no -special configuration is needed. You can also communicate between portlets in -different WARs, in which case you need to disable the -[parameter]#private-session-attributes# parameter in -[filename]#liferay-portlet.xml# by setting it to [literal]#++false++#. Please -see Liferay documentation for more information regarding the configuration. - -You can also share Java objects between the portlets in the same WAR, not just -strings. If the portlets are in different WARs, they normally have different -class loaders, which could cause incompatibilities, so you can only communicate -with strings and any object data needs to be serialized. - -Session attributes are accessible through the [classname]#PortletSession# -object, which you can access through the portlet context from the Vaadin -[classname]#Application# class. - - ----- -Person person = new Person(firstname, lastname, age); -... - -PortletSession session = - ((PortletApplicationContext2)getContext()). - getPortletSession(); - -// Share the object -String key = "IPCDEMO_person"; -session.setAttribute(key, person, - PortletSession.APPLICATION_SCOPE); - -// Notify that it's available -liferayipc.sendEvent("ipc_demodata_available", key); ----- - -You can then receive the attribute in a [classname]#LiferayIPCEventListener# as -follows: - - ----- -public void eventReceived(LiferayIPCEvent event) { - String key = event.getData(); - - PortletSession session = - ((PortletApplicationContext2)getContext()). - getPortletSession(); - - // Get the object reference - Person person = (Person) session.getAttribute(key); - - // We can now use the object in our application - BeanItem<Person> item = new BeanItem<Person> (person); - form.setItemDataSource(item); -} ----- - -Notice that changes to a shared object bound to a user interface component are -not updated automatically if it is changed in another portlet. The issue is the -same as with double-binding in general. - - -[[portal.liferay-ipc.serialization]] -== Serializing and Encoding Data - -The IPC events support transmitting only plain strings, so if you have object or -other non-string data, you need to format or serialize it to a string -representation. For example, the demo application formats the trivial data model -as a semicolon-separated list as follows: - - ----- -private void sendPersonViaClient(String firstName, - String lastName, int age) { - liferayIPC_1.sendEvent("newPerson", firstName + ";" + - lastName + ";" + age); -} ----- - -You can use standard Java serialization for any classes that implement the -[interfacename]#Serializable# interface. The transmitted data may not include -any control characters, so you also need to encode the string, for example by -using Base64 encoding. - - ----- -// Some serializable object -MyBean mybean = new MyBean(); -... - -// Serialize -ByteArrayOutputStream baostr = new ByteArrayOutputStream(); -ObjectOutputStream oostr; -try { - oostr = new ObjectOutputStream(baostr); - oostr.writeObject(mybean); // Serialize the object - oostr.close(); -} catch (IOException e) { - Notification.show("IO PAN!"); // Complain -} - -// Encode -BASE64Encoder encoder = new BASE64Encoder(); -String encoded = encoder.encode(baostr.toByteArray()); - -// Send the IPC event to other portlet(s) -liferayipc.sendEvent("mybeanforyou", encoded); ----- - -You can then deserialize such a message at the receiving end as follows: - - ----- -public void eventReceived(LiferayIPCEvent event) { - String encoded = event.getData(); - - // Decode and deserialize it - BASE64Decoder decoder = new BASE64Decoder(); - try { - byte[] data = decoder.decodeBuffer(encoded); - ObjectInputStream ois = - new ObjectInputStream( - new ByteArrayInputStream(data)); - - // The deserialized bean - MyBean deserialized = (MyBean) ois.readObject(); - ois.close(); - - ... do something with the bean ... - - } catch (IOException e) { - e.printStackTrace(); // Handle somehow - } catch (ClassNotFoundException e) { - e.printStackTrace(); // Handle somehow - } -} ----- - - -[[portal.liferay-ipc.nonvaadin]] -== Communicating with Non-Vaadin Portlets - -You can use the Vaadin IPC for Liferay to communicate also between a Vaadin -application and other portlets, such as JSP portlets. The add-on passes the -events as regular Liferay JavaScript events. The demo WAR includes two JSP -portlets that demonstrate the communication. - -When sending events from non-Vaadin portlet, fire the event using the JavaScript -[methodname]#Liferay.fire()# method with an event ID and message. For example, -in JSP you could have: - - ----- -<%@ taglib uri="http://java.sun.com/portlet_2_0" - prefix="portlet" %> -<portlet:defineObjects /> - -<script> -function send_message() { - Liferay.fire('hello', "Hello, I'm here!"); -} -</script> - -<input type="button" value="Send message" - onclick="send_message()" /> ----- - -You can receive events using a Liferay JavaScript event handler. You define the -handler with the [methodname]#on()# method in the Liferay object. It takes the -event ID and a callback function as its parameters. Again in JSP you could have: - - ----- -<%@ taglib uri="http://java.sun.com/portlet_2_0" - prefix="portlet" %> -<portlet:defineObjects /> - -<script> -Liferay.on('hello', function(event, data) { - alert("Hello: " + data); -}); -</script> ----- - - -(((range="endofrange", startref="term.portal.liferay-ipc"))) - - diff --git a/documentation/portal/portal-liferay.asciidoc b/documentation/portal/portal-liferay.asciidoc deleted file mode 100644 index 4081422fad..0000000000 --- a/documentation/portal/portal-liferay.asciidoc +++ /dev/null @@ -1,274 +0,0 @@ ---- -title: Developing Vaadin Portlets for Liferay -order: 3 -layout: page ---- - -[[portal.liferay]] -= Developing Vaadin Portlets for Liferay - -A Vaadin portlet requires resources such as the server-side Vaadin libraries, a -theme, and a widget set. You have two basic ways to deploy these: either -globally in Liferay, so that the resources are shared between all Vaadin -portlets, or as self-contained WARs, where each portlet carries their own -resources. - -The self-contained way is easier and more flexible to start with, as the -different portlets may have different versions of the resources. Currently, the -latest Maven archetypes support the self-contained portlets, while with portlets -created with the Vaadin Plugin for Eclipse only support globally deployed -resources. - -Using shared resources is more efficient when you have multiple Vaadin portlets -on the same page, as they can share the common resources. However, they must use -exactly same Vaadin version. This is recommended for production environments, -where you can even serve the theme and widget set from a front-end server. You -can install the shared resources as described in <<portal.liferay.install>>. - -At the time of writing, the latest Liferay release 6.2 is bundled with a version -of Vaadin release 6. If you want to use Vaadin 7 portlets with shared resources, -you first need to remove the old ones as described in <<portal.liferay.remove>>. - -[[portal.liferay.profile]] -== Defining Liferay Profile for Maven - -When creating a Liferay portlet project with a Maven archetype or the Liferay -IDE, you need to define a Liferay profile. With the Liferay IDE, you can create -it when you create the project, as described in <<portal.liferay.ide>>, but for -creating a project from the Maven archetype, you need to define in manually. - -[[portal.liferay.profile.settings]] -=== Defining Profile in [filename]#settings.xml# - -Liferay profile can be defined either in the user or in the global -[filename]#settings.xml# file for Maven. The global settings file is located in -[filename]#${MAVEN_HOME}/conf/settings.xml# and the user settings file in -[filename]#${USER_HOME}/.m2/settings.xml#. To create a user settings file, copy -at least the relevant headers and root element from the global settings file. - -[subs="normal"] ----- -... -<profile> - <id>**liferay**</id> - <properties> - <liferayinstall>**/opt/liferay-portal-6.2-ce-ga2** - </liferayinstall> - <plugin.type>portlet</plugin.type> - <liferay.version>**6.2.1**</liferay.version> - <liferay.maven.plugin.version>**6.2.1** - </liferay.maven.plugin.version> - <liferay.auto.deploy.dir>${liferayinstall}/**deploy** - </liferay.auto.deploy.dir> - - <!-- Application server version - here for Tomcat --> - <liferay.tomcat.version>**7.0.42**</liferay.tomcat.version> - <liferay.tomcat.dir> - ${liferayinstall}/tomcat-${liferay.tomcat.version} - </liferay.tomcat.dir> - - <liferay.app.server.deploy.dir>**${liferay.tomcat.dir}/webapps** - </liferay.app.server.deploy.dir> - <liferay.app.server.lib.global.dir>**${liferay.tomcat.dir}/lib/ext** - </liferay.app.server.lib.global.dir> - <liferay.app.server.portal.dir>**${liferay.tomcat.dir}/webapps/ROOT** - </liferay.app.server.portal.dir> - </properties> -</profile> ----- -The parameters are as follows: - -liferayinstall:: Full (absolute) path to the Liferay installation directory. -liferay.version:: Liferay version by the Maven version numbering scheme. The first two (major and minor) numbers are same as in the installation package. The third (maintenance) number starts from 0 with first GA (general availability) release. -liferay.maven.plugin.version:: This is usually the same as the Liferay version. -liferay.auto.deploy.dir:: The Liferay auto-deployment directory. It is by default [filename]#deploy# under the Liferay installation path. -liferay.tomcat.version(optional):: If using Tomcat, its version number. -liferay.tomcat.dir:: Full (absolute) path to Tomcat installation directory. For Tomcat bundled with Liferay, this is under the Liferay installation directory. -liferay.app.server.deploy.dir:: Directory where portlets are deployed in the application server used for Liferay. This depends on the server - for Tomcat it is the [filename]#webapps# directory under the Tomcat installation directory. -liferay.app.server.lib.global.dir:: Library path where libraries globally accessible in the application server should be installed. -liferay.app.server.portal.dir:: Deployment directory for static resources served by the application server, under the root path of the server. - - -If you modify the settings after the project is created, you need to touch the -POM file in the project to have the settings reloaded. - - -[[portal.liferay.profile.properties]] -=== Activating the Maven Profile - -The Maven 2 Plugin for Eclipse (m2e) must know which Maven profiles you use in a -project. This is configured in the [menuchoice]#Maven# section of the project -properties. In the [guilabel]#Active Maven Profiles# field, enter the profile ID -defined in the [filename]#settings.xml# file, as illustrated in -<<figure.portal.liferay.profile.properties>>. - -[[figure.portal.liferay.profile.properties]] -.Activating Maven Liferay Profile -image::img/liferay-maven-profile.png[] - - - -[[portal.liferay.project]] -== Creating a Portlet Project with Maven - -Creation of Vaadin a Maven project is described in -<<dummy/../../../framework/getting-started/getting-started-maven#getting-started.maven,"Using -Vaadin with Maven">>. For a Liferay project, you should use the -[literal]#++vaadin-archetype-liferay-portlet++#. - -[[portal.liferay.project.archetype-parameters]] -=== Archetype Parameters - -The archetype has a number of parameters. If you use Maven Plugin for Eclipse -(m2e) to create the project, you get to enter the parameters after selecting the -archetype, as shown in <<figure.portal.liferay.project.archetype-parameters>>. - -Minimally, you just need to enter the artifact ID. To activate the Maven profile -created as described earlier in <<portal.liferay.profile>>, you need to specify -the profile in the [guilabel]#Profiles# field under the [guilabel]#Advanced# -section. - -[[figure.portal.liferay.project.archetype-parameters]] -.Liferay Project Archetype Parameters -image::img/liferay-maven-project.png[] - -The other parameters are the following: - -vaadinVersion:: Vaadin release version for the Maven dependency. -uiClassName:: Class name of the UI class stub to be created. -theme:: Theme to use. You can use either a project theme, which must be compiled before deployment, or use the [literal]#++liferay++# theme. -portletTitle:: Title shown in the portlet title bar. -portletShortTitle:: Title shown in contexts where a shorter title is preferred. -portletKeywords:: Keywords for finding the portlet in Liferay. -portletDescription:: A description of the portlet. -portletName:: Identifier for the portlet, used for identifying it in the configuration files. -portletDisplayName:: Name of the portlet for contexts where it is displayed. - - - - -[[portal.liferay.ide]] -== Creating a Portlet Project in Liferay IDE - -Liferay IDE, which you install in Eclipse as plugins just like the Vaadin -plugin, enables a development environment for Liferay portlets. Liferay IDE -allows integrated deployment of portlets to Liferay, just like you would deploy -servlets to a server in Eclipse. The project creation wizard supports creation -of Vaadin portlets. - - -Loading widget sets, themes, and the Vaadin JAR from a portlet is possible as -long as you have a single portlet, but causes a problem if you have multiple -portlets. To solve this, Vaadin portlets need to use a globally installed widget -set, theme, and Vaadin libraries. - -__Liferay 6.2, which is the latest Liferay version at the time of publication of -this book, comes bundled with an older Vaadin 6 version. If you want to use -Vaadin 7, you need to remove the bundled version and install the newer one -manually as described in this chapter.__ - -In these instructions, we assume that you use Liferay bundled with Apache -Tomcat, although you can use almost any other application server with Liferay -just as well. The Tomcat installation is included in the Liferay installation -package, under the [filename]#tomcat-x.x.x# directory. - -[[portal.liferay.remove]] -== Removing the Bundled Installation - -Before installing a new Vaadin version, you need to remove the version bundled -with Liferay. You need to remove the Vaadin library JAR from the library -directory of the portal and the [filename]#VAADIN# directory from under the root -context. For example, with Liferay bundled with Tomcat, they are usually located -as follows: - -* [filename]#tomcat-x.x.x/webapps/ROOT/html/VAADIN# -* [filename]#tomcat-x.x.x/webapps/ROOT/WEB-INF/lib/vaadin.jar# - - -[[portal.liferay.install]] -== Installing Vaadin Resources - -To use common resources needed by multiple Vaadin portlets, you can install them -globally as shared resources as described in the following. - -If you are installing Vaadin in a Liferay version that comes bundled with an -older version of Vaadin, you first need to remove the resources as described in -<<portal.liferay.remove>>. - -In the following, we assume that you use only the built-in "liferay" theme in -Vaadin and the default widget set. - -. Get the Vaadin installation package from the Vaadin download page -. Extract the following Vaadin JARs from the installation package: [filename]#vaadin-server.jar# and [filename]#vaadin-shared.jar#, as well as the [filename]#vaadin-shared-deps.jar# and [filename]#jsoup.jar# dependencies from the [filename]#lib# folder -. Rename the JAR files as they were listed above, without the version number -. Put the libraries in [filename]#tomcat-x.x.x/webapps/ROOT/WEB-INF/lib/# -. Extract the [filename]#VAADIN# folders from [filename]#vaadin-server.jar#, -[filename]#vaadin-themes.jar#, and [filename]#vaadin-client-compiled.jar# and -copy their contents to [filename]#tomcat-x.x.x/webapps/ROOT/html/VAADIN#. - - -+ -[subs="normal"] ----- -[prompt]#$# [command]#cd# tomcat-x.x.x/webapps/ROOT/html ----- - -+ -[subs="normal"] ----- -[prompt]#$# [command]#unzip# path-to/vaadin-server-7.1.0.jar 'VAADIN/*' ----- - -+ -[subs="normal"] ----- -[prompt]#$# [command]#unzip# path-to/vaadin-themes-7.1.0.jar 'VAADIN/*' ----- - -+ -[subs="normal"] ----- -[prompt]#$# [command]#unzip# path-to/vaadin-client-compiled-7.1.0.jar 'VAADIN/*' ----- - - -You need to define the widget set, the theme, and the JAR in the -[filename]#portal-ext.properties# configuration file for Liferay, as described -earlier. The file should normally be placed in the Liferay installation -directory. See Liferay documentation for details on the configuration file. - -Below is an example of a [filename]#portal-ext.properties# file: - - ----- -# Path under which the VAADIN directory is located. -# (/html is the default so it is not needed.) -# vaadin.resources.path=/html - -# Portal-wide widget set -vaadin.widgetset=com.vaadin.server.DefaultWidgetSet - -# Theme to use -vaadin.theme=liferay ----- - -The allowed parameters are: - -[parameter]#vaadin.resources.path#:: Specifies the resource root path under the portal context. This is -[filename]#/html# by default. Its actual location depends on the portal and the -application server; in Liferay with Tomcat it would be located at -[filename]#webapps/ROOT/html# under the Tomcat installation directory. - -[parameter]#vaadin.widgetset#:: The widget set class to use. Give the full path to the class name in the dot -notation. If the parameter is not given, the default widget set is used. - -[parameter]#vaadin.theme#:: Name of the theme to use. If the parameter is not given, the default theme is -used, which is [literal]#++reindeer++# in Vaadin 6. - - - -You will need to restart Liferay after creating or modifying the -[filename]#portal-ext.properties# file. - - - diff --git a/documentation/portal/portal-overview.asciidoc b/documentation/portal/portal-overview.asciidoc deleted file mode 100644 index 8368de1fe2..0000000000 --- a/documentation/portal/portal-overview.asciidoc +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: Overview -order: 1 -layout: page ---- - -[[portal.overview]] -= Overview - -Vaadin supports running UIs as portlets in a portal, as defined in the JSR-286 -(Java Portlet API 2.0) standard. A portlet UI is defined just as a regular UI, -but deploying to a portal is somewhat different from deployment of regular web -applications, requiring special portlet descriptors, etc. Creating the portlet -project with the Vaadin Plugin for Eclipse or a Maven archetype automatically -generates the necessary descriptors. - -In addition to providing user interface through the Vaadin UI, portlets can -integrate with the portal to switch between portlet modes and process special -portal requests, such as actions and events. - -While providing generic support for all portals implementing the standard, -Vaadin especially supports the Liferay portal and the needed portal-specific -configuration in this chapter is given for Liferay. Vaadin also has a special -Liferay IPC add-on to enable communication between portlets. - - - diff --git a/documentation/portal/portal-ui.asciidoc b/documentation/portal/portal-ui.asciidoc deleted file mode 100644 index 69c6cc3b58..0000000000 --- a/documentation/portal/portal-ui.asciidoc +++ /dev/null @@ -1,78 +0,0 @@ ---- -title: Portlet UI -order: 4 -layout: page ---- - -[[portal.ui]] -= Portlet UI - -A portlet UI is just like in a regular Vaadin application, a class that extends -[classname]#com.vaadin.ui.UI#. - - ----- -@Theme("myportlet") -public class MyportletUI extends UI { - @Override - protected void init(VaadinRequest request) { - final VerticalLayout layout = new VerticalLayout(); - layout.setMargin(true); - setContent(layout); - - Button button = new Button("Click Me"); - button.addClickListener(new Button.ClickListener() { - public void buttonClick(ClickEvent event) { - layout.addComponent( - new Label("Thank you for clicking")); - } - }); - layout.addComponent(button); - } -} ----- - -If you created the project as a Servlet 3.0 project, the generated UI stub -includes a static servlet class annotated with [classname]#@WebServlet#, as -described in -<<dummy/../../../framework/getting-started/getting-started-first-project#getting-started.first-project.exploring,"Exploring -the Project">>. - - ----- - @WebServlet(value = "/*", asyncSupported = true) - @VaadinServletConfiguration(productionMode = false, - ui = MyportletUI.class) - public static class Servlet extends VaadinServlet { - } ----- - -This enables running the portlet UI in a servlet container while developing it, -which may be easier than deploying to a portal. For Servlet 2.4 projects, a -[filename]#web.xml# is created. - -The portlet theme is defined with the [classname]#@Theme# annotation as usual. -The theme for the UI must match a theme installed in the portal. You can use any -of the built-in themes in Vaadin. For Liferay theme compatibility, there is a -special [literal]#++liferay++# theme. If you use a custom theme, you need to -compile it to CSS with the theme compiler and install it in the portal under the -[filename]#VAADIN/themes# context to be served statically. - -In addition to the UI class, you need the portlet descriptor files, Vaadin -libraries, and other files as described later. -<<figure.portal.helloworld.project>> shows the complete project structure under -Eclipse. - -[[figure.portal.helloworld.project]] -.Portlet Project Structure in Eclipse -image::img/liferay-project.png[] - -Installed as a portlet in Liferay from the [guilabel]#Add Application# menu, the -application will show as illustrated in <<figure.portal.helloworld>>. - -[[figure.portal.helloworld]] -.Hello World Portlet -image::img/liferay-helloworld.png[] - - - diff --git a/documentation/sqlcontainer/chapter-sqlcontainer.asciidoc b/documentation/sqlcontainer/chapter-sqlcontainer.asciidoc deleted file mode 100644 index 9b5ff51573..0000000000 --- a/documentation/sqlcontainer/chapter-sqlcontainer.asciidoc +++ /dev/null @@ -1,47 +0,0 @@ -[[sqlcontainer]] -== Vaadin SQLContainer - -Vaadin SQLContainer is a container implementation that allows easy and -customizable access to data stored in various SQL-speaking databases. - -SQLContainer supports two types of database access. Using -[classname]#TableQuery#, the pre-made query generators will enable fetching, -updating, and inserting data directly from the container into a database table - -automatically, whereas [classname]#FreeformQuery# allows the developer to use -their own, probably more complex query for fetching data and their own optional -implementations for writing, filtering and sorting support - item and property -handling as well as lazy loading will still be handled automatically. - -In addition to the customizable database connection options, SQLContainer also -extends the Vaadin [classname]#Container# interface to implement more advanced -and more database-oriented filtering rules. Finally, the add-on also offers -connection pool implementations for JDBC connection pooling and JEE connection -pooling, as well as integrated transaction support; auto-commit mode is also -provided. - -The purpose of this section is to briefly explain the architecture and some of -the inner workings of SQLContainer. It will also give the readers some examples -on how to use SQLContainer in their own applications. The requirements, -limitations and further development ideas are also discussed. - -SQLContainer is available from the Vaadin Directory under the same unrestrictive -Apache License 2.0 as the Vaadin Framework itself. - - -include::sqlcontainer-architecture.asciidoc[leveloffset=+2] - -include::sqlcontainer-getting-started.asciidoc[leveloffset=+2] - -include::sqlcontainer-filteringsorting.asciidoc[leveloffset=+2] - -include::sqlcontainer-editing.asciidoc[leveloffset=+2] - -include::sqlcontainer-caching.asciidoc[leveloffset=+2] - -include::sqlcontainer-referencing.asciidoc[leveloffset=+2] - -include::sqlcontainer-freeform.asciidoc[leveloffset=+2] - -include::sqlcontainer-nonimplemented.asciidoc[leveloffset=+2] - -include::sqlcontainer-limitations.asciidoc[leveloffset=+2] diff --git a/documentation/sqlcontainer/sqlcontainer-architecture.asciidoc b/documentation/sqlcontainer/sqlcontainer-architecture.asciidoc deleted file mode 100644 index ff0dd6fdd3..0000000000 --- a/documentation/sqlcontainer/sqlcontainer-architecture.asciidoc +++ /dev/null @@ -1,50 +0,0 @@ ---- -title: Architecture -order: 1 -layout: page ---- - -[[sqlcontainer.architecture]] -= Architecture - -The architecture of SQLContainer is relatively simple. [classname]#SQLContainer# -is the class implementing the Vaadin [classname]#Container# interfaces and -providing access to most of the functionality of this add-on. The standard -Vaadin [classname]#Property# and [classname]#Item# interfaces have been -implementd as the [classname]#ColumnProperty# and [classname]#RowItem# classes. -Item IDs are represented by [classname]#RowId# and [classname]#TemporaryRowId# -classes. The [classname]#RowId# class is built based on the primary key columns -of the connected database table or query result. - -In the [package]#connection# package, the [classname]#JDBCConnectionPool# -interface defines the requirements for a connection pool implementation. Two -implementations of this interface are provided: -[classname]#SimpleJDBCConnectionPool# provides a simple yet very usable -implementation to pool and access JDBC connections. -[classname]#J2EEConnectionPool# provides means to access J2EE DataSources. - -The [package]#query# package contains the [classname]#QueryDelegate# interface, -which defines everything the SQLContainer needs to enable reading and writing -data to and from a database. As discussed earlier, two implementations of this -interface are provided: [classname]#TableQuery# for automatic read-write support -for a database table, and [classname]#FreeformQuery# for customizing the query, -sorting, filtering and writing; this is done by implementing relevant methods of -the [classname]#FreeformStatementDelegate# interface. - -The [package]#query# package also contains [classname]#Filter# and -[classname]#OrderBy# classes which have been written to provide an alternative -to the standard Vaadin container filtering and make sorting non-String -properties a bit more user friendly. - -Finally, the [package]#generator# package contains a [classname]#SQLGenerator# -interface, which defines the kind of queries that are required by the -[classname]#TableQuery# class. The provided implementations include support for -HSQLDB, MySQL, PostgreSQL ( [classname]#DefaultSQLGenerator#), Oracle ( -[classname]#OracleGenerator#) and Microsoft SQL Server ( -[classname]#MSSQLGenerator#). A new or modified implementations may be provided -to gain compatibility with older versions or other database servers. - -For further details, please refer to the SQLContainer API documentation. - - - diff --git a/documentation/sqlcontainer/sqlcontainer-caching.asciidoc b/documentation/sqlcontainer/sqlcontainer-caching.asciidoc deleted file mode 100644 index c93a012fa5..0000000000 --- a/documentation/sqlcontainer/sqlcontainer-caching.asciidoc +++ /dev/null @@ -1,119 +0,0 @@ ---- -title: Caching, Paging and Refreshing -order: 5 -layout: page ---- - -[[sqlcontainer.caching]] -= Caching, Paging and Refreshing - -To decrease the amount of queries made to the database, SQLContainer uses -internal caching for database contents. The caching is implemented with a -size-limited [classname]#LinkedHashMap# containing a mapping from -[classname]#RowId#s to [classname]#RowItem#s. Typically developers do not need -to modify caching options, although some fine-tuning can be done if required. - -[[sqlcontainer.caching.container-size]] -== Container Size - -The [classname]#SQLContainer# keeps continuously checking the amount of rows in -the connected database table in order to detect external addition or removal of -rows. By default, the table row count is assumed to remain valid for 10 seconds. -This value can be altered from code; with -[methodname]#setSizeValidMilliSeconds()# in [classname]#SQLContainer#. - -If the size validity time has expired, the row count will be automatically -updated on: - -* A call to [methodname]#getItemIds()# method - -* A call to [methodname]#size()# method - -* Some calls to [methodname]#indexOfId(Object itemId)# method - -* A call to [methodname]#firstItemId()# method - -* When the container is fetching a set of rows to the item cache (lazy loading) - - - -[[sqlcontainer.caching.page-length]] -== Page Length and Cache Size - -The page length of the [classname]#SQLContainer# dictates the amount of rows -fetched from the database in one query. The default value is 100, and it can be -modified with the [methodname]#setPageLength()# method. To avoid constant -queries it is recommended to set the page length value to at least 5 times the -amount of rows displayed in a Vaadin [classname]#Table#; obviously, this is also -dependent on the cache ratio set for the [classname]#Table# component. - -The size of the internal item cache of the [classname]#SQLContainer# is -calculated by multiplying the page length with the cache ratio set for the -container. The cache ratio can only be set from the code, and the default value -for it is 2. Hence with the default page length of 100 the internal cache size -becomes 200 items. This should be enough even for larger [classname]#Table#s -while ensuring that no huge amounts of memory will be used on the cache. - - -[[sqlcontainer.caching.refreshing]] -== Refreshing the Container - -Normally, the [classname]#SQLContainer# will handle refreshing automatically -when required. However, there may be situations where an implicit refresh is -needed, for example, to make sure that the version column is up-to-date prior to -opening the item for editing in a form. For this purpose a -[methodname]#refresh()# method is provided. This method simply clears all -caches, resets the current item fetching offset and sets the container size -dirty. Any item-related call after this will inevitably result into row count -and item cache update. - -__Note that a call to the refresh method will not affect or reset the following -properties of the container:__ - -* The [classname]#QueryDelegate# of the container -* Auto-commit mode -* Page length -* Filters -* Sorting - - -ifdef::web[] -[[sqlcontainer.caching.flush-notification]] -== Cache Flush Notification Mechanism - -Cache usage with databases in multiuser applications always results in some kind -of a compromise between the amount of queries we want to execute on the database -and the amount of memory we want to use on caching the data; and most -importantly, risking the cached data becoming stale. - -SQLContainer provides an experimental remedy to this problem by implementing a -simple cache flush notification mechanism. Due to its nature these notifications -are disabled by default but can be easily enabled for a container instance by -calling [methodname]#enableCacheFlushNotifications()# at any time during the -lifetime of the container. - -The notification mechanism functions by storing a weak reference to all -registered containers in a static list structure. To minimize the risk of memory -leaks and to avoid unlimited growing of the reference list, dead weak references -are collected to a reference queue and removed from the list every time a -[classname]#SQLContainer# is added to the notification reference list or a -container calls the notification method. - -When a [classname]#SQLContainer# has its cache notifications set enabled, it -will call the static [methodname]#notifyOfCacheFlush()# method giving itself as -a parameter. This method will compare the notifier-container to all the others -present in the reference list. To fire a cache flush event, the target container -must have the same type of [classname]#QueryDelegate# (either -[classname]#TableQuery# or [classname]#FreeformQuery#) and the table name or -query string must match with the container that fired the notification. If a -match is found the [methodname]#refresh()# method of the matching container is -called, resulting in cache flushing in the target container. - -__Note: Standard Vaadin issues apply; even if the [classname]#SQLContainer# is -refreshed on the server side, the changes will not be reflected to the UI until -a server round-trip is performed, or unless a push mechanism is used.__ - -endif::web[] - - - diff --git a/documentation/sqlcontainer/sqlcontainer-editing.asciidoc b/documentation/sqlcontainer/sqlcontainer-editing.asciidoc deleted file mode 100644 index 9fe8d7ba7a..0000000000 --- a/documentation/sqlcontainer/sqlcontainer-editing.asciidoc +++ /dev/null @@ -1,139 +0,0 @@ ---- -title: Editing -order: 4 -layout: page ---- - -[[sqlcontainer.editing]] -= Editing - -Editing the items ( [classname]#RowItem#s) of SQLContainer can be done similarly -to editing the items of any Vaadin container. [classname]#ColumnProperties# of a -[classname]#RowItem# will automatically notify SQLContainer to make sure that -changes to the items are recorded and will be applied to the database -immediately or on commit, depending on the state of the auto-commit mode. - -[[sqlcontainer.editing.adding]] -== Adding items - -Adding items to an [classname]#SQLContainer# object can only be done via the -[methodname]#addItem()# method. This method will create a new [classname]#Item# -based on the connected database table column properties. The new item will -either be buffered by the container or committed to the database through the -query delegate depending on whether the auto commit mode (see the next section) -has been enabled. - -When an item is added to the container it is impossible to precisely know what -the primary keys of the row will be, or will the row insertion succeed at all. -This is why the SQLContainer will assign an instance of -[classname]#TemporaryRowId# as a [classname]#RowId# for the new item. We will -later describe how to fetch the actual key after the row insertion has -succeeded. - -If auto-commit mode is enabled in the [classname]#SQLContainer#, the -[methodname]#addItem()# method will return the final [classname]#RowId# of the -new item. - - -[[sqlcontainer.editing.fetching]] -== Fetching generated row keys - -Since it is a common need to fetch the generated key of a row right after -insertion, a listener/notifier has been added into the -[classname]#QueryDelegate# interface. Currently only the [classname]#TableQuery# -class implements the [classname]#RowIdChangeNotifier# interface, and thus can -notify interested objects of changed row IDs. The events fill be fired after -[methodname]#commit()# in [classname]#TableQuery# has finished; this method is -called by [classname]#SQLContainer# when necessary. - -To receive updates on the row IDs, you might use the following code (assuming -container is an instance of [classname]#SQLContainer#). Note that these events -are not fired if auto commit mode is enabled. - - ----- -app.getDbHelp().getCityContainer().addListener( - new QueryDelegate.RowIdChangeListener() { - public void rowIdChange(RowIdChangeEvent event) { - System.err.println("Old ID: " + event.getOldRowId()); - System.err.println("New ID: " + event.getNewRowId()); - } - }); ----- - - -[[sqlcontainer.editing.version-column]] -== Version column requirement - -If you are using the [classname]#TableQuery# class as the query delegate to the -[classname]#SQLContainer# and need to enable write support, there is an enforced -requirement of specifying a version column name to the [classname]#TableQuery# -instance. The column name can be set to the [classname]#TableQuery# using the -following statement: - - ----- -tq.setVersionColumn("OPTLOCK"); ----- - -The version column is preferrably an integer or timestamp typed column in the -table that is attached to the [classname]#TableQuery#. This column will be used -for optimistic locking; before a row modification the [classname]#TableQuery# -will check before that the version column value is the same as it was when the -data was read into the container. This should ensure that no one has modified -the row inbetween the current user's reads and writes. - -Note! [classname]#TableQuery# assumes that the database will take care of -updating the version column by either using an actual [literal]#++VERSION++# -column (if supported by the database in question) or by a trigger or a similar -mechanism. - -If you are certain that you do not need optimistic locking, but do want to -enable write support, you may point the version column to, for example, a -primary key column of the table. - - -[[sqlcontainer.editing.autocommit]] -== Auto-commit mode - -[classname]#SQLContainer# is by default in transaction mode, which means that -actions that edit, add or remove items are recorded internally by the container. -These actions can be either committed to the database by calling -[methodname]#commit()# or discarded by calling [methodname]#rollback()#. - -The container can also be set to auto-commit mode. When this mode is enabled, -all changes will be committed to the database immediately. To enable or disable -the auto-commit mode, call the following method: - - ----- -public void setAutoCommit(boolean autoCommitEnabled) ----- - -It is recommended to leave the auto-commit mode disabled, as it ensures that the -changes can be rolled back if any problems are noticed within the container -items. Using the auto-commit mode will also lead to failure in item addition if -the database table contains non-nullable columns. - - -[[sqlcontainer.editing.modified-state]] -== Modified state - -When used in the transaction mode it may be useful to determine whether the -contents of the [classname]#SQLContainer# have been modified or not. For this -purpose the container provides an [methodname]#isModified()# method, which will -tell the state of the container to the developer. This method will return true -if any items have been added to or removed from the container, as well as if any -value of an existing item has been modified. - -Additionally, each [classname]#RowItem# and each [classname]#ColumnProperty# -have [methodname]#isModified()# methods to allow for a more detailed view over -the modification status. Do note that the modification statuses of -[classname]#RowItem# and [classname]#ColumnProperty# objects only depend on -whether or not the actual [classname]#Property# values have been modified. That -is, they do not reflect situations where the whole [classname]#RowItem# has been -marked for removal or has just been added to the container. - - - - diff --git a/documentation/sqlcontainer/sqlcontainer-filteringsorting.asciidoc b/documentation/sqlcontainer/sqlcontainer-filteringsorting.asciidoc deleted file mode 100644 index 73d3c28334..0000000000 --- a/documentation/sqlcontainer/sqlcontainer-filteringsorting.asciidoc +++ /dev/null @@ -1,78 +0,0 @@ ---- -title: Filtering and Sorting -order: 3 -layout: page ---- - -[[sqlcontainer.filteringsorting]] -= Filtering and Sorting - -Filtering and sorting the items contained in an SQLContainer is, by design, -always performed in the database. In practice this means that whenever the -filtering or sorting rules are modified, at least some amount of database -communication will take place (the minimum is to fetch the updated row count -using the new filtering/sorting rules). - -[[sqlcontainer.filteringsorting.filtering]] -== Filtering - -Filtering is performed using the filtering API in Vaadin, which allows for very -complex filtering to be easily applied. More information about the filtering API -can be found in -<<dummy/../../../framework/datamodel/datamodel-container#datamodel.container.filtered,"Filterable -Containers">>. - -In addition to the filters provided by Vaadin, SQLContainer also implements the -[classname]#Like# filter as well as the [classname]#Between# filter. Both of -these map to the equally named WHERE-operators in SQL. The filters can also be -applied on items that reside in memory, for example, new items that have not yet -been stored in the database or rows that have been loaded and updated, but not -yet stored. - -The following is an example of the types of complex filtering that are possible -with the new filtering API. We want to find all people named Paul Johnson that -are either younger than 18 years or older than 65 years and all Johnsons whose -first name starts with the letter "A": - - ----- -mySQLContainer.addContainerFilter( - new Or(new And(new Equal("NAME", "Paul"), - new Or(new Less("AGE", 18), - new Greater("AGE", 65))), - new Like("NAME", "A%"))); -mySQLContainer.addContainerFilter( - new Equal("LASTNAME", "Johnson")); ----- - -This will produce the following WHERE clause: - - ----- -WHERE (("NAME" = "Paul" AND ("AGE" < 18 OR "AGE" > 65)) OR "NAME" LIKE "A%") AND "LASTNAME" = "Johnson" ----- - - -[[sqlcontainer.filteringsorting.sorting]] -== Sorting - -Sorting can be performed using standard Vaadin, that is, using the sort method -from the [classname]#Container.Sortable# interface. The [parameter]#propertyId# -parameter refers to column names. - - ----- -public void sort(Object[] propertyId, boolean[] ascending) ----- - -In addition to the standard method, it is also possible to directly add an -[classname]#OrderBy# to the container via the [methodname]#addOrderBy()# method. -This enables the developer to insert sorters one by one without providing the -whole array of them at once. - -All sorting rules can be cleared by calling the sort method with null or an -empty array as the first argument. - - - - diff --git a/documentation/sqlcontainer/sqlcontainer-freeform.asciidoc b/documentation/sqlcontainer/sqlcontainer-freeform.asciidoc deleted file mode 100644 index c5e6d1094c..0000000000 --- a/documentation/sqlcontainer/sqlcontainer-freeform.asciidoc +++ /dev/null @@ -1,94 +0,0 @@ ---- -title: Making Freeform Queries -order: 7 -layout: page ---- - -[[sqlcontainer.freeform]] -= Making Freeform Queries - -In most cases, the provided [classname]#TableQuery# will be enough to allow a -developer to gain effortless access to an SQL data source. However there may -arise situations when a more complex query with, for example, join expressions -is needed. Or perhaps you need to redefine how the writing or filtering should -be done. The [classname]#FreeformQuery# query delegate is provided for this -exact purpose. Out of the box the [classname]#FreeformQuery# supports read-only -access to a database, but it can be extended to allow writing also. - -[[sqlcontainer.freeform.getting-started]] -== Getting started - -Getting started with the [classname]#FreeformQuery# may be done as shown in the -following. The connection pool initialization is similar to the -[classname]#TableQuery# example so it is omitted here. Note that the name(s) of -the primary key column(s) must be provided to the [classname]#FreeformQuery# -manually. This is required because depending on the query the result set may or -may not contain data about primary key columns. In this example, there is one -primary key column with a name 'ID'. - - ----- -FreeformQuery query = new FreeformQuery( - "SELECT * FROM SAMPLE", pool, "ID"); -SQLContainer container = new SQLContainer(query); ----- - - -[[sqlcontainer.freeform.limitations]] -== Limitations - -While this looks just as easy as with the [classname]#TableQuery#, do note that -there are some important caveats here. Using [classname]#FreeformQuery# like -this (without providing [classname]#FreeformQueryDelegate# or -[classname]#FreeformStatementDelegate# implementation) it can only be used as a -read-only window to the resultset of the query. Additionally filtering, sorting -and lazy loading features will not be supported, and the row count will be -fetched in quite an inefficient manner. Bearing these limitations in mind, it -becomes quite obvious that the developer is in reality meant to implement the -[classname]#FreeformQueryDelegate# or [classname]#FreeformStatementDelegate# -interface. - -The [classname]#FreeformStatementDelegate# interface is an extension of the -[classname]#FreeformQueryDelegate# interface, which returns -[classname]#StatementHelper# objects instead of pure query [classname]#String#s. -This enables the developer to use prepared statetemens instead of regular -statements. It is highly recommended to use the -[classname]#FreeformStatementDelegate# in all implementations. From this chapter -onwards, we will only refer to the [classname]#FreeformStatementDelegate# in -cases where [classname]#FreeformQueryDelegate# could also be applied. - - -[[sqlcontainer.freeform.custom-freeformstatementdelegate]] -== Creating your own [classname]#FreeformStatementDelegate# - -To create your own delegate for [classname]#FreeformQuery# you must implement -some or all of the methods from the [classname]#FreeformStatementDelegate# -interface, depending on which ones your use case requires. The interface -contains eight methods which are shown below. For more detailed requirements, -see the JavaDoc documentation of the interface. - - ----- -// Read-only queries -public StatementHelper getCountStatement() -public StatementHelper getQueryStatement(int offset, int limit) -public StatementHelper getContainsRowQueryStatement(Object... keys) - -// Filtering and sorting -public void setFilters(List<Filter> filters) -public void setFilters(List<Filter> filters, - FilteringMode filteringMode) -public void setOrderBy(List<OrderBy> orderBys) - -// Write support -public int storeRow(Connection conn, RowItem row) -public boolean removeRow(Connection conn, RowItem row) ----- - -A simple demo implementation of this interface can be found in the SQLContainer -package, more specifically in the class -[classname]#com.vaadin.addon.sqlcontainer.demo.DemoFreeformQueryDelegate#. - - - - diff --git a/documentation/sqlcontainer/sqlcontainer-getting-started.asciidoc b/documentation/sqlcontainer/sqlcontainer-getting-started.asciidoc deleted file mode 100644 index acecb4dc5e..0000000000 --- a/documentation/sqlcontainer/sqlcontainer-getting-started.asciidoc +++ /dev/null @@ -1,85 +0,0 @@ ---- -title: Getting Started with SQLContainer -order: 2 -layout: page ---- - -[[sqlcontainer.getting-started]] -= Getting Started with SQLContainer - -Getting development going with the SQLContainer is easy and quite -straight-forward. The purpose of this section is to describe how to create the -required resources and how to fetch data from and write data to a database table -attached to the container. - -[[sqlcontainer.getting-started.connection-pool]] -== Creating a connection pool - -First, we need to create a connection pool to allow the SQLContainer to connect -to a database. Here we will use the [classname]#SimpleJDBCConnectionPool#, which -is a basic implementation of connection pooling with JDBC data sources. In the -following code, we create a connection pool that uses the HSQLDB driver together -with an in-memory database. The initial amount of connections is 2 and the -maximum amount is set at 5. Note that the database driver, connection url, -username, and password parameters will vary depending on the database you are -using. - - ----- -JDBCConnectionPool pool = new SimpleJDBCConnectionPool( - "org.hsqldb.jdbc.JDBCDriver", - "jdbc:hsqldb:mem:sqlcontainer", "SA", "", 2, 5); ----- - - -[[sqlcontainer.getting-started.query-delegate]] -== Creating the [classname]#TableQuery# Query Delegate - -After the connection pool is created, we'll need a query delegate for the -SQLContainer. The simplest way to create one is by using the built-in -[classname]#TableQuery# class. The [classname]#TableQuery# delegate provides -access to a defined database table and supports reading and writing data -out-of-the-box. The primary key(s) of the table may be anything that the -database engine supports, and are found automatically by querying the database -when a new [classname]#TableQuery# is instantiated. We create the -[classname]#TableQuery# with the following statement: - - ----- -TableQuery tq = new TableQuery("tablename", connectionPool); ----- - -In order to allow writes from several user sessions concurrently, we must set a -version column to the [classname]#TableQuery# as well. The version column is an -integer- or timestamp-typed column which will either be incremented or set to -the current time on each modification of the row. [classname]#TableQuery# -assumes that the database will take care of updating the version column; it just -makes sure the column value is correct before updating a row. If another user -has changed the row and the version number in the database does not match the -version number in memory, an [classname]#OptimisticLockException# is thrown and -you can recover by refreshing the container and allow the user to merge the -data. The following code will set the version column: - - ----- -tq.setVersionColumn("OPTLOCK"); ----- - - -[[sqlcontainer.getting-started.container-creation]] -== Creating the Container - -Finally, we may create the container itself. This is as simple as stating: - - ----- -SQLContainer container = new SQLContainer(tq); ----- - -After this statement, the [classname]#SQLContainer# is connected to the table -tablename and is ready to use for example as a data source for a Vaadin -[classname]#Table# or a Vaadin [classname]#Form#. - - - - diff --git a/documentation/sqlcontainer/sqlcontainer-limitations.asciidoc b/documentation/sqlcontainer/sqlcontainer-limitations.asciidoc deleted file mode 100644 index 3e245a1ddf..0000000000 --- a/documentation/sqlcontainer/sqlcontainer-limitations.asciidoc +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Known Issues and Limitations -order: 9 -layout: page ---- - -[[sqlcontainer.limitations]] -= Known Issues and Limitations - -At this point, there are still some known issues and limitations affecting the -use of SQLContainer in certain situations. The known issues and brief -explanations are listed below: - -* Some SQL data types do not have write support when using TableQuery: ** All binary types -** All custom types -** CLOB (if not converted automatically to a [classname]#String# by the JDBC driver in use) -** See [classname]#com.vaadin.addon.sqlcontainer.query.generator.StatementHelper# for details. - - -* When using Oracle or MS SQL database, the column name " [parameter]#rownum#" can -not be used as a column name in a table connected to [classname]#SQLContainer#. - -+ -This limitation exists because the databases in question do not support -limit/offset clauses required for paging. Instead, a generated column named -'rownum' is used to implement paging support. - - -The permanent limitations are listed below. These can not or most probably will -not be fixed in future versions of SQLContainer. - -* The [methodname]#getItemIds()# method is very inefficient - avoid calling it unless absolutely required! -* When using [classname]#FreeformQuery# without providing a [classname]#FreeformStatementDelegate#, the row count query is very inefficient - avoid using [classname]#FreeformQuery# without implementing at least the count query properly. -* When using [classname]#FreeformQuery# without providing a [classname]#FreeformStatementDelegate#, writing, sorting and filtering will not be supported. -* When using Oracle database most or all of the numeric types are converted to -[classname]#java.math.BigDecimal# by the Oracle JDBC Driver. - -+ -This is a feature of how Oracle DB and the Oracle JDBC Driver handles data -types. - - - - diff --git a/documentation/sqlcontainer/sqlcontainer-nonimplemented.asciidoc b/documentation/sqlcontainer/sqlcontainer-nonimplemented.asciidoc deleted file mode 100644 index 595085822f..0000000000 --- a/documentation/sqlcontainer/sqlcontainer-nonimplemented.asciidoc +++ /dev/null @@ -1,66 +0,0 @@ ---- -title: Non-Implemented Methods -order: 8 -layout: page ---- - -[[sqlcontainer.nonimplemented]] -= Non-Implemented Methods - -Due to the database connection inherent to the SQLContainer, some of the methods -from the container interfaces of Vaadin can not (or would not make sense to) be -implemented. These methods are listed below, and they will throw an -[classname]#UnsupportedOperationException# on invocation. - - ----- -public boolean addContainerProperty(Object propertyId, - Class<?> type, - Object defaultValue) -public boolean removeContainerProperty(Object propertyId) -public Item addItem(Object itemId) -public Object addItemAt(int index) -public Item addItemAt(int index, Object newItemId) -public Object addItemAfter(Object previousItemId) -public Item addItemAfter(Object previousItemId, Object newItemId) ----- - -Additionally, the following methods of the [classname]#Item# interface are not -supported in the [classname]#RowItem# class: - - ----- -public boolean addItemProperty(Object id, Property property) -public boolean removeItemProperty(Object id) ----- - -[[sqlcontainer.nonimplemented.getitemids]] -== About the getItemIds() method - -To properly implement the Vaadin [classname]#Container# interface, a -[methodname]#getItemIds()# method has been implented in the -[classname]#SQLContainer#. By definition, this method returns a collection of -all the item IDs present in the container. What this means in the -[classname]#SQLContainer# case is that the container has to query the database -for the primary key columns of all the rows present in the connected database -table. - -It is obvious that this could potentially lead to fetching tens or even hundreds -of thousands of rows in an effort to satisfy the method caller. This will -effectively kill the lazy loading properties of [classname]#SQLContainer# and -therefore the following warning is expressed here: - - -[WARNING] -==== -It is highly recommended not to call the [methodname]#getitemIds()# method, -unless it is known that in the use case in question the item ID set will always -be of reasonable size. - -==== - - - - - - diff --git a/documentation/sqlcontainer/sqlcontainer-referencing.asciidoc b/documentation/sqlcontainer/sqlcontainer-referencing.asciidoc deleted file mode 100644 index b31b10d39d..0000000000 --- a/documentation/sqlcontainer/sqlcontainer-referencing.asciidoc +++ /dev/null @@ -1,74 +0,0 @@ ---- -title: Referencing Another SQLContainer -order: 6 -layout: page ---- - -[[sqlcontainer.referencing]] -= Referencing Another SQLContainer - -When developing a database-connected application, there is usually a need to -retrieve data related to one table from one or more other tables. In most cases, -this relation is achieved with a foreign key reference, where a column of the -first table contains a primary key or candidate key of a row in another table. - -SQLContainer offers limited support for this kind of referencing relation, -although all referencing is currently done on the Java side so no constraints -need to be made in the database. A new reference can be created by calling the -following method: - - ----- -public void addReference(SQLContainer refdCont, - String refingCol, String refdCol); ----- - -This method should be called on the source container of the reference. The -target container should be given as the first parameter. The -[parameter]#refingCol# is the name of the 'foreign key' column in the source -container, and the [parameter]#refdCol# is the name of the referenced key column -in the target container. - -__Note: For any [classname]#SQLContainer#, all the referenced target containers -must be different. You can not reference the same container from the same source -twice.__ - -Handling the referenced item can be done through the three provided set/get -methods, and the reference can be completely removed with the -[methodname]#removeReference()# method. Signatures of these methods are listed -below: - - ----- -public boolean setReferencedItem(Object itemId, - Object refdItemId, SQLContainer refdCont) -public Object getReferencedItemId(Object itemId, - SQLContainer refdCont) -public Item getReferencedItem(Object itemId, - SQLContainer refdCont) -public boolean removeReference(SQLContainer refdCont) ----- - -The setter method should be given three parameters: [parameter]#itemId# is the -ID of the referencing item (from the source container), [parameter]#refdItemId# -is the referenced [parameter]#itemID# (from the target container) and -[parameter]#refdCont# is a reference to the target container that identifies the -reference. This method returns true if the setting of the referenced item was -successful. After setting the referenced item you must normally call -[methodname]#commit()# on the source container to persist the changes to the -database. - -The [methodname]#getReferencedItemId()# method will return the item ID of the -referenced item. As parameters this method needs the item ID of the referencing -item and a reference to the target container as an identifier. -[classname]#SQLContainer# also provides a convenience method -[methodname]#getReferencedItem()#, which directly returns the referenced item -from the target container. - -Finally, the referencing can be removed from the source container by calling the -[methodname]#removeReference()# method with the target container as parameter. -Note that this does not actually change anything in the database; it merely -removes the logical relation that exists only on the Java-side. - - - diff --git a/documentation/themes/chapter-themes.asciidoc b/documentation/themes/chapter-themes.asciidoc deleted file mode 100644 index 727e42b3e9..0000000000 --- a/documentation/themes/chapter-themes.asciidoc +++ /dev/null @@ -1,37 +0,0 @@ -[[themes]] -== Themes - -((("theme", id="term.themes", range="startofrange"))) - - -((("CSS", id="term.themes-css", range="startofrange"))) - - -This chapter provides details about using and creating __themes__ that control -the visual look of web applications. Themes are created using Sass, which is an -extension of CSS (Cascading Style Sheets), or with plain CSS. We provide an -introduction to CSS, especially concerning the styling of HTML by element -classes. - - -include::themes-overview.asciidoc[leveloffset=+2] - -include::themes-css.asciidoc[leveloffset=+2] - -include::themes-sass.asciidoc[leveloffset=+2] - -include::themes-compiling.asciidoc[leveloffset=+2] - -include::themes-creating.asciidoc[leveloffset=+2] - -include::themes-eclipse.asciidoc[leveloffset=+2] - -include::themes-valo.asciidoc[leveloffset=+2] - -include::themes-fonticon.asciidoc[leveloffset=+2] - -include::themes-fonts.asciidoc[leveloffset=+2] - -include::themes-responsive.asciidoc[leveloffset=+2] -(((range="endofrange", startref="term.themes"))) -(((range="endofrange", startref="term.themes-css"))) diff --git a/documentation/themes/img/addon-responsive-flexwrap.png b/documentation/themes/img/addon-responsive-flexwrap.png Binary files differdeleted file mode 100644 index e24df04a47..0000000000 --- a/documentation/themes/img/addon-responsive-flexwrap.png +++ /dev/null diff --git a/documentation/themes/img/builtin-runo.png b/documentation/themes/img/builtin-runo.png Binary files differdeleted file mode 100644 index 039a34137b..0000000000 --- a/documentation/themes/img/builtin-runo.png +++ /dev/null diff --git a/documentation/themes/img/eclipse-theme-compiler.png b/documentation/themes/img/eclipse-theme-compiler.png Binary files differdeleted file mode 100644 index a2886a4e68..0000000000 --- a/documentation/themes/img/eclipse-theme-compiler.png +++ /dev/null diff --git a/documentation/themes/img/eclipse-theme-created-annotated-hi.png b/documentation/themes/img/eclipse-theme-created-annotated-hi.png Binary files differdeleted file mode 100644 index de8152c2da..0000000000 --- a/documentation/themes/img/eclipse-theme-created-annotated-hi.png +++ /dev/null diff --git a/documentation/themes/img/eclipse-theme-created-annotated-lo.png b/documentation/themes/img/eclipse-theme-created-annotated-lo.png Binary files differdeleted file mode 100644 index fe9fa560d7..0000000000 --- a/documentation/themes/img/eclipse-theme-created-annotated-lo.png +++ /dev/null diff --git a/documentation/themes/img/eclipse-theme-created.png b/documentation/themes/img/eclipse-theme-created.png Binary files differdeleted file mode 100644 index db1970a461..0000000000 --- a/documentation/themes/img/eclipse-theme-created.png +++ /dev/null diff --git a/documentation/themes/img/eclipse-theme-new.png b/documentation/themes/img/eclipse-theme-new.png Binary files differdeleted file mode 100644 index 9374364298..0000000000 --- a/documentation/themes/img/eclipse-theme-new.png +++ /dev/null diff --git a/documentation/themes/img/eclipse-theme-settings.png b/documentation/themes/img/eclipse-theme-settings.png Binary files differdeleted file mode 100644 index a7dfd78721..0000000000 --- a/documentation/themes/img/eclipse-theme-settings.png +++ /dev/null diff --git a/documentation/themes/img/example-ui-default.png b/documentation/themes/img/example-ui-default.png Binary files differdeleted file mode 100644 index a0e9f9d1ea..0000000000 --- a/documentation/themes/img/example-ui-default.png +++ /dev/null diff --git a/documentation/themes/img/example-ui-themed.png b/documentation/themes/img/example-ui-themed.png Binary files differdeleted file mode 100644 index 40ebb746cc..0000000000 --- a/documentation/themes/img/example-ui-themed.png +++ /dev/null diff --git a/documentation/themes/img/fonticons-basic.png b/documentation/themes/img/fonticons-basic.png Binary files differdeleted file mode 100644 index 66ed207cf7..0000000000 --- a/documentation/themes/img/fonticons-basic.png +++ /dev/null diff --git a/documentation/themes/img/fonticons-html.png b/documentation/themes/img/fonticons-html.png Binary files differdeleted file mode 100644 index b9d8a2a9c6..0000000000 --- a/documentation/themes/img/fonticons-html.png +++ /dev/null diff --git a/documentation/themes/img/theme-contents-hi.png b/documentation/themes/img/theme-contents-hi.png Binary files differdeleted file mode 100644 index d04f7b2d32..0000000000 --- a/documentation/themes/img/theme-contents-hi.png +++ /dev/null diff --git a/documentation/themes/img/theme-contents-lo.png b/documentation/themes/img/theme-contents-lo.png Binary files differdeleted file mode 100644 index cef64982e8..0000000000 --- a/documentation/themes/img/theme-contents-lo.png +++ /dev/null diff --git a/documentation/themes/img/themes-css-match-1.png b/documentation/themes/img/themes-css-match-1.png Binary files differdeleted file mode 100644 index 8f9cf1bd55..0000000000 --- a/documentation/themes/img/themes-css-match-1.png +++ /dev/null diff --git a/documentation/themes/img/themes-css-match-class-2.png b/documentation/themes/img/themes-css-match-class-2.png Binary files differdeleted file mode 100644 index c1cab59bf9..0000000000 --- a/documentation/themes/img/themes-css-match-class-2.png +++ /dev/null diff --git a/documentation/themes/img/themes-css-match-class-3.png b/documentation/themes/img/themes-css-match-class-3.png Binary files differdeleted file mode 100644 index 7062b9abdb..0000000000 --- a/documentation/themes/img/themes-css-match-class-3.png +++ /dev/null diff --git a/documentation/themes/original-drawings/eclipse-theme-created-annotated.svg b/documentation/themes/original-drawings/eclipse-theme-created-annotated.svg deleted file mode 100644 index f6b902f45d..0000000000 --- a/documentation/themes/original-drawings/eclipse-theme-created-annotated.svg +++ /dev/null @@ -1,144 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.46"
- sodipodi:docname="eclipse-theme-created-annotated.svg"
- sodipodi:docbase="/home/tsoots/ohj/translations/po"
- inkscape:output_extension="org.inkscape.output.svg.inkscape">
- <defs
- id="defs1903">
- <linearGradient
- inkscape:collect="always"
- id="linearGradient6082">
- <stop
- style="stop-color:#ff5b19;stop-opacity:1;"
- offset="0"
- id="stop6084" />
- <stop
- style="stop-color:#ff5b19;stop-opacity:0;"
- offset="1"
- id="stop6086" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Mend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow2Mend"
- style="overflow:visible;">
- <path
- id="path3761"
- style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- transform="scale(0.6) rotate(180) translate(0,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow2Send"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow2Send"
- style="overflow:visible;">
- <path
- id="path3767"
- style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
- transform="scale(0.3) rotate(180) translate(-2.3,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Mend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow1Mend"
- style="overflow:visible;">
- <path
- id="path3743"
- d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
- transform="scale(0.4) rotate(180) translate(10,0)" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective7" />
- <inkscape:perspective
- id="perspective2444"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 526.18109 : 1"
- sodipodi:type="inkscape:persp3d" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient6082"
- id="linearGradient6088"
- x1="107.60961"
- y1="139.88233"
- x2="263.68966"
- y2="139.88233"
- gradientUnits="userSpaceOnUse" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.979899"
- inkscape:cx="190.7442"
- inkscape:cy="893.09601"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1287"
- inkscape:window-height="1025"
- inkscape:window-x="1667"
- inkscape:window-y="0"
- showgrid="false" />
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <image
- y="10.247781"
- x="22.357979"
- id="image2446"
- height="250.80194"
- width="318.68155"
- sodipodi:absref="/home/magi/.encfs/plain/itmill/doc/manual/img/themes/eclipse-theme-created.png"
- xlink:href="/home/magi/.encfs/plain/itmill/doc/manual/img/themes/eclipse-theme-created.png" />
- <path
- style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient6088);stroke-width:2.10000000000000009;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow2Mend);stroke-miterlimit:4;stroke-dasharray:none"
- d="M 262.63966,65.948222 L 109.60155,212.92542"
- id="path2450" />
- </g>
-</svg>
diff --git a/documentation/themes/original-drawings/theme-contents.svg b/documentation/themes/original-drawings/theme-contents.svg deleted file mode 100644 index 169336beba..0000000000 --- a/documentation/themes/original-drawings/theme-contents.svg +++ /dev/null @@ -1,1857 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.48.4 r9939"
- sodipodi:docname="theme-contents.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/Users/Shared/phoenix/dev/2832/manual/img/themes/theme-contents-hi.png"
- inkscape:export-xdpi="150.0585"
- inkscape:export-ydpi="150.0585"
- version="1.1">
- <defs
- id="defs1903">
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective645" />
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="TriangleOutL"
- style="overflow:visible">
- <path
- id="path3964"
- d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
- transform="scale(0.8)" />
- </marker>
- <linearGradient
- id="linearGradient1699">
- <stop
- style="stop-color:#017eff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1700" />
- <stop
- style="stop-color:#ecfaff;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1701" />
- </linearGradient>
- <linearGradient
- xlink:href="#linearGradient841"
- id="linearGradient1944" />
- <radialGradient
- xlink:href="#linearGradient841"
- r="0.54606670"
- id="radialGradient856"
- fy="3.5200000"
- fx="0.54117650"
- cy="0.89285713"
- cx="0.50000000" />
- <linearGradient
- y2="0.79687500"
- y1="-0.56250000"
- xlink:href="#linearGradient1507"
- x2="0.62222224"
- x1="0.31111112"
- id="linearGradient1556" />
- <linearGradient
- y2="383.7653"
- y1="843.20789"
- xlink:href="#linearGradient1507"
- x2="547.80806"
- x1="201.38964"
- id="linearGradient1506"
- gradientTransform="scale(0.9446888,1.0585496)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="418.53634"
- y1="236.12772"
- xlink:href="#linearGradient1501"
- x2="330.88033"
- x1="687.96373"
- id="linearGradient1499"
- gradientTransform="scale(0.9890091,1.011113)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="287.73826"
- y1="169.44361"
- xlink:href="#linearGradient1492"
- x2="622.33327"
- x1="741.63899"
- id="linearGradient1497"
- gradientTransform="scale(0.9552926,1.0467997)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="689.86002"
- y1="230.07422"
- xlink:href="#linearGradient1492"
- x2="351.7063"
- x1="728.96644"
- id="linearGradient1495"
- gradientTransform="scale(0.955425,1.0466546)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1492">
- <stop
- style="stop-color:#dadada;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1493" />
- <stop
- style="stop-color:#f1f1f1;stop-opacity:1.0000000;"
- offset="0.34923077"
- id="stop1496" />
- <stop
- style="stop-color:#f0f0f0;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1494" />
- </linearGradient>
- <linearGradient
- id="linearGradient1501">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1502" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1504" />
- </linearGradient>
- <linearGradient
- id="linearGradient1507">
- <stop
- style="stop-color:#000000;stop-opacity:0.095505618;"
- offset="0.0000000"
- id="stop1508" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1510" />
- </linearGradient>
- <radialGradient
- xlink:href="#linearGradient853"
- r="0.50000000"
- id="radialGradient861"
- fy="0.29885057"
- fx="0.50704223"
- cy="0.50000000"
- cx="0.50000000" />
- <linearGradient
- id="linearGradient853">
- <stop
- style="stop-color:#000000;stop-opacity:0.29752067;"
- offset="0.00000000"
- id="stop854" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop855" />
- </linearGradient>
- <linearGradient
- y2="1.2905406"
- y1="-1.1486486"
- xlink:href="#linearGradient853"
- x2="0.26408452"
- x1="1.4647887"
- id="linearGradient859" />
- <linearGradient
- xlink:href="#linearGradient846"
- id="linearGradient850"
- gradientTransform="scale(0.9646355,1.036661)"
- x1="30.408737"
- y1="87.607189"
- x2="86.629186"
- y2="87.607189"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient846">
- <stop
- style="stop-color:#e7e7e7;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop847" />
- <stop
- style="stop-color:#a5a5a5;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop848" />
- </linearGradient>
- <linearGradient
- y2="0.049019609"
- y1="1.2647059"
- xlink:href="#linearGradient846"
- x2="0.57142860"
- x1="0.64285713"
- id="linearGradient858" />
- <linearGradient
- y2="0.35555556"
- y1="0.32222223"
- xlink:href="#linearGradient846"
- x2="0.80985916"
- x1="0.39788732"
- id="linearGradient851" />
- <linearGradient
- y2="26.470001"
- y1="173.90754"
- xlink:href="#linearGradient1290"
- x2="-129.90755"
- x1="-132.24597"
- id="linearGradient860"
- gradientTransform="scale(0.8297524,1.2051788)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1290">
- <stop
- style="stop-color:#b2a269;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1291" />
- <stop
- style="stop-color:#6d5b18;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1292" />
- </linearGradient>
- <linearGradient
- id="linearGradient841">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop842" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop843" />
- </linearGradient>
- <radialGradient
- xlink:href="#linearGradient853"
- r="0.50000000"
- id="radialGradient864"
- fy="0.14942528"
- fx="0.50000000"
- cy="0.50000000"
- cx="0.50000000" />
- <linearGradient
- y2="85.416771"
- y1="83.615703"
- xlink:href="#linearGradient846"
- x2="102.17324"
- x1="31.956963"
- id="linearGradient849"
- gradientTransform="scale(0.9409737,1.062729)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="0.46568626"
- y1="0.38235295"
- xlink:href="#linearGradient853"
- x2="0.59469700"
- x1="-0.22348484"
- id="linearGradient840" />
- <linearGradient
- y2="0.50490195"
- y1="0.49019608"
- xlink:href="#linearGradient841"
- x2="0.10833333"
- x1="1.3833333"
- id="linearGradient845" />
- <linearGradient
- xlink:href="#linearGradient841"
- id="linearGradient844" />
- <linearGradient
- y2="0.50735295"
- y1="-1.0294118"
- xlink:href="#linearGradient841"
- x2="0.63483149"
- x1="0.56179774"
- id="linearGradient852" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient227220"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient227266"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <linearGradient
- xlink:href="#linearGradient1507"
- id="linearGradient233555" />
- <linearGradient
- y2="0.0078125000"
- y1="0.97656250"
- xlink:href="#linearGradient1507"
- x2="0.78260869"
- x1="0.052173913"
- id="linearGradient233553" />
- <linearGradient
- y2="0.54687500"
- y1="-0.54545456"
- xlink:href="#linearGradient1501"
- x2="0.062992126"
- x1="0.94656491"
- id="linearGradient233551" />
- <linearGradient
- y2="1.3281250"
- y1="0.32812500"
- xlink:href="#linearGradient1492"
- x2="-0.37606838"
- x1="0.63247865"
- id="linearGradient233549" />
- <linearGradient
- y2="1.1796875"
- y1="0.21093750"
- xlink:href="#linearGradient1492"
- x2="0.085470088"
- x1="0.88034189"
- id="linearGradient233547" />
- <linearGradient
- id="linearGradient233539">
- <stop
- style="stop-color:#c6c6c6;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop233541" />
- <stop
- style="stop-color:#f1f1f1;stop-opacity:1.0000000;"
- offset="0.34923077"
- id="stop233543" />
- <stop
- style="stop-color:#f0f0f0;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop233545" />
- </linearGradient>
- <linearGradient
- id="linearGradient233533">
- <stop
- style="stop-color:#000000;stop-opacity:0.095505618;"
- offset="0.0000000"
- id="stop233535" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop233537" />
- </linearGradient>
- <radialGradient
- xlink:href="#linearGradient1400"
- r="68.379425"
- id="radialGradient858"
- fy="77.944687"
- fx="79.895966"
- cy="77.944687"
- cx="79.895966"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- xlink:href="#linearGradient853"
- r="200.73203"
- id="radialGradient852"
- fy="325.76621"
- fx="240.38737"
- cy="477.83306"
- cx="227.0055"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient233522">
- <stop
- style="stop-color:#e3f9ff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop233524" />
- <stop
- style="stop-color:#73bee7;stop-opacity:1.0000000;"
- offset="0.36194703"
- id="stop867" />
- <stop
- style="stop-color:#438ec5;stop-opacity:1.0000000;"
- offset="0.62534887"
- id="stop856" />
- <stop
- style="stop-color:#477daf;stop-opacity:1.0000000;"
- offset="0.72607356"
- id="stop1185" />
- <stop
- style="stop-color:#2b5798;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop233529" />
- </linearGradient>
- <linearGradient
- y2="112.48578"
- y1="199.48993"
- xlink:href="#linearGradient865"
- x2="61.94431"
- x1="152.00712"
- id="linearGradient870"
- gradientTransform="scale(1.0693225,0.9351716)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="46.947097"
- y1="25.611177"
- xlink:href="#linearGradient865"
- x2="82.344438"
- x1="105.80702"
- id="linearGradient864"
- gradientTransform="scale(1.1084886,0.9021293)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="40.053987"
- y1="-53.39077"
- xlink:href="#linearGradient865"
- x2="38.977112"
- x1="43.397979"
- id="linearGradient1010"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="24.174611"
- y1="180.92995"
- xlink:href="#linearGradient865"
- x2="53.211626"
- x1="77.291655"
- id="linearGradient1011"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="89.232159"
- y1="483.82793"
- xlink:href="#linearGradient1400"
- x2="-127.58335"
- x1="-83.094155"
- id="linearGradient882"
- gradientTransform="scale(0.8280565,1.2076471)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="-0.079579733"
- y1="4.0796266"
- xlink:href="#linearGradient1400"
- x2="0.52828526"
- x1="0.99722022"
- id="linearGradient233515"
- gradientTransform="scale(1.001713,0.998290)" />
- <linearGradient
- y2="89.599754"
- y1="484.19555"
- xlink:href="#linearGradient1400"
- x2="-126.92083"
- x1="-82.431632"
- id="linearGradient842"
- gradientTransform="scale(0.8311735,1.2031182)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="0.092356689"
- y1="0.83121020"
- xlink:href="#linearGradient839"
- x2="0.35897437"
- x1="0.93772894"
- id="linearGradient233512" />
- <linearGradient
- id="linearGradient839">
- <stop
- style="stop-color:#4f4f4f;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop840" />
- <stop
- style="stop-color:#bebebe;stop-opacity:1.0000000;"
- offset="0.27444443"
- id="stop233509" />
- <stop
- style="stop-color:#fff;stop-opacity:1;"
- offset="1"
- id="stop841" />
- </linearGradient>
- <linearGradient
- y2="0.41287878"
- y1="0.34090909"
- xlink:href="#linearGradient883"
- x2="0.70434785"
- x1="1.8869566"
- id="linearGradient233505" />
- <linearGradient
- id="linearGradient883">
- <stop
- style="stop-color:#1f1f1f;stop-opacity:0.55371898;"
- offset="0.0000000"
- id="stop884" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop885" />
- </linearGradient>
- <linearGradient
- y2="145.51297"
- y1="98.665952"
- xlink:href="#linearGradient899"
- x2="41.235089"
- x1="40.913932"
- id="linearGradient848"
- gradientTransform="scale(1.0773318,0.9282192)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient899">
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="0.0000000"
- id="stop900" />
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop901" />
- </linearGradient>
- <linearGradient
- y2="187.93358"
- y1="160.06661"
- xlink:href="#linearGradient1501"
- x2="38.546809"
- x1="35.646257"
- id="linearGradient1530"
- gradientTransform="scale(1.5213696,0.6573025)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1527">
- <stop
- style="stop-color:#000;stop-opacity:1;"
- offset="0"
- id="stop1528" />
- <stop
- style="stop-color:#fff;stop-opacity:1;"
- offset="1"
- id="stop1529" />
- </linearGradient>
- <radialGradient
- xlink:href="#linearGradient1646"
- r="0.50000000"
- id="radialGradient1645"
- fy="0.67187500"
- fx="0.38759691"
- cy="0.50000000"
- cx="0.50000000" />
- <linearGradient
- id="linearGradient1646">
- <stop
- style="stop-color:#ff0000;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1647" />
- <stop
- style="stop-color:#a00000;stop-opacity:0.71372551;"
- offset="0.69372094"
- id="stop1649" />
- <stop
- style="stop-color:#960000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1648" />
- </linearGradient>
- <linearGradient
- id="linearGradient865">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop866" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop868" />
- </linearGradient>
- <linearGradient
- id="linearGradient1400">
- <stop
- style="stop-color:#000000;stop-opacity:0.67843139;"
- offset="0.0000000"
- id="stop1401" />
- <stop
- style="stop-color:#000000;stop-opacity:0.32941177;"
- offset="0.56999999"
- id="stop1403" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop1402" />
- </linearGradient>
- <linearGradient
- id="linearGradient233476">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop233478" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop233480" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient233596"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient233706"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <linearGradient
- y2="0.48113209"
- y1="0.83018869"
- xlink:href="#linearGradient882"
- x2="0.51764709"
- x1="0.24705882"
- id="linearGradient1063" />
- <linearGradient
- y2="-1.0859375"
- y1="0.51562500"
- xlink:href="#linearGradient832"
- x2="-0.40136054"
- x1="0.76870745"
- id="linearGradient2577" />
- <linearGradient
- y2="0.67187500"
- y1="0.23437500"
- xlink:href="#linearGradient838"
- x2="0.91729325"
- x1="0.48872182"
- id="linearGradient2516" />
- <linearGradient
- y2="0.71875000"
- y1="0.46093750"
- xlink:href="#linearGradient838"
- x2="0.42335767"
- x1="0.68613136"
- id="linearGradient2515" />
- <linearGradient
- y2="-0.77419353"
- y1="0.50806451"
- xlink:href="#linearGradient2387"
- x2="0.15686275"
- x1="0.56470591"
- id="linearGradient2407" />
- <linearGradient
- y2="0.44531250"
- y1="0.53906250"
- xlink:href="#linearGradient850"
- x2="0.51724136"
- x1="0.42068964"
- id="linearGradient239208" />
- <linearGradient
- y2="0.0078125000"
- y1="0.97656250"
- xlink:href="#linearGradient1507"
- x2="0.78260869"
- x1="0.052173913"
- id="linearGradient239206" />
- <linearGradient
- y2="0.54687500"
- y1="-0.55303031"
- xlink:href="#linearGradient1501"
- x2="0.062992126"
- x1="1.5572519"
- id="linearGradient239204" />
- <linearGradient
- y2="1.3281250"
- y1="0.32812500"
- xlink:href="#linearGradient1492"
- x2="-0.37606838"
- x1="0.63247865"
- id="linearGradient239202" />
- <linearGradient
- y2="1.1796875"
- y1="0.21093750"
- xlink:href="#linearGradient1492"
- x2="0.085470088"
- x1="0.88034189"
- id="linearGradient239200" />
- <linearGradient
- id="linearGradient239192">
- <stop
- style="stop-color:#dadada;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop239194" />
- <stop
- style="stop-color:#f1f1f1;stop-opacity:1.0000000;"
- offset="0.34923077"
- id="stop239196" />
- <stop
- style="stop-color:#f0f0f0;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop239198" />
- </linearGradient>
- <linearGradient
- id="linearGradient239186">
- <stop
- style="stop-color:#000000;stop-opacity:0.095505618;"
- offset="0.0000000"
- id="stop239188" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop239190" />
- </linearGradient>
- <linearGradient
- y2="-0.11480361"
- y1="3.3240275"
- xlink:href="#linearGradient882"
- x2="0.90986663"
- x1="-1.1108099"
- id="linearGradient1064" />
- <linearGradient
- y2="0.38461539"
- y1="0.47435898"
- xlink:href="#linearGradient850"
- x2="0.54577464"
- x1="0.63380283"
- id="linearGradient239183" />
- <linearGradient
- id="linearGradient239176">
- <stop
- style="stop-color:#071422;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop851" />
- <stop
- style="stop-color:#2c528a;stop-opacity:1.0000000;"
- offset="0.50000000"
- id="stop853" />
- <stop
- style="stop-color:#a3bfdf;stop-opacity:1.0000000;"
- offset="0.75000000"
- id="stop239180" />
- <stop
- style="stop-color:#59708a;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop852" />
- </linearGradient>
- <linearGradient
- y2="-6.6841485e-006"
- y1="2.0080366"
- xlink:href="#linearGradient882"
- x2="0.58098590"
- x1="0.58098590"
- id="linearGradient881" />
- <linearGradient
- y2="0.54166669"
- y1="0.22395833"
- xlink:href="#linearGradient838"
- x2="0.77464789"
- x1="0.50352114"
- id="linearGradient837" />
- <linearGradient
- id="linearGradient838">
- <stop
- style="stop-color:#a5a5a5;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop839" />
- <stop
- style="stop-color:#dadada;stop-opacity:1.0000000;"
- offset="0.17875445"
- id="stop239166" />
- <stop
- style="stop-color:#656565;stop-opacity:1.0000000;"
- offset="0.48317710"
- id="stop239168" />
- <stop
- style="stop-color:#d5d5d5;stop-opacity:1.0000000;"
- offset="0.61641997"
- id="stop239170" />
- <stop
- style="stop-color:#454545;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop239172" />
- </linearGradient>
- <linearGradient
- y2="0.80000001"
- y1="0.012500000"
- xlink:href="#linearGradient844"
- x2="0.57394367"
- x1="0.71830988"
- id="linearGradient843" />
- <linearGradient
- id="linearGradient239158">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop845" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop239161" />
- </linearGradient>
- <linearGradient
- y2="1.1954023"
- y1="0.28160921"
- xlink:href="#linearGradient832"
- x2="1.1725352"
- x1="0.78521127"
- id="linearGradient835" />
- <linearGradient
- id="linearGradient832">
- <stop
- style="stop-color:#000;stop-opacity:1;"
- offset="0"
- id="stop833" />
- <stop
- style="stop-color:#fff;stop-opacity:1;"
- offset="1"
- id="stop834" />
- </linearGradient>
- <linearGradient
- y2="0.37869984"
- y1="0.73598528"
- xlink:href="#linearGradient832"
- x2="-0.055982146"
- x1="0.59630799"
- id="linearGradient921" />
- <linearGradient
- y2="0.43650794"
- y1="0.047619049"
- xlink:href="#linearGradient844"
- x2="0.46666667"
- x1="0.86538464"
- id="linearGradient880" />
- <linearGradient
- y2="0.33730158"
- y1="0.66666669"
- xlink:href="#linearGradient882"
- x2="0.52358490"
- x1="0.12264151"
- id="linearGradient889" />
- <linearGradient
- y2="0.51984125"
- y1="0.087301590"
- xlink:href="#linearGradient844"
- x2="0.44897959"
- x1="0.68877554"
- id="linearGradient890" />
- <linearGradient
- y2="-0.84883720"
- y1="0.40697673"
- xlink:href="#linearGradient2387"
- x2="0.65098041"
- x1="0.63529414"
- id="linearGradient836" />
- <linearGradient
- y2="-0.54651165"
- y1="0.74418604"
- xlink:href="#linearGradient2387"
- x2="0.56078434"
- x1="0.55686277"
- id="linearGradient2386" />
- <linearGradient
- id="linearGradient2387">
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="0.0000000"
- id="stop2388" />
- <stop
- style="stop-color:#fff;stop-opacity:1;"
- offset="1"
- id="stop2389" />
- </linearGradient>
- <linearGradient
- id="linearGradient239140">
- <stop
- style="stop-color:#000000;stop-opacity:0.33333334;"
- offset="0.00000000"
- id="stop883" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop239143" />
- </linearGradient>
- <linearGradient
- id="linearGradient239134">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop239136" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop239138" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient239278"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1507"
- id="linearGradient2870"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.9446888,1.0585496)"
- x1="201.38964"
- y1="843.20789"
- x2="547.80806"
- y2="383.7653" />
- <linearGradient
- y2="383.76529"
- y1="843.20789"
- xlink:href="#linearGradient1507-1"
- x2="547.80804"
- x1="201.38963"
- id="linearGradient1506-5"
- gradientTransform="scale(0.9446888,1.0585496)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1507-1">
- <stop
- style="stop-color:#000000;stop-opacity:0.095505618;"
- offset="0.0000000"
- id="stop1508-1" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1510-4" />
- </linearGradient>
- <linearGradient
- id="linearGradient3631">
- <stop
- style="stop-color:#000000;stop-opacity:0.095505618;"
- offset="0.0000000"
- id="stop3633" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop3635" />
- </linearGradient>
- <linearGradient
- id="linearGradient3638">
- <stop
- style="stop-color:#000000;stop-opacity:0.095505618;"
- offset="0.0000000"
- id="stop3640" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop3642" />
- </linearGradient>
- <linearGradient
- id="linearGradient3645">
- <stop
- style="stop-color:#000000;stop-opacity:0.095505618;"
- offset="0.0000000"
- id="stop3647" />
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop3649" />
- </linearGradient>
- <linearGradient
- y2="689.86005"
- y1="230.07422"
- xlink:href="#linearGradient1492-3"
- x2="351.7063"
- x1="728.96643"
- id="linearGradient1495-5"
- gradientTransform="scale(0.955425,1.0466546)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1492-3">
- <stop
- style="stop-color:#dadada;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1493-4" />
- <stop
- style="stop-color:#f1f1f1;stop-opacity:1.0000000;"
- offset="0.34923077"
- id="stop1496-0" />
- <stop
- style="stop-color:#f0f0f0;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1494-6" />
- </linearGradient>
- <linearGradient
- y2="418.53635"
- y1="236.12772"
- xlink:href="#linearGradient1501-6"
- x2="330.88034"
- x1="687.96375"
- id="linearGradient1499-2"
- gradientTransform="scale(0.9890091,1.011113)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1501-6">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1502-3" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop1504-4" />
- </linearGradient>
- <linearGradient
- y2="287.73825"
- y1="169.4436"
- xlink:href="#linearGradient1492-3"
- x2="622.33325"
- x1="741.63898"
- id="linearGradient1497-4"
- gradientTransform="scale(0.9552926,1.0467997)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient3661">
- <stop
- style="stop-color:#dadada;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop3663" />
- <stop
- style="stop-color:#f1f1f1;stop-opacity:1.0000000;"
- offset="0.34923077"
- id="stop3665" />
- <stop
- style="stop-color:#f0f0f0;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop3667" />
- </linearGradient>
- <marker
- inkscape:stockid="TriangleOutL"
- orient="auto"
- refY="0"
- refX="0"
- id="TriangleOutL-9"
- style="overflow:visible">
- <path
- inkscape:connector-curvature="0"
- id="path3964-4"
- d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
- transform="scale(0.8,0.8)" />
- </marker>
- <clipPath
- id="clipPath16-4"
- clipPathUnits="userSpaceOnUse">
- <path
- inkscape:connector-curvature="0"
- id="path18-3"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- <clipPath
- id="clipPath16-7"
- clipPathUnits="userSpaceOnUse">
- <path
- inkscape:connector-curvature="0"
- id="path18-6"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- <clipPath
- id="clipPath16"
- clipPathUnits="userSpaceOnUse">
- <path
- inkscape:connector-curvature="0"
- id="path18"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- <clipPath
- id="clipPath16-5-7"
- clipPathUnits="userSpaceOnUse">
- <path
- inkscape:connector-curvature="0"
- id="path18-4-55"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- <clipPath
- id="clipPath16-5"
- clipPathUnits="userSpaceOnUse">
- <path
- inkscape:connector-curvature="0"
- id="path18-4"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- <clipPath
- id="clipPath16-4-6"
- clipPathUnits="userSpaceOnUse">
- <path
- inkscape:connector-curvature="0"
- id="path18-3-0"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- <clipPath
- id="clipPath16-4-1"
- clipPathUnits="userSpaceOnUse">
- <path
- inkscape:connector-curvature="0"
- id="path18-3-4"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- <marker
- id="marker44971"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#bebeaa;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- <clipPath
- id="clipPath16-7-3"
- clipPathUnits="userSpaceOnUse">
- <path
- inkscape:connector-curvature="0"
- id="path18-6-7"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- <clipPath
- id="clipPath16-1"
- clipPathUnits="userSpaceOnUse">
- <path
- inkscape:connector-curvature="0"
- id="path18-69"
- d="M 0,512 512,512 512,0 0,0 0,512 z" />
- </clipPath>
- <marker
- id="marker44971-1"
- orient="auto"
- markerHeight="5.7450781"
- markerWidth="4.6297355">
- <g
- id="g18059-4"
- transform="matrix(0.5,0,0,0.5,-185.64299,-257.19655)">
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="csccccccsccssssssssssssssccc"
- id="path18061-5"
- d="m 370,508.65625 c -0.86067,0.0587 -1.60944,0.6213 -1.90625,1.4375 -0.26976,0.74176 -0.0577,1.53493 0.4375,2.125 l -1.75,0 c -0.0424,-0.005 -0.0824,0.002 -0.125,0 l 0,4.375 0.125,0 1.75,0 c -0.67896,0.8597 -0.69701,2.11549 0.0937,2.90625 0.85091,0.85091 2.27409,0.85091 3.125,0 l 3.34375,-3.375 c 0.033,-0.0295 0.0643,-0.0608 0.0937,-0.0937 0.0322,-0.0193 0.0635,-0.0402 0.0937,-0.0625 3.7e-4,-3.6e-4 0.21851,-0.28079 0.21875,-0.28125 5e-5,-9e-5 -0.007,-0.0447 0,-0.0625 0.001,-0.003 0.03,0.003 0.0312,0 0.0391,-0.0521 0.051,-0.0518 0.0937,-0.125 0.13699,-0.23476 0.16684,-0.37191 0.15625,-0.34375 0.0368,-0.0915 0.0185,-0.11251 0.0312,-0.15625 0.0106,-0.0102 0.021,-0.0206 0.0312,-0.0312 0.06,-0.22398 0.0881,-0.51689 0.0625,-0.78125 -0.0136,-0.20363 -0.0589,-0.29765 -0.0625,-0.3125 1.4e-4,-0.0104 1.4e-4,-0.0208 0,-0.0312 0.026,0.097 0.0153,0.016 -0.0937,-0.25 -0.0525,-0.13039 -0.0899,-0.21936 -0.125,-0.28125 -0.0524,-0.0897 -0.13346,-0.26235 -0.34375,-0.46875 L 371.75,509.3125 c -0.45645,-0.48671 -1.08509,-0.71163 -1.75,-0.65625 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsssssssscccsccc"
- id="path18063-9"
- d="m 366.65625,515.40625 4.625,0 -1.8125,1.8125 c -0.39695,0.39695 -0.39695,1.04055 0,1.4375 0.39695,0.39695 1.04055,0.39695 1.4375,0 l 3.4375,-3.46875 0.0937,-0.0625 c 0.006,-0.006 -0.006,-0.0253 0,-0.0312 0.0554,-0.0572 0.1151,-0.11699 0.15625,-0.1875 0.0286,-0.0491 0.0429,-0.10409 0.0625,-0.15625 0.0124,-0.0307 0.0221,-0.0622 0.0312,-0.0937 0.0311,-0.1161 0.0427,-0.22493 0.0312,-0.34375 -0.004,-0.0578 -0.0174,-0.0996 -0.0312,-0.15625 -0.0109,-0.0407 -0.0151,-0.0857 -0.0312,-0.125 -0.0164,-0.0408 -0.0405,-0.0862 -0.0625,-0.125 -0.0455,-0.0779 -0.0936,-0.15726 -0.15625,-0.21875 l -3.53125,-3.53125 c -0.20891,-0.22276 -0.50816,-0.33785 -0.8125,-0.3125 -0.39478,0.0269 -0.73977,0.28438 -0.875,0.65625 -0.13524,0.37187 -0.0353,0.78826 0.25,1.0625 l 1.875,1.84375 -4.6875,0"
- style="fill:#bebeaa;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </g>
- </marker>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.6499158"
- inkscape:cx="450.53954"
- inkscape:cy="745.06706"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1920"
- inkscape:window-height="1060"
- inkscape:window-x="-2"
- inkscape:window-y="-3"
- showgrid="true"
- inkscape:window-maximized="1"
- inkscape:snap-bbox="true">
- <inkscape:grid
- type="xygrid"
- id="grid9369"
- empspacing="4"
- visible="true"
- enabled="true"
- snapvisiblegridlinesonly="true"
- spacingx="10px"
- spacingy="10px" />
- </sodipodi:namedview>
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <rect
- style="color:#000000;fill:#efefe9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.54330707;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect18450-0-9"
- width="700"
- height="40"
- x="10"
- y="472.36218"
- ry="3.7880721" />
- <rect
- style="color:#000000;fill:#efefe9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.54330707;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect18450-6"
- width="700"
- height="40"
- x="10"
- y="152.36218"
- ry="3.7880721" />
- <rect
- style="color:#000000;fill:#efefe9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.54330707;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect18450-9"
- width="700"
- height="40"
- x="10"
- y="232.36218"
- ry="3.7880721" />
- <rect
- style="color:#000000;fill:#efefe9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.54330707;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect18450-3"
- width="700"
- height="40"
- x="10"
- y="312.36218"
- ry="3.7880721" />
- <rect
- style="color:#000000;fill:#efefe9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.54330707;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect18450-0"
- width="700"
- height="40"
- x="10"
- y="392.36218"
- ry="3.7880721" />
- <rect
- style="color:#000000;fill:#efefe9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.54330707;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
- id="rect18450"
- width="700"
- height="40"
- x="10"
- y="72.362183"
- ry="3.7880721" />
- <path
- style="fill:none;stroke:#bebeaa;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 120,372.36218 0,39.99999 40,0"
- id="path2806-5-7-3-7"
- sodipodi:nodetypes="ccc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#bebeaa;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 80,292.36218 40,0"
- id="path2806-0-2-6"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#bebeaa;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 80,252.36218 40,0"
- id="path2806-0-2-8"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#bebeaa;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 80,212.36218 0,240 40,0"
- id="path2806-5-7-34"
- sodipodi:nodetypes="ccc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#bebeaa;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 40,92.362183 40,0"
- id="path2806-0-2"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot227292"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(14.607,151.77541)"><flowRegion
- id="flowRegion227294"><rect
- id="rect227296"
- width="134.49388"
- height="28.284271"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara227298">mytheme.scss</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot227308"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(-26.655,110.84272)"><flowRegion
- id="flowRegion227310"><rect
- id="rect227312"
- width="120.20815"
- height="28.284271"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara227314">mytheme</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot227316"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(13.149,272.14229)"><flowRegion
- id="flowRegion227318"><rect
- id="rect227320"
- width="120.20815"
- height="28.284271"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara227322">img</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot233610"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(54.607,311.65513)"><flowRegion
- id="flowRegion233612"><rect
- id="rect233614"
- width="154.63956"
- height="25.655067"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara233616">myimage.png</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot233630"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(12.969,351.77541)"><flowRegion
- id="flowRegion233632"><rect
- id="rect233634"
- width="120.20815"
- height="28.284271"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara233636">layouts</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot233694"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(54.607,391.41827)"><flowRegion
- id="flowRegion233696"><rect
- id="rect233698"
- width="154.63956"
- height="25.655067"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara233700">mylayout.html</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot233754"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(-65.519,-46.43028)"><flowRegion
- id="flowRegion233756"><rect
- id="rect233758"
- width="314.63956"
- height="30.655067"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara233760">VAADIN/themes</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot2664"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(204.625,111.60034)"><flowRegion
- id="flowRegion2666"><rect
- id="rect2668"
- width="254.63956"
- height="25.655067"
- x="135.36044"
- y="91.707115"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara2670">- a custom theme</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot2672"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(204.625,150.4651)"><flowRegion
- id="flowRegion2674"><rect
- id="rect2676"
- width="327.4967"
- height="24.226496"
- x="135.36044"
- y="91.707115"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara2678">- actual Sass style sheet</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot2680"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(204.625,270.0851)"><flowRegion
- id="flowRegion2682"><rect
- id="rect2684"
- width="254.63956"
- height="25.655067"
- x="135.36044"
- y="91.707115"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara2686">- image resources</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot2688"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(204.625,351.09526)"><flowRegion
- id="flowRegion2690"><rect
- id="rect2692"
- width="254.63956"
- height="25.655067"
- x="135.36044"
- y="91.707115"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara2694">- custom layouts</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot2696"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(204.625,390.0851)"><flowRegion
- id="flowRegion2698"><rect
- id="rect2700"
- width="254.63956"
- height="25.655067"
- x="135.36044"
- y="91.707115"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara2702">- layout template</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot2834"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(13.671,33.440863)"><flowRegion
- id="flowRegion2836"><rect
- id="rect2838"
- width="161.51456"
- height="28.427111"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara2840">valo.scss</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot2842"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(-26.329,-6.559138)"><flowRegion
- id="flowRegion2844"><rect
- id="rect2846"
- width="120.20815"
- height="28.284271"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara2848">valo</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot2850"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(204.625,-9.9149007)"><flowRegion
- id="flowRegion2852"><rect
- id="rect2854"
- width="254.63956"
- height="25.655067"
- x="135.36044"
- y="91.707115"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara2856">- a built-in theme</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot2858"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(204.625,30.465099)"><flowRegion
- id="flowRegion2860"><rect
- id="rect2862"
- width="254.63956"
- height="25.655067"
- x="135.36044"
- y="91.707115"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara2864">- theme Sass style sheet</flowPara></flowRoot> <g
- id="g10908"
- transform="translate(-35.714285,9.0968045)">
- <path
- transform="matrix(1.0999439,0,0,1,-24.007948,-85.924008)"
- d="m 165.66502,241.71477 c 0,1.39473 -1.01758,2.52538 -2.27284,2.52538 -1.25526,0 -2.27284,-1.13065 -2.27284,-2.52538 0,-1.39473 1.01758,-2.52538 2.27284,-2.52538 1.25526,0 2.27284,1.13065 2.27284,2.52538 z"
- sodipodi:ry="2.5253813"
- sodipodi:rx="2.2728431"
- sodipodi:cy="241.71477"
- sodipodi:cx="163.39218"
- id="path2886"
- style="fill:#000000;fill-opacity:1;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
- sodipodi:type="arc" />
- <path
- transform="matrix(1.0999439,0,0,1,-24.007948,-77.924008)"
- d="m 165.66502,241.71477 c 0,1.39473 -1.01758,2.52538 -2.27284,2.52538 -1.25526,0 -2.27284,-1.13065 -2.27284,-2.52538 0,-1.39473 1.01758,-2.52538 2.27284,-2.52538 1.25526,0 2.27284,1.13065 2.27284,2.52538 z"
- sodipodi:ry="2.5253813"
- sodipodi:rx="2.2728431"
- sodipodi:cy="241.71477"
- sodipodi:cx="163.39218"
- id="path2888"
- style="fill:#000000;fill-opacity:1;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
- sodipodi:type="arc" />
- <path
- transform="matrix(1.0999439,0,0,1,-24.007948,-69.924008)"
- d="m 165.66502,241.71477 c 0,1.39473 -1.01758,2.52538 -2.27284,2.52538 -1.25526,0 -2.27284,-1.13065 -2.27284,-2.52538 0,-1.39473 1.01758,-2.52538 2.27284,-2.52538 1.25526,0 2.27284,1.13065 2.27284,2.52538 z"
- sodipodi:ry="2.5253813"
- sodipodi:rx="2.2728431"
- sodipodi:cy="241.71477"
- sodipodi:cx="163.39218"
- id="path2890"
- style="fill:#000000;fill-opacity:1;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
- sodipodi:type="arc" />
- </g>
- <path
- style="fill:none;stroke:#bebeaa;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0;marker-end:url(#marker44971)"
- d="m 280,242.36218 30,0 0,-110 -10,0"
- id="path2892"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot4061"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(182.663,70.673465)"><flowRegion
- id="flowRegion4063"><rect
- id="rect4065"
- width="419.84824"
- height="29.678204"
- x="135.36044"
- y="91.707115"
- style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara4067">@import "../valo/valo";</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot227292-6"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(13.059,191.41827)"><flowRegion
- id="flowRegion227294-2"><rect
- id="rect227296-3"
- width="134.49388"
- height="28.284271"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara227298-4">styles.scss</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot2672-3"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(204.625,190.4651)"><flowRegion
- id="flowRegion2674-8"><rect
- id="rect2676-9"
- width="327.4967"
- height="24.226496"
- x="135.36044"
- y="91.707115"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara2678-8">- theme main Sass style sheet</flowPara></flowRoot> <path
- style="fill:none;stroke:#bebeaa;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4,4;stroke-dashoffset:0;marker-end:url(#marker44971)"
- d="m 270,292.36218 40,0 0,-36.07143 -20,0.35715"
- id="path2892-3"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot4061-1"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(182.663,166.65193)"><flowRegion
- id="flowRegion4063-4"><rect
- id="rect4065-2"
- width="382.49667"
- height="28.512213"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara4067-9">@import "mytheme.scss";</flowPara></flowRoot> <g
- id="g9515"
- transform="translate(132.58904,217.84543)">
- <g
- id="g7747">
- <g
- transform="matrix(0.07998562,0,0,-0.07998562,6.9813187,215.10036)"
- inkscape:label="Picture"
- id="g10-5-8"
- style="fill:#ffffff">
- <g
- id="g12-4-6"
- style="fill:#ffffff">
- <g
- clip-path="url(#clipPath16-4-6)"
- id="g14-8-3"
- style="fill:#ffffff">
- <g
- transform="translate(433.8223,141.3848)"
- id="g20-83-8"
- style="fill:#ffffff">
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m -414.09375,-54.65625 c 0,113.520833 0,227.04167 0,340.5625 156.89583,0 313.79167,0 470.6875,0 0,-114.1875 0,-228.375 0,-342.5625 -156.89583,0 -313.79167,0 -470.6875,0 l 0,1 z"
- id="path22-5-2"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="scccccs" />
- </g>
- </g>
- </g>
- </g>
- </g>
- <g
- id="g10-5-6"
- inkscape:label="Picture"
- transform="matrix(0.07998562,0,0,-0.07998562,6.9813187,215.10036)">
- <g
- id="g12-4-9">
- <g
- id="g14-8-5"
- clip-path="url(#clipPath16-4-1)">
- <g
- id="g20-83-2"
- transform="translate(433.8223,141.3848)">
- <path
- inkscape:connector-curvature="0"
- d="m 0,0 -356.188,0 -0.015,228.033 354.928,0 0,-0.017 1.275,0 L 0,0 z m -396.082,-38.653 434.688,0 0,306.569 -434.688,0 0,-306.569 z m 309.26,178.483 c 16.061,0 29.073,13 29.073,29.059 0,16.04 -13.012,29.062 -29.073,29.062 -16.019,0 -29.038,-13.022 -29.038,-29.062 0,-16.059 13.019,-29.059 29.038,-29.059 m -100.514,-68.524 -85.603,91.047 -58.21,-107.66 0,-29.658 289.12,0 c -36.822,31.753 -114.476,99.682 -114.476,99.682 l -30.831,-53.411 z"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
- id="path22-5-1" />
- </g>
- </g>
- </g>
- </g>
- </g>
- <path
- style="fill:none;stroke:#bebeaa;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 40,52.362186 0,159.999994 40,0"
- id="path2806-5-7"
- sodipodi:nodetypes="ccc"
- inkscape:connector-curvature="0" />
- <g
- id="g3611"
- transform="translate(17.480984,-49.267494)">
- <g
- style="fill:#ffffff"
- id="g10-4-6"
- inkscape:label="Folder"
- transform="matrix(0.07998562,0,0,-0.07998562,1.9122928,122.28074)">
- <g
- style="fill:#ffffff"
- id="g12-1-3">
- <g
- style="fill:#ffffff"
- id="g14-3-3"
- clip-path="url(#clipPath16-5-7)">
- <g
- style="fill:#ffffff"
- id="g20-8-1"
- transform="translate(457.2109,384.8115)">
- <path
- inkscape:connector-curvature="0"
- id="path22-2-6"
- d="m -10.5,-331.25 c -131.67908,1.3418 -263.4169,-1.1568 -395.0625,1.46875 -18.88471,5.30331 -27.52917,27.22938 -24.73835,45.43731 -1.55601,77.91039 -6.95457,155.70331 -9.44915,233.56269 1.77368,10.078123 9.09422,18.689545 16.96875,24.3125 -7.92842,11.339555 -4.63436,26.46294945 -1.53125,38.90625 3.68504,11.473091 13.32222,21.527751 25.03125,23.90625 0.64926,16.281394 12.799,32.511879 29.125,35.84375 22.86963,4.535758 46.21236,-0.619376 69.28125,1.375 24.0007,0.11428 49.36546,3.030008 72.0903,-6.135877 9.90405,-6.591274 15.08127,-18.090353 17.75345,-29.301623 68.21593,-0.629281 136.557909,2.010461 204.6875,-1.625 25.807558,-4.763359 37.808461,-40.8363988 21.25,-60.8125 18.342476,-9.723258 25.076089,-33.322653 20.303985,-52.744757 -5.299272,-59.854233 -5.942784,-120.000983 -8.718706,-180.002273 -1.05619,-17.57576 -1.245293,-35.40606 -3.647779,-52.78422 C 17.916478,-323.16042 3.5572264,-331.96135 -10.5,-331.25 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
- </g>
- </g>
- </g>
- </g>
- <g
- id="g10-4"
- inkscape:label="Folder"
- transform="matrix(0.07998562,0,0,-0.07998562,1.9122928,122.28074)">
- <g
- id="g12-1">
- <g
- id="g14-3"
- clip-path="url(#clipPath16-5)">
- <g
- id="g20-8"
- transform="translate(457.2109,384.8115)">
- <path
- inkscape:connector-curvature="0"
- d="m 0,0 c 0,8.98 -7.277,16.256 -16.258,16.256 l -205.648,0 c -6.429,0.161 -11.384,11.842 -11.384,16.31 l 0.003,1.903 c 0,9.546 -7.737,17.28 -17.28,17.28 l -109.476,0 c -9.544,0 -17.281,-7.734 -17.281,-17.28 l 0.004,-1.903 c 0,-4.5 -5.021,-16.322 -11.516,-16.322 l 0.154,0 C -397.525,16.087 -404.647,8.88 -404.647,0 l 0,-11.223 L 0,-11.223 0,0 z m 0,-42.313 0,0.316 -404.647,0 0,-0.327 c -7.956,-1.549 -13.959,-8.547 -13.959,-16.955 0,0 5.683,-86.463 6.726,-117.611 1.045,-31.147 3.844,-114.727 3.844,-114.727 0,-9.544 1.973,-17.281 11.514,-17.281 l 388.458,0 c 9.543,0 11.513,7.737 11.513,17.281 0,0 2.804,83.58 3.845,114.727 1.044,31.148 6.727,117.611 6.727,117.611 0,8.432 -6.035,15.441 -14.021,16.966"
- style="fill:#49c2f1;fill-opacity:1;fill-rule:nonzero;stroke:none"
- id="path22-2" />
- </g>
- </g>
- </g>
- </g>
- </g>
- <use
- x="0"
- y="0"
- xlink:href="#g3611"
- id="use10870"
- transform="translate(40.523025,159.91333)"
- width="744.09448"
- height="1052.3622" />
- <path
- style="fill:none;stroke:#bebeaa;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 80,92.362183 0,39.999987 40,0"
- id="path2806-5-7-3"
- sodipodi:nodetypes="ccc"
- inkscape:connector-curvature="0" />
- <g
- id="g5070"
- transform="translate(102.99732,28.451556)">
- <g
- style="fill:#ffffff"
- id="g10-3"
- inkscape:label="Document"
- transform="matrix(0.07998562,0,0,-0.07998562,-3.457336,124.5086)">
- <g
- style="fill:#ffffff"
- id="g12-5">
- <g
- style="fill:#ffffff"
- id="g14-37"
- clip-path="url(#clipPath16-7)">
- <g
- style="fill:#ffffff"
- id="g20-5"
- transform="translate(130.7402,72.7832)">
- <path
- sodipodi:nodetypes="sccccccs"
- inkscape:connector-curvature="0"
- id="path22-1"
- d="m -45.03125,-43.03125 c 0,151.5625 0,303.125 0,454.6875 75.90625,0 151.8125,0 227.71875,0 36.68936,-36.8322 73.34869,-73.80705 110.34375,-110.21875 0,-115.48958 0,-230.979167 0,-346.46875 -112.6875,0 -225.375,0 -338.0625,0 l 0,1 z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
- </g>
- </g>
- </g>
- </g>
- <g
- id="g10"
- inkscape:label="Document"
- transform="matrix(0.07998562,0,0,-0.07998562,-3.454656,124.51136)">
- <g
- id="g12">
- <g
- id="g14"
- clip-path="url(#clipPath16)">
- <g
- id="g20"
- transform="translate(130.7402,72.7832)">
- <path
- inkscape:connector-curvature="0"
- d="m 0,0 0,366.626 141.613,0 c 37.201,0 19.275,-88.18 19.275,-88.18 0,0 86,20.901 87.104,-18.534 L 247.992,0 0,0 z m 265.701,300.338 -83.997,83.994 -7.331,7.333 -199.411,0 0,-416.701 298.071,0 0,318.039 -7.332,7.335 z"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
- id="path22" />
- </g>
- </g>
- </g>
- </g>
- </g>
- <use
- x="0"
- y="0"
- xlink:href="#g3611"
- id="use10868"
- transform="translate(40.167297,39.622524)"
- width="744.09448"
- height="1052.3622" />
- <use
- x="0"
- y="0"
- xlink:href="#g5070"
- id="use10931"
- transform="translate(0.20270218,119.84969)"
- width="744.09448"
- height="1052.3622" />
- <use
- x="0"
- y="0"
- xlink:href="#g5070"
- id="use10933"
- transform="translate(-0.01158332,159.99253)"
- width="744.09448"
- height="1052.3622" />
- <path
- style="fill:none;stroke:#bebeaa;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 80,372.36218 40,0"
- id="path2806-0-2-6-8"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <use
- x="0"
- y="0"
- xlink:href="#g3611"
- id="use10980"
- transform="translate(80.017949,319.91333)"
- width="744.09448"
- height="1052.3622" />
- <path
- style="fill:none;stroke:#bebeaa;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 80,332.36218 40,0"
- id="path2806-0-2-6-9"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot227292-6-5"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch"
- transform="translate(13.059,231.41827)"><flowRegion
- id="flowRegion227294-2-8"><rect
- id="rect227296-3-2"
- width="134.49388"
- height="28.284271"
- x="135.36044"
- y="91.707115"
- style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;font-family:Courier 10 Pitch;-inkscape-font-specification:Courier 10 Pitch" /></flowRegion><flowPara
- id="flowPara227298-4-3">addons.scss</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot2672-3-6"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light"
- transform="translate(204.625,230.4651)"><flowRegion
- id="flowRegion2674-8-4"><rect
- id="rect2676-9-4"
- width="370.01456"
- height="20.189968"
- x="135.36044"
- y="91.707115"
- style="font-size:20px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Helvetica LT Std;-inkscape-font-specification:Helvetica LT Std Light" /></flowRegion><flowPara
- id="flowPara2678-8-3">- autogenerated addon theme inclusions</flowPara></flowRoot> <use
- x="0"
- y="0"
- xlink:href="#g5070"
- id="use10933-7"
- transform="translate(-0.01158,199.99254)"
- width="744.09448"
- height="1052.3622" />
- <path
- style="fill:none;stroke:#bebeaa;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0;marker-end:url(#marker44971)"
- d="m 270,292.36218 40,0 0,40 -20,0"
- id="path2892-3-2"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;stroke:#bebeaa;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 120,452.36218 0,39.99999 40,0"
- id="path2806-5-7-3-7-5"
- sodipodi:nodetypes="ccc"
- inkscape:connector-curvature="0" />
- <use
- x="0"
- y="0"
- xlink:href="#g3611"
- id="use10982"
- transform="translate(80.045224,399.60013)"
- width="744.09448"
- height="1052.3622" />
- <use
- x="0"
- y="0"
- xlink:href="#g5070"
- id="use10935"
- transform="translate(40.202703,359.49255)"
- width="744.09448"
- height="1052.3622" />
- </g>
-</svg>
diff --git a/documentation/themes/themes-compiling.asciidoc b/documentation/themes/themes-compiling.asciidoc deleted file mode 100644 index 7c8501858a..0000000000 --- a/documentation/themes/themes-compiling.asciidoc +++ /dev/null @@ -1,223 +0,0 @@ ---- -title: Compiling Sass Themes -order: 4 -layout: page ---- - -[[themes.compiling]] -= Compiling Sass Themes - -Sass themes must be compiled to CSS understood by browsers. Compilation can be -done with the Vaadin Sass Compiler, which you can run in Eclipse, Maven, or it -can be run on-the-fly when the application is loaded in the browser. You can -also use any other Sass compiler. - -[[themes.compiling.on-the-fly]] -== Compiling On the Fly - -The easiest way to use Sass themes during theme development is to let the Vaadin -servlet compile them on the run. In this case, the SCSS source files are placed -in the theme folder. Compilation is done each time the [filename]#styles.css# is -requested from the server. - -The on-the-fly compilation takes a bit time, so it is only available when the -Vaadin servlet is in the development mode, as described in -<<dummy/../../../framework/application/application-environment#application.environment.parameters,"Other -Servlet Configuration Parameters">>. Also, it requires the theme compiler and -all its dependencies to be in the class path of the servlet. At least for -production, you must compile the theme to CSS, as described next. - - -[[themes.compiling.eclipse]] -== Compiling in Eclipse - -If using Eclipse and the Vaadin Plugin for Eclipse, its project wizard creates a -Sass theme. It includes [menuchoice]#Compile Theme# command in the toolbar to -compile the project theme to CSS. Another command compiles also the widget set. - -[[figure.themes.compiling.eclipse]] -.Compiling Sass Theme -image::img/eclipse-theme-compiler.png[] - -The [filename]#WebContent/VAADIN/mytheme/styles.scss# and any Sass sources -included by it are compiled to [filename]#styles.css#. - - -[[themes.compiling.maven]] -== Compiling with Maven - -To compile the themes with Maven, you need to include the built-in themes as a -dependency: - - -[source, xml] ----- - ... - <dependencies> - ... - <dependency> - <groupId>com.vaadin</groupId> - <artifactId>vaadin-themes</artifactId> - <version>${vaadin.version}</version> - </dependency> - </dependencies> - ... ----- - -This is automatically included at least in the -[literal]#++vaadin-archetype-application++# archetype for Vaadin applications. -The actual theme compilation is most conveniently done by the Vaadin Maven -Plugin with [literal]#++update-theme++# and [literal]#++compile-theme++# goals. - - -[source, xml] ----- - ... - <plugin> - <groupId>com.vaadin</groupId> - <artifactId>vaadin-maven-plugin</artifactId> - ... - <executions> - <execution> - ... - <goals> - <goal>clean</goal> - <goal>resources</goal> - <goal>update-theme</goal> - <goal>update-widgetset</goal> - <goal>compile-theme</goal> - <goal>compile</goal> - </goals> - </execution> - </executions> ----- - -Once these are in place, the theme is compiled as part of relevant lifecycle -phases, such as [literal]#++package++#. - -[subs="normal"] ----- -[command]#mvn# [parameter]#package# ----- -You can also compile just the theme with the [package]#compile-theme# goal: - -[subs="normal"] ----- -[command]#mvn# [parameter]#vaadin:compile-theme# ----- - -ifdef::web[] -[[themes.compiling.command-line]] -== Compiling in Command-line - -You can compile Sass style sheets to CSS either with the Vaadin Sass compiler or -the standard one. The [filename]#styles.css# of a custom theme should be the -compilation target. When compiled before deployment, the source files do not -need to be in the theme folder. - -You can run the Vaadin Sass compiler in a theme folder as follows: - -[subs="normal"] ----- -[command]#java# [parameter]#-cp# [replaceable]#'../../../WEB-INF/lib/*'# com.vaadin.sass.SassCompiler styles.scss styles.css ----- -The [parameter]#-cp# parameter should point to the class path where the Vaadin -Sass Compiler and theme JARs are located. In the above example, they are assumed -to be located in the [filename]#WEB-INF/lib# folder of the web application. If -you have loaded the Vaadin libraries using Ivy, as is the case with projects -created with the Vaadin Plugin for Eclipse, the Vaadin libraries are stored in -Ivy's local repository. Its folder hierarchy is somewhat scattered, so we -recommend that you retrieve the libraries to a single folder. We recommend using -an Ant script as is described next. - -endif::web[] - -[[themes.compiling.ant]] -== Compiling with Ant - -With Apache Ant, you can easily resolve the dependencies with Ivy and compile -the theme with the Theme Compiler included in Vaadin as follows. This build step -can be conveniently included in a WAR build script. - -Start with the following configuration: - - -[source, xml] ----- -<project xmlns:ivy="antlib:org.apache.ivy.ant" - name="My Project" basedir="../" - default="package-war"> - - <target name="configure"> - <!-- Where project source files are located --> - <property name="src-location" value="src" /> - - ... other project build definitions ... - - <!-- Name of the theme --> - <property name="theme" value="book-examples"/> - - <!-- Compilation result directory --> - <property name="result" value="build/result"/> - </target> - - <!-- Initialize build --> - <target name="init" depends="configure"> - <!-- Construct and check classpath --> - <path id="compile.classpath"> - <!-- Source code to be compiled --> - <pathelement path="${src-location}" /> - - <!-- Vaadin libraries and dependencies --> - <fileset dir="${result}/lib"> - <include name="*.jar"/> - </fileset> - </path> - - <mkdir dir="${result}"/> - </target> ----- - -You should first resolve all Vaadin libraries to a single directory, which you -can use for deployment, but also for theme compilation. - - ----- - <target name="resolve" depends="init"> - <ivy:retrieve - pattern="${result}/lib/[module]-[type]-[artifact]-[revision].[ext]"/> - </target> ----- - -Then, you can compile the theme as follows: - - ----- - <!-- Compile theme --> - <target name="compile-theme" - depends="init, resolve"> - <delete dir="${result}/VAADIN/themes/${theme}"/> - <mkdir dir="${result}/VAADIN/themes/${theme}"/> - - <java classname="com.vaadin.sass.SassCompiler" - fork="true"> - <classpath> - <path refid="compile.classpath"/> - </classpath> - <arg value="WebContent/VAADIN/themes/${theme}/styles.scss"/> - <arg value="${result}/VAADIN/themes/${theme}/styles.css"/> - </java> - - <!-- Copy theme resources --> - <copy todir="${result}/VAADIN/themes/${theme}"> - <fileset dir="WebContent/VAADIN/themes/${theme}"> - <exclude name="**/*.scss"/> - </fileset> - </copy> - </target> -</project> ----- - - - - diff --git a/documentation/themes/themes-creating.asciidoc b/documentation/themes/themes-creating.asciidoc deleted file mode 100644 index dcd2c5034a..0000000000 --- a/documentation/themes/themes-creating.asciidoc +++ /dev/null @@ -1,283 +0,0 @@ ---- -title: Creating and Using Themes -order: 5 -layout: page ---- - -[[themes.creating]] -= Creating and Using Themes - -Custom themes are placed in the [filename]#VAADIN/themes# folder of the web -application, in an Eclipse project under the [filename]#WebContent# folder or -[filename]#src/main/webapp# in Maven projects, as was illustrated in -<<dummy/../../../framework/themes/themes-overview#figure.themes.theme-contents,"Contents -of a Theme">>. This location is fixed. You need to have a theme folder for each -theme you use in your application, although applications rarely need more than a -single theme. - -[[themes.creating.sass]] -== Sass Themes - -You can use Sass themes in Vaadin in two ways, either by compiling them to CSS -by yourself or by letting the Vaadin servlet compile them for you on-the-fly -when the theme CSS is requested by the browser, as described in -<<dummy/../../../framework/themes/themes-compiling#themes.compiling,"Compiling -Sass Themes">>. - -To define a Sass theme with the name mytheme, you must place a file with name -[filename]#styles.scss# in the theme folder [filename]#VAADIN/themes/mytheme#. -If no [filename]#styles.css# exists in the folder, the Sass file is compiled -on-the-fly when the theme is requested by a browser. - -We recommend that you organize the theme in at least two SCSS files so that you -import the actual theme from a Sass file that is named more uniquely than the -[filename]#styles.scss#, to make it distinquishable in the editor. This -organization is how the Vaadin Plugin for Eclipse creates a new theme. - -If you use Vaadin add-ons that contain themes, Vaadin Plugin for Eclipse and -Maven automatically add them to the [filename]#addons.scss# file. - -[[themes.creating.sass.scss]] -=== Theme SCSS - -We recommend that the rules in a theme should be prefixed with a selector for -the theme name. You can do the prefixing in Sass by enclosing the rules in a -nested rule with a selector for the theme name. - -Themes are defined as Sass mixins, so after you import the mixin definitions, -you can [literal]#++@include++# them in the theme rule as follows: - - -[source, css] ----- -@import "addons.scss"; -@import "mytheme.scss"; - -.mytheme { - @include addons; - @include mytheme; -} ----- - -However, this is mainly necessary if you use the UI in portlets, each of which -can have its own theme, or in the special circumstance that the theme has rules -that use empty parent selector [literal]#++&++# to refer to the theme name. - -Otherwise, you can safely leave the nested theme selector out as follows: - - -[source, css] ----- -@import "addons.scss"; -@import "mytheme.scss"; - -@include addons; -@include mytheme; ----- - -The actual theme should be defined as follows, as a mixin that includes the base -theme. - - -[source, css] ----- -@import "../valo/valo.scss"; - -@mixin mytheme { - @include valo; - - /* An actual theme rule */ - .v-button { - color: blue; - } -} - ----- - - -[[themes.creating.sass.addons]] -=== Add-on Themes - -Some Vaadin add-ons include Sass styles that need to be compiled into the theme. -These are managed in the [filename]#addons.scss# file in a theme, included from -the [filename]#styles.scss#. The [filename]#addons.scss# file is automatically -generated by the Vaadin Plugin for Eclipse or Maven. - -[subs="normal"] ----- -/* This file is automatically managed and will be - overwritten from time to time. */ -/* Do not manually edit this file. */ - -**/++*++ Provided by vaadin-spreadsheet-1.0.0.beta1.jar ++*++/ @import "../../../VAADIN/addons/spreadsheet/spreadsheet.scss";** - -/* Import and include this mixin into your project - theme to include the addon themes */ -@mixin addons { - **@include spreadsheet;** -} ----- - - -[[themes.creating.css]] -== Plain Old CSS Themes - -In addition to Sass themes, you can create plain old CSS themes. CSS theme are -more restricted than Sass styles - you can't parameterize CSS themes in any way, -unlike you can Valo, for example. Further, an application can only have one CSS -theme while you can have multiple Sass themes. - -A CSS theme is defined in a [filename]#styles.css# file in the -[filename]#VAADIN/themes/mytheme# folder. You need to import the -[filename]#legacy-styles.css# of the built-in theme as follows: - - ----- -@import "../reindeer/legacy-styles.css"; - -.v-app { - background: yellow; -} ----- - - -[[themes.creating.standard-components]] -== Styling Standard Components - -Each user interface component in Vaadin has a CSS style class that you can use -to control the appearance of the component. Many components have additional -sub-elements that also allow styling. You can add context-specific stylenames -with [methodname]#addStyleName()#. Notice that [methodname]#getStyleName()# -returns only the custom stylenames, not the built-in stylenames for the -component. - -Please see the section on each component for a description of its styles. Most -of the stylenames are determined in the client-side widget of each component. -The easiest way to find out the styles of the elements is to use a HTML -inspector such as -FireBug.//// -TODO reference to a Firebug section when -available -//// - -Some client-side components or component styles can be shared by different -server-side components. For example, [literal]#++v-textfield++# style is used -for all text input boxes in components, in addition to [classname]#TextField#. - - -[[themes.creating.builtin]] -== Built-in Themes - -Vaadin currently includes the following built-in themes: - -* [literal]#++valo++#, the primary theme since Vaadin 7.3 -* [literal]#++reindeer++#, the primary theme in Vaadin 6 and 7 -* [literal]#++chameleon++#, an easily customizable theme -* [literal]#++runo++#, the default theme in IT Mill Toolkit 5 -* [literal]#++liferay++#, for Liferay portlets - -In addition, there is the [literal]#++base++# theme, which should not be used -directly, but is extended by the other built-in themes, except valo. - -The built-in themes are provided in the respective -[filename]#VAADIN/themes/<theme>/styles.scss# stylesheets in the -[filename]#vaadin-themes# JAR. Also the precompiled CSS files are included, in -case you want to use the themes directly. - -Various constants related to the built-in themes are defined in the theme -classes in [package]#com.vaadin.ui.themes# package. These are mostly special -style names for specific components. - - ----- -@Theme("runo") -public class MyUI extends UI { - @Override - protected void init(VaadinRequest request) { - ... - Panel panel = new Panel("Regular Panel in the Runo Theme"); - panel.addComponent(new Button("Regular Runo Button")); - - // A button with the "small" style - Button smallButton = new Button("Small Runo Button"); - smallButton.addStyleName(Runo.BUTTON_SMALL); - - Panel lightPanel = new Panel("Light Panel"); - lightPanel.addStyleName(Runo.PANEL_LIGHT); - lightPanel.addComponent( - new Label("With addStyleName(\"light\")")); - ... ----- - -The example with the Runo theme is shown in -<<figure.themes.creating.builtin.runo>>. - -[[figure.themes.creating.builtin.runo]] -.Runo Theme -image::img/builtin-runo.png[] - -The built-in themes come with a custom icon font, FontAwesome, which is used for -icons in the theme, and which you can use as font icons, as described in -<<dummy/../../../framework/themes/themes-fonticon#themes.fonticon,"Font -Icons">>. - -ifdef::web[] - -[NOTE] -.Serving Built-In Themes Statically -==== -The built-in themes included in the Vaadin library JAR are served dynamically -from the JAR by the servlet. Serving themes and widget sets statically by the -web server is more efficient. To do so, you need to extract the -[filename]#VAADIN/# directories from the JAR to the web content directory ( -[filename]#WebContent# in Eclipse or [filename]#src/main/webapp# in Maven -projects). - -[subs="normal"] ----- -[prompt]#$# [command]#cd# WebContent ----- -[subs="normal"] ----- -[prompt]#$# [command]#unzip# path-to/vaadin-server-7.x.x.jar 'VAADIN/*' ----- -[subs="normal"] ----- -[prompt]#$# [command]#unzip# path-to/vaadin-themes-7.x.x.jar 'VAADIN/*' ----- -[subs="normal"] ----- -[prompt]#$# [command]#unzip# path-to/vaadin-client-compiled-7.x.x.jar 'VAADIN/*' ----- -You can also serve static content from a front-end caching server, which reduces -the load of the application server. In portals, you install the themes globally -in the portal in similar way, as described in -<<dummy/../../../framework/portal/portal-liferay#portal.liferay.install,"Installing -Vaadin Resources">>. - -Just make sure to update the static content when you upgrade to a newer version -of Vaadin. - -==== - -endif::web[] - - -Creation of a default theme for custom GWT widgets is described in -<<dummy/../../../framework/gwt/gwt-styling#gwt.styling,"Styling a Widget">>. - - -[[themes.creating.addon]] -== Add-on Themes - -You can find more themes as add-ons from the -link:http://vaadin.com/directory[Vaadin Directory]. In addition, many component -add-ons contain a theme for the components they provide. - -The add-on themes need to be included in the project theme. Vaadin Plugin for -Eclipse and Maven automatically include them in the [filename]#addons.scss# file -in the project theme folder. It should be included by the project theme. - - - - diff --git a/documentation/themes/themes-css.asciidoc b/documentation/themes/themes-css.asciidoc deleted file mode 100644 index 45229303dc..0000000000 --- a/documentation/themes/themes-css.asciidoc +++ /dev/null @@ -1,506 +0,0 @@ ---- -title: Introduction to Cascading Style Sheets -order: 2 -layout: page ---- - -[[themes.css]] -= Introduction to Cascading Style Sheets - -((("CSS", "introduction", id="term.themes.css", range="startofrange"))) - - -Cascading Style Sheets or CSS is the basic technique to separate the appearance -of a web page from the content represented in HTML. In this section, we give an -introduction to CSS and look how they are relevant to software development with -Vaadin. - -As we can only give a short intruction in this book, we encourage you to refer -to the rich literature on CSS and the many resources available in the web. You -can find the authoratitative specifications of CSS standards from the -link:http://www.w3.org/Style/CSS/[W3C -website] -ifdef::web[] -and other literature, references, and tutorials from the -link:http://www.dmoz.org/Computers/Data_Formats/Style_Sheets/CSS/[Open Directory -Project page on CSS], as well as from other -sources -endif::web[] -. - -[[themes.css.basics]] -== Applying CSS to HTML - -Let us consider the following HTML document that contains various markup -elements for formatting text. Vaadin UIs work in essentially similar documents, -even though they use somewhat different elements to draw the user interface. - -[subs="normal"] ----- -<html> - <head> - <title>My Page</title> - <link rel="stylesheet" type="text/css" - href="mystylesheet.css"/> - </head> - <body> - **<p>**This is a paragraph**</p>** - **<p>**This is another paragraph**</p>** - <table> - <tr> - **<td>**This is a table cell**</td>** - **<td>**This is another table cell**</td>** - </tr> - </table> - </body> -</html> ----- -The HTML elements that will be styled later by matching CSS rules are emphasized -above. - -The [literal]#++<link>++# element in the HTML header defines the used CSS -stylesheet. The definition is automatically generated by Vaadin in the HTML page -that loads the UI of the application. A stylesheet can also be embedded in the -HTML document itself, as is done when optimizing their loading in Vaadin -TouchKit, for example. - - -[[themes.css.basics]] -== Basic CSS Rules - -A stylesheet contains a set of __rules__ that can match the HTML elements in the -page. Each rule consists of one or more __selectors__, separated with commas, -and a __declaration block__ enclosed in curly braces. A declaration block -contains a list of __property__ statements. Each property has a label and a -value, separated with a colon. A property statement ends with a semicolon. - -Let us look at an example that matches certain elements in the simple HTML -document given in the previous section: - - -[source, css] ----- -p, td { - color: blue; -} - -td { - background: yellow; - font-weight: bold; -} ----- - -The [literal]#++p++# and [literal]#++td++# are element type selectors that match -with [literal]#++<p>++# and [literal]#++<td>++# elements in HTML, respectively. -The first rule matches with both elements, while the second matches only with -[literal]#++<td>++# elements. Let us assume that you have saved the above style -sheet with the name [filename]#mystylesheet.css# and consider the following HTML -file located in the same folder. - -[[figure.themes.basic.1]] -.Simple Styling by Element Type -image::img/themes-css-match-1.png[] - -[[themes.css.basics.inheritance]] -=== Style Inheritance in CSS - -CSS has __inheritance__ where contained elements inherit the properties of their -parent elements. For example, let us change the above example and define it -instead as follows: - - -[source, css] ----- -table { - color: blue; - background: yellow; -} ----- - -All elements contained in the [literal]#++<table>++# element would have the same -properties. For example, the text in the contained [literal]#++<td>++# elements -would be in blue color. - - -[[themes.css.basics.element-types]] -=== HTML Element Types - -HTML has a number of element types, each of which accepts a specific set of -properties. The [literal]#++<div>++# elements are generic elements that can be -used to create almost any layout and formatting that can be created with a -specific HTML element type. Vaadin uses [literal]#++<div>++# elements -extensively to draw the UI, especially in layout components. - -((("Google Web Toolkit", -"themeing"))) -Matching elements by their type as shown above is, however, rarely if ever used -in style sheets for Vaadin applications. We used it above, because it is the -normal way in regular HTML documents that use the various HTML elements for -formatting text, but it is not applicable in Vaadin UIs that consist mostly of -[literal]#++<div>++# elements. Instead, you need to match by element class, as -described next. - - - -[[themes.css.matching-by-class]] -== Matching by Element Class - -Matching HTML elements by the __class__ attribute is the most common form of -matching in Vaadin stylesheets. It is also possible to match with the -__identifier__ of a unique HTML element. - -The class of an HTML element is defined with the [parameter]#class# attribute as -follows: - -[subs="normal"] ----- -<html> - <body> - **<p class="normal">**This is the first paragraph**</p>** - - **<p class="another">**This is the second paragraph**</p>** - - <table> - <tr> - **<td class="normal">**This is a table cell**</td>** - **<td class="another">**This is another table cell**</td>** - </tr> - </table> - </body> -</html> ----- -The class attributes of HTML elements can be matched in CSS rules with a -selector notation where the class name is written after a period following the -element name. This gives us full control of matching elements by their type and -class. - - -[source, css] ----- -p.normal {color: red;} -p.another {color: blue;} -td.normal {background: pink;} -td.another {background: yellow;} ----- - -The page would look as shown below: - -.Matching HTML Element Type and Class -image::img/themes-css-match-class-2.png[] - -We can also match solely by the class by using the universal selector -[literal]#++*++# for the element name, for example [literal]#++*.normal++#. The -universal selector can also be left out altogether so that we use just the class -name following the period, for example [literal]#++.normal++#. - - -[source, css] ----- -.normal { - color: red; -} - -.another { - blackground: yellow; -} ----- - -In this case, the rule will match with all elements of the same class regardless -of the element type. The result is shown in <<figure.themes.match.class>>. This -example illustrates a technique to make style sheets compatible regardless of -the exact HTML element used in drawing a component. - -[[figure.themes.match.class]] -.Matching Only HTML Element Class -image::img/themes-css-match-class-3.png[] - -To ensure future compatibility, we recommend that you use only matching based on -the classes and __do not__ match for specific HTML element types in CSS rules, -because Vaadin may change the exact HTML implementation how components are drawn -in the future. For example, Vaadin earlier used [literal]#++<div>++# element to -draw [classname]#Button# components, but later it was changed to use the -special-purpose [literal]#++<button>++# element in HTML. Because of using the -[literal]#++v-button++# style class in the CSS rules for the button, styling it -has changed only very little. - - -[[themes.css.matching-by-descendants]] -== Matching by Descendant Relationship - -CSS allows matching HTML by their containment relationship. For example, -consider the following HTML fragment: - -[subs="normal"] ----- -<body> - <p class="mytext">Here is some text inside a - paragraph element</p> - <table class="**mytable**"> - <tr> - <td class="**mytext**">Here is text inside - a table and inside a td element.</td> - </tr> - </table> -</body> ----- -Matching by the class name [literal]#++.mytext++# alone would match both the -[literal]#++<p>++# and [literal]#++<td>++# elements. If we want to match only -the table cell, we could use the following selector: - - -[source, css] ----- -.mytable .mytext {color: blue;} ----- - -To match, a class listed in a rule does not have to be an immediate descendant -of the previous class, but just a descendant. For example, the selector " -[literal]#++.v-panel .v-button++#" would match all elements with class -[literal]#++.v-button++# somewhere inside an element with class -[literal]#++.v-panel++#. - - -[[themes.css.cascading]] -== Importance of Cascading - -CSS or Cascading Stylesheets are, as the name implies, about __cascading__ -stylesheets, which means applying the stylesheet rules according to their -origin, importance, scope, specifity, and order. - -For exact rules for cascading in CSS, see the section -link:http://www.w3.org/TR/css3-cascade/#cascading[Cascading] in the CSS -specification. - -[[themes.css.cascading.importance]] -=== Importance - -Declarations in CSS rules can be made override declarations with otherwise -higher priority by annotating them as [literal]#++!important++#. For example, an -inline style setting made in the [literal]#++style++# attribute of an HTML -element has a higher specificity than any rule in a CSS stylesheet. - - -[source, css] ----- -<div class="v-button" style="height: 20px;">... ----- - -You can override the higher specificity with the [literal]#++!important++# -annotation as follows: - - -[source, css] ----- -.v-button {height: 30px !important;} ----- - - -[[themes.css.cascading.specificity]] -=== Specificity - -A rule that specifies an element with selectors more closely overrides ones that -specify it less specifically. With respect to the element class selectors most -commonly used in Vaadin themes, the specificity is determined by the number of -class selectors in the selector. - - -[source, css] ----- -.v-button {} -.v-verticallayout .v-button {} -.v-app .v-verticallayout .v-button {} ----- - -In the above example, the last rule would have the highest specificity and would -match. - -As noted earlier, style declarations given in the style attribute of a HTML -element have higher specificity than declarations in a CSS rule, except if the -[literal]#++!important++# annotation is given. - -See the CSS3 link:http://www.w3.org/TR/selectors/#specificity[selectors module -specification] for details regarding how the specificity is computed. - - -[[themes.css.cascading.order]] -=== Order - -CSS rules given later have higher priority than ones given earlier. For example, -in the following, the latter rule overrides the former and the color will be -black: - - -[source, css] ----- -.v-button {color: white} -.v-button {color: black} ----- - -As specificity has a higher cascading priority than order, you could make the -first rule have higher priority by adding specificity as follows: - - -[source, css] ----- -.v-app .v-button {color: white} -.v-button {color: black} ----- - -The order is important to notice in certain cases, because Vaadin does not -guarantee the order in which CSS stylesheets are loaded in the browser, which -can in fact be random and result in very unexpected behavior. This is not -relevant for Sass stylesheets, which are compiled to a single stylesheet. For -plain CSS stylesheets, such as add-on or TouchKit stylesheets, the order can be -relevant. - - - -[[themes.css.hierarchy]] -== Style Class Hierarchy of a Vaadin UI - -Let us give a real case in a Vaadin UI by considering a simple Vaadin UI with a -label and a button inside a vertical layout: - - -[source, java] ----- -// UI has v-ui style class -@Theme("mytheme") -public class HelloWorld extends UI { - @Override - protected void init(VaadinRequest request) { - // VerticalLayout has v-verticallayout style - VerticalLayout content = new VerticalLayout(); - setContent(content); - - // Label has v-label style - content.addComponent(new Label("Hello World!")); - - // Button has v-button style - content.addComponent(new Button("Push Me!", - new Button.ClickListener() { - @Override - public void buttonClick(ClickEvent event) { - Notification.show("Pushed!"); - } - })); - } -} ----- - -The UI will look by default as shown in <<figure.themes.css.hierarchy.initial>>. -By using a HTML inspector such as Firebug, you can view the HTML tree and the -element classes and applied styles for each element. - -[[figure.themes.css.hierarchy.initial]] -.An Unthemed Vaadin UI -image::img/example-ui-default.png[] - -Now, let us look at the HTML element class structure of the UI, as we can see it -in the HTML inspector: - -[subs="normal"] ----- -<body class="**v-generated-body v-ff v-ff20 v-ff200 v-gecko v-lin**" - scroll="auto"> - <div id="bookexamplesvaadin7helloworld-447164942" - class="**v-app mytheme**"> - <div class="**v-ui v-scrollable**" - tabindex="1" style="height: 100%; width: 100%;"> - <div class="**v-loading-indicator first**" - style="position: absolute; display: none;"></div> - <div class="**v-verticallayout v-layout v-vertical v-widget v-has-width**" - style="width: 100%;"> - <div class="**v-slot**"> - <div class="**v-label v-widget v-has-width**" - style="width: 100%;">Hello World!</div> - </div> - <div class="**v-slot**"> - <div class="**v-button v-widget**" - tabindex="0" role="button"> - <span class="**v-button-wrap**"> - <span class="**v-button-caption**">Push Me!</span> - </span> - </div> - </div> - </div> - </div> - </div> - ... -<body> ----- -Now, consider the following theme where we set the colors and margins of various -elements. The theme is actually a Sass theme. - - -[source, css] ----- -@import "../valo/valo.scss"; - -@mixin mytheme { - @include valo; - - /* White background for the entire UI */ - .v-ui { - background: white; - } - - /* All labels have white text on black background */ - .v-label { - background: black; - color: white; - font-size: 24pt; - line-height: 24pt; - padding: 5px; - } - - /* All buttons have blue caption and some margin */ - .v-button { - margin: 10px; - - /* A nested selector to increase specificity */ - .v-button-caption { - color: blue; - } - } -} ----- - -The look has changed as shown in <<figure.themes.css.hierarchy.themed>>. - -[[figure.themes.css.hierarchy.themed]] -.Themed Vaadin UI -image::img/example-ui-themed.png[] - -An element can have multiple classes separated with a space. With multiple -classes, a CSS rule matches an element if any of the classes match. This feature -is used in many Vaadin components to allow matching based on the state of the -component. For example, when the mouse is over a [classname]#Link# component, -[literal]#++over++# class is added to the component. Most of such styling is a -feature of Google Web Toolkit. - - -[[themes.css.compatibility]] -== Notes on Compatibility - -((("CSS", "compatibility"))) -((("compatibility"))) -CSS is a standard continuously under development. It was first proposed in 1994. -The specification of CSS is maintained by the CSS Working Group of World Wide -Web Consortium (W3C). Versioned with backward-compatible "levels", CSS Level 1 -was published in 1996, Level 2 in 1998, and the ongoing development of CSS Level -3 started in 1998. CSS3 is divided into a number of separate modules, each -developed and progressing separately, and many of the modules are already Level -4. - -While the support for CSS has been universal in all graphical web browsers since -at least 1995, the support has been very incomplete at times and there still -exists an unfortunate number of incompatibilities between browsers. While we -have tried to take these incompatibilities into account in the built-in themes -in Vaadin, you need to consider them while developing your own themes. -Compatibility issues are detailed in various CSS handbooks. - - -(((range="endofrange", startref="term.themes.css"))) - - diff --git a/documentation/themes/themes-eclipse.asciidoc b/documentation/themes/themes-eclipse.asciidoc deleted file mode 100644 index bd35ce6fed..0000000000 --- a/documentation/themes/themes-eclipse.asciidoc +++ /dev/null @@ -1,75 +0,0 @@ ---- -title: Creating a Theme in Eclipse -order: 6 -layout: page ---- - -[[themes.eclipse]] -= Creating a Theme in Eclipse - -The Eclipse plugin automatically creates a theme stub for new Vaadin projects. -It also includes a wizard for creating new custom themes. Do the following steps -to create a new theme. - -. Select "File > New > Other..." in the main menu or right-click the -[guilabel]#Project Explorer# and select "New > Other...". A window will open. - -. In the [guilabel]#Select a wizard# step, select the "Vaadin > Vaadin Theme" -wizard. - -+ -image::img/eclipse-theme-new.png[] - -+ -Click [guibutton]#Next# to proceed to the next step. - -. In the [guilabel]#Create a new Vaadin theme# step, you have the following -settings: - -[guilabel]#Project#(mandatory):: The project in which the theme should be created. - -[guilabel]#Theme name#(mandatory):: The theme name is used as the name of the theme folder and in a CSS tag -(prefixed with " [literal]#++v-theme-++#"), so it must be a proper identifier. -Only latin alphanumerics, underscore, and minus sign are allowed. - -[guilabel]#Modify application classes to use theme#(optional):: The setting allows the wizard to write a code statement that enables the theme -in the constructor of the selected application (UI) class(es). If you need to -control the theme with dynamic logic, you can leave the setting unchecked or -change the generated line later. - - - -+ -image::img/eclipse-theme-settings.png[] - -+ -Click [guibutton]#Finish# to create the theme. - - -The wizard creates the theme folder under the -[filename]#WebContent/VAADIN/themes# folder and the actual style sheet as -[filename]#mytheme.scss# and [filename]#styles.scss# files, as illustrated in -<<figure.eclipse.theme.created>>. - -[[figure.eclipse.theme.created]] -.Newly Created Theme -image::img/eclipse-theme-created-annotated-hi.png[] - -The created theme extends a built-in base theme with an [literal]#++@import++# -statement. See the explanation of theme inheritance in -<<dummy/../../../framework/themes/themes-creating#themes.creating,"Creating and -Using Themes">>. Notice that the [filename]#reindeer# theme is not located in -the [filename]#widgetsets# folder, but in the Vaadin JAR. See -<<dummy/../../../framework/themes/themes-creating#themes.creating.builtin,"Built-in -Themes">> for information for serving the built-in themes. - -If you selected a UI class or classes in the [guilabel]#Modify application -classes to use theme# in the theme wizard, the wizard will add the -[literal]#++@Theme++# annotation to the UI class. - -If you later rename the theme in Eclipse, notice that changing the name of the -folder will not automatically change the [literal]#++@Theme++# annotation. You -need to change such references to theme names in the calls manually. - - - diff --git a/documentation/themes/themes-fonticon.asciidoc b/documentation/themes/themes-fonticon.asciidoc deleted file mode 100644 index 624220fa05..0000000000 --- a/documentation/themes/themes-fonticon.asciidoc +++ /dev/null @@ -1,266 +0,0 @@ ---- -title: Font Icons -order: 8 -layout: page ---- - -[[themes.fonticon]] -= Font Icons - -Font icons are icons included in a font. Fonts have many advantages over bitmap -images. Browsers are usually faster in rendering fonts than loading image files. -Web fonts are vector graphics, so they are scalable. As font icons are text -characters, you can define their color in CSS by the regular foreground color -property. - -[[themes.fonticon.enabling]] -== Loading Icon Fonts - -Vaadin currently comes with one custom icon font: FontAwesome. It is -automatically enabled in the Valo theme. For other themes, you need to include -it with the following line in your project theme, after importing the base -theme: - - ----- -@include fonticons; ----- - -If you use other icon fonts, as described in <<themes.fonticon.custom>>, and the -font is not loaded by a base theme, you need to load it with a -[literal]#++font++# mixin in Sass, as described in -<<dummy/../../../framework/themes/themes-fonts#themes.fonts.loading,"Loading -Local Fonts">>. - - -[[themes.fonticon.using]] -== Basic Use - -Font icons are resources of type [classname]#FontIcon#, which implements the -[interfacename]#Resource# interface. You can use these special resources for -component icons and such, but not as embedded images, for example. - -Each icon has a Unicode codepoint, by which you can use it. Vaadin includes an -awesome icon font, [literal]#++FontAwesome++#, which comes with an enumeration -of all the icons included in the font. - -Most typically, you set a component icon as follows: - - ----- -TextField name = new TextField("Name"); -name.setIcon(FontAwesome.USER); -layout.addComponent(name); - -// Button allows specifying icon resource in constructor -Button ok = new Button("OK", FontAwesome.CHECK); -layout.addComponent(ok); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#themes.fonticon.basic[on-line example, window="_blank"]. - -The result is illustrated in <<figure.themes.fonticon.using>>, with the color -styling described next. - -[[figure.themes.fonticon.using]] -.Basic Use of Font Icons -image::img/fonticons-basic.png[] - -[[themes.fonticon.using.css]] -=== Styling the Icons - -As font icons are regular text, you can specify their color with the -[literal]#++color++# attribute in CSS to specify the foreground text color. All -HTML elements that display icons in Vaadin have the [literal]#++v-icon++# style -name. - - ----- -.v-icon { - color: blue; -} ----- - -If you use the font icon resources in other ways, such as in an -[classname]#Image# component, the style name will be different. - - - -[[themes.fonticon.html]] -== Using Font icons in HTML - -You can use font icons in HTML code, such as in a [classname]#Label#, by -generating the HTML to display the icon with the [methodname]#getHtml()# method. - - ----- -Label label = new Label("I " + - FontAwesome.HEART.getHtml() + " Vaadin", - ContentMode.HTML); -label.addStyleName("redicon"); -layout.addComponent(label); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#themes.fonticon.html[on-line example, window="_blank"]. - -The HTML code has the [literal]#++v-icon++# style, which you can modify in CSS: - - ----- -.redicon .v-icon { - color: red; -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#themes.fonticon.html[on-line example, window="_blank"]. - -The result is illustrated in <<figure.themes.fonticon.html>>, with the color -styling described next. - -[[figure.themes.fonticon.html]] -.Using Font Icons in Label -image::img/fonticons-html.png[] - -You could have set the font color in the label's HTML code as well, or for all -icons in the UI. - -You can easily use font icons in HTML code in other ways as well. You just need -to use the correct font family and then use the hex-formatted Unicode codepoint -for the icon. See for example the implementation of the [methodname]#getHtml()# -method in [classname]#FontAwesome#: - - ----- -@Override -public String getHtml() { - return "<span class=\"v-icon\" style=\"font-family: " + - getFontFamily() + ";\">&#x" + - Integer.toHexString(codepoint) + ";</span>"; -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#themes.fonticon.html[on-line example, window="_blank"]. - - -[[themes.fonticon.anywhere]] -== Using Font Icons in Other Text - -You can include a font icon in any text by its Unicode codepoint, which you can -get with the [methodname]#getCodePoint()# method. In such case, however, you -need to use the same font for other text in the same string as well. The -FontAwesome provided in Vaadin includes a basic character set. - - ----- -TextField amount = new TextField("Amount (in " + - new String(Character.toChars( - FontAwesome.BTC.getCodepoint())) + - ")"); -amount.addStyleName("awesomecaption"); -layout.addComponent(amount); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#themes.fonticon.intext[on-line example, window="_blank"]. - -You need to set the font family in CSS. - - ----- -.v-caption-awesomecaption .v-captiontext { - font-family: FontAwesome; -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#themes.fonticon.intext[on-line example, window="_blank"]. - - -[[themes.fonticon.custom]] -== Custom Font Icons - -You can easily use glyphs in existing fonts as icons, or create your own. - -[[themes.fonticon.custom.creating]] -=== Creating New Icon Fonts With IcoMoon - -You are free to use any of the many ways to create icons and embed them into -fonts. Here, we give basic instructions for using the -link:http://icomoon.io/app/[IcoMoon] service, where you can pick icons from a -large library of well-designed icons. - -Font Awesome is included in IcoMoon's selection of icon libraries. Note that the -codepoints of the icons are not fixed, so the [classname]#FontAwesome# enum is -not compatible with such custom icon fonts. - -After you have selected the icons that you want in your font, you can download -them in a ZIP package. The package contains the icons in multiple formats, -including WOFF, TTF, EOT, and SVG. Not all browsers support any one of them, so -all are needed to support all the common browsers. Extract the [filename]#fonts# -folder from the package to under your theme. - -See <<dummy/../../../framework/themes/themes-fonts#themes.fonts.loading,"Loading -Local Fonts">> for instructions for loading a custom font. - - -ifdef::web[] -[[themes.fonticon.custom.implementing]] -=== Implementing FontIcon - -You can define a font icon for any font available in the browser by implementing -the [interfacename]#FontIcon# interface. The normal pattern for implementing it -is to implement an enumeration for all the symbols available in the font. See -the implementation of [classname]#FontAwesome# for more details. - -You need a FontIcon API for the icons. In the following, we define a font icon -using a normal sans-serif font built-in in the browser. - - ----- -// Font icon definition with a single symbol -public enum MyFontIcon implements FontIcon { - EURO(0x20AC); - - private int codepoint; - - MyFontIcon(int codepoint) { - this.codepoint = codepoint; - } - - @Override - public String getMIMEType() { - throw new UnsupportedOperationException( - FontIcon.class.getSimpleName() - + " should not be used where a MIME type is needed."); - } - - @Override - public String getFontFamily() { - return "sans-serif"; - } - - @Override - public int getCodepoint() { - return codepoint; - } - - @Override - public String getHtml() { - return "<span class=\"v-icon\" style=\"font-family: " + - getFontFamily() + ";\">&#x" + - Integer.toHexString(codepoint) + ";</span>"; - } -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#themes.fonticon.custom[on-line example, window="_blank"]. - -Then you can use it as usual: - - ----- -TextField name = new TextField("Amount"); -name.setIcon(MyFontIcon.EURO); -layout.addComponent(name); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#themes.fonticon.custom[on-line example, window="_blank"]. - -You could make the implementation a class as well, instead of an enumeration, to -allow other ways to specify the icons. - -endif::web[] - - - - diff --git a/documentation/themes/themes-fonts.asciidoc b/documentation/themes/themes-fonts.asciidoc deleted file mode 100644 index 741fb00a72..0000000000 --- a/documentation/themes/themes-fonts.asciidoc +++ /dev/null @@ -1,85 +0,0 @@ ---- -title: Custom Fonts -order: 9 -layout: page ---- - -[[themes.fonts]] -= Custom Fonts - -In addition to using the built-in fonts of the browser and the web fonts -included in the Vaadin themes, you can use custom web fonts. - -[[themes.fonts.loading]] -== Loading Local Fonts - -You can load locally served web fonts with the [literal]#++font++# mixin as -follows: - - ----- -@include font(MyFontFamily, - '../../mytheme/fonts/myfontfamily'); ----- - -The statement must be given in the [filename]#styles.scss# file __outside__ the -[literal]#++.mytheme {}++# block. - -The first parameter is the name of the font family, which is used to identify -the font. If the font family name contains spaces, you need to use single or -double quotes around the name. - -The second parameter is the base name of the font files without an extension, -including a relative path. Notice that the path is relative to the base theme, -where the mixin is defined, not the used theme. We recommend placing custom font -files under a [filename]#fonts# folder in a theme. - -Not all browsers support any single font file format, so the base name is -appended with [filename]#.ttf#, [filename]#.eot#, [filename]#.woff#, or -[filename]#.svg# suffix for the font file suitable for a user's browser. - - -[[themes.fonts.webfonts]] -== Loading Web Fonts - -You can load externally served web fonts such as Google Fonts simply by -specifying the loading stylesheet for the UI with the [classname]#@StyleSheet# -annotation. - -For example, to load the "Cabin Sketch" font from Google Fonts: - -[subs="normal"] ----- -@StyleSheet({"[replaceable]#http://fonts.googleapis.com/css?family=Cabin+Sketch#"}) -public class MyUI extends UI { - ... ----- -ifdef::web[] -Note that such web fonts served from a domain different from the Vaadin -application currently link:https://dev.vaadin.com/ticket/16249[do not work -together with] responsive themes, as described in -<<dummy/../../../framework/themes/themes-responsive#themes.responsive,"Responsive -Themes">>. The problem occurs only in Firefox. A SecurityError is shown in the -debug window. -endif::web[] - - -[[themes.fonts.using]] -== Using Custom Fonts - -After loaded, you can use a custom font, or actually font family, by its name in -CSS and otherwise. - - ----- -.mystyle { - font-family: MyFontFamily; -} ----- - -Again, if the font family name contains spaces, you need to use single or double -quotes around the name. - - - - diff --git a/documentation/themes/themes-overview.asciidoc b/documentation/themes/themes-overview.asciidoc deleted file mode 100644 index 05005ab83b..0000000000 --- a/documentation/themes/themes-overview.asciidoc +++ /dev/null @@ -1,77 +0,0 @@ ---- -title: Overview -order: 1 -layout: page ---- - -[[themes.overview]] -= Overview - -Vaadin separates the appearance of the user interface from its logic using -__themes__. Themes can include Sass or CSS style sheets, custom HTML layouts, -and any necessary graphics. Theme resources can also be accessed from -application code as [classname]#ThemeResource# objects. - -Custom themes are placed under the [filename]#VAADIN/themes/# folder of the web -application (under [filename]#WebContent# in Eclipse or -[filename]#src/main/webapp# in Maven projects). This location is fixed -- the -[filename]#VAADIN# folder contains static resources that are served by the -Vaadin servlet. The servlet augments the files stored in the folder by resources -found from corresponding [filename]#VAADIN# folders contained in JARs in the -class path. For example, the built-in themes are stored in the -[filename]#vaadin-themes.jar#. - -<<figure.themes.theme-contents>> illustrates the contents of a theme. - -[[figure.themes.theme-contents]] -.Contents of a Theme -image::img/theme-contents-hi.png[] - -The name of a theme folder defines the name of the theme. The name is used in -the [literal]#++@Theme++# annotation that sets the theme. A theme must contain -either a [filename]#styles.scss# for Sass themes, or [filename]#styles.css# -stylesheet for plain CSS themes, but other contents have free naming. We -recommend that you have the actual theme content in a SCSS file named after the -theme, such as [filename]#mytheme.scss#, to make the names more unique. - -We also suggest a convention for naming the folders as [filename]#img# for -images, [filename]#layouts# for custom layouts, and [filename]#css# for -additional stylesheets. - -Custom themes need to extend a base theme, as described in -<<dummy/../../../framework/themes/themes-creating#themes.creating,"Creating and -Using Themes">>. Copying and modifying an existing theme is also possible, but -it is not recommended, as it may need more work to maintain if the modifications -are small. - -You use a theme by specifying it with the [literal]#++@Theme++# annotation for -the UI class of the application as follows: - - -[source, java] ----- -@Theme("mytheme") -public class MyUI extends UI { - @Override - protected void init(VaadinRequest request) { - ... - } -} ----- - -A theme can contain alternate styles for user interface components, which can be -changed as needed. - -In addition to style sheets, a theme can contain HTML templates for custom -layouts used with [classname]#CustomLayout#. See -<<dummy/../../../framework/layout/layout-customlayout#layout.customlayout,"Custom -Layouts">> for details. - -Resources provided in a theme can also be accessed using the -[classname]#ThemeResource# class, as described in -<<dummy/../../../framework/application/application-resources#application.resources.theme,"Theme -Resources">>. This allows displaying theme resources in component icons, in the -[classname]#Image# component, and other such uses. - - - diff --git a/documentation/themes/themes-responsive.asciidoc b/documentation/themes/themes-responsive.asciidoc deleted file mode 100644 index b4377f9b66..0000000000 --- a/documentation/themes/themes-responsive.asciidoc +++ /dev/null @@ -1,286 +0,0 @@ ---- -title: Responsive Themes -order: 10 -layout: page ---- - -[[themes.responsive]] -= Responsive Themes - -((("[classname]#responsive# extension", id="term.themes.responsive", range="startofrange"))) - - -((("CSS selections"))) -((("extension"))) -Vaadin includes support for responsive design which enables size range -conditions in CSS selectors, allowing conditional CSS rules that respond to size -changes in the browser window on the client-side. - -ifdef::web[] -See the link:https://vaadin.com/blog/-/blogs/3126636[Vaadin Blog article on -Responsive design] for some additional -information. -endif::web[] - -You can use the [classname]#Responsive# extension to extend either a component, -typically a layout, or the entire UI. You specify the component by the static -[methodname]#makeResponsive()# method. - - ----- -// Have some component with an appropriate style name -Label c = new Label("Here be text"); -c.addStyleName("myresponsive"); -content.addComponent(c); - -// Enable Responsive CSS selectors for the component -Responsive.makeResponsive(c); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#themes.responsive.basic[on-line example, window="_blank"]. - -You can now use [literal]#++width-range++# and [literal]#++height-range++# -conditions in CSS selectors as follows: - - ----- -/* Basic settings for all sizes */ -.myresponsive { - padding: 5px; - line-height: 36pt; -} - -/* Small size */ -.myresponsive[width-range~="0-300px"] { - background: orange; - font-size: 16pt; -} - -/* Medium size */ -.myresponsive[width-range~="301px-600px"] { - background: azure; - font-size: 24pt; -} - -/* Anything bigger */ -.myresponsive[width-range~="601px-"] { - background: palegreen; - font-size: 36pt; -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#themes.responsive.basic[on-line example, window="_blank"]. - -You can have overlapping size ranges, in which case all the selectors matching -the current size are enabled. - -ifdef::web[] -Note that responsive themes currently -link:https://dev.vaadin.com/ticket/16249[do not work together with] stylesheets -or widget sets loaded from a different domain than the Vaadin application. Such -resources must be loaded from the same domain as the application. The problem -occurs only in Firefox. A SecurityError is shown in the debug window. The -limitation concerns stylesheets such as for web fonts served from external -sites, as described in -<<dummy/../../../framework/themes/themes-fonts#themes.fonts.webfonts,"Loading -Web Fonts">>. -endif::web[] - -ifdef::web[] -[[themes.responsive.wrap]] -== Flexible Wrapping - -You can use the [classname]#CssLayout# to have automatic wrap-around when the -components in the layout would go off right side of the layout. Components that -wrap must, however, have either undefined or fixed width, and thereby can not -utilize the full area of the screen. With the [classname]#Responsive# extension, -you can have more flexible wrap-around that gives the component tiles maximum -width. - -In the following, we have a text and image box, which are laid out horizontally -with 50-50 sizing if the screen is wide enough, but wrap to a vertical layout if -the screen is narrow. - - ----- -CssLayout layout = new CssLayout(); -layout.setWidth("100%"); -layout.addStyleName("flexwrap"); -content.addComponent(layout); - -// Enable Responsive CSS selectors for the layout -Responsive.makeResponsive(layout); - -Label title = new Label("Space is big, really big"); -title.addStyleName("title"); -layout.addComponent(title); - -Label description = new Label("This is a " + - "long description of the image shown " + - "on the right or below, depending on the " + - "screen width. The text here could continue long."); -description.addStyleName("itembox"); -description.setSizeUndefined(); -layout.addComponent(description); - -Image image = new Image(null, - new ThemeResource("img/planets/Earth.jpg")); -image.addStyleName("itembox"); -layout.addComponent(image); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#themes.responsive.flexwrap[on-line example, window="_blank"]. - -The SCSS could be as follows: - - ----- -/* Various general settings */ -.flexwrap { - background: black; - color: white; - - .title { - font-weight: bold; - font-size: 20px; - line-height: 30px; - padding: 5px; - } - - .itembox { - white-space: normal; - vertical-align: top; - } - - .itembox.v-label {padding: 5px} -} - -.flexwrap[width-range~="0-499px"] { - .itembox {width: 100%} -} - -.flexwrap[width-range~="500px-"] { - .itembox {width: 50%} -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#themes.responsive.flexwrap[on-line example, window="_blank"]. - -The layout in the wide mode is shown in <<figure.theme.responsive.flexwrap>>. - -[[figure.theme.responsive.flexwrap]] -.Flexible Wrapping -image::img/addon-responsive-flexwrap.png[] - -You could also play with the [literal]#++display: block++# vs -[literal]#++display: inline-block++# properties. - -Notice that, while the [classname]#Responsive# extension makes it possible to do -various CSS trickery with component sizes, the normal rules for component and -layout sizes apply, as described in -<<dummy/../../../framework/layout/layout-settings#layout.settings.size,"Layout -Size">> and elsewhere, and you should always check the size behaviour of the -components. In the above example, we set the label to have undefined width, -which disables word wrap, so we had to re-enable it. - -endif::web[] - -ifdef::web[] -[[themes.responsive.display]] -== Toggling the Display Property - -((("display (CSS -property)"))) -The [literal]#++display++# property allows especially powerful ways to offer -radically different UIs for different screen sizes by enabling and disabling UI -elements as needed. For example, you could disable some parts of the UI when the -space gets too small, but bring forth navigation buttons that, when clicked, add -component styles to switch to the hidden parts. - -In the following, we simply show alternative components based on screen width: - - ----- -CssLayout layout = new CssLayout(); -layout.setWidth("100%"); -layout.addStyleName("toggledisplay"); -content.addComponent(layout); - -// Enable Responsive CSS selectors for the layout -Responsive.makeResponsive(layout); - -Label enoughspace = - new Label("This space is big, mindbogglingly big"); -enoughspace.addStyleName("enoughspace"); -layout.addComponent(enoughspace); - -Label notenoughspace = new Label("Quite small space"); -notenoughspace.addStyleName("notenoughspace"); -layout.addComponent(notenoughspace); ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#themes.responsive.display[on-line example, window="_blank"]. - -The SCSS could be as follows: - - ----- -/* Common settings */ -.toggledisplay { - .enoughspace, .notenoughspace { - color: white; - padding: 5px; - } - - .notenoughspace { /* Really small */ - background: red; - font-weight: normal; - font-size: 10px; - line-height: 15px; - } - - .enoughspace { /* Really big */ - background: darkgreen; - font-weight: bold; - font-size: 20px; - line-height: 30px; - } -} - -/* Quite little space */ -.toggledisplay[width-range~="0-499px"] { - .enoughspace {display: none} -} - -/* Plenty of space */ -.toggledisplay[width-range~="500px-"] { - .notenoughspace {display: none} -} ----- -See the http://demo.vaadin.com/book-examples-vaadin7/book#themes.responsive.display[on-line example, window="_blank"]. - -endif::web[] - -ifdef::web[] -[[themes.responsive.demos]] -== Responsive Demos - -You can find a simple responsive demo at -link:http://demo.vaadin.com/responsive/[demo.vaadin.com/responsive]. It -demonstrates the flexible wrapping technique described in -<<themes.responsive.wrap>>. - -The -link:http://demo.vaadin.com/book-examples-vaadin7/book/#themes.responsive.basic[Book -Examples] demo provides the examples given in this chapter, as well as some -others. - -((("Parking -demo"))) -((("TouchKit", "Parking -demo"))) -The Parking demo for TouchKit, mentioned in -<<dummy/../../../mobile/mobile-overview.asciidoc#mobile.overview,"Mobile -Applications with TouchKit">>, uses a responsive theme to adapt to mobile -devices with different screen sizes and when the screen orientation changes. - -endif::web[] - -(((range="endofrange", startref="term.themes.responsive"))) - - diff --git a/documentation/themes/themes-sass.asciidoc b/documentation/themes/themes-sass.asciidoc deleted file mode 100644 index 4b1f529de1..0000000000 --- a/documentation/themes/themes-sass.asciidoc +++ /dev/null @@ -1,156 +0,0 @@ ---- -title: Syntactically Awesome Stylesheets (Sass) -order: 3 -layout: page ---- - -[[themes.sass]] -= Syntactically Awesome Stylesheets (Sass) - -Vaadin uses Sass for stylesheets. Sass is an extension of CSS3 that adds nested -rules, variables, mixins, selector inheritance, and other features to CSS. Sass -supports two formats for stylesheet: Vaadin themes are written in SCSS ( -[filename]#.scss#), which is a superset of CSS3, but Sass also allows a more -concise indented format ( [filename]#.sass#). - -Sass can be used in two basic ways in Vaadin applications, either by compiling -SCSS files to CSS or by doing the compilation on the fly. The latter way is -possible if the development mode is enabled for the Vaadin servlet, as described -in -<<dummy/../../../framework/application/application-environment#application.environment.parameters,"Other -Servlet Configuration Parameters">>. - -[[themes.sass.overview]] -== Sass Overview - -[[themes.sass.overview.variables]] -=== Variables - -Sass allows defining variables that can be used in the rules. - - -[source, css] ----- -$textcolor: blue; - -.v-button-caption { - color: $textcolor; -} ----- - -The above rule would be compiled to CSS as: - - -[source, css] ----- -.v-button-caption { - color: blue; -} ----- - -Also mixins can have variables as parameters, as explained later. - - -[[themes.sass.overview.nesting]] -=== Nesting - -Sass supports nested rules, which are compiled into inside-selectors. For -example: - - -[source, css] ----- -.v-app { - background: yellow; - - .mybutton { - font-style: italic; - - .v-button-caption { - color: blue; - } - } -} ----- - -is compiled as: - - -[source, css] ----- -.v-app { - background: yellow; -} - -.v-app .mybutton { - font-style: italic; -} - -.v-app .mybutton .v-button-caption { - color: blue; -} ----- - - -[[themes.sass.overview.mixins]] -=== Mixins - -Mixins are rules that can be included in other rules. You define a mixin rule by -prefixing it with the [literal]#++@mixin++# keyword and the name of the mixin. -You can then use [literal]#++@include++# to apply it to another rule. You can -also pass parameters to it, which are handled as local variables in the mixin. - -For example: - - -[source, css] ----- -@mixin mymixin { - background: yellow; -} - -@mixin othermixin($param) { - margin: $param; -} - -.v-button-caption { - @include mymixin; - @include othermixin(10px); -} ----- - -The above SCSS would translated to the following CSS: - - -[source, css] ----- -.v-button-caption { - background: yellow; - margin: 10px; -} ----- - -You can also have nested rules in a mixin, which makes them especially powerful. -Mixing in rules is used when extending Vaadin themes, as described in -<<dummy/../../../framework/themes/themes-creating#themes.creating.sass,"Sass -Themes">>. - -Vaadin themes are defined as mixins to allow for certain uses, such as different -themes for different portlets in a portal. - - - -[[themes.sass.basic]] -== Sass Basics with Vaadin - -We are not going to give in-depth documentation of Sass and refer you to its -excellent documentation at http://sass-lang.com/. In the following, we give just -basic introduction to using it with Vaadin. - -You can create a new Sass-based theme with the Eclipse plugin, as described in -<<dummy/../../../framework/themes/themes-eclipse#themes.eclipse,"Creating a -Theme in Eclipse">>. - - - - diff --git a/documentation/themes/themes-valo.asciidoc b/documentation/themes/themes-valo.asciidoc deleted file mode 100644 index 5ae5a1b37b..0000000000 --- a/documentation/themes/themes-valo.asciidoc +++ /dev/null @@ -1,440 +0,0 @@ ---- -title: Valo Theme -order: 7 -layout: page ---- - -[[themes.valo]] -= Valo Theme - -Valo is the word for light in Finnish. The Valo theme incorporates the use of -light in its logic, in how it handles shades and highlights. It creates lines, -borders, highlights, and shadows adaptively according to a background color, -always with contrasts pleasant to human visual perception. Auxiliary colors are -computed using an algorithmic color theory to blend gently with the background. -The static art is complemented with responsive animations. - -The true power of Valo lies in its configurability with parameters, functions, -and Sass mixins. You can use the built-in definitions in your own themes or -override the defaults. Detailed documentation of the available mixins, -functions, and variables can be found in the Valo API documentation available at -http://vaadin.com/valo. - -[[themes.valo.use]] -== Basic Use - -Valo is used just like other themes. Its optional parameters must be given -before the [literal]#++@import++# statement. - -Your project theme file, such as [filename]#mytheme.scss#, included from the -[filename]#styles.scss# file, could be as follows: - - ----- -// Modify the base color of the theme -$v-background-color: hsl(200, 50%, 50%); - -// Import valo after setting the parameters -@import "../valo/valo"; - -.mythemename { - @include valo; - - // Your theme's rules go here -} ----- - -If you need to override mixins or function definitions in the valo theme, you -must do that after the import statement, but before including the valo mixin. -Also, with some configuration parameters, you can use variables defined in the -theme. In this case, they need to be overridden after the import statement. - - -[[themes.valo.variables]] -== Common Settings - -In the following, we describe the optional parameters that control the visual -appearance of the Valo theme. In addition to the ones given here, component -styles have their own parameters, listed in the sections describing the -components in the other chapters. - -[[themes.valo.variables.general]] -=== General Settings - -$v-background-color(default:[literal]#++hsl(210, 0%, 98%)++#):: The background color is the main control parameter for the Valo theme and it is -used for computing all other colors in the theme. If the color is dark (has low -luminance), light foreground colors that give high contrast with the background -are automatically used. - -+ -You can specify the color in any way allowed in CSS: hexadecimal RGB color code, -RGB/A value specified with [methodname]#rgb()# or [methodname]#rgba()#, HSL/A -value specified with [methodname]#hsl()# or [methodname]#hsla()#. You can also -use color names, but it should be avoided, as not all CSS color names are -currently supported. - -$v-app-background-color(default:$v-background-color):: Background color of the UI's root element. You can specify the color in any way -allowed in CSS. - -$v-app-loading-text(default:[literal]#++""++#):: A static text that is shown under the loading spinned while the client-side -engine is being loaded and started. The text must be given in quotes. The text -can not be localized currently. - - -+ ----- -$v-app-loading-text: "Loading Resources..."; ----- -$v-line-height(default:[literal]#++1.55++#):: Base line height for all widgets. It must be given a unitless number. - - -+ ----- -$v-line-height: 1.6; ----- - - - -[[themes.valo.variables.fonts]] -=== Font Settings - -$v-font-size(default:[literal]#++16px++#):: Base font size. It should be specified in pixels. - - -+ ----- -$v-font-size: 18px; ----- -$v-font-weight(default:[literal]#++300++#):: Font weight for normal fonts. The size should be given as a numeric value, not -symbolic. - - -+ ----- -$v-font-weight: 400; ----- -$v-font-color(default: computed):: Foreground text color, specified as any CSS color value. The default is computed -from the background color so that it gives a high contrast with the background. - -$v-font-family(default:[literal]#++"Open Sans", sans-serif++#):: Font family and fallback fonts as a comma-separated list. Font names containing -spaces must be quoted. The default font Open Sans is a web font included in the -Valo theme. Other used Valo fonts must be specified in the list to enable them. -See <<themes.valo.fonts>>. - - -+ ----- -$v-font-family: "Source Sans Pro", sans-serif; ----- -$v-caption-font-size(default:[literal]#++round($v-font-size * 0.9)++#):: Font size for component captions. The value should be a pixel value. - -$v-caption-font-weight(default:[literal]#++max(400, $v-font-weight)++#):: Font weight for captions. It should be defined with a numeric value instead of -symbolic. - - - - -[[themes.valo.variables.layout]] -=== Layout Settings - - -++++ -<variablelist xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xl="http://www.w3.org/1999/xlink"><varlistentry><term><varname>$v-unit-size</varname> (default: <literal>round(2.3 * $v-font-size)</literal>)</term><listitem><para> - This is the base size for various layout measures. It is - directly used in some measures, such as button height and - layout margins, while other measures are derived from - it. The value must be specified in pixels, with a suitable - range of 18-50. - </para><programlisting>$v-unit-size: 40px;</programlisting></listitem></varlistentry><varlistentry><term><varname>$v-layout-margin-top</varname></term><term><varname>$v-layout-margin-right</varname></term><term><varname>$v-layout-margin-bottom</varname></term><term><varname>$v-layout-margin-left</varname> (default: <literal>$v-unit-size</literal>)</term><listitem><para> - Layout margin sizes for all built-in layout components, - when the margin is enabled with - <methodname>setMargin()</methodname>, as described in - <xref linkend="layout.settings.margins"/>. - </para></listitem></varlistentry><varlistentry><term><varname>$v-layout-spacing-vertical</varname> and - <varname>$v-layout-spacing-horizontal</varname> (default: - <literal>round($v-unit-size/3)</literal>)</term><listitem><para> - Amount of vertical or horizontal space when spacing is enabled - for a layout with <methodname>setSpacing()</methodname>, as - described in <xref linkend="layout.settings.spacing"/>. - </para></listitem></varlistentry></variablelist> -++++ - - -[[themes.valo.variables.component]] -=== Component Features - -The following settings apply to various graphical features of some components. - -$v-border(default:[literal]#++1px solid (v-shade 0.7)++#):: Border specification for the components that have a border. The thickness -measure must be specified in pixels. For the border color, you can specify any -CSS color or one of the [literal]#++v-tint++#, [literal]#++v-shade++#, and -[literal]#++v-tone++# keywords described later in this section. - -$v-border-radius(default:[literal]#++4px++#):: Corner radius for components that have a border. The measure must be specified -in pixels. - - -+ ----- -$v-border-radius: 8px; ----- -$v-gradient(default:[literal]#++v-linear 8%++#):: Color gradient style for components that have a gradient. The gradient style may -use the following keywords: [literal]#++v-linear++# and -[literal]#++v-linear-reverse++#. The opacity must be given as percentage between -0% and 100%. - - -+ ----- -$v-gradient: v-linear 20%; ----- -$v-bevel(default:[literal]#++inset 0 1px 0 v-tint, inset 0 -1px 0 v-shade++#):: Inset shadow style to define how some components are "raised" from the -background. The value follows the syntax of CSS box-shadow, and should be a list -of insets. For the bevel color, you can specify any CSS color or one of the -[literal]#++v-tint++#, [literal]#++v-shade++#, and [literal]#++v-tone++# -keywords described later in this section. - -+ -//TODO Check the meaning of v-tone -$v-bevel-depth(default:[literal]#++30%++#):: Specifies the "depth" of the bevel shadow, as applied to one of the color -keywords for the bevel style. The actual amount of tint, shade, or tone is -computed from the depth. - -$v-shadow(default:[literal]#++0 2px 3px v-shade++#):: Default shadow style for all components. As with $v-bevel, the value follows the -syntax of CSS box-shadow, but without the [literal]#++inset++#. For the shadow -color, you can specify any CSS color or one of the [literal]#++v-tint++# or -[literal]#++v-shade++# keywords described later in this section. - -$v-shadow-opacity(default:[literal]#++5%++#):: Specifies the opacity of the shadow, as applied to one of the color keywords for -the shadow style. The actual amount of tint or shade is computed from the depth. - -$v-focus-style(default:[literal]#++0 0 0 2px rgba($v-focus-color, .5)++#):: Box-shadow specification for the field focus indicator. The space-separated -values are the horizontal shadow position in pixels, vertical shadow position in -pixels, blur distance in pixels, spread distance in pixels, and the color. The -color can be any CSS color. You can only specify the color, in which case -defaults for the position are used. [methodname]#rgba()# or [methodname]#hsla()# -can be used to enable transparency. - -+ -For example, the following creates a 2 pixels wide orange outline around the -field: - - -+ ----- -$v-focus-style: 0 0 0 2px orange; ----- -$v-focus-color(default:[literal]#++valo-focus-color()++#):: Color for the field focus indicator. The [methodname]#valo-focus-color()# -function computes a high-contrast color from the context, which is usually the -background color. The color can be any CSS color. - -$v-animations-enabled(default:[literal]#++true++#):: Specifies whether various CSS animations are used. - -$v-hover-styles-enabled(default:[literal]#++true++#):: Specifies whether various [literal]#++:hover++# styles are used for indicating -that mouse pointer hovers over an element. - -$v-disabled-opacity(default:[literal]#++0.5++#):: Opacity of disabled components, as described in -<<dummy/../../../framework/components/components-features#components.features.enabled,"Enabled">>. - -$v-selection-color(default:[literal]#++$v-focus-color++#):: Color for indicating selection in selection components. - -$v-default-field-width(default:[literal]#++$v-unit-size * 5++#):: Default width of certain field components, unless overridden with -[methodname]#setWidth()#. - -$v-error-indicator-color(default:[literal]#++#ed473b++#):: Color of the component error indicator, as described in -<<dummy/../../../framework/application/application-errors#application.errors.error-indicator,"Error -Indicator and Message">>. - -$v-required-field-indicator-color(default:[literal]#++$v-error-indicator-color++#):: Color of the required indicator in field components, as described in -<<dummy/../../../framework/components/components-fields#components.fields.field,"Field -Interface">>. - - - -Color specifications for $v-border, $v-bevel, and $v-shadow may use, in addition -to CSS colors, the following keywords: - -v-tint:: Lighter than the background color. - -v-shade:: Darker than the background color. - -v-tone:: Adaptive color specification: darker on light background and lighter on dark -background. Not usable in $v-shadow. - - - -For example: - - ----- -$v-border: 1px solid v-shade; ----- - -You can fine-tune the contrast by giving a weight parameter in parentheses: - - ----- -$v-border: 1px solid (v-tint 2); ----- - - ----- -$v-border: 1px solid (v-tone 0.5); ----- - - -[[themes.valo.variables.optimization]] -=== Theme Compilation and Optimization - -$v-relative-paths(default:[literal]#++true++#):: This flags specifies whether relative URL paths are relative to the currently -parsed SCSS file or to the compilation root file, so that paths are correct for -different resources. Vaadin theme compiler parses URL paths differently from the -regular Sass compiler (Vaadin modifies relative URL paths). Use -[literal]#++false++# for Ruby compiler and [literal]#++true++# for Vaadin Sass -compiler. - -$v-included-components(default: component list):: Theme optimization parameter to specify the included component themes, as -described in <<themes.valo.optimization>>. - -$v-included-additional-styles(default:[literal]#++$v-included-components++#):: Theme optimization parameter that lists the components for which the additional -component stylenames should be included. See <<themes.valo.component>> for more -details. - - - - - -[[themes.valo.mixins]] -== Valo Mixins and Functions - -Valo uses Sass mixins and functions heavily to compute various theme features, -such as colors and shades. Also, all component styles are mixins. You can use -the built-in mixins or override them. For detailed documentation of the mixins -and functions, please refer to the Valo API documentation available at -http://vaadin.com/valo/api. - - -[[themes.valo.fonts]] -== Valo Fonts - -Valo includes the following custom fonts: - -* Open Sans -* Source Sans Pro -* Roboto -* Lato -* Lora - -The used fonts must be specified with the $v-font-family parameter for Valo, in -a fallback order. A font family is used in decreasing order of preference, in -case a font with higher preference is not available in the browser. You can -specify any font families and generic families that browsers may support. In -addition to the primary font family, you can use also others in your -application. To enable using the fonts included in Valo, you need to list them -in the variable. - - ----- -$v-font-family: 'Open Sans', sans-serif, 'Source Sans Pro'; ----- - -Above, we specify Open Sans as the preferred primary font, with any sans-serif -font that the browser supports as a fallback. In addition, we include the Source -Sans Pro as an auxiliary font that we can use in custom rules as follows: - - ----- -.v-label pre { - font-family: 'Source Sans Pro', monospace; -} ----- - -This would specify using the font in any [classname]#Label# component with the -[literal]#++PREFORMATTED++# content mode. - - -[[themes.valo.component]] -== Component Styles - -Many components have component-specific styles to make them smaller, bigger, and -so forth. You can specify the component styles with [methodname]#addStyleName()# -using the constants defined in the [classname]#ValoTheme# enum. - - ----- -table.addStyleName(ValoTheme.TABLE_COMPACT); ----- - -For a complete up-to-date list of component-specific styles, please refer to -Vaadin API documentation on the [classname]#ValoTheme# enum. Some are also -described in the component-specific styling sections. - -[[themes.valo.component.disabling]] -=== Disabling Component Styles - -Component styles are optional, but all are enabled by default. They can be -enabled on per-component basis with the $v-included-additional-styles parameter. -It defaults to $v-included-components and can be customized in the same way, as -described in <<themes.valo.optimization>>. - - -[[themes.valo.component.parameters]] -=== Configuration Parameters - -The following variables control some common component styles: - -$v-scaling-factor--tiny(default:[literal]#++0.75++#):: A scaling multiplier for [literal]#++TINY++# component styles. - -$v-scaling-factor--small(default:[literal]#++0.85++#):: A scaling multiplier for [literal]#++SMALL++# component styles. - -$v-scaling-factor--large(default:[literal]#++1.2++#):: A scaling multiplier for [literal]#++LARGE++# component styles. - -$v-scaling-factor--huge(default:[literal]#++1.6++#):: A scaling multiplier for [literal]#++HUGE++# component styles. - - - - - -[[themes.valo.optimization]] -== Theme Optimization - -Valo theme allows optimizing the size of the compiled theme CSS by including the -rules for only the components actually used in the application. The included -component styles can be specified in the [literal]#++$v-included-components++# -variable, which by default includes all components. The variable should include -a comma-separated list of component names in lower-case letters. Likewise, you -can specify which additional component styles, as described in -<<themes.valo.component>>, should be included using the -$v-included-additional-styles parameter and the same format. The list of -additional styles defaults to $v-included-components. - -For example, if your UI contains just [classname]#VerticalLayout#, -[classname]#TextField#, and [classname]#Button# components, you could define the -variable as follows: - - ----- -$v-included-components: - verticallayout, - textfield, - button; ----- - -You can use the [methodname]#remove()# function reversely to remove just some -component themes from the standard selection. - -For example, with the following you can remove the theme definitions for the -[classname]#Calendar# component: - - ----- -$v-included-components: remove($v-included-components, calendar); ----- - -Note that in this case, you need to give the statement __after__ the -[literal]#++@import++# statement for the Valo theme, because it overrides a -variable by using its value that is defined in the theme. - - - - |